body {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
    font-family: Poppins, sans-serif;
	font-optical-sizing:auto;
	overflow-wrap: anywhere; 
	word-break: break-word;
	margin-top:0;
}

.container{
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.container-fluid{
    padding: 0;
}

.scroll-hide {overflow: hidden; }
html {scroll-behavior: smooth;}

/*------------------------styles-------------------------*/

li{
    list-style: none;
    padding-left: 0;
}

ul{
    padding-left: 0;
    margin: 0;
    padding-left: 0;
}

a{
    text-decoration: none;
	text-transform: uppercase;
	color: #cd9b62;
	transition: color .15s ease;
}

a:hover{
	color:#C32828;
}

.content ul li a:hover { color:#C32828; }

ol{
    padding-left: 0;
}


/*----------------------fonts-------------------------*/

h1, h2, h3, h4{
	color: #272727;
	text-transform: uppercase;
	margin: 0;
}

h1{
    text-align: center;
    font-size: 52px;
    font-style: normal;
    font-weight: 900;
    line-height: 62px;
    letter-spacing: 2.19px;
}

h2{
    font-size: 55px;
    font-style: normal;
    font-weight: 900;
    line-height: 60px;
    letter-spacing: 1.8px;
    margin-bottom: 40px;
}

h3{
    font-size: 17px;
    font-style: normal;
    font-weight: 800;
    line-height: 27px;
    letter-spacing: 0.51px;
}

h3 span{
	display:block;
}

p{
    color: #5e5e5e;
    font-size: 13px;
    font-style: normal;
    font-weight: 500;
    line-height: 26px; 
    letter-spacing: 0.36px;
    text-transform: uppercase;
	margin:0;
}

p:not(:last-of-type) {
    margin-bottom:16px;
}

p:only-child {
    margin-bottom: 0;
}

/*----------------------menu---------------------------*/

.nav-icon {
    display: none;
    margin: 0;
    width: 30px;
}

.nav-icon:after,
.nav-icon:before,
.nav-icon div {
    background-color: rgb(141, 141, 141);
    border-radius: 3px;
    content: "";
    display: block;
    height: 2px;
    margin: 8px 0;
    transition: all 0.3s ease-in-out;
}

.nav-icon.closed:before {
    transform: translateY(4px) translateX(-6px) rotate(130deg);
    width: 18px;
}

.nav-icon.closed:after {
    transform: translateY(-4px) translateX(-6px) rotate(-130deg);
    width: 18px;
}

.nav-menu li{
    list-style: none;
}

.nav-menu li a {
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 1px;
    color: #E7E7E7;
    padding: 0;
    text-transform: uppercase;
}

.btn-book-online,
a.btn-head, .btn-content a{
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 1px;
    color: #ffffff;
    padding: 0;
    text-transform: uppercase;
    padding: 15px 25px;
    background-color: #C32828;
}

.nav-menu li a:hover{
    color: #979797;
}

.nav-menu {
    display: flex;
    gap: 20px;
    margin: 0;
    align-items: center;
}

.navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.header{ 
	position: sticky; 
	top:0; 
	z-index:1000; 
}

.header-nav-container{
    width: 100%;
    background-color: #0B0B0B;
    top: -150px;
    transition: top 1s;
    z-index: 10000;
}

.header-nav-container.fixed{
    position: fixed;
    width: 100%;
    background-color: #0B0B0B;
    top: 0;
}

/*---------------------btn---------------------*/

.btn-book-online{
	text-align:center;
  position: fixed;
  left: 0; right: 0; bottom: 0;
  transform: translateY(100%);          
  transition: transform .5s ease-in-out; 
  z-index: 777;
  background: #C32828;
  padding: 15px 0;
  display: none;                       
}
.btn-book-online.show{
  transform: translateY(0);              
}

/*---------------------hero-image-------------*/

.hero{ position:relative; }

.pic-hero img{
  width:100%; height:600px; object-fit:cover; display:block;
}

/* Обёртка-оверлей поверх картинки */
.general-hero-title-container{
  position:absolute; inset:0; z-index:2;
  display:flex; align-items:center; justify-content:center;
  text-align:center;
  pointer-events:none;           /* клики проходят сквозь фон */
}

/* Контент внутри: держим ширину как у .container */
.tittle-head{
  width:min(100%, 1200px);
  margin:0 auto; padding:0 15px;
  transform: translateY(var(--hero-shift, -4%));
}

.tittle-head h1{
  font-size:70px; 
	line-height:98px; 
	color:#E7E7E7; 
	margin-bottom:25px;
    word-break: normal;
    overflow-wrap: normal;
} 

.tittle-head h1 span{
    display: inline-block;
    padding: 3px 19px;
    /* border: 1px solid #e8e8e8; */
    border-radius: 7px;
    font-weight: 900;
    background-color: #7e1111;
}

.tittle-head p{
  color:#E7E7E7; 
	font-weight:600; 
	letter-spacing:2px;
}
      

/*----------------------why-us----------------------*/

.item-privileges {
    padding: 40px;
    background: #fbf9f6;
	max-width:100%;
    display: flex;
    gap: 25px;
}

.description-privileges p{
    color: #7D7D7D;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 26px;
    letter-spacing: 0.36px;
    text-transform: uppercase;
    margin-top: 10px;
}


.general-privileges {
    display: grid;
	grid-template-columns: repeat(3, 1fr);
    position: relative;
    gap: 20px;
    max-width: 100%;
    top: -90px;
}


/*-----------------welcome--------------------------*/

.general-welcome-container{
    display: grid;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    grid-template-columns: 1fr 1fr;

}

.welcome{
    padding-bottom: 90px;
}

.btn-content{
    padding-top: 60px;
}

.pic-container {
    display: flex;
    max-width: 100%;
    overflow: hidden;
    justify-content: center;
    align-items: center;

}
  

/*-------------------why-us-------------------*/

.why-us{ 
  position: relative;
  padding:150px 0;
  width:100%;
  background:     linear-gradient(rgba(0,0,0,.35), rgba(0,0,0,.35)),
    url('../image/bg_why_us.webp') center top / cover no-repeat;
}


.number span{
    color: #E5CDB1;
    font-size: 57px;
    font-style: normal;
    font-weight: 800;
    line-height: 1;
    letter-spacing: 1.92px;
    text-transform: uppercase;
	white-space: nowrap;
	word-break: normal;
	overflow-wrap: normal;
}


.item-us{
    display: flex;
    gap: 25px;
}

.text-why-us h3, .text-why-us p{
    color: #ffffff;
}

.text-why-us h3{
    margin-bottom: 15px;
}

.description-why-us{
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.general-us-container{
    display: grid;
    gap: 50px;
    grid-template-columns: 1fr 1fr;
    max-width: 100%;
}


.container-pic-why-us{
    display: flex;
    position: relative;
}

.container-pic-why-us picture {
    display: flex;
    position: absolute;
    top: -80px;
    right: 0;
    height: 760px;
    transform: translateX(-30%);
}

/*------------------------services----------------------*/

.services{
    background-color: #CD9B62;
    padding: 190px 0 90px 0;
}

.description-services h2, .description-services p{
    color: #ffffff;
}

.general-services-container{
    display: grid;
    gap: 90px;
    align-items: center;
    grid-template-columns: repeat(auto-fill, minmax(455px, 1fr));
	max-width:100%;
}

.service-block{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    max-width: 100%;
    padding: 40px 15px;
    background-color: #ffffff;
	border-radius:7px;
}

.service-block picture, .service-block img{
    width:130px; 
	object-fit:contain; 
	display:block;
}


.services-item h3 {
    margin-top: 30px;
    text-align: center;
}

.services-item{
	display:grid;
	gap:30px;
	grid-template-columns: repeat(2, 1fr);
	max-width:100%;
}

/*----------------we also repair------------------*/

.we-also-repair{
    padding: 70px 0 90px 0;
    background-color: #FCFAF8;
/* 	background-color:#f9f6f3; */
}

.general-secondary-services-container{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 100%;
}

.secondary-item-services h3 span{
    display: block;
}

.secondary-item-services h3{
    line-height: 28px;
}

.secondary-item-services{
	border-radius:7px;
    padding: 25px;
    display: flex;
    align-items: center;
    gap: 30px;
    box-shadow: 0 8px 28px rgba(0,0,0,.09);
    background: rgb(255, 255, 255);
}

.secondary-item-services picture, .secondary-item-services img {
    width: 95px;
    height: 85px;
    display: block;
    object-fit: cover;
}


/*FAQ*/


.faq-cont {
    align-items: center;
    padding: 90px 0;
    display: grid;
    grid-gap: 90px;
    grid-template-columns: 1fr 1fr;
	max-width: 100%;
}


.faq-content {
    margin: 0 auto;
  }
  
  .faq-question {
    padding: 30px 0;
    border-bottom: 1px dotted #ccc;
  }
  
  .panel-title {
    font-size: 16px;
    text-transform: uppercase;
    font-weight: 800;
    letter-spacing: 0.7px;
    max-width: 100% !important;
    position: relative;
    margin: 0;
    padding: 0 0 0 54px;
    display: block;
    cursor: pointer;
	line-height: 25px;
  }
  
  .panel-content {
    font-size: 12px;
    font-weight: 400;
    color: #7D7D7D;
    line-height: 28px;
    text-transform: uppercase;
    padding: 0px 14px;
    margin: 0 40px;
    height: 0;
    overflow: hidden;
    position: relative;
    opacity: 0;
    -webkit-transition: .4s ease;
    -moz-transition: .4s ease;
    -o-transition: .4s ease;
    transition: .4s ease;
  }
  
  .panel:checked ~ .panel-content{
    height: auto;
    opacity: 1;
    padding: 14px;
  }
  
  .plus {
    position: absolute;
    color: #AEAEAE;
    font-weight: 300;
    margin-left: 20px;
    margin-top: -4px;
    z-index: 5;
    font-size: 34px;
    line-height: 100%;
    -webkit-user-select: none;    
    -moz-user-select: none;
    -ms-user-select: none;
    -o-user-select: none;
    user-select: none;
    -webkit-transition: .2s ease;
    -moz-transition: .2s ease;
    -o-transition: .2s ease;
    transition: .2s ease;
  }
  
  .panel:checked ~ .plus {
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
  }
  
  .panel {
    display: none;
}

/*--------------------major issues----------------*/

.miele-appliance-major-issues{
	padding: 90px 0;
	background-color:#f9f6f3;
}

.miele-appliance-major-issues h3{
	margin-bottom:10px;
}

.miele-appliance-major-issues p{
	margin-bottom: 25px;
}

/*---------------------customer-------------------*/

.customer{
    padding: 60px 0;
    background: #293942;
}


.general-customer{
    display: grid;
    gap: 80px;
    justify-content: center;
    align-items: center;
    grid-template-columns: 1fr 1fr;
}

.blog-thumb {
    width: 100%;
    overflow: hidden;
    box-sizing: inherit;
}

.pic-customer img{
    display: block;
    width: 512px;
    height: 512px;
    object-fit: cover;
}

.general-customer h2{
    color: #CD9B62;
    margin-bottom: 25px;
    font-weight: 900;
    line-height: 74px;
    letter-spacing: 1.98px;
    text-transform: uppercase;
}

.tittle-customer span{
    color: #FFF;
    font-size: 26px;
    font-style: normal;
    font-weight: 700;
    line-height: 39px;
    letter-spacing: 2.6px;
    text-transform: uppercase;
}

/*----------------customer-reviews---------------*/

.testimonials{
	padding: 80px 0 90px 0;
}

.testimonials h2{
	margin-bottom: 40px;
	text-align:center;
	color:#272727;
}

.t-grid{
	display:grid;
	grid-template-columns:repeat(3, 1fr);
	gap:20px;
	max-width:100%;
		
}

.t-card{
	margin:0;
	padding:30px;
	border-radius:7px;
	background:#fff;
    border:1px solid #eee;
	box-shadow:0 6px 18px rgba(0,0,0,.06);
}

.t-head{
	display:flex;
	align-items:center;
	gap:15px;
	margin-bottom: 21px;
}

.t-avatar{
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, #C32828, #cd9b62);
    color: #fff;
    font-weight: 800;
    font-size: 22px;
}

.t-stars{
	font-size: 20px;
    color: #cd9b62;
}

.t-card blockquote {
    margin: 16px 0 0;
}

.t-card figcaption{
	font-size:14px;
	line-height: 22px;
    text-transform: uppercase;
	color:#272727;
}

/*--------------------support24---------------*/

.support24{
    padding: 90px 0;
    background: #43312C;
}

.support-tittle span{
    color: #FFF;
    font-size: 26px;
    font-style: normal;
    font-weight: 700;
    line-height: 39px;
    letter-spacing: 2.6px;
    text-transform: uppercase;
}

.support-tittle h2{
    color: #FFF;
}

.support-descr p{
    color: #ffffff;
}

.general-support{
    display: grid;
    gap: 50px;
    grid-template-columns: 1fr 1fr;
}

/*----------------------------------Blog--------------------------------*/

.service_area-posts,
.blog-posts{
    padding: 40px 0 80px 0;
}

.title-blog{
    text-align: center;
	margin-bottom:40px;
}

.title-blog h2{
	margin-bottom:0;
}

.title-blog p{
	margin-top:22px;
}

.title-blog p a{
	color:#CD9B62;
	font-weight:800;
}

.general-services-area-container,
.general-blog-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px 20px;
	max-width: 100%;
}

.latest-posts{
	padding: 80px 0;
}


/*----------------------footer--------------------------------*/

.footer{
    background: #293942;
    padding: 40px 0;
}

.block-ftr {
    display: flex;
    justify-content: center;
    margin-bottom: 27px;
    height: 43px;
}


.copiright p {
    text-align: center;
    color: #AEAEAE;
    font-weight: 300;
    font-size: 11px;
    line-height: 23px;
	margin-bottom:5px;
}

.block-nav-footer ul{
	display: flex;
	gap: 25px;
	justify-content: center;
	margin-bottom: 35px;
}

.block-nav-footer ul li a{
	font-size: 12px;
    font-weight: 400;
    letter-spacing: 1px;
    color: #E7E7E7;
    text-align: center;
}



/*----------------------About us-------------------*/


.about {
    position: relative;
    width: 100%;
    display: block;
    object-fit: cover; 
}
  
.pic-about picture, .pic-about img {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 300px;
    display: block;
    object-fit: cover; 
}

  
.tittle-head-about{
    position: absolute;
    top: 120px; 
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50%;
    z-index: 1;
    text-align: center; 
}

.tittle-head-about h1{
    color: #ffffff;
}

/*----------------------Content-page-pagination----------------*/

	.navigation.pagination {
		margin-top: 40px;
		text-align: center;
		display:flex;
		justify-content:center;
		align-items:center;
	}

	.navigation.pagination .nav-links {
		display: inline-flex;
		align-items: center;
		gap: 7px;
	}

	.navigation.pagination .page-numbers {
		color: #5e5e5e;
		font-size: 14px;
		font-weight: 600;
		text-decoration: none;
		display: inline-flex;
		align-items: center;
		justify-content: center;
		min-width: 10px;
		height: 31px;
		padding: 0px 12px;
		border-radius: 3px;
	}

	.navigation.pagination .page-numbers.current {
		background-color: #43312c;
		color: #fff;
	}

	.navigation.pagination .page-numbers.dots {
		border: none;
		background: transparent;
		color: #999;
		min-width: auto;
		height: auto;
		padding: 0;
	}

	.navigation.pagination .page-numbers.prev,
	.navigation.pagination .page-numbers.next {
		padding: 0 16px;
	}

/*-----------------------bredcambbs----------------------*/

	.breadcrumb-general {
		padding: 23px 0 15px 0;
		font-size: 13px;
		text-transform: uppercase;
		border-bottom: 1px solid #e5e5e5;
	}

	.breadcrumb {
		display: flex;
		align-items: center;
		line-height: 25px;
	}

	.breadcrumb span a {
		color: #cd9b62;
		align-items: center;
	}

	.breadcrumb > span > span:first-child > a::before {
		content: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='14' height='14' fill='%23cd9b62' viewBox='0 0 16 16'><path d='M8 .5l6.5 6v9.5h-4v-5h-5v5h-4V6.5L8 .5z'/></svg>");
		display: inline-block;
		margin-right: 6px;
	}
	
	.breadcrumb_last{
		color:#272727;
	}
	
	.breadcrumb span + span::before {
		content: "⟶";
		color: #272727;
		margin: 0 12px 0 8px;
		font-size: 14px;
		font-weight: 600;
		line-height: 1;
	}

/*-----------------------Content-page-block-------------------*/

	.content-item img {
		width: 100%;
		height: 270px;
		object-fit: cover;
		display:block;
		overflow: hidden;
    	box-sizing: inherit;
	}
	
	.item-services{
		margin:22px 0 7px 0;
	}
	
	h3.item-services a{
		color:#cd9b62;
		line-height: 27px;
	}


	.content-item{
	  text-align: center;
	  max-width: 100%;
	  padding: 10px 10px 27px 10px;
	  display: flex;
	  flex-direction: column;
	  align-items: center;
	  box-shadow: 0 8px 28px rgba(0,0,0,.09);
	  background: rgb(255, 255, 255);
	  border-radius:7px;
	  transition: box-shadow .2s ease;
	}

	.content-item:hover,
	.content-item:focus-visible{
	  box-shadow: 0 14px 38px rgba(0,0,0,.14);
	}

/*----------------services-page----------------*/

.services-page .page-services-container{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:35px 20px;
  max-width:100%;
}
.services-page .content-item picture,
.services-page .content-item img{
  height:190px;
  width:100%;
  object-fit:cover;
  display:block;
}


/*--------------------content-blog-----------------*/
	.content-item picture,
	.content-item img {
		width: 100%;
		height: 270px;
		object-fit: cover;
		display:block;
		overflow: hidden;
    	box-sizing: inherit;
	}

	p.block-date{
		font-size: 12px;
    	margin-bottom: 8px;
		color:#a6a6a6;
	}

	
	h3.item-blog{ 
		transition: color .2s ease; 
	}

	.content-item:hover h3.item-blog{
	  color: #C32828;
	}
	
	h3.item-blog{
		color:#cd9b62;
		line-height: 27px;
	}

	.content-summary{
		margin:25px 20px 0px 20px;
	}
	
	.content-summary h3{
		margin-bottom: 7px;
	}

/*-----------------Error-codes-subcategory---------------------*/

.error-codes-page,
.error-codes-subcategory {
    padding: 40px 0 80px 0;
}

.category-description {
    font-size: 13px;
    color: #6c757d;
    line-height: 1.6;
    margin: 0 auto 20px;
}

.category-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    color: #495057;
    font-weight: 500;
}

.error-count {
    background: #c8102e;
    color: white;
    padding: 8px 16px;
    border-radius: 15px;
    font-size: 0.9em;
}

/* Поиск */
.error-search-wrapper {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 12px;
    margin-bottom: 40px;
}

.error-search-form {
    display: flex;
    align-items: center;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.search-group {
    display: flex;
    gap: 10px;
    align-items: center;
}

.search-group input {
    padding: 12px 16px;
    border: 2px solid #dee2e6;
    border-radius: 8px;
    font-size: 16px;
    width: 300px;
    transition: border-color 0.3s;
}

.search-group input:focus {
    outline: none;
    border-color: #c8102e;
}

.search-group button {
    background: #c8102e;
    color: white;
    padding: 12px 20px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.search-group button:hover {
    background: #a00e26;
}

.clear-search {
    color: #6c757d;
    text-decoration: none;
    font-size: 0.9em;
    padding: 8px 16px;
    border: 1px solid #dee2e6;
    border-radius: 6px;
    background: white;
    transition: all 0.3s;
}

.clear-search:hover {
    color: #495057;
    border-color: #adb5bd;
    text-decoration: none;
}

.search-results-info {
    text-align: center;
    margin-top: 15px;
    color: #495057;
    font-size: 0.95em;
}

/* Сетка карточек */
.error-codes-grid {
	margin-top: 45px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px 20px;
    margin-bottom: 50px;
}

.error-code-card{
	display:flex;
	flex-direction:column;
	height:100%;
	border: 2px solid #ffffff;
	background:#fff;border-radius:7px;overflow:hidden;
	box-shadow:0 8px 28px rgba(0,0,0,.09);
	transition:box-shadow .2s ease;
	cursor:pointer;
}

.error-code-card:is(:hover, :focus-visible){
  box-shadow:0 14px 38px rgba(0,0,0,.14);
}

.error-code-content h3 a{ color:#272727; }
.view-solution{ color:#cd9b62; 
	font-weight:700; 
	font-size:14px; 
	transition:color .2s ease; }


.error-code-card:is(:hover, :focus-visible) .view-solution{
  color:#C32828;
}


.error-code-card:is(:hover, :focus-visible) 
.error-code-content h3 a{
  color:#272727;
}

	
.error-code-header {
    display: flex;
    justify-content: space-between;
	background: #f9f6f2;
    align-items: center;
    padding: 15px 25px;
    border-bottom: 1px solid #e9ecef;
}

.error-code-badge {
    background: #912e2e;
    color: white;
    padding: 8px 4px;
    border-radius: 3px;
    font-weight: bold;
    font-size: 17px;
}

.error-severity {
    padding: 6px 12px;
    border-radius: 12px;
    font-size: 0.8em;
    font-weight: 500;
    text-transform: uppercase;
}

.severity-info { background: #d1ecf1; color: #0c5460; }
.severity-warning { background: #fff3cd; color: #856404; }
.severity-error { background: #f8d7da; color: #721c24; }
.severity-critical { background: #f5c6cb; color: #491217; }

.error-code-content {
    padding: 20px 25px;
	flex:1 1 auto;
}

.error-code-content h3 {
    margin-bottom: 12px;
}


.error-excerpt {
    margin-bottom: 15px;
}

.error-meta {
    font-size: 0.9em;
    color: #495057;
}

.repair-time {
    background: #e9ecef;
    padding: 4px 8px;
    border-radius: 4px;
}

.error-code-footer {
    padding: 15px 25px;
    background: #f9f6f2;
    text-align: right;
	margin-top:auto;
}

.view-solution {
    color: #cd9b62;
    font-weight: 600;
    font-size: 13px;
    transition: color 0.3s;
}

.no-results {
    text-align: center;
    padding: 60px 20px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.no-results h3 {
    color: #2c3e50;
    margin-bottom: 15px;
}

.no-results p {
    color: #6c757d;
    font-size: 1.1em;
}

/* Мобильная адаптация */
@media (max-width: 768px) {
    .category-stats {
        flex-direction: column;
        gap: 10px;
    }
    
    .error-search-form {
        flex-direction: column;
        align-items: stretch;
    }
    
    .search-group {
        flex-direction: column;
    }
    
    .search-group input {
        width: 100%;
    }
    
    .error-codes-grid {
        grid-template-columns: 1fr;
    }
}



/*-----------------------Content Page--------------------------*/

	.category-title{
		margin-bottom: 40px;
		text-align:center;
	}

	.category-title h1{
		font-size: 52px;
		line-height: 62px;
		margin-bottom: 15px;
	}


.content picture, .content img{
    align-items: center;
    justify-content: center;
    width: 100%;
    overflow: hidden;
    display: block;
    height: 350px;
    object-fit: cover;
    
}

.content{
     padding: 40px 0 80px 0;
}

.content h1{
    text-align: left;
    font-size: 52px;
    line-height: 62px;
	margin-bottom: 18px;
}

.content h2 {
    font-size: 39px;
    margin: 32px 0 12px 0;
    line-height: 50px;
}

.content h3 a,
.content h3{
	margin: 23px 0 5px;
}

.content p{
    color: #414141;
}


.content table{
    width: 100%;
    border-collapse: collapse;
    margin-top: 40px;
}
  
.content table td,
.content table th {
    padding: 18px 20px;
    border: 1px solid #efecea;
    font-size: 13px;
    text-transform: uppercase;
	color: #414141;
	line-height: 23px;
}
  
.content table th {
    background-color: #43312C;
    color: #ffffff;
}
  
.content table tbody tr:nth-child(odd){ 
	background-color: #f9f6f3; 
}

/*--------------table---------------*/
@media 
only screen and (max-width: 760px),
(min-device-width: 768px) and (max-device-width: 1024px)  {
	
	.content table,
	.content table td,
	.content table th {
	  border: 0 !important;
	}

	.content table td {
	  border-bottom: 0 !important;
	}
	
	.content table td:nth-child(1){
		padding-bottom: 5px;
	}
	
	.content table td:nth-child(2){
		padding-top: 5px;
	}

	table { 
	  	width: 100%; 
	}

    .wp-block-table td:nth-child(1){
        padding-bottom: 5px;
    }

    .wp-block-table td:nth-child(2){
        padding-top: 5px;
    }

	table, thead, tbody, th, td, tr { 
		display: block; 
	}
	
	thead tr { 
		position: absolute;
		top: -9999px;
		left: -9999px;
	}
	
	
	td { 
		border: none;
		border-bottom: 1px solid #e1e1e1; 
		position: relative;
		padding-left: 50%; 
	}


	td:before { 
		position: absolute;
		top: 20px;
		left: 15px;
		width: 45%; 
		padding-right: 10px; 
		white-space: nowrap;
		content: attr(data-column);
		color: #000;
		font-weight: bold;
	}

}


/*------------------------TableEnd---------------------*/

.content ul li:first-child::before { 
	top: 2px; 
}

.content p:nth-child(1){
    margin-top: 0;
}

.content ul{
	margin: 23px 0;
}

.content ol {
    background-color: #f7f3ee;
    padding: 25px 30px;
	margin: 25px 0 27px 0;
}

.content ol li{
	color: #272727;
    font-size: 13px;
    font-weight: 500;
    line-height: 28px;
    letter-spacing: 0.36px;
    text-transform: uppercase;
}

.content ol li:not(:last-child) {
    margin-bottom: 12px;
}

.content ul li{
	position: relative;
    border-bottom: 1px dashed rgb(221, 221, 221);
    padding: 12px 0; 
}
.content ul li::before{
	content: "›";
    position: absolute;
    left: 0;
    top: 14px;
    transform: none;
    color: #cd9b62;
    font-size: 22px;
    line-height: 1;
	font-weight: 600;
}

.content ul li:first-child{ padding-top: 0; }
.content ul li:last-child{ border-bottom: none; }

.content ul li:first-child {
  padding-top: 0;
}

.content ul li a:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.content ul li{
	font-size: 13px;
    font-weight: 500;
	text-transform: uppercase;
	line-height: 26px;
}

.content ul li a{
	padding-left: 16px;
    color: #CD9B62;
}

.content ul li::before{
  content: none;
}

.content ul li:has(a)::before{
  content: "›";
  position: absolute;
  left: 0;
  top: 14px;
  transform: none;
  color: #cd9b62;
  font-size: 22px;
  line-height: 1;
  font-weight: 600;
}

.content ul li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}


/*-------------------------Contacts Page---------------------------*/

.contact-head{
    padding: 60px 0 30px 0;
}
.contact-head h1{
    line-height: 1;
    margin-bottom: 30px;
}

.contact-head picture{
    align-items: center;
    justify-content: center;
    width: 100%;
    overflow: hidden;
    box-sizing: inherit;
    display: flex;
    height: 390px;
    object-fit: cover;
    
}

.item-contact{
    background-color: #f8eee1;
    padding: 25px 30px;
    width: 300px;
}

.tittle-info{
    display: flex;
    gap: 15px;
    align-items: center;
}

.descr-contact-ifo p{
    line-height: 25px;
    margin-top: 10px;
}

.general-contact-container{
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    max-inline-size: 1200px;
    justify-content: center;
    width: 100%;
}

.descr-contact-ifo ul li{
    color: #5e5e5e;
    font-size: 13px;
    font-style: normal;
    font-weight: 600;
    line-height: 28px;
    letter-spacing: 0.36px;
    text-transform: uppercase;
    margin-bottom: 0;
}

.descr-contact-ifo ul{
    margin-top: 10px;
}

.descr-contact-ifo ul li a{
    color: #C32828;
}

.schedule{
    padding: 40px 0 60px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
}
.schedule h3{
    margin-bottom: 12px;
}

a.btn-schedule{
    padding: 15px 35px;
    background-color: #C32828;
    color:#ffffff;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.9px;
    line-height: 1;
}

.schedule h3{
    font-size: 30px;
}

.schedule p{
    line-height: 25px;
    padding-bottom: 20px;
}

/*--------------------------ERROR CODES----------------------*/

/* Стили для главной страницы с подкатегориями */
.quick-search {
    max-width: 500px;
    margin: 40px auto;
    display: flex;
    gap: 10px;
}

.quick-search input[type="text"] {
    flex: 1;
    padding: 16px 15px;
    border: 1px solid #dbdbdb;
    border-radius: 8px;
    font-size: 13px;
    text-transform: uppercase;
    width: 349px;
}

.quick-search button {
    font-size: 13px;
    text-transform: uppercase;
    background: #523131;
    color: white;
    padding: 17px 30px;
    border: none;
    border-radius: 3px;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
}

.appliances-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin: 55px 0 80px 0;
}

.appliance-card {
    background: white;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0px 0px 57px 0px rgba(0, 0, 0, 0.09);
    transition: all 0.3s ease;
    text-decoration: none;
    color: inherit;
    display: block;
}

.appliance-card:hover {
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    text-decoration: none;
    color: inherit;
}

.appliance-image {
    height: 80px;
    background: linear-gradient(135deg, rgba(255,255,255,.03), rgba(0,0,0,.03)), #a11d1d;
    display: flex;
    align-items: center;
    justify-content: center;
}

.appliance-icon {
    font-size: 4em;
    filter: grayscale(100%) brightness(0) invert(1);
}

.appliance-info {
    padding: 35px 25px;
    text-align: center;
}

.appliance-info h3 {
    color: #272727;
    font-weight: 700;
	margin-bottom: 8px;
}

.appliance-description {
    color: #5e5e5e;
    line-height: 26px;
}

.error-count {
    font-size: 14px;
    background: #f9f5f2;
    padding: 9px 20px;
    border-radius: 5px;
    margin: 20px 0 27px 0;
    display: inline-block;
}

.error-count .count {
    font-size: 14px;
    font-weight: 800;
    color: #C32828;
}

.error-count .label {
    color: #495057;
    margin-left: 5px;
}

.view-button {
    color: #cd9b62;
    font-weight: 600;
    transition: color 0.3s;
	font-size: 13px;
	font-weight: 600;
}

.appliance-card:hover .view-button {
    color: #a00e26;
}

.popular-errors {
    margin-top: 60px;
    padding: 40px;
    background: #f8f9fa;
    border-radius: 15px;
}

.popular-errors h2 {
    text-align: center;
    margin-bottom: 30px;
    color: #2c3e50;
}

.popular-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.popular-item {
    display: flex;
    align-items: center;
    padding: 20px;
    background: white;
    border-radius: 10px;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s;
}

.popular-item:hover {
    background: #fff;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    text-decoration: none;
    color: inherit;
}

.error-code-badge {
    background: #a9753b;
    color: white;
    padding: 10px 15px;
    border-radius: 8px;
    font-weight: bold;
    margin-right: 15px;
    min-width: 60px;
    text-align: center;
}

.error-info h4 {
    margin-bottom: 5px;
    color: #2c3e50;
}

.error-info p {
    color: #6c757d;
    font-size: 0.9em;
    margin: 0;
}

/* Стили для списка постов в подкатегориях */
.error-codes-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 25px;
    margin: 30px 0;
}

/* Мобильная адаптация */
@media (max-width: 768px) {
    .appliances-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .appliance-image {
        height: 150px;
    }
    
    .appliance-icon {
        font-size: 3em;
    }
    
    .quick-search {
        flex-direction: column;
    }
    
    .popular-list {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .appliances-grid {
        grid-template-columns: 1fr;
    }
}


/*-------------------------ABOUT US PAGE-------------------*/

.about-head{
    padding: 40px 0 80px 0;
}
.about-head h1{
    margin-bottom: 30px;
}

.about-head picture, .about-head img {
    width: 100%;
    overflow: hidden;
    box-sizing: inherit;
    display: block;
    height: 350px;
    object-fit: cover;
	margin-bottom: 35px;
}

.numbers{
    padding: 120px 0;
    background: url(../image/bg_numbers.jpg) no-repeat center top / cover;
}

.item-number{
    color: #ffffff;
    width: 276px;
}

.item-number span{
    font-size: 48px;
    font-weight: 800;
    line-height: 1;
}
.item-number p{
    font-size: 15px;
    text-transform: uppercase;
    font-weight: 800;
    line-height: 1;
    color: #ffffff;
    letter-spacing: 0.7px;
    margin-top: 5px;
}

.general-block-number{
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    width: 100%;
    max-inline-size: 1200px;
}

.general-parts h2, .description-certified h2{
    margin-bottom: 30px;
}

.description-parts p:not(:last-child) {
    margin-bottom: 25px;
}

.general-parts, .general-certified{
    display: grid;
    gap: 50px;
    grid-template-columns: 1fr 1fr;
    justify-content: center;
    align-items: center;
}

.parts{
    padding: 80px 0;
}

.pic-parts, .pic-certified{
    display: flex;
    max-width: 100%;
    overflow: hidden;
    justify-content: center;
    align-items: center;

}

.certified{
    padding: 80px 0;
    background-color: #CD9B62;
}

.description-certified{
    color: #ffffff;
}

.description-certified h2, .description-certified p{
    color: #ffffff;
}

.description-certified p:not(:last-child) {
    margin-bottom: 25px;
}

.text-support-block{
    display: flex;
    flex-direction: column;
    text-align: center;
}

.text-support-block h2{
    margin-bottom: 30px;
}

.text-support-block p:not(:last-child) {
    margin-bottom: 25px;
}

.support-about{
    padding: 80px 0;
}

    
.btn-fixed {
    display: none !important;
    position: fixed;
    bottom: 0;
    z-index: 90; 
    transition: opacity 0.5s;
    opacity: 0;
    left: 0;
    right: 0;
    width: 100% !important;
    border-radius: 0 !important;
    text-align: center !important;
    padding: 17px 0 17px 0 !important;
}

/*-------------------------media----------------------------------*/
    
@media screen and (max-device-width: 768px) and (min-device-width: 360px) {
    .header.fixed {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 1000;
        background-color: #FFF;
    }

    .footer {
        padding: 45px 0;
		margin-bottom: 46px;
    }

    .btn-fixed {
        display: block !important;
        opacity: 0;
        transition: opacity 0.5s;
    }
	
	.latest-posts {
		padding: 60px 0;
	}
	
	.support24{
		padding: 60px 0 80px 0;
	}
	
	.content-item picture, .content-item img {
		height: 200px;
	}
	
	.welcome {
		margin-top: -30px;
	}
	
    .tittle-head h1 {
        font-size: 45px;
        line-height: 66px;
        margin-bottom: 16px;
        letter-spacing: 5px;
    }
	.testimonials {
		padding: 60px 0 70px 0;
	}
	.we-also-repair {
		padding: 60px 0 80px 0;
	}
	.appliance-image {
        height: 80px;
    }
	.appliance-icon {
        font-size: 65px;
    }
	
	.quick-search button {
		width: 100%;
        margin-top: 7px;
	}
	
	.quick-search {
        flex-direction: column;
    }
	
	.btn-book-online{
	  display: block;                       
	}
	
	.block-nav-footer ul {
		flex-direction: column;
		gap: 21px;
		text-align: center;
	}
	.miele-appliance-major-issues{
		padding: 65px 0 50px 0;
	}
	
}



@media screen and (max-device-width: 1024px) and (min-device-width: 768px){

	.services-page .page-services-container{
		grid-template-columns:repeat(2,1fr); 
	}
	
	
}

@media screen and (max-device-width: 801px) and (min-device-width: 360px){
    .item-contact {
        width: 100%;
    }

    .tittle-info {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .descr-contact-ifo{
        text-align: center;
    }
	.content picture, .content img {
		height: 300px;
	}
	
	.about-head h1,
	.category-title h1,
	h1,
	.content h1 {
        font-size: 38px;
        line-height: 43px;
        margin-bottom: 20px;
    }
	
	.content h2 {
		font-size: 30px;
        font-weight: 800;
        line-height: 39px;
        margin: 21px 0 12px 0
	}
	
	.content h3{
		font-weight: 700;
		line-height:28px;
		margin: 20px 0 12px 0;
	}
	
	.content{
        padding: 35px 0 60px 0;
    }
	
}



@media screen and (max-device-width: 1024px) and (min-device-width: 768px){
    .general-block-number {
        gap: 50px 20px;
    }
    .item-number {
        width: 326px;
    }
    .numbers {
        padding: 90px 0;
    }
}

@media screen and (max-device-width: 767px) and (min-device-width: 360px){

    .item-number {
        width: 100%;
    }
    .numbers {
        padding: 90px 0;
    }
    .general-block-number {
        gap: 70px;
        text-align: center;
    }
	
	.services-page .page-services-container{
		grid-template-columns:1fr;
		gap:20px;
	}
	.category-title {
		margin-bottom: 25px;
		text-align: center;
	}
	.about-head,
	.blog-posts {
		padding: 30px 0 60px 0;
	}

}

@media screen and (max-device-width: 963px) and (min-device-width: 360px){
    .general-parts, .general-certified {
        text-align: center;
        gap: 50px;
        grid-template-columns: 1fr;
        justify-content: center;
        align-items: center;
    }
	
	.page-services-container,
	.general-blog-container {
		grid-template-columns: 1fr;
		gap: 20px;
	}
	.general-services-area-container {
		grid-template-columns: 1fr !important;
	}
}

@media screen and (max-device-width: 1024px) and (min-device-width: 912px){

    .services {
        background-color: #CD9B62;
        padding: 90px 0 90px 0;
    }
    .container-pic-why-us{
        display: none;
    }

    .general-us-container {
        grid-template-columns: 1fr;
    }
    .general-customer {
        gap: 30px;
    }
    .general-customer{
        gap: 60px;
        grid-template-columns: 1fr;
    }
    .tittle-customer{
        text-align: center;
    }
    .pic-customer{
        display: none;
    }
    h2 {
        font-size: 50px;
        line-height: 57px;
        margin-bottom: 30px;
    }
}

@media screen and (max-device-width: 911px) and (min-device-width: 768px){

    .description-welcome{
        text-align: center;
    }
    h2{
        font-size: 45px;
        font-weight: 900;
        line-height: 57px;
        margin-bottom: 30px;
    }
    .general-us-container {
        grid-template-columns: 1fr;
    }
    .container-pic-why-us{
        display: none;
    }
    .why-us {
        padding: 90px 0;
    }
    .services {
        background-color: #CD9B62;
        padding: 90px 0;
    }

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

    .faq-cont {
        align-items: center;
        padding: 90px 0;
        display: grid;
        grid-gap: 20px;
        grid-template-columns: 1fr;
    }
    .general-customer{
        gap: 60px;
        grid-template-columns: 1fr;
    }
    .tittle-customer{
        text-align: center;
    }
    .pic-customer{
        display: none;
    }
    .tittle-customer{
        text-align: center;
    }
    .general-customer h2 {
        margin-bottom: 15px;
    }

    .general-support{
        text-align: center;
        gap: 30px;
        grid-template-columns: 1fr;
    }
	
	
	
	.breadcrumb-general {
		padding: 15px 0;
		font-size: 13px;
		text-transform: uppercase;
		border-bottom: 1px solid #e5e5e5;
	}
}

@media screen and (max-device-width: 767px) and (min-device-width: 360px){
    .general-welcome-container {
        display: grid;
        align-items: center;
        justify-content: center;
        gap: 50px;
        grid-template-columns: 1fr;
    }
    .description-welcome{
        text-align: center;
    }
    h2{
        font-size: 39px;
        font-weight: 900;
        line-height: 47px;
        margin-bottom: 30px;
    }
    .general-us-container {
        grid-template-columns: 1fr;
    }
    .container-pic-why-us{
        display: none;
    }
    .why-us {
        padding: 90px 0;
    }

    .general-services-container {
        display: grid;
        gap: 50px;
        align-items: center;
        grid-template-columns: 1fr;
    }
    .description-services{
        text-align: center;
    }

    .faq-cont {
        align-items: center;
        padding: 90px 0;
        display: grid;
        grid-gap: 20px;
        grid-template-columns: 1fr;
    }
    .general-customer{
        gap: 60px;
        grid-template-columns: 1fr;
    }
    .tittle-customer{
        text-align: center;
    }
    .pic-customer{
        display: none;
    }
    .tittle-customer{
        text-align: center;
    }
    .general-customer h2 {
        margin-bottom: 15px;
    }
    .general-support{
        text-align: center;
        gap: 30px;
        grid-template-columns: 1fr;
    }
    .review {
        padding: 55px 40px;
        background: #FBF9F8;
        width: 100%;
    }
    .item-privileges {
        padding: 35px;
    }

    .tittle-customer span {
        color: #FFF;
        font-size: 24px;
        font-style: normal;
        font-weight: 700;
        line-height: 34px;

    }
    .customer-reviews, .faq-cont, .services{
        padding: 70px 0;
    }
    .customer {
        padding: 70px 0 90px 0;
        background: #293942;
    }
	
	.services-item {
        grid-template-columns: 1fr;
    }
	

}


@media screen and (max-device-width: 1024px) and (min-device-width: 360px){

    .nav-icon{
        display: block;
    }

    .general-priv{
        gap: 20px;
        grid-template-columns: 1fr;
    }

    .content-description-about{
        padding: 0 20px;
        width: 100%;
    }

    .logo{
        display: flex;
        justify-content: space-between;
        align-items: center;
        position: relative;
        z-index: 1000;
        width: 100%;
    }

    .btn-head-mob{
        display: block;
    }

    .nav-menu{
        width: 100%;
        height: 100%;
        position: fixed;
        background-color: #0B0B0B;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        top: -100%;
        left: 0;
        opacity: 0.9;
        transition: all 0.4s ease-in-out;
        opacity:0;
    }

    .nav-menu li a {
        font-size: 16px;
        letter-spacing: 0.7px;
        font-weight: 500;
        color: #a3a3a3;
    }
    .nav-menu li a:hover{
        color: #646464;
    }

    .nav-menu{
        gap: 40px;
    }
    .active{
        top: 0;
        z-index: 999;
        transition: 0,2s ease ;
        transition: top 1,5s;
        opacity: 100;

    }

	.general-privileges{
    	grid-template-columns: 1fr;

	}
	
	.services-item {
		gap: 20px;
	}
	
	.general-services-container {
		gap: 35px;
		grid-template-columns: 1fr;
	}
	
	.service-block {
		padding: 30px 15px;
	}
	.service-block picture, .service-block img {
		width: 100px;
	}
	.services-item h3 {
		margin-top: 25px;
		text-align: center;	
	}
	
	.general-welcome-container {
		text-align:center;
        align-items: center;
        justify-content: center;
        gap: 50px;
        grid-template-columns: 1fr;
    }
	
	.pic-container {
        display: none;
    }
	
	.item-us {
        flex-direction: column;
        gap: 15px;
		text-align:center;
    }
	
	.description-why-us {
		gap: 35px;
	}
	
	.why-us {
        padding: 90px 0;
    }
	.t-grid {
		grid-template-columns: 1fr;
	}
	.general-secondary-services-container {
		grid-template-columns: 1fr;
		gap: 20px;
	}
	
	.general-services-area-container{
		grid-template-columns: 1fr;
	}
}


@media screen and (max-device-width: 768px) and (min-device-width: 470px){

	.tittle-head {
		transform: translateY(var(--hero-shift, -14%));
	}

}

@media screen and (max-device-width: 469px) and (min-device-width: 360px){
	
	.pic-hero img {
		height: 620px;
	}
	
	.tittle-head {
		transform: translateY(var(--hero-shift, -14%));
	}
	
}






