@font-face {
    font-family: "Onest";
    src: url("../webfonts/Onest-VariableFont_wght.ttf") format("truetype");
    font-weight: 100 900;
    font-style: normal;
    font-display: swap;
}

:root{
  --container: 1170px;
  --gutter: 15px;
  --gap: 30px;
  --text: #000000;
  --text2: #ffffff;
  --bg1: #2e3536;
  --bg2: #43494a;
  --bg3: rgba(255, 255, 255, 0.04);
  --bg4: #727272;
  --bg5: #dddddd;
  --colorstyle1: #E34400;
  --colorstyle2: #ff8652;
  
  --sal-duration: 0.65s;
  --sal-delay: 100ms;
  --sal-easing: cubic-bezier(.215, .61, .355, 1); /* это ease-out-cubic */ 
}

*{ 
	box-sizing: border-box; 
}

html, body{ 
	height: 100%; 
	/*
	overflow-x: hidden;
	*/
}

body {
  margin: 0;
  font-family: "Onest", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.5;
}

.container {
    width: min(var(--container), 100%);
    margin-inline: auto;
    padding-inline: var(--gutter);
    position: relative;
}

.layout {
	display: flex;
    align-items: stretch;
    gap: var(--gap);
}

.head {
	background-color: var(--bg1);
	color: var(--text2);
}

.head .layout {
    justify-content: space-between;
	padding-top: 15px;
    padding-bottom: 20px;
    align-items: center;
}

.col {
}

.head .col.icon::before {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    display: block;
    color: var(--colorstyle1);
    font-size: 26px;
    line-height: 1;
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
}

.head .logo { 
}

.head .logo img { 
    filter: invert(1);
}

.head .location {
    position: relative;
    display: flex;
    align-items: center;
    padding-left: 42px;
    min-height: 40px;
}

.head .location::before {
	content: '\f3c5';
}

.head .location p {
	margin:0;	
    font-size: 12px;
    line-height: 15px;
}

.head .location a {
	margin:0;	
    font-size: 12px;
    line-height: 15px;
    text-decoration: none;
    color: #ffffff;
    transition: 0.3s;
}

.head .location a:hover {
	color: var(--colorstyle1);
}

.head .phone {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-left: 42px;
    min-height: 40px;
}

.head .phone::before {
    content: '\f879';
}

.head .phone a {
	color: var(--text2);
    text-decoration: none;
	transition:0.3s;
}

.head .phone a:hover {
	color: var(--colorstyle1);
}

.head .soc {
    display: flex;
    gap: 15px;
}

.head .soc .item { 

}

.head .soc .item a { 
    display: flex;
    justify-content: center;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background-color: var(--bg2);
	transition: 0.3s;
	text-decoration:none;
	color: var(--colorstyle1);
    align-items: center;
    font-size: 21px;
}

.head .soc .item a:hover {
	background-color: var(--colorstyle1);
	color: var(--bg2);
}

.head .soc .item a i { 

}

.head .button {
	
}

.head .button a { 
    border: 1px solid var(--colorstyle1);
    border-radius: 2px;
    background-color: var(--colorstyle1);
    text-decoration: none;
    color: var(--text2);
    padding-top: 14px;
    padding-bottom: 15px;
    padding-left: 40px;
    padding-right: 40px;
	transition: 0.3s;
}

.head .button a:hover { 
	background-color: var(--bg1);
}

.top_menu {
    background-color: var(--bg1);
	/*
    border-top: 1px solid rgba(255, 255, 255, 0.08);
	*/
    position: relative;
    z-index: 30;
}

.top_menu .layout {
    display: block;
	border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.top_menu .menu {
    width: 100%;
}

.top_menu .menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.top_menu .menu > ul {
    display: flex;
    align-items: stretch;
    flex-wrap: wrap;
    gap: 8px;
}

.top_menu .menu > ul > li {
    position: relative;
	flex: 0 0 auto;
}

.top_menu .menu > ul > li > a {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 62px;
    padding: 0 18px;
    text-decoration: none;
    color: var(--text2);
    font-weight: 200;
    transition: 0.3s;
	white-space: nowrap;
}

.top_menu .menu > ul > li > a:hover {
    color: var(--colorstyle2);
}

.top_menu .menu > ul > li.has > a {
    padding-right: 30px;
}

.top_menu .menu > ul > li.has > a::after {
    content: "";
    position: absolute;
    right: 12px;
    top: 50%;
    width: 7px;
    height: 7px;
    margin-top: -5px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg);
    transition: 0.3s;
}

.top_menu .menu > ul > li:hover > a::after,
.top_menu .menu > ul > li:focus-within > a::after {
    transform: rotate(225deg);
    margin-top: -1px;
}

.top_menu .menu > ul > li > ul {
    position: absolute;
    left: 0;
    top: 100%;
    min-width: 340px;
    padding: 10px 0;
    background-color: var(--bg2);
    border-top: 3px solid var(--colorstyle1);
    box-shadow: 0 16px 28px rgba(0, 0, 0, 0.28);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(10px);
    transition: 0.25s;
    z-index: 50;
}

