










.city {
  display: flex;
  align-items: center;
  justify-content: center;

  /* НАСТРОЙКИ */
  font-size: 22px;        /* размер текста */
  font-weight: 600;       /* толщина (400 normal, 500 medium, 700 bold) */
  color: #111;

  gap: 10px;               /* расстояние между иконкой и текстом */
  line-height: 1.2;
}

/* ИКОНКА */
.city i {
  font-size: 1.2em;       /* масштаб иконки относительно текста */
  color: #e53935;         /* цвет маркера */
}

/* ТЕКСТ ГОРОДА */
.city-text {
  font-size: 1em;         /* можно отдельно регулировать */
  font-weight: inherit;  /* наследует от .city */
}

@media (max-width: 768px) {
  .city {
    font-size: 18px;
    font-weight: 500;
  }
}
















/* ===== ОСНОВНЫЕ СТИЛИ МЕНЮ ===== */

.site-menu {
  background: #ADD8E6;
  border-bottom: 1px solid #e5e5e5; 
  position: relative;
}

.site-menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.menu-level-1 {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0;
}




.site-menu a {
    
  display: block;
   text-align: center;
  text-decoration: none;
  color: #222;
  font-weight: 600;
  font-size: 16px;
  padding: 10px 14px;
  white-space: normal;
  transition: color 0.3s ease, background 0.3s ease;
}

.site-menu a:hover {
  color: #d62828;
}

/* ===== ВЫПАДАЮЩЕЕ МЕНЮ (DESKTOP) ===== */

.menu-level-2 {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #ffffff;
  min-width: 220px;
  max-width: 90vw;          /* 🔑 защита от вылазов */
  box-shadow: 0 5px 20px rgba(0,0,0,0.12);
  z-index: 100;
}

.menu-level-2 li a {
  padding: 10px 15px;
  font-size: 14px;
}

.site-menu li {
  position: relative;
}



/* hover только для десктопа */
@media (min-width: 769px) {
  .menu-level-1 > li:hover > .menu-level-2 {
    display: block;
  }
}

/* ===== АКТИВНЫЙ ПУНКТ ===== */

.site-menu .active > a {
  color: #d62828;
  border-bottom: 2px solid #d62828;
}

/* ===== КНОПКА ЗВОНКА ===== */

.menu-call a {
  background: #d62828;
  color: #fff !important;
  border-radius: 4px;
  padding: 10px 16px;
}

.menu-call a:hover {
  background: #b81f1f;
}

/* ===== КНОПКА МЕНЮ (МОБИЛЬНАЯ) ===== */

.menu-toggle {
  display: none;
  user-select: none;
}

/* ===== МОБИЛЬНАЯ ВЕРСИЯ ===== */

@media (max-width: 768px) {

  .menu-toggle {
    display: block;
    background: #d62828;
    color: #fff;
    padding: 14px;
    text-align: center;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
  }

  .menu-level-1 {
    display: none;
    flex-direction: column;
    width: 100%;
  }

  .menu-open .menu-level-1 {
    display: flex;
  }

  .menu-level-1 > li {
    width: 100%;
    border-bottom: 1px solid #eee;
  }

  .site-menu a {
    width: 100%;
    padding: 14px 16px;
  }

  /* подменю */
  .menu-level-2 {
    position: static;
    box-shadow: none;
    min-width: 100%;
    max-width: 100%;
    display: none;
    background: #f7f7f7;
  }

  /* открытие подменю по тапу */
  .menu-level-1 > li.menu-open > .menu-level-2 {
    display: block;
  }

}




.centered  {
    
 text-align: center;
 font-size: 22px;       
  font-weight: 700;  
  color: #000;
}


.text-centered {
    text-align: center;
 font-size: 16px;       
  font-weight: 700;      

}

.menu-call {
 text-align: center;
font-size: 18px; 
font-weight: 700; 

}

body {
  margin: 0;
  font-family: 'Source Sans Pro', Arial, sans-serif;
  background: linear-gradient(135deg, #f2f7fb 0%, #e6eef5 100%);
  color: #222;
}

/* Контейнер страницы */
#price-list {
  background: #ffffff;
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  padding: 30px;
  margin: 30px auto;
}

/* Заголовки */
#price-list h3,
h5 {
  color: #0b4f6c;
}

/* Таблица */
#price-list table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
}

#price-list th {
  background: #0b4f6c;
  color: #fff;
  padding: 12px;
}

#price-list td {
  padding: 12px;
  background: #f9fbfd;
}

#price-list tr:nth-child(even) td {
  background: #eef4f9;
}

@media (max-width: 768px) {
  #price-list {
    padding: 20px;
    margin: 15px;
  }
}


.responsive-img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 10px auto; /* по центру */
}




/* ===== КОНТЕЙНЕР КОЛОНОК ===== */

.columns {
  display: flex;
  gap: 5px;               /* расстояние между столбцами */
}

/* ===== КОЛОНКА ===== */