.top_menu .menu > ul > li:hover > ul,
.top_menu .menu > ul > li:focus-within > ul {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
}

.top_menu .menu > ul > li > ul > li {
    width: 100%;
}

.top_menu .menu > ul > li > ul > li > a {
    display: block;
    padding: 14px 22px;
    text-decoration: none;
    color: var(--text2);
    line-height: 1.35;
    transition: 0.3s;
	font-weight: 200;
}

.top_menu .menu > ul > li > ul > li > a:hover {
    background-color: var(--bg3);
    color: var(--colorstyle2);
}




.site-main {
    position: relative;
    z-index: 1;
}

.hero_slider {
    position: relative;
}

.hero_slider .slider {
    position: relative;
    height: 410px;
    overflow: hidden;
    background-color: var(--bg1);
}

.hero_slider .track {
    display: flex;
    height: 100%;
    transition: transform 0.55s ease;
    will-change: transform;
}

.hero_slider .slide {
    position: relative;
    min-width: 100%;
    height: 100%;
    overflow: hidden;
}

.hero_slider .slide img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
}

.hero_slider .slide::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(46, 53, 54, 0.86) 0%,
        rgba(46, 53, 54, 0.68) 38%,
        rgba(46, 53, 54, 0.30) 100%
    );
    z-index: 1;
}

.hero_slider .content {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    align-items: center;
}

.hero_slider .box {
    max-width: 590px;
    color: var(--text2);
    background-color: rgba(46, 53, 54, 0.52);
    border-left: 4px solid var(--colorstyle1);
    padding: 30px 34px 32px;
}

.hero_slider .box .sub {
    display: inline-block;
    margin-bottom: 10px;
    color: var(--colorstyle1);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.hero_slider .box h1,
.hero_slider .box h2 {
    margin: 0 0 14px;
    color: var(--text2);
    font-size: 40px;
    line-height: 1.08;
    font-weight: 700;
}

.hero_slider .box p {
    margin: 0;
    font-size: 16px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.92);
}

.hero_slider .buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 24px;
}

.hero_slider .buttons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 24px;
    border: 1px solid var(--colorstyle1);
    background-color: var(--colorstyle1);
    color: var(--text2);
    text-decoration: none;
    transition: 0.3s;
}

.hero_slider .buttons a:hover {
    background-color: transparent;
}

.hero_slider .buttons a.alt {
    background-color: transparent;
}

.hero_slider .buttons a.alt:hover {
    background-color: var(--colorstyle1);
}

.hero_slider .arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 52px;
    height: 52px;
    border: 0;
    border-radius: 50%;
    background-color: rgba(46, 53, 54, 0.72);
    color: var(--text2);
    font-size: 34px;
    line-height: 1;
    cursor: pointer;
    z-index: 3;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: 0.25s;
    padding-bottom: 9px;
}

.hero_slider .prev {
    left: 22px;
}

.hero_slider .next {
    right: 22px;
}