.column {
  flex: 1;
  padding: 15px;
  border: 1px solid #ddd;

  /* 🔧 НАСТРОЙКИ ТЕКСТА */
  font-size: 16px;        /* ← размер текста */
  line-height: 1.6;       /* ← расстояние между строками */
}

/* ===== СПИСКИ ВНУТРИ КОЛОНОК ===== */

.column ul {
  padding-left: 18px;
  margin: 0;
}

.column li {
  margin-bottom: 8px;     /* расстояние между пунктами */
}

/* ===== МОБИЛЬНАЯ ВЕРСИЯ ===== */

@media (max-width: 768px) {
  .columns {
    flex-direction: column;
    gap: 10px;
  }

  .column {
    font-size: 15px;      /* 📱 размер текста на мобильных */
    line-height: 1.7;     /* 📱 больше воздуха */
    padding: 12px;
  }
}






.ribbon {
   position: relative;
   top: -220px;
   right: -50px;
   	width: 30%;
	        height: 30%;
}

@media only screen and (max-width: 567px) {

     .ribbon {
         	width: 30%;
	        height: 30%;
  display: flex;
flex-direction: column;
justify-content: center;
  margin: 0px auto;
   top: -1px;
   right: 170px;


}

}


.rating-result {
	width: 265px;
	margin: 0 auto;
}
.rating-result span {
	padding: 0;
	font-size: 32px;
	margin: 0 3px;
	line-height: 1;
	color: lightgrey;
	text-shadow: 1px 1px #bbb;
}
.rating-result > span:before {
	content: '✵';
}
.rating-result > span.active {
	color: gold;
	text-shadow: 1px 1px #c60;
}




table td span {
    background: #ffc0cb;
    color: gold;
    display: none;
    font-size: 10px;
    font-weight: bold;
    padding: 5px;
    position: absolute;
    text-transform: uppercase;
    top: 0;
    left: 0;

}
 
/* Простой CSS для flexbox-таблиц на мобильных устройствах */
@media(max-width: 800px) {
    table thead {
        left: -9999px;
        position: absolute;
        visibility: hidden;
    }
    table tr {
        border-bottom: 0;
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        margin-bottom: 40px;
       
    }
    table td {
        border: 1px solid;
        margin: 0 -1px -1px 0;
        padding-top: 35px; /* дополнительный отступ для предотвращения склеивания заголовков */
        position: relative;
        width: 50%;
        
    }
    /* Отображение span заголовков */
    table td span {
        display: block;
    }
}
.table {
	width: 100%;
	margin-bottom: 20px;
	border: 1px solid #ffc0cb;
	border-collapse: collapse; 
}
.table th {
	font-weight: bold;
	padding: 5px;
	background: #ff0000;
	border: 1px solid #fff;
}
.table td {
	border: 1px solid #fff;
	padding: 5px;
}


body{
 background-image: url();
}







/* ===== SEO-БЛОК С КОНТЕНТОМ ===== */
.seo-block {
  max-width: 900px;
  margin: 40px auto;
  padding: 30px 25px;
  background: #ffffff;
  border-radius: 6px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  line-height: 1.6;
}

/* Заголовки H2 */
.seo-block h2 {
  font-size: 24px;
  margin: 30px 0 15px;
  color: #222;
  font-weight: 700;
  border-left: 4px solid #d62828;
  padding-left: 12px;
}

/* Первый H2 без лишнего отступа */
.seo-block h2:first-child {
  margin-top: 0;
}

/* Обычный текст */
.seo-block p {
  font-size: 16px;
  color: #444;
  margin-bottom: 15px;
}

/* Списки */
.seo-block ul {
  margin: 15px 0 25px 20px;
  padding: 0;
}

.seo-block li {
  margin-bottom: 10px;
  font-size: 16px;
  color: #333;
  position: relative;
  padding-left: 18px;
}

/* Маркер списка */
.seo-block li::before {
  content: "✔";
  color: #d62828;
  position: absolute;
  left: 0;
  top: 0;
}

/* Телефон */
.seo-block strong {
  color: #d62828;
  font-size: 18px;
}

/* ===== АДАПТИВ ===== */
@media (max-width: 768px) {
  .seo-block {
    margin: 25px 15px;
    padding: 20px 15px;
  }

  .seo-block h2 {
    font-size: 20px;
  }

  .seo-block p,
  .seo-block li {
    font-size: 15px;
  }
}


 