.hero_slider .slider:hover .arrow,
.hero_slider .slider:focus-within .arrow {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.hero_slider .arrow:hover {
    background-color: var(--colorstyle1);
}

.hero_slider .dots {
    position: absolute;
    left: 50%;
    bottom: 20px;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 3;
}

.hero_slider .dots button {
    width: 25px;
    height: 8px;
    padding: 0;
    background-color: rgba(255, 255, 255, 0.55);
    cursor: pointer;
    transition: 0.25s;
    border: none;
}

.hero_slider .dots button.active {
    background-color: var(--colorstyle1);
    border-color: var(--colorstyle1);
    transform: scale(1.08);
}

.hero_slider .dots button:hover {
    background-color: var(--colorstyle1);
}







.advantages {
    padding: 80px 0 90px;
	/*
    background: var(--bg1);
	*/
    background: #ffffff;
	position:relative;
}

/*
.advantages::before {
    content: "";
    display: block;
    position: absolute;
    background: url(../img/master2.webp) no-repeat;
    width: 600px;
    height: 441px;
    left: -22%;
    top: -5px;
}
*/

.advantages_head {
    max-width: 760px;
    margin: 0 auto;
    margin-bottom: 42px;
    text-align: center;
}

.advantages .section_kicker {
    display: inline-block;
    margin-bottom: 10px;
    color: var(--colorstyle1);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.advantages_head h2 {
    margin: 0 0 14px;
    font-size: 42px;
    line-height: 1.08;
    font-weight: 700;
	/*
    color: var(--text2);
	*/
    color: var(--text);
}

.advantages_head p {
    margin: 0;
    max-width: 745px;
    font-size: 17px;
    line-height: 1.65;
	/*
    color: var(--text2);
	*/
    color: var(--text);
}

.advantages_head h2::after {
    content: "";
    display: block;
    width: 48px;
    height: 3px;
    margin: 14px auto 0;
    background-color: var(--colorstyle1);
}

.advantages .layout {
    flex-wrap: wrap;
    gap: 30px;
}

.advantages .col {
    flex: 0 0 calc(50% - 15px);
    max-width: calc(50% - 15px);
    display: flex;
}

.advantages .adv_card {
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 24px;
    width: 100%;
    min-height: 100%;
    padding: 30px;
	/*
    background-color: #ffffff;
	*/
    background-color: var(--bg5);
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    border-radius: 4px;
}

.advantages .adv_card::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 5px;
    height: 100%;
    background-color: var(--colorstyle1);
}

.advantages .adv_icon {
    position: relative;
    flex: 0 0 92px;
    width: 92px;
    height: 92px;
    margin-top: 2px;
}

.advantages .adv_icon::before,
.advantages .adv_icon::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

/* 1 */
.advantages .adv_diag .adv_icon::before {
    width: 34px;
    height: 34px;
    background-color: var(--colorstyle1);
}

.advantages .adv_diag .adv_icon::after {
    width: 54px;
    height: 54px;
    border: 2px solid rgba(227, 68, 0, 0.22);
}

/* 2 */
.advantages .adv_parts .adv_icon::before {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: var(--colorstyle1);
}

.advantages .adv_parts .adv_icon::after {
    width: 50px;
    height: 6px;
    top: auto;
    bottom: 14px;
    transform: translateX(-50%);
    background-color: rgba(227, 68, 0, 0.65);
}

/* 3 */
.advantages .adv_repair .adv_icon::before {
    width: 42px;
    height: 28px;
    background:
        linear-gradient(
            90deg,
            var(--colorstyle1) 0 18%,
            transparent 18% 32%,
            var(--colorstyle1) 32% 50%,
            transparent 50% 64%,
            var(--colorstyle1) 64% 82%,
            transparent 82% 100%
        );
}

.advantages .adv_repair .adv_icon::after {
    width: 52px;
    height: 52px;
    border: 2px solid rgba(255, 255, 255, 0.07);
}

/* 4 */
.advantages .adv_reputation .adv_icon::before {
    width: 30px;
    height: 30px;
    background-color: var(--colorstyle1);
    transform: translate(-50%, -50%) rotate(45deg);
}

.advantages .adv_reputation .adv_icon::after {
    width: 52px;
    height: 52px;
    border: 2px solid rgba(227, 68, 0, 0.20);
}

.advantages .adv_content {
    flex: 1 1 auto;
}

.advantages .adv_content h3 {
    margin: 0 0 14px;
    font-size: 28px;
    line-height: 1.12;
    font-weight: 700;
    color: var(--text);
	/*
	color: #ffffff;
	*/
}

.advantages .adv_content p {
    margin: 0;
    font-size: 17px;
    line-height: 1.7;
    color: rgba(0, 0, 0, 0.76);
	/*
	color: #ffffff;
	*/
}


.advantages .adv_icon::before,
.advantages .adv_icon::after {
    content: none;
}

.advantages .adv_icon {
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.advantages .adv_icon img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}









.brands {
    padding-top: 64px;
    padding-bottom: 70px;
    background-color: #ffffff;
    overflow: hidden;
}

.brands .layout {
    display: block;
}

.brands_head {
    text-align: center;
    margin-bottom: 34px;
}

.brands_head h2 {
    margin: 0;
    font-size: 38px;
    line-height: 1.1;
    font-weight: 700;
    color: var(--text);
}

.brands_head::after {
    content: "";
    display: block;
    width: 48px;
    height: 3px;
    margin: 14px auto 0;
    background-color: var(--colorstyle1);
}

.brands_slider {
    margin-left: -8px;
    margin-right: -8px;
}

.brands_item {
    display: flex !important;
    align-items: center;
    justify-content: center;
    height: 118px;
    padding-left: 8px;
    padding-right: 8px;
    outline: none;
}

.brands_item img {
    display: block;
    max-width: 100%;
    max-height: 52px;
    width: auto;
    height: auto;
    opacity: 0.9;
    transition: 0.3s;
}

.brands_item:hover img {
    opacity: 1;
}

.brands .slick-track {
    display: flex !important;
    align-items: center;
}

.brands .slick-slide {
    height: auto;
}

.brands .slick-slide > div {
    height: 100%;
}






.services {
    padding-top: 76px;
    padding-bottom: 84px;
    background-color: var(--bg1);
}

.services_head {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 38px;
}

.services_head h2 {
    margin: 0;
    font-size: 40px;
    line-height: 1.1;
    font-weight: 700;
    color: var(--text2);
    margin-bottom: 20px;
}

.services_head::after {
    content: "";
    display: block;
    width: 52px;
    height: 3px;
    margin: 14px auto 16px;
    background-color: var(--colorstyle1);
}

.services_head p {
    margin: 0;
    font-size: 17px;
    line-height: 1.6;
    color: var(--text2);
}

.services .layout {
    flex-wrap: wrap;
}

.services .col {
    flex: 0 0 calc(50% - 15px);
    max-width: calc(50% - 15px);
    display: flex;
}


.services .col.one {
    flex: 0 0 100%;
    max-width: 100%;
}


.services .service_card {
    display: flex;
    width: 100%;
    min-height: 216px;
    background-color: #ffffff;
    overflow: hidden;
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.04);
    transition: 0.3s;
}