.phone-button {
    position: fixed;
    left: 70px;
    bottom: 90px;
    transform: translate(-50%, -50%);
    background: #e02020;
    border-radius: 50%;
    width: 55px;
    height: 55px;
    color: #fff;
    text-align: center;
    line-height: 55px;
    font-size: 30px;
    z-index: 9999;
}

  
.phone-button a {
    color: #fff;
}
.phone-button:before,
.phone-button:after {
    content: "Позвонить";
    display: block;
    position: absolute;
    border: 50%;
    border: 7px solid #e02020;
    left: -20px;
    right: -20px;
    top: -20px;
    bottom: -20px;
    border-radius: 50%;
    animation: animate 1.5s linear infinite;
    opacity: 0;
    backface-visibility: hidden; 
}
.phone-button:after{
    animation-delay: .5s;
    
}
.phone-button i {
        color:#fff;
        transition:.3s;
        animation: 1200ms ease 0s normal none 1 running shake;
        animation-iteration-count: infinite;
        
}
@keyframes animate
{
    0%
    {
        transform: scale(0.5);
        opacity: 0;
    }
    50%
    {
        opacity: 1;
    }
    100%
    {
        transform: scale(1.2);
        opacity: 0;
    }
}
@keyframes shake {
0% {
    transform: rotateZ(0deg);
        -ms-transform: rotateZ(0deg);
        -webkit-transform: rotateZ(0deg);
}
10% {
    transform: rotateZ(-30deg);
        -ms-transform: rotateZ(-30deg);
        -webkit-transform: rotateZ(-30deg);
}
20% {
    transform: rotateZ(15deg);
        -ms-transform: rotateZ(15deg);
        -webkit-transform: rotateZ(15deg);
}
30% {
    transform: rotateZ(-10deg);
        -ms-transform: rotateZ(-10deg);
        -webkit-transform: rotateZ(-10deg);
}
40% {
    transform: rotateZ(7.5deg);
        -ms-transform: rotateZ(7.5deg);
        -webkit-transform: rotateZ(7.5deg);
}
50% {
    transform: rotateZ(-6deg);
        -ms-transform: rotateZ(-6deg);
        -webkit-transform: rotateZ(-6deg);
}
60% {
    transform: rotateZ(5deg);
        -ms-transform: rotateZ(5deg);
        -webkit-transform: rotateZ(5deg);
}
70% {
    transform: rotateZ(-4.28571deg);
        -ms-transform: rotateZ(-4.28571deg);
        -webkit-transform: rotateZ(-4.28571deg);
}
80% {
    transform: rotateZ(3.75deg);
        -ms-transform: rotateZ(3.75deg);
        -webkit-transform: rotateZ(3.75deg);
}
90% {
    transform: rotateZ(-3.33333deg);
        -ms-transform: rotateZ(-3.33333deg);
        -webkit-transform: rotateZ(-3.33333deg);
}
100% {
    transform: rotateZ(0deg);
        -ms-transform: rotateZ(0deg);
        -webkit-transform: rotateZ(0deg);
}
}
@media (max-width : 800px) {  
.phone-button {   
    bottom: 5px; /*отступ кнопки снизу от экрана*/
    left: 70px; /*отступ кнопки слева от экрана(right - справа)*/
}



}
html, body {
	height: 100%;
}

body {
 background-image: url();
    margin: 0px;
	padding: 0px;

	font-family: 'Source Sans Pro', sans-serif;
	font-size: 18pt;
	font-weight: 400;
	color: #000;
}
h1, h2, h3 {
	margin: 0;
	padding: 0;
	text-transform: uppercase;
	font-weight: 300;
	color: #2D2D2D;
}

h2 {
    
	padding: 0px 0px 30px 0px;
	font-size: 2.50em;
}

p, ol, ul {
	margin-top: 0px;
}

p {
	line-height: 180%;
}

strong {
}

a {
	color: rgba(0,0,0,.8);
}

a:hover {
	text-decoration: none;
}

a img {
	border: none;
}

/*********************************************************************************/
/* Image Style                                                                   */
/*********************************************************************************/

	.image
	{
		display: inline-block;
		border: 1px solid rgba(0,0,0,.1);
	}
	
	.image img
	{
		display: block;
		width: 100%;
	}
	
	.image-full
	{
		display: block;
		width: 100%;
		margin: 0 0 3em 0;
	}
	
	.image-left
	{
		float: left;
		margin: 0 2em 2em 0;
	}
	
	.image-centered
	{
		display: block;
		margin: 0 0 2em 0;
	}
	
	.image-centered img
	{
		margin: 0 auto;
		width: auto;
	}


hr {
	display: none;
}

/** WRAPPER */

#wrapper {
	background:  #75bbfd;
	margin: 0px 20px;
}

.container {
  max-width: 1200px;
  width: 100%;
  padding: 0 15px;
  box-sizing: border-box;
}


.clearfix {
	clear: both;
}

/** HEADER */

#header-wrapper
{
	background: url(images/bg.jpg) no-repeat center center;
	background-size: cover;
}

#header {
	position: relative;
	overflow: hidden;
	height: 600px;
}

#social
{
	position: absolute;
	top: 4em;
	left: 0;
}

/** LOGO */

#logo {
	position: absolute;
	top: 3em;
	left: 0;
}

#logo h1, #logo p {
	margin: 0;
	padding: 0;
}

#logo h1 {
	letter-spacing: -1px;
	text-transform: lowercase;
	font-weight:700;
	font-size: 3.5em;
	color: #fff;
	text-shadow: #000 1px 0 10px;
}