.services .service_card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 34px rgba(0, 0, 0, 0.08);
}

.services .service_media {
    flex: 0 0 42%;
    max-width: 42%;
    min-height: 216px;
    overflow: hidden;
    background-color: var(--bg1);
}

.services .service_media img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.services .service_body {
    flex: 1 1 auto;
    padding: 26px 28px 24px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.services .service_body h3 {
    margin: 0 0 12px;
    font-size: 27px;
    line-height: 1.12;
    font-weight: 600;
    color: var(--text);
    text-transform: uppercase;
}

.services .service_body p {
    margin: 0 0 22px;
    font-size: 16px;
    line-height: 1.55;
    color: rgba(0, 0, 0, 0.78);
}

.services .service_btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0 28px;
    margin-top: auto;
    border: 1px solid var(--colorstyle1);
    background-color: var(--colorstyle1);
    color: var(--text2);
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 500;
    transition: 0.3s;
}

.services .service_btn:hover {
    background-color: transparent;
    color: var(--colorstyle1);
}


.services .col.one .service_card {
    min-height: 340px;
    align-items: stretch;
}

.services .col.one .service_media {
    flex: 0 0 36%;
    max-width: 36%;
    min-height: 0;
    align-self: stretch;
    background-color: #ffffff;
}

.services .col.one .service_media img {
    width: 100%;
    height: 340px;
    object-fit: cover;
    display: block;
}

.services .col.one .service_body {
    padding: 32px 34px 28px;
    justify-content: center;
}

.services .col.one .service_body h3 {
    font-size: 30px;
}

.services .col.one .service_body p {
    max-width: 760px;
    font-size: 17px;
    line-height: 1.65;
}

.services .col.one .service_btn {
    margin-top: 22px;
}










.masters {
    padding-top: 78px;
    padding-bottom: 86px;
    background-color: #ffffff;
	position:relative;
}

.masters::before {
    content: "";
    display: block;
    position: absolute;
    background: url(../img/master.webp) no-repeat;
    width: 416px;
    height: 592px;
    left: -8%;
    bottom: 0;
}

.masters .head_row {
    display: block;
    margin-bottom: 40px;
}

.masters .head_row .col {
    width: 100%;
    max-width: 100%;
}

.masters_head {
    max-width: 860px;
    margin: 0 auto;
    text-align: center;
}

.masters_head h2 {
    margin: 0;
    font-size: 40px;
    line-height: 1.1;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 20px;
}

.masters_head h2::after {
    content: "";
    display: block;
    width: 48px;
    height: 3px;
    margin: 14px auto 0;
    background-color: var(--colorstyle1);
}

/*
.masters_head::after {
    content: "";
    display: block;
    width: 54px;
    height: 3px;
    margin: 14px auto 16px;
    background-color: var(--colorstyle1);
}
*/

.masters_head p {
    margin: 0;
    font-size: 17px;
    line-height: 1.65;
    color: rgba(0, 0, 0, 0.72);
}

.masters .cards_row {
    max-width: 820px;
    margin: 0 auto;
    justify-content: center;
    flex-wrap: wrap;
}

.masters .cards_row .col {
    flex: 0 0 calc(50% - 15px);
    max-width: calc(50% - 15px);
    display: flex;
}

.masters .master_card {
    width: 100%;
    padding: 34px 28px 30px;
    text-align: center;
}

.masters .master_photo {
    position: relative;
    width: 164px;
    height: 164px;
    margin: 0 auto 22px;
    border-radius: 50%;
    background: linear-gradient(145deg, #d9dddf 0%, #c8cdd0 100%);
    overflow: hidden;
}

/*
.masters .master_photo::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 34px;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.78);
    transform: translateX(-50%);
}

.masters .master_photo::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 24px;
    width: 96px;
    height: 54px;
    border-radius: 54px 54px 24px 24px;
    background-color: rgba(255, 255, 255, 0.78);
    transform: translateX(-50%);
}
*/

.masters .master_card h3 {
    margin: 0 0 8px;
    font-size: 20px;
    line-height: 1.12;
    font-weight: 500;
    color: var(--text);
}

.masters .master_card p {
    margin: 0;
    font-size: 15px;
    line-height: 1.5;
    color: rgba(0, 0, 0, 0.7);
}

.masters .master_btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 70%;
    min-height: 56px;
    margin-top: 24px;
    padding: 0 20px;
    border: 1px solid var(--colorstyle1);
    border-radius: 2px;
    background-color: var(--colorstyle1);
    color: var(--text2);
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 600;
    transition: 0.3s;
    margin-left: 15%;
}

.masters .master_btn:hover {
    background-color: transparent;
    color: var(--colorstyle1);
}

.masters .section_kicker {
    display: inline-block;
    margin-bottom: 10px;
    color: var(--colorstyle1);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}










.reviews {
    padding-top: 82px;
    padding-bottom: 90px;
    background-color: var(--colorstyle1);
    overflow: hidden;
}

.reviews .layout {
    display: block;
}

.reviews_top {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 34px;
}

.reviews_head {
    max-width: 760px;
}

.reviews_head h2 {
    margin: 0 0 14px;
    font-size: 42px;
    line-height: 1.08;
    font-weight: 700;
    color: var(--text2);
}

.reviews_head p {
    margin: 0;
    font-size: 17px;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.88);
}

.reviews_nav {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 0 0 auto;
}

.reviews_arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 58px;
    height: 58px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background-color: #ffffff;
    color: var(--colorstyle1);
    cursor: pointer;
    transition: 0.3s;
}

.reviews_arrow:hover {
    background-color: var(--bg1);
    color: var(--text2);
}

.reviews_arrow.slick-disabled {
    opacity: 0.45;
    cursor: default;
    pointer-events: none;
}

.reviews_arrow svg {
    width: 20px;
    height: 20px;
    display: block;
}

.reviews_shell {
	/*
    width: calc(100% + 260px);
	*/
	width: calc(100% + 120px);
}

.reviews_slider {
    margin-left: -15px;
    margin-right: -15px;
}

.reviews .slick-list {
    overflow: visible;
}

.reviews .slick-track {
    display: flex !important;
}

.reviews .slick-slide {
    height: auto;
}

.reviews .slick-slide > div {
    height: 100%;
}

.reviews_item {
    width: 384px;
    padding: 0 12px;
    box-sizing: border-box;
    height: 100%;
}

.review_card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 360px;
    width: 100%;
    height: 100%;
    padding: 34px 34px 30px;
    background-color: #ffffff;
    box-shadow: 0 18px 34px rgba(0, 0, 0, 0.10);
}

.review_mark {
    margin-bottom: 16px;
    font-size: 64px;
    line-height: 0.8;
    font-weight: 700;
    color: rgba(227, 68, 0, 0.22);
}

.review_text {
    flex: 1 1 auto;
    max-height: 200px;
    padding-right: 8px;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: var(--colorstyle1) transparent;
}

.review_text::-webkit-scrollbar {
    width: 4px;
}

.review_text::-webkit-scrollbar-track {
    background: transparent;
}

.review_text::-webkit-scrollbar-thumb {
    background-color: var(--colorstyle1);
    border-radius: 999px;
}

.review_text::-webkit-scrollbar-button {
    display: none;
    width: 0;
    height: 0;
}

.review_text::-webkit-scrollbar-corner {
    background: transparent;
}

.review_text p {
    margin: 0;
    font-size: 17px;
    line-height: 1.75;
    color: rgba(0, 0, 0, 0.82);
}

.review_meta {
    margin-top: 24px;
    padding-top: 18px;
    border-top: 1px solid rgba(46, 53, 54, 0.10);
}

.review_meta h3 {
    margin: 0 0 6px;
    font-size: 24px;
    line-height: 1.15;
    font-weight: 700;
    color: var(--text);
}

.review_meta span {
    display: block;
    font-size: 15px;
    line-height: 1.45;
    color: rgba(0, 0, 0, 0.62);
}





.consult {
    padding: 84px 0 92px;
    background-color: var(--bg1);
    overflow: hidden;
	position: relative;
}