#logo p {
	padding: 0px;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	font-size: 2.0em;
	font-weight:900;
	color:#fff;
	text-shadow: #000 1px 0 10px;
}

#logo p a {
	color: #fff;
}

#logo a {
	border: none;
	background: none;
	text-decoration: none;
	color: #fff;
  text-shadow: #000 1px 0 10px;
}

/** MENU */

#menu {
	overflow: hidden;
	background: #101010;
}

#menu ul {
	margin: 0px 0px 0px 0px;
	padding: 0px 0px;
	list-style: none;
	line-height: normal;
}

#menu li {
	display: inline-block;
}

#menu a {
	display: block;
	padding: 0px 40px 0px 40px;
	line-height: 70px;
	text-decoration: none;
	text-transform: uppercase;
	text-align: center;
	font-size: 16px;
	font-weight: 700;
	color: rgba(255,255,255,5.9);
	text-shadow: #fff 1px 0 10px;
	border: none;
}

#menu a:hover, #menu .current_page_item a {
	text-decoration: none;
	color: rgba(255,255,255,5.8);
}

#menu .current_page_item a {
}

#menu .last {
	border-right: none;
}

/** PAGE */

#page {
	overflow: hidden;
	padding: 5em 0em;
}

	#page img
	{
		margin-bottom: 1em;
	}

	#page .title
	{
		margin-bottom: 2em;
	}

	#page .title h2
	{
		font-size: 1.5em;
		font-weight: 400;
		color: rgba(0,0,0,0.8);
	}
	
	#page .title .byline
	{
		display: block;
		padding-bottom: 2em;
		color: rgba(0,0,0,0.7);
	}

/** CONTENT */

#content {
	float: left;
	width: 800px;
	padding-right: 50px;
	border-right: 1px solid #E6E7DC;
}

#content .post-title
{
	margin-bottom: 2em;
}

#content .post-title h2
{
	margin: 0;
	padding: 0;
}


#content .post
{
	margin-bottom: 4em;
	padding-bottom: 4em;
	border-bottom: 1px solid #E6E7DC;
}

/** SIDEBAR 1 */

#sidebar1 {
	float: right;
	width: 250px;
	margin-right: 50px;
}

#sidebar1 #box1 {
	margin-bottom: 4em;
}

#sidebar1 h2,
#sidebar2 h2
{
	font-size: 1.5em;
	font-weight: 400;
}

/** SIDEBAR 2 */

#sidebar2 {
	float: right;
	width: 250px;
}

/* Footer */

#footer {
	overflow: hidden;
	padding: 50px 0px 30px 0px;
}

#footer p {
	text-align: center;
		color: rgba(0,0,0,0.7);
}

#footer a {
		color: rgba(0,0,0,0.7);
}

/* List style 1 */

ul.style1 {
	margin: 0px;
	padding: 0px;
	list-style: none;
}

ul.style1 li {
	padding: 10px 0px 15px 0px;
	border-top: 1px solid #E6E7DC;
}

ul.style1 .first {
	padding-top: 0px;
	border-top: none;
}

/* List style 2 */

ul.style2 {
	margin: 0px;
	padding: 0px;
	list-style: none;
}

ul.style2 li {
	padding: 25px 0px 15px 0px;
	border-top: 1px solid #E6E7DC;
}

ul.style2 .first {
	padding-top: 0px;
	border-top: none;
}

ul.style2 h3 {
	padding: 0px 0px 10px 0px;
	font-size: 1.10em;
}

ul.style2 h3 a {
	color: #101010;
}

ul.style2 a {
	text-decoration: none;
}

ul.style2 a:hover {
	text-decoration: underline;
}


/* List style 3 */

ul.style3 {
	margin: 0px;
	padding: 0px;
	list-style: none;
}

ul.style3 li {
	padding: 20px 0px 20px 0px;
	border-top: 1px solid #E6E7DC;
}

ul.style3 p {
	margin: 0px;
	padding: 0px;
}

ul.style3 img {
	float: left;
	margin-top: 3px;
	margin-right: 20px;
}

ul.style3 .posted {
	padding: 10px 0px 10px 0px;
	font-size: 8pt;
	color: #A2A2A2;
}

ul.style3 .first {
	padding-top: 0px;
	border-top: none;
}

.link-style {
	display: inline-block;
	margin-top: 20px;
	padding: 7px 20px;
	background: #0C73D4;
	border-radius: 5px;
	text-decoration: none;
	text-transform: uppercase;
	color: #000;
}