.consult .layout {
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.consult .consult_info {
    flex: 0 0 34%;
    max-width: 34%;
}

.consult_kicker {
    display: inline-block;
    margin-bottom: 14px;
    color: var(--colorstyle1);
    font-size: 14px;
    line-height: 1.2;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.consult_info h2 {
    margin: 0 0 18px;
    font-size: 44px;
    line-height: 1.06;
    font-weight: 700;
    color: var(--text2);
}

.consult_info p {
    margin: 0;
    font-size: 17px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.82);
}

.consult .consult_side {
    flex: 0 0 calc(66% - 40px);
    max-width: calc(66% - 40px);
    min-height: 0;
    padding: 0 280px 0 0;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    background: transparent;
    border: 0;
    overflow: visible;
}



.consult_form_wrap {
    position: relative;
    z-index: 2;
    width: min(100%, 430px);
}

.consult_form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.consult_form input {
    width: 100%;
    height: 64px;
    padding: 0 20px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 2px;
    background-color: #ffffff;
    color: var(--text);
    font-family: inherit;
    font-size: 16px;
    outline: none;
}

.consult_form input:focus {
    border-color: var(--colorstyle1);
}

.consult_form input::placeholder {
    color: rgba(0, 0, 0, 0.45);
}

.consult_submit {
    width: 100%;
    min-height: 60px;
    padding: 0 20px;
    border: 1px solid var(--colorstyle1);
    border-radius: 2px;
    background-color: var(--colorstyle1);
    color: var(--text2);
    font-family: inherit;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: 0.3s;
}

.consult_submit:hover:not(:disabled) {
    background-color: transparent;
    color: var(--colorstyle1);
}

.consult_submit:disabled {
    border-color: var(--bg2);
    background-color: var(--bg2);
    color: rgba(255, 255, 255, 0.55);
    cursor: not-allowed;
}

.consult_check {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-top: 4px;
    font-size: 13px;
    line-height: 1.45;
    color: rgba(255, 255, 255, 0.72);
}

.consult_check input {
    flex: 0 0 auto;
    width: 16px;
    height: 16px;
    margin: 2px 0 0;
    accent-color: var(--colorstyle1);
}

.consult_check span {
    display: block;
}

.consult_check a {
    color: var(--text2);
    text-decoration: underline;
}

.consult_visual {
    position: absolute;
    right: -35px;
    bottom: 0;
    width: 400px;
    z-index: 1;
    pointer-events: none;
}

.consult_visual img {
    display: block;
    width: 100%;
    height: auto;
}








.faq {
    padding: 84px 0 92px;
    background-color: #ffffff;
}

.faq_head {
    max-width: 760px;
    margin-bottom: 36px;
}

.faq_kicker {
    display: inline-block;
    margin-bottom: 10px;
    color: var(--colorstyle1);
    font-size: 14px;
    line-height: 1.2;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.faq_head h2 {
    margin: 0 0 12px;
    font-size: 42px;
    line-height: 1.08;
    font-weight: 700;
    color: var(--text);
}

.faq_head p {
    margin: 0;
    font-size: 17px;
    line-height: 1.65;
    color: rgba(0, 0, 0, 0.68);
}

.faq_layout {
    align-items: stretch;
}

.faq_main {
    flex: 0 0 calc(68% - 15px);
    max-width: calc(68% - 15px);
}

.faq_side {
    flex: 0 0 calc(32% - 15px);
    max-width: calc(32% - 15px);
    align-self: stretch;
}

.faq_list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.faq_item {
    border: 1px solid rgba(46, 53, 54, 0.12);
    border-radius: 8px;
    background-color: #ffffff;
    transition: 0.3s;
    overflow: hidden;
}

.faq_item.active {
    border-color: rgba(227, 68, 0, 0.24);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.04);
}

.faq_btn {
    position: relative;
    display: block;
    width: 100%;
    padding: 24px 84px 24px 24px;
    border: 0;
    background: transparent;
    color: var(--text);
    text-align: left;
    font-family: inherit;
    font-size: 20px;
    line-height: 1.35;
    font-weight: 600;
    cursor: pointer;
}

.faq_btn::before {
    content: "";
    position: absolute;
    right: 22px;
    top: 50%;
    width: 38px;
    height: 38px;
    margin-top: -19px;
    border-radius: 50%;
    background-color: var(--colorstyle1);
    transition: 0.3s;
}

.faq_btn::after {
    content: "";
    position: absolute;
    right: 38px;
    top: 50%;
    width: 8px;
    height: 8px;
    margin-top: -6px;
    border-top: 2px solid #ffffff;
    border-right: 2px solid #ffffff;
    transform: rotate(45deg);
    transform-origin: center;
    transition: transform 0.3s ease;
}

.faq_item.active .faq_btn::after {
    transform: rotate(-45deg);
	    right: 36px;
		    top: 52%;
}

.faq_answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
}

.faq_answer_inner {
    padding: 0 24px 22px;
}

.faq_answer_inner p {
    margin: 0;
    font-size: 16px;
    line-height: 1.7;
    color: rgba(0, 0, 0, 0.74);
}

.faq_help {
    position: sticky;
    top: 24px;
    padding: 28px 26px 30px;
    border-radius: 8px;
    background-color: var(--bg1);
    box-shadow: 0 16px 34px rgba(0, 0, 0, 0.10);
}

.faq_help_kicker {
    display: inline-block;
    margin-bottom: 10px;
    color: var(--colorstyle1);
    font-size: 13px;
    line-height: 1.2;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.faq_help h3 {
    margin: 0 0 12px;
    font-size: 28px;
    line-height: 1.15;
    font-weight: 700;
    color: var(--text2);
}

.faq_help p {
    margin: 0 0 22px;
    font-size: 15px;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.78);
}

.faq_help_btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 24px;
    border: 1px solid var(--colorstyle1);
    border-radius: 2px;
    background-color: var(--colorstyle1);
    color: var(--text2);
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

.faq_help_btn:hover {
    background-color: transparent;
    color: var(--colorstyle1);
}










body.modal-open {
    overflow: hidden;
}

.question_modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.25s ease, visibility 0.25s ease;
}

.question_modal.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.question_modal__overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.55);
}

.question_modal__dialog {
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 2;
    width: calc(100% - 32px);
    max-width: 760px;
    min-height: 426px;
    padding: 56px 54px 42px;
    background-color: #ffffff;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.18);
    transform: translate(-50%, -50%);
}

.question_modal__close {
    position: absolute;
    top: 18px;
    right: 18px;
    width: 32px;
    height: 32px;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
}

.question_modal__close::before,
.question_modal__close::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 18px;
    height: 2px;
    background-color: rgba(46, 53, 54, 0.35);
    transform-origin: center;
}

.question_modal__close::before {
    transform: translate(-50%, -50%) rotate(45deg);
}

.question_modal__close::after {
    transform: translate(-50%, -50%) rotate(-45deg);
}

.question_modal__dialog h3 {
	margin: 0 0 16px;
    text-align: center;
    font-size: 40px;
    line-height: 1.08;
    font-weight: 600;
    color: var(--text);
    margin-top: 25px;
    margin-bottom: 25px;
}

.question_modal__dialog p {
    max-width: 560px;
    margin: 0 auto 34px;
    text-align: center;
    font-size: 17px;
    line-height: 1.65;
    color: rgba(0, 0, 0, 0.62);
}

.question_modal__form {
    max-width: 560px;
    margin: 0 auto;
}

.question_modal__row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 260px;
    gap: 18px;
}

.question_modal__row input {
    width: 100%;
    height: 56px;
    padding: 0 18px;
    border: 1px solid rgba(46, 53, 54, 0.18);
    border-radius: 2px;
    background-color: #ffffff;
    color: var(--text);
    font-family: inherit;
    font-size: 16px;
    outline: none;
}

.question_modal__row input:focus {
    border-color: var(--colorstyle1);
}

.question_modal__row input::placeholder {
    color: rgba(0, 0, 0, 0.45);
}

.question_modal__submit {
    width: 100%;
    min-height: 56px;
    padding: 0 18px;
    border: 1px solid var(--colorstyle1);
    border-radius: 2px;
    background-color: var(--colorstyle1);
    color: var(--text2);
    font-family: inherit;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: 0.3s;
}

.question_modal__submit:hover:not(:disabled) {
    background-color: transparent;
    color: var(--colorstyle1);
}

.question_modal__submit:disabled {
    border-color: rgba(46, 53, 54, 0.18);
    background-color: var(--colorstyle1);
    color: rgb(255 255 255 / 48%);
    cursor: not-allowed;
}

.question_modal__check {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-top: 18px;
    font-size: 13px;
    line-height: 1.45;
    color: rgba(0, 0, 0, 0.64);
    justify-content: center;
}

.question_modal__check input {
    flex: 0 0 auto;
    width: 16px;
    height: 16px;
    margin: 2px 0 0;
    accent-color: var(--colorstyle1);
}

.question_modal__check a {
    color: var(--text);
    text-decoration: underline;
}









.site-footer {
    padding-top: 68px;
    background-color: var(--bg1);
    color: var(--text2);
	/*
    border-top: 4px solid var(--colorstyle1);
	*/
}

.site-footer a {
    color: var(--text2);
    text-decoration: none;
    transition: 0.3s;
}

.site-footer a:hover {
    color: var(--colorstyle1);
}

.site-footer .footer_top {
    align-items: flex-start;
    flex-wrap: wrap;
    padding-bottom: 42px;
    gap: 36px 30px;
}

.site-footer .footer_brand {
    flex: 0 0 calc(36% - 22.5px);
    max-width: calc(36% - 22.5px);
}

.site-footer .footer_nav,
.site-footer .footer_services,
.site-footer .footer_side {
    flex: 0 0 calc(21.333% - 22.5px);
    max-width: calc(21.333% - 22.5px);
}

.site-footer .footer_logo {
    display: inline-block;
    margin-bottom: 18px;
}

.site-footer .footer_logo img {
    display: block;
    filter: invert(1);
}

.site-footer .footer_desc {
    margin: 0 0 25px;
    font-size: 13px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.76);
}

.site-footer h3 {
    margin: 0 0 18px;
    font-size: 22px;
    line-height: 1.15;
    font-weight: 700;
    color: var(--text2);
}

.site-footer ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.site-footer .footer_nav ul,
.site-footer .footer_services ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.site-footer .footer_nav a,
.site-footer .footer_services a {
    font-size: 15px;
    line-height: 1.45;
    color: rgba(255, 255, 255, 0.82);
}

.site-footer .footer_contacts {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.site-footer .footer_contacts li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.site-footer .footer_contacts i {
    flex: 0 0 auto;
    margin-top: 3px;
    color: var(--colorstyle1);
    font-size: 16px;
    line-height: 1;
}

.site-footer .footer_contacts span,
.site-footer .footer_contacts .phones a {
    font-size: 15px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.82);
}

.site-footer .footer_contacts .phones {
    display: flex;
    flex-direction: column;
}

.site-footer .footer_contacts .schedule {
    display: flex;
    flex-direction: column;
}

.site-footer .footer_soc {
    display: flex;
    gap: 12px;
    margin-bottom: 18px;
}

.site-footer .footer_soc a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: var(--bg2);
    color: var(--colorstyle1);
    font-size: 20px;
}

.site-footer .footer_soc a:hover {
    background-color: var(--colorstyle1);
    color: var(--text2);
}

.site-footer .footer_note {
    margin: 0 0 20px;
    font-size: 15px;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.76);
}

.site-footer .footer_btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 20px;
    border: 1px solid var(--colorstyle1);
    border-radius: 2px;
    background-color: var(--colorstyle1);
    color: var(--text2);
    font-weight: 300;
    font-size: 14px;
    text-align: center;
    padding-top: 8px;
    padding-bottom: 10px;
}