/*********************************************************************************/
/* Portfolio                                                                     */
/*********************************************************************************/

	#portfolio-wrapper
	{
		overflow: hidden;
		padding: 5em 0em;
		background: rgba(0,0,0,.02);
		background-image: url(images/overlay.png);
		background-repeat: repeat;
		border-top: 1px solid rgba(0,0,0,.05);
	}
	
	#portfolio
	{
	}

	#portfolio .box
	{
		color: rgba(0,0,0,0.5);
	}
	
	#portfolio h3
	{
		display: block;
		padding-bottom: 1em;
		text-transform: uppercase;
		font-size: 1.2em;
		font-weight: 400;
		color: rgba(0,0,0,0.7);
	}

	#portfolio .title
	{
	}

	#portfolio .title h2
	{
		color: rgba(0,0,0,0.8);
	}
	
	#portfolio .title .byline
	{
		display: block;
		padding-bottom: 2em;
		color: rgba(0,0,0,0.7);
	}

	.column1,
	.column2,
	.column3,
	.column4
	{
		width: 240px;
	}
	
	.column1,
	.column2,
	.column3
	{
		float: left;
		margin-right: 24px;
	}
	
	.column4
	{
		float: right;
	}








/*********************************************************************************/
/* Heading Titles                                                                */
/*********************************************************************************/

	.title
	{
		margin-bottom: 3em;
	}
	
	.title h2
	{
		margin: 0;
		padding: 0;
		font-size: 2.8em;
		color: rgba(255,255,255,0.9);
	}
	
	.title .byline
	{
		padding-top: 0.50em;
		letter-spacing: 0.15em;
		text-transform: uppercase;
		font-weight: 400;
		font-size: 1.1em;
		color: #6F6F6F;
	}

/*********************************************************************************/
/* Button Style                                                                  */
/*********************************************************************************/

	.button
	{
		display: inline-block;
		margin-top: 2em;
		padding: 0em 1em;
		background: #161616;
		letter-spacing: 0.10em;
		line-height: 3em;
		text-decoration: none;
		text-transform: uppercase;
		font-weight: 400;
		font-size: 1em;
		color: #fff;
	}
	
/*********************************************************************************/
/* Social Icon Styles                                                            */
/*********************************************************************************/

	ul.contact
	{
		margin: 0;
		padding: 2em 0em 0em 0em;
		list-style: none;
	}
	
	ul.contact li
	{
		display: inline-block;
		padding: 0em 0.10em;
		font-size: 1em;
	}
	
	ul.contact li span
	{
		display: none;
		margin: 0;
		padding: 0;
	}
	
	ul.contact li a
	{
	}
	
	ul.contact li a:before
	{
		display: inline-block;
		background: none;
		width: 140px;
		height: 40px;
		line-height: 140px;
		text-align: left;
		color: rgba(255, 255, 242);
		text-shadow: #000 1px 0 10px;
	}
	.social-icons {
  display: flex;
  justify-content: center;
  list-style: none;
  margin-top: 8rem;
  margin-bottom: 1rem;
  padding-left: 0;
}
.social-icons>li {
  margin-left: 0.25rem;
  margin-right: 0.25rem;
}
.social-icons a {
  position: relative;
  background-color: #ffadad;
  display: block;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  transition: background-color .3s ease-in-out;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: .95rem;
}
.social-icons a:hover {
  background-color: #e0e0e0;
}
.social-icons a::before {
  content: "";
  position: absolute;
  width: 1.2rem;
  height: 1.2rem;
  left: .65rem;
  top: .65rem;
  background: transparent no-repeat center center ;
  background-size: 100% 100%;
}
.social-icons .social-icon-phone::before {
  background-image: url("https://luhovici-santehnik.ru/images/phone-call.png");
}
.social-icons .social-icon-whatsapp::before {
  background-image: url("https://luhovici-santehnik.ru/images/whatsapp.png");
}
.social-icons .social-icon-vkontakte::before {
  background-image: url("https://luhovici-santehnik.ru/images/vkontakte.png");
}
.social-icons .social-icon-youtube::before {
  background-image: url("https://luhovici-santehnik.ru/images/youtube.png");
}
.social-icons .social-icon-odnoklassniki::before {
  background-image: url("https://luhovici-santehnik.ru/images/odnoklassniki.png");
}


	/* Относительное позиционирование */

	#wrapper {

	    position: relative;

	    margin: 50px auto 20px auto;

	    border: 1px solid #fafafa;

	    -moz-box-shadow: 0 3px 3px rgba(0,0,0,.5);

	    -webkit-box-shadow: 0 3px 3px rgba(0,0,0,.5);

	    box-shadow: 0 3px 3px rgba(0,0,0,.5);

	}
	 

	/* Скрываем оригинальное содержание подсказки */

	.pin {

	    display: none;

	}

	 

	/* Стили для подсказкии и метки */

	.tooltip-up, .tooltip-down {

	    position: absolute;

	    background: url(arrow-up-down.png);

	    width: 36px;

	    height: 52px;

	}

	 

	.tooltip-down {

	    background-position: 0 -52px;

	}

	 
	.tooltip {

	    display: none;

	    width: 200px;

	    cursor: help;

	    text-shadow: 0 1px 0 #fff;

	    position: absolute;

	    top: 10px;

	    left: 50%;

	    z-index: 999;

	    margin-left: -115px;

	    padding:15px;

	    color: #222;

	    -moz-border-radius: 5px;

	    -webkit-border-radius: 5px;

	    border-radius: 5px;

	    -moz-box-shadow: 0 3px 0 rgba(0,0,0,.7);

	    -webkit-box-shadow: 0 3px 0 rgba(0,0,0,.7);

	    box-shadow: 0 3px 0 rgba(0,0,0,.7);

	    background: #fff1d3;

	    background: -webkit-gradient(linear, left top, left bottom, from(#fff1d3), to(#ffdb90));

	    background: -webkit-linear-gradient(top, #fff1d3, #ffdb90);

	    background: -moz-linear-gradient(top, #fff1d3, #ffdb90);

	    background: -ms-linear-gradient(top, #fff1d3, #ffdb90);

	    background: -o-linear-gradient(top, #fff1d3, #ffdb90);

	    background: linear-gradient(top, #fff1d3, #ffdb90);        

	}

	 

	.tooltip::after {

	    content: '';

	    position: absolute;

	    top: -10px;

	    left: 50%;

	    margin-left: -10px;

	    border-bottom: 10px solid #fff1d3;

	    border-left: 10px solid transparent;

	    border-right :10px solid transparent;

	}

	 

	.tooltip-down .tooltip {

	    bottom: 12px;

	    top: auto;

	}

	 

	.tooltip-down .tooltip::after {

	    bottom: -10px;

	    top: auto;

	    border-bottom: 0;

	    border-top: 10px solid #ffdb90;

	}

	 

	.tooltip h2 {

	    font: bold 1.3em 'Trebuchet MS', Tahoma, Arial;

	    margin: 0 0 10px;

	}

	 

	.tooltip ul {

	    margin: 0;

	    padding: 0;

	    list-style: none;

	}       
	
	.whatsapp-button {
    position: fixed;
    right: 13px;
    bottom: 90px;
    transform: translate(-50%, -50%);
    background: #25D366; /*цвет кнопки*/
    border-radius: 50%;
    width: 55px; /*ширина кнопки*/
    height: 55px; /*высота кнопки*/
    color: #fff;
    text-align: center;
    line-height: 53px; /*центровка иконки в кнопке*/
    font-size: 35px; /*размер иконки*/
    z-index: 9999;
}
.whatsapp-button a {
    color: #fff;
}
.whatsapp-button:before,
.whatsapp-button:after {
    content: "WhatsApp";
    display: block;
    position: absolute;
    border: 50%;
    border: 1px solid #25D366; /*цвет анимированных волн от кнопки*/
    left: -20px;
    right: -20px;
    top: -20px;
    bottom: -20px;
    border-radius: 50%;
    animation: animate 1.5s linear infinite;
    opacity: 0;
    backface-visibility: hidden; 
}
 
.whatsapp-button:after{
    animation-delay: .5s;
}
 
@keyframes animate
{
    0%
    {
        transform: scale(0.5);
        opacity: 0;
    }
    50%
    {
        opacity: 1;
    }
    100%
    {
        transform: scale(1.2);
        opacity: 0;
    }
}

@media (max-width : 800px) {  
.whatsapp-button {   
    bottom: 5px; /*отступ кнопки снизу от экрана*/
    left: 70px; /*отступ кнопки слева от экрана(right - справа)*/
  }
}



.phone-button {
    position: fixed;
    left: 75px;
    bottom: 90px;
    transform: translate(-50%, -50%);
    background: #d4232b;
    border-radius: 50%;
    width: 55px;
    height: 55px;
    color: #fff;
    text-align: center;
    line-height: 55px;
    font-size: 30px;
    z-index: 9999;
}


 header {
   width: 100%;
   background: white;
   box-shadow: 3px 3px 1px rgba(0, 0, 0, .05);
   padding: 15px 0;
   margin-bottom: 30px;
   position: relative;
}
/* логотип */
.logo {
   display: block;
   float: left;
}
.logo span {
   color: white;
   display: inline-block;
   width: 30px;
   height: 30px;
   line-height: 30px;
   border-radius: 50%;
   margin: 5px 0;
   text-align: center;
   text-shadow: 2px 2px 1px rgba(0, 0, 0, .4);
}
.logo span:nth-child(odd) {
   background: #EF5A42;
}
.logo span:nth-child(even) {
   background: #F8B763;
}
/* меню */
#menu {
   float: right;
}
#menu li {
   display: inline-block;
   margin-right: 30px;
}
#menu a {
   color: #111;
   text-transform: uppercase;
   letter-spacing: 1px;
   font-weight: 600;
   display: block;
   line-height: 40px;
}
#menu a:hover {
   color: #EF5A42;
}
#menu li:last-child {
   margin-right: 0;
}
/* форма поиска */
#searchform {
   float: right;
   margin-left: 46px;
   display: inline-block;
   position: relative;
}
#searchform input {
   width: 170px;
   float: left;
   border: none;
   padding-left: 10px;
   height: 40px;
   overflow: hidden;
   outline: none;
   color: #9E9C9C;
   font-style: italic;
}
#searchform button {
   background: transparent;
   height: 40px;
   border: none;
   position: absolute;
   right: 10px;
   color: #EF5A42;
   cursor: pointer;
   font-size: 18px;
}
#searchform input:focus {
   outline: 2px solid #EBEBE3;
}
/* кнопка переключения меню, появляющаяся при ширине 768px */
.nav-toggle {
   display: none;
   position: relative;
   float: right;
   width: 40px;
   height: 40px;
   margin-left: 20px;
   background: #EF5A42;
   cursor: pointer;
}
.nav-toggle span {
   display: block;
   position: absolute;
   top: 19px;
   left: 8px;
   right: 8px;
   height: 2px;
   background: white;
}
.nav-toggle span:before, .nav-toggle span:after {
   content: "";
   position: absolute;
   display: block;
   left: 0;
   width: 100%;
   height: 2px;
   background: white;
}
.nav-toggle span:before {
   top: -10px;
}
.nav-toggle span:after {
   bottom: -10px;
}
/* класс, который будет добавлен в верхнему меню при нажатии на кнопку и покажет скрытое меню*/
#menu.active {
   max-height: 123px;
}