.site-footer .footer_btn:hover {
    background-color: transparent;
    color: var(--colorstyle1);
}

.site-footer .footer_bottom {
    align-items: center;
    justify-content: space-between;
    padding: 18px 0 22px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.site-footer .footer_bottom .col:first-child {
    flex: 1 1 auto;
}

.site-footer .footer_bottom .col:last-child {
    flex: 0 0 auto;
}

.site-footer .footer_bottom p {
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.6);
}

.site-footer .footer_bottom a {
    font-size: 14px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.72);
    text-decoration: underline;
}

.site-footer .footer_nav a:hover,
.site-footer .footer_services a:hover,
.site-footer .footer_contacts a:hover,
.site-footer .footer_bottom a:hover {
	color:var(--colorstyle1);
}




.scroll_top {
    position: fixed;
    right: 18px;
    bottom: 18px;
    z-index: 999;
    width: 34px;
    height: 34px;
    padding: 0;
    border: 0;
    border-radius: 2px;
    background-color: rgba(46, 53, 54, 0.28);
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(8px);
    transition: opacity 0.25s ease, visibility 0.25s ease, transform 0.25s ease, background-color 0.25s ease;
}

.scroll_top::before {
    content: "";
    position: absolute;
    left: 47%;
    top: 48%;
    width: 10px;
    height: 10px;
    margin-left: -5px;
    margin-top: -2px;
    border-top: 2px solid #ffffff;
    border-left: 2px solid #ffffff;
    transform: rotate(45deg);
}

.scroll_top:hover {
    background-color: var(--colorstyle1);
}

.scroll_top.is-visible {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
}




.top_menu.is-fixed {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.12);
}

.top_menu-placeholder {
    display: none;
    width: 100%;
}

.top_menu-placeholder.is-active {
    display: block;
}

.site-header,
.hero_slider,
.advantages,
.brands,
.services,
.masters,
.reviews,
.consult,
.site-footer {
    overflow-x: clip;
}








.repair_steps {
    padding: 80px 0 90px;
    background-color: var(--bg1);
    overflow: hidden;
}

.repair_steps_head {
    max-width: 820px;
    margin: 0 auto 42px;
    text-align: center;
}

.repair_steps .section_kicker {
    display: inline-block;
    margin-bottom: 10px;
    color: var(--colorstyle1);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.repair_steps_head h2 {
    margin: 0 0 14px;
    font-size: 42px;
    line-height: 1.08;
    font-weight: 700;
    color: var(--text2);
}

.repair_steps_head h2::after {
    content: "";
    display: block;
    width: 48px;
    height: 3px;
    margin: 14px auto 0;
    background-color: var(--colorstyle1);
}

.repair_steps_head p {
    margin: 0 auto;
    max-width: 760px;
    font-size: 17px;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.78);
}




.repair_steps_layout {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
    align-items: stretch;
}

.repair_steps .col {
    min-width: 0;
    display: flex;
}

.repair_steps .step_card {
    position: relative;
    min-height: 255px;
    height: 100%;
    width: 100%;
    padding: 28px 24px;
    background-color: var(--bg2);
	/*
    border: 1px solid rgba(255, 255, 255, 0.06);
	*/
    border-radius: 2px;
    overflow: hidden;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 110px;
    align-items: center;
    gap: 5px;
}

/*
.repair_steps .step_card::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 5px;
    height: 100%;
    background-color: var(--colorstyle1);
}
*/

.repair_steps_num {
    position: absolute;
    top: 0;
    right: 0;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--colorstyle1);
    color: #ffffff;
    font-size: 22px;
    font-weight: 700;
    line-height: 1;
    border-radius: 0 4px 0 4px;
    z-index: 3;
}

.repair_steps .step_content {
    position: relative;
    z-index: 2;
    min-width: 0;
}

.repair_steps .step_content h3 {
    margin: 0 0 12px;
    font-size: 24px;
    line-height: 1.15;
    font-weight: 700;
    color: var(--text2);
}

.repair_steps .step_content p {
    margin: 0;
    font-size: 16px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.82);
}

.repair_steps .step_media {
    position: relative;
    z-index: 1;
    justify-self: end;
    align-self: end;
    width: 150px;
    max-width: 100%;
    pointer-events: none;
}

.repair_steps .step_media img {
    display: block;
    width: 100%;
    height: auto;
}

/* Небольшая индивидуальная подстройка размеров иллюстраций */
.repair_steps .step-1 .step_media {
    width: 148px;
}

.repair_steps .step-2 .step_media {
    width: 144px;
}

.repair_steps .step-3 .step_media {
    width: 150px;
}

.repair_steps .step-4 .step_media {
    width: 142px;
}

.repair_steps .step-5 .step_media {
    width: 146px;
}

.repair_steps .step-6 .step_media {
    width: 138px;
}









.site-footer .footer_contacts .footer-address-link span {
	transition:0.3s;
}

.site-footer .footer_contacts .footer-address-link:hover span {
	color: var(--colorstyle1);
}