*, *:after, *:before {
   box-sizing: border-box;
   padding: 0;
   margin: 0;
  
   transition: .5s ease-in-out;
   /* добавим плавность переходов для всех элементов страницы*/
}
ul {
   list-style: none;
}
a {
   text-decoration: none;
   outline: none;
}
img {
     display: block;
     width:100%;
     height:100%;
   
}
h1, h2, h3, h4, h5, h6 {
   font-family: 'Playfair Display';
   font-weight: normal;
   letter-spacing: 1px;
}
body {
   font-family: 'Open Sans', arial, sans-serif;
   font-size: 14px;
   line-height: 1;
   color: #373737;
   background: #f7f7f7;
}
/* добавим очистку потока для всех контейнеров, внутри которых задано обтекание дочерних элементов */
header:after, .container:after, footer:after, .widget-posts-list li:after, #subscribe:after {
   content: "";
   display: table;
   clear: both;
}
/* стилевой класс, который управляет шириной контейнера сетки*/
.container {
   margin: 0 auto;
   width: 100%;
   max-width:100%;
   padding: 0 15px;
}

/* левый контейнер */
.posts-list {
   margin-bottom: 30px;
   width: 100%;
   float: left;
}
/* блок для статьи */
.post {
   margin-bottom: 35px;
}
.post-content p {
   line-height: 1.5;
   padding-bottom: 1em;
}
.post-image {
   margin-bottom: 30px;
}
.category {
   margin-bottom: 15px;
}
.category a {
   color: #F8B763;
   text-transform: uppercase;
}
.post-title {
   margin-bottom: 12px;
   font-size: 26px;
}
/* блок с кнопкой "продолжить чтение" и кнопками социальных сетей */
.post-footer {
   border-top: 1px solid #EBEBE3;
   border-bottom: 1px solid #EBEBE3;
   position: relative;
   margin-top: 15px;
}
.more-link {
   position: relative;
   display: inline-block;
   font-size: 10px;
   text-transform: uppercase;
   color: white;
   line-height: 44px;
   padding: 0 22px;
   background: #3C3D41;
   letter-spacing: 0.1em;
   white-space: nowrap;
}
.more-link:after {
   content: '';
   display: block;
   position: absolute;
   width: 0;
   height: 0;
   top: 0;
   right: 0;
   border: solid transparent;
   border-width: 22px 18px;
   border-left-color: #3C3D41;
   transform: translateX(100%);
}
.post-social {
   position: absolute;
   left: auto;
   top: 50%;
   right: 0;
   text-align: right;
   transform: translateY(-50%);
   padding: 0;
   font-size: 12px;
}
.post-social a {
   display: inline-block;
   margin-left: 8px;
   color: #F8B763;
   width: 25px;
   height: 25px;
   line-height: 23px;
   text-align: center;
   border-radius: 50%;
   border: 1px solid;
}

/* правый контейнер */
aside {
   width: 100%;
   float: right;
}
/* блок для виджетов */
.widget {
   padding: 20px 15px;
   background: white;
   font-size: 15px;
   margin-bottom: 30px;
   box-shadow: 3px 3px 1px rgba(0, 0, 0, .05);
}
.widget-title {
   font-size: 18px;
   padding: 10px;
   margin-bottom: 20px;
   text-align: center;
   border: 2px solid #F8B763;
   box-shadow: 3px 3px 0 0 #F8B763;
}
.widget-category-list li {
   border-bottom: 1px solid #EBEBE3;
   padding: 10px 0;
   color: #c6c6c6;
   font-style: italic;
}
.widget-category-list li:last-child {
   border-bottom: none;
}
.widget-category-list li a {
   color: #626262;
   margin-right: 6px;
   font-style: normal;
}
.widget-category-list li a:before {
   content: "\f105";
   display: inline-block;
   font-family: 'FontAwesome';
   margin-right: 10px;
   color: #c6c6c6;
}
.widget-posts-list li {
   border-top: 1px solid #EBEBE3;
   padding: 15px 0;
}
.widget-posts-list li:nth-child(1) {
   border-top: none;
}
.post-image-small {
   width: 30%;
   float: left;
   margin-right: 15px;
}
.widget-post-title {
   float: left;
}
/* форма подписки */
#subscribe {
   position: relative;
   width: 100%;
   padding: 15px 0;
}
#subscribe input {
   width: 100%;
   display: block;
   float: left;
   border: 2px solid #EBEBE3;
   padding: 0 0 0 10px;
   height: 40px;
   position: relative;
   outline: none;
   color: #9E9C9C;
   font-style: italic;
}
#subscribe button {
   padding: 0 15px;
   background: transparent;
   height: 40px;
   border: none;
   position: absolute;
   right: 0;
   color: #EF5A42;
   cursor: pointer;
   font-size: 18px;
}
#subscribe input:focus+button {
   background: #EF5A42;
   color: white;
}

/* ===== FAQ-БЛОК ===== */
.faq-block {
  max-width: 900px;
  margin: 40px auto;
  padding: 30px 25px;
  background: #f9f9f9;
  border-radius: 6px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.04);
}

/* Заголовок FAQ */
.faq-block h2 {
  font-size: 24px;
  margin-bottom: 25px;
  color: #222;
  font-weight: 700;
  border-left: 4px solid #d62828;
  padding-left: 12px;
}

/* Вопрос */
.faq-block h3 {
  font-size: 18px;
  margin: 20px 0 8px;
  color: #333;
  font-weight: 600;
  position: relative;
  padding-left: 26px;
}

/* Иконка вопроса */
.faq-block h3::before {
  content: "❓";
  position: absolute;
  left: 0;
  top: 0;
  font-size: 18px;
}

/* Ответ */
.faq-block p {
  font-size: 16px;
  color: #555;
  margin-bottom: 15px;
  line-height: 1.6;
  padding-left: 26px;
}

/* ===== АДАПТИВ ===== */
@media (max-width: 768px) {

  .faq-block {
    margin: 25px 15px;
    padding: 20px 15px;
  }

  .faq-block h2 {
    font-size: 20px;
  }

  .faq-block h3 {
    font-size: 16px;
  }

  .faq-block p {
    font-size: 15px;
  }
}










footer {
   padding: 50px 0;
   background: #82c8e5;
   color: white;
}
.footer-col {
   width: 33.3333333333;
   float: center;
}
.footer-col a {
   color: white;
}
.footer-col:last-child {
   text-align: center;
}
.social-bar-wrap {
   text-align: center;
}
.social-bar-wrap a {
   padding: 0 7px;
   font-size: 18px;
}

@media (max-width: 768px) {
   /* показываем кнопку для переключения верхней навигации */
   .nav-toggle {
      display: block;
      display:flex;
      flex-direction:column
   }
   header {
      padding: 10px 0;
   }
   /* скрываем верхнее меню, отменяем обтекание, позиционируем его, сместив на высоту шапки сайта */
   #menu {
      max-height: 0;
      background: white;
      float: none;
      position: absolute;
      overflow: hidden;
      top: 63px;
      right: 0;
      left: 0;
      margin: 0;
      padding: 0;
      z-index: 3;
   }
   /* делаем элементы списка блочными, чтобы они располагались друг под другом */
   #menu li {
      display: block;
      text-align: center;
      border-bottom: 1px solid #EBEBE3;
      margin-right: 0;
   }
   /* отменяем обтекание левой и правой колонок, устанавливаем им ширину 100%*/
   .posts-list, aside {
      width: 100%;
      float: none;
   }
   .widget-post-title {
      font-size: 1.5em;
   }
}

@media (max-width: 480px) {
   /* отменяем обтекание для логотипа и выравниваем по центру*/
   .logo {
      float: none;
      margin: 0 auto 15px;
      display: table;
   }
   .logo span {
      margin: 0 2px;
   }
   /* позиционируем меню на увеличившуюся высоту шапки */
   #menu {
      top: 118px;
   }
   /* позиционируем форму поиска по левому краю */
   #searchform {
      float: left;
      margin-left: 0;
   }
   /* убираем верхнюю и нижнюю границы и выравниваем кнопку по центру */
   .post-footer {
      border-top: none;
      border-bottom: none;
      text-align: center;
   }
   /* отменяем позиционирование кнопок соцсетей */
   .post-social {
      position: static;
      text-align: center;
      transform: none;
      margin-top: 20px;
   }
   .widget-post-title {
      font-size: 1.2em;
   }
   /* отменяем обтекание для столбцов подвала страницы */
   .footer-col {
      float: none;
      margin-bottom: 20px;
      width: 100%;
      text-align: center;
   }
   .footer-col:last-child {
      text-align: center;
      margin-bottom: 0;
   }
}













