@import 'normalize.css';
@import 'fonts.css';

html {
    --container: 1260px;
    --padding-container: 20px;
    box-sizing: border-box;
    position: relative;
    overflow-x: hidden;
}

*, *:before, *:after {
    box-sizing: inherit
}

body {
    font-family: Roboto, Inter, sans-serif;
    background-color: #C2DAE6;
    position: relative;
    overflow-x: hidden;
    color: #000;
}

img, svg {
    max-width: 100%;
    max-height: 100%;
    height: auto;
}

button {
    padding: 0;
    background-color: transparent;
    border: none;
    cursor: pointer;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

h1, h2, h3, h4, p, figure {
    margin: 0;
}

fieldset {
    margin: 0;
    padding: 0;
    border: 0;
}

.visually-hidden {
    position: fixed;
    transform: scale(0);
}

.container {
    max-width: calc(var(--container) + var(--padding-container) * 2);
    padding: 0 var(--padding-container);
    margin: 0 auto;
}

/* Шапка */

.header__container {
    display: flex;
    flex-direction: row;
    background-color: rgba(194, 218, 230, 1)
}
.header__container-content {
    display: flex;
    flex-direction: column;
    max-width: 1006px;
    width: 100%;
}
.header__logo {
    width: 294px;
    max-width: 294px;
}
.header__top {
    display: flex;
    flex-direction: row;
    padding-top: 40px;
    margin-left: 140px;
}
.header__top-search {
    width: 63%;
    display: flex;
    flex-direction: row;
}
.header__top-search form {
    max-width: 520px;
    width: 100%;
    display: flex;
}
.header__top-search-input {
    max-width: 420px;
    width: 100%;
    height: 45px;
    border-radius: 5px;
    margin-right: 20px;
    background-color: #DCEDFF;
    border: 1px solid rgba(170, 187, 204, 1);
    padding-left: 20px
}

.header__top-search-button {
    background-color:#DCEDFF;
    width: 90px;
    height: 45px;
    border-radius: 5px;
    border: 1px solid rgba(170, 187, 204, 1);
    
}
.header__top-search-button img {
    padding: 11px 22px;
}
.header__top-phones {
    max-width: 300px;
    width: 100%;
}
.header__top-phone {
    font-weight: 800;
    font-size: 20px;
    padding: 10px 20px;
    margin-left: 12%;
}
.header__top-phone a:hover {
    color: #475FDD;
}
.header__top-block-phones {
    max-width: 300px;
    width: 100%;
}
.header__top-block-phone {
    display: none;
    font-weight: 800;
    font-size: 20px;
    padding: 10px 20px;
    margin-left: 12%;
}
.header__top-burger {
    display:none
}
.header__bottom {
    margin-top: 35px
}
.header__menu {
    display: flex;
    justify-content: space-between;
    width: 100%;
    padding: 26px;
    padding-right: 20px;
    text-transform: uppercase;
    color:rgba(0, 0, 0, 0.7);
    font-weight: 800;
    font-size: 20px;
}
.header__menu ul {
    display: flex;
    justify-content: space-between;
    width: 100%;
}
.header__menu ul li.current_page_item {
   border-bottom: 2px solid #1c10a2;
}

.header__menu a:hover {
    color: #475FDD;
} 

/* Скрываем подменю по умолчанию */
.header__menu .sub-menu {
    display: block; /* Оставляем block, чтобы анимация срабатывала */
    opacity: 0;
    visibility: hidden;
    position: absolute;
    background-color: #DCEDFF;
    padding: 10px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transform: translateY(10px); /* Сдвигаем подменю немного вниз */
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
    z-index: 1000;
    width: auto;
    min-width: 10em;
    max-width: 1000px;
}

/* Стили для элементов подменю */

.popup-menu .sub-menu {
    margin-left: 30px;
}

.header__menu .sub-menu li {
    margin: 0;
    padding: 5px;
}

.header__menu .sub-menu a {
    padding: 10px 20px;
    text-transform: none;
    color: rgba(0, 0, 0, 0.7);
    font-weight: 600;
    font-size: 18px;
}
.header__menu .sub-menu a:hover,
.header__menu .sub-menu .sub-menu a:hover {
    color: #475FDD;
}

/* Показываем подменю при наведении */
.header__menu li:hover > .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0); /* Возвращаем подменю на место */
}
/* Стили для меню третьего уровня */
.header__menu .sub-menu .sub-menu {
    top: 0;
    left: 100%; /* Сдвигаем меню третьего уровня вправо */
    background-color: #DCEDFF;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateX(10px); /* Сдвигаем подменю третьего уровня немного вправо */
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
}
/* Показываем меню третьего уровня с анимацией */
.header__menu .sub-menu li:hover > .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(0); /* Возвращаем подменю третьего уровня на место */
}
/* Изменение стилей для пунктов меню третьего уровня, если необходимо */
.header__menu .sub-menu .sub-menu a {
    padding: 10px 20px;
    color: rgba(0, 0, 0, 0.7);
}













/* Скрываем панель по умолчанию */
.popup-menu {
    display: none;
    position: fixed;
    top: 70px;
    right: 0;
    width: 300px;
    height: 100%;
    background-color: #fff;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    padding: 20px;
}

/* Стили для кнопки закрытия */
.popup-menu__close {
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
    position: absolute;
    top: 20px;
    right: 20px;
}
ul.popup__menu {
    padding-top: 20px;
    line-height: 30px;
    font-size: 20px;
}

/* SLIDER */

.slider__top {
    background-color: #000;
    position: relative;
    margin-bottom: 160px;
}
.slider__top-img {
   /*opacity: 0.7;*/
   position: relative;
}
.slider__top-img::before {
    content: ""; /* Создаем пустой псевдоэлемент */
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3); /* Затемнение: регулируйте прозрачность по необходимости */
    z-index: 1; /* Помещаем затемнение под текстом */
}
.slider__top-img img {
    width: 100%;
    height: auto;
}
.slider__top-text.container {
    position: absolute; /* Устанавливаем абсолютное позиционирование */
    top: 50%; /* Смещаем блок на 50% сверху */
    left: 50%; /* Смещаем блок на 50% слева */
    transform: translate(-50%, -50%); /* Смещаем блок обратно на 50% по горизонтали и вертикали */
    text-align: center; /* Центрируем текст */
    color: #fff;
    z-index: 2; /* Помещаем текст поверх затемнения */
    max-width: 1300px;
    width: 100%;
    
}
/*
.slider__top-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(22%, 120%);
    color: #fff;
    text-align: center;
    padding: 20px;
    border-radius: 10px;
    width: 100%;
}
*/
.slider__top-text-category {
    margin-bottom: 70px;
}
.slider__top-text-category a {
    font-family: Inter;
    font-weight: 400;
    font-size: 32px;
    letter-spacing: 1.6px;
    text-transform: uppercase;
}
.slider__top-text-title {
    margin-bottom: 40px;
}
.slider__top-text-title a {
    font-family: Inter;
    font-weight: 800;
    font-size: 47px;
    letter-spacing: 4.7px;
    text-transform: uppercase;
}
.slider__top-text-description {
    max-width: 620px;
    width: 100%;
    margin: 0 auto;
    margin-bottom: 110px;
}
.slider__top-text-description span {
    font-family: Roboto;
    font-weight: 400;
    font-size: 22px;
    line-height: 28px;
}
.slider__top-text-button {
    background-color: #475FDD;
    width: 255px;
    height: 50px;
    margin: 0 auto;
    padding: 13px 55px;
}
.slider__top-text-button a {
    font-family: Roboto;
    font-weight: 600;
    font-size: 22px;
    line-height: 28px;
    letter-spacing: 1.7px;
    text-transform: uppercase;
}
.slider__top-text-button:hover {
    opacity: 0.7;
    transition: all 300ms ease-in-out;
}

.flex-control-nav {
    color: rgba(255, 255, 255, 0);
    display: flex;
    gap: 10px;
    margin: 0 auto;
    justify-content: center;
    margin-top: -5px;
    position: relative;
}
.flex-control-nav li {
    border-radius: 100%;
    border: 1px solid rgba(123, 139, 155, 0.7);
    background: #fff;
    width: 20px;
    height: 20px;
    margin-top: -30px;
    cursor: pointer;
}
.flex-control-nav li:active {
    background: #7B8B9B;
}
.flex-control-paging ol li {
    text-align: center;
}
.slider__container {
    max-width: 1300px; 
    margin: 0 auto; 
    position: relative; 
    height: 100%; 
    z-index: 2; 
}


.flex-direction-nav {
    position: absolute; 
    top: 50%; 
    width: 100%;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between; 
    z-index: 3; 
    pointer-events: none; 
}

.flex-direction-nav li {
    list-style: none;
}

.flex-direction-nav a {
    pointer-events: all;
    display: block; 
    width: 34px; 
    height: 55px; 
    background-size: contain; 
    background-repeat: no-repeat; 
    color: rgba(250, 250, 250, 0);
    
}
.flex-prev {
    background-image: url('https://asd.seo-lev.ru/wp-content/themes/asdsl/layouts/img/arrow_left.svg'); 
    background-position: center; 
    margin-left: 20px;
}

.flex-next {
    background-image: url('https://asd.seo-lev.ru/wp-content/themes/asdsl/layouts/img/arrow-right.svg'); 
    background-position: center; 
    margin-right: 20px;
}
.flex-active {
  background-color: rgb(123, 139, 155);
  width: 20px;
  height: 20px;
  display: block;
  border-radius: 50%;
  margin-left: -1px;
  margin-top: -1px;
  border: 1px solid #D9D9D9;
}



/* ABOUT */

.about__title {
    font-family:Roboto;
    font-weight: 600;
    font-size: 60px;
    line-height: 28px;
    letter-spacing: 4.8px;
    color: rgba(0, 0, 0, 0.7);
    margin: 0 auto;
    text-align: center;
}
.line {
    width: 420px;
    height: 1px;
    display: block;
    background-color: rgb(71, 95, 221);
    margin: 30px auto;
}
.about__description {
    font-family:Roboto;
    font-weight: 500;
    font-size: 26px;
    line-height: 28px;
    color: rgba(0, 0, 0, 0.7);
    margin: 0 auto;
    text-align: center;
    max-width: 580px;
    width: 100%;
    margin-bottom: 40px;
}
.about__content {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    color:#403F3F;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 50px;
}
.about__content-left,
.about__content-right {
    max-width: 41%;
    width: 100%;
}
.about__content p {
    margin-bottom: 20px;
}
.sert {
    background-color: #DEDEDE;
    padding-bottom: 100px;
}
.sert__h2 {
    padding-bottom: 80px;
}
.sert__h2 h2 {
    padding-top: 100px;
    margin: 0 auto;
    text-align: center;
    font-family: Roboto;
    color: rgba(0, 0, 0, 0.7);
    font-weight: 700;
    font-size: 40px;
    line-height: 28px;
    letter-spacing: 3.2px;
    text-transform: uppercase;
    padding-bottom: 20px;;
}
.sert__line {
    width: 658px;
    height: 1px;
    display: block;
    background-color: rgb(71, 95, 221);
    margin: 0px auto 10px auto;
}
/*
.sert__carousel {
    display: flex;
    flex-direction: row;
} */
.sert__carousel-item {
    padding: 0 5px;
}

.about-slider .slick-prev {
  background-image: url('https://asd.seo-lev.ru/wp-content/themes/asdsl/layouts/img/arrow-left-carousel_sert.svg');
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  width: 50px; /* Ширина стрелки */
  height: 50px; /* Высота стрелки */
  display: block; /* Чтобы можно было задавать размеры */
  text-indent: -9999px; /* Скрыть текст, если он есть */
  border: none; /* Удалить границы кнопки */
  outline: none; /* Удалить обводку при фокусе */
  left: -18px;
  z-index: 10;
}
.about-slider .slick-next {
  background-image: url('https://asd.seo-lev.ru/wp-content/themes/asdsl/layouts/img/arrow-lright-carousel_sert.svg');
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  width: 50px; /* Ширина стрелки */
  height: 50px; /* Высота стрелки */
  display: block; /* Чтобы можно было задавать размеры */
  text-indent: -9999px; /* Скрыть текст, если он есть */
  border: none; /* Удалить границы кнопки */
  outline: none; /* Удалить обводку при фокусе */
  z-index: 10;
}


.about-slider .slick-prev, .about-slider .slick-next {
  border-radius: 50%; /* Делаем кнопки круглыми */
  overflow: hidden; /* Убираем проблемы с отображением изображения */
}

.about-slider .slick-prev:hover {
  color: inherit; /* Сохраняем цвет */
  background-image: url('https://asd.seo-lev.ru/wp-content/themes/asdsl/layouts/img/arrow-left-carousel_sert.svg');
  outline: none; /* Убираем обводку */
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3); /* Добавляем тень с округлыми краями */
}
.about-slider .slick-next:hover {
   color: inherit; /* Сохраняем цвет */
   background-image: url('https://asd.seo-lev.ru/wp-content/themes/asdsl/layouts/img/arrow-lright-carousel_sert.svg');
   outline: none; /* Убираем обводку */
   box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3); /* Добавляем тень с округлыми краями */ 
}

.about-slider .slick-prev::before, .about-slider .slick-next::before {
  content: ''; /* Убираем текстовое содержимое */
}











/*SERVICE*/

.service__line {
    width: 336px;
}
.service__item {
    display: flex;
    flex-direction: row;
    height: 356px;
    
}
.service__line-vertical {
    width: 1px;
    height: 356px;
    background-color:#fff;
    margin-left: 9.5px;
    margin-right: 9.5px;
}
.service__item-right {
    background-color: rgba(173, 173, 173, 0.24);
    max-width: 620px;
    width: 100%;
    display: flex;
    align-items: center; 
    padding-left: 20px; 
    height: 100%; 
}
.service__item-right ul {
    list-style: none; 
    padding: 0;
    margin: 0;
    font-family: Roboto;
    font-weight: 400;
    font-size: 20px;
    line-height: 35px;
    color: rgba(0, 0, 0, 0.7);
}
.service__item-right--wait ul {
    color:#fff
}

.service__item-right ul li {
    position: relative;
    padding-left: 30px; 
}
.service__item-right ul li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 20px; 
    height: 20px; 
    background-image: url('https://asd.seo-lev.ru/wp-content/themes/asdsl/layouts/img/marker_1.svg'); 
    background-size: contain;
    background-repeat: no-repeat;
}
.service__item-right a:hover,
.service__item-right--wait a:hover {
    color: #475FDD;
}
.service__line-gorisontal {
    max-width: 1260px;
    width: 100%;
    height: 1px;
    background-color:#fff;
    margin: 9.5px auto 9.5px auto;
}
.service__fon {
    background-color:#7B8B9B;
}

.service__item-left {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 620px;
    width: 100%;
    background-color: rgba(173, 173, 173, 0.24);
}
.service__item-left a:hover {
    opacity: 0.7;
    border: 1px solid #475FDD;
    transition: all 300ms ease-in-out;
}

.service__item-left p {
    position: absolute;
    top: 50%;
    left: 50%;
    max-width: 580px;
    width: 100%;
    transform: translate(-50%, -50%);
    text-align: center;
    color:#fff;
    font-family: Roboto;
    font-weight: 500;
    font-size: 37px;
    line-height: 28px;
    letter-spacing: 2.96px;
    text-transform: uppercase;
}

.service__item-left img {
    max-height: 356px;
    height: 100%;
    max-width: 620px;
    width: 100%;
}

/* END SERVICE */

/* TEXT BLOCK */

.text__block {
    background-color:#fff;
    padding-bottom: 50px;
}
.text__block-line {
    max-width: 935px;
    width: 100%;
}
.text__block-container {
    width: 100%;
}
.text__block-container a {
    color: #475FDD;
    font-weight: 500;
}
.text__block-container a:hover {
    border-bottom: 1px dashed blue;
    transition: all 300ms ease-in-out;
}
.text__block-top {
    font-family: Inter;
    font-weight: 500;
    font-size: 20px;
    line-height: 28px;
    text-align: center;
    margin-bottom: 35px;
}
.text__block-bottom {
    display: flex;
    flex-direction: row;
    gap: 70px;
    font-family: Inter;
    font-weight: 200;
    font-size: 16px;
    line-height: 22px;
}
.text__block-bottom p {
    margin-bottom: 20px;
}
.text__block-bottom li {
    font-family: Inter;
    font-weight: 200;
    font-size: 17px;
    line-height: 30px;
    margin-left: 60px;
}
.text__block-left ul li::before,
.text__block-right ul li::before {
    content: "";
    position: absolute;
    transform: translate(-180%, 87%);
    width: 12px; 
    height: 12px; 
    background-image: url('../img/marker_tb.svg');
    background-size: contain;
    background-repeat: no-repeat;
}
.text__block-left,
.text__block-right {
    max-width: 595px;
    width: 100%;
}

/* END TEXT BLOCK */

/* Блок Порядок проведения работ */

.work {
    background-color:#DEDEDE; 
}
.work__container {
    display:flex;
    flex-direction: row;
    gap: 20px;
    flex-wrap: wrap;
}
.work__block-line {
    max-width: 670px;
    width: 100%;
}
.work__container-item {
    width: calc(33% - 20px);
    text-align: center;
    margin-bottom: 50px;
}
.work__container-title {
    font-family: Roboto;
    font-weight: 600;
    font-size: 30px;
    line-height: 28px;
    color: rgba(0, 0, 0, 0.8);
    margin-top: 20px;
    margin-bottom: 20px;
}
.work__container-description {
    font-family: Roboto;
    font-weight: 500;
    font-size: 20px;
    line-height: 28px;
    color: rgba(0, 0, 0, 0.7);
}

/*Конец блока Порядок проведения работ */

/* Callback block */

.callback__block-line {
    max-width: 510px;
    width: 100%;
}
.callback__block-h2 {
    padding-bottom: 50px;
}
.callback__form-description {
    font-family: Inter;
    font-weight: 500;
    font-size: 20px;
    line-height: 28px;
    color: rgba(0, 0, 0, 0.8);
    text-align: center;
    padding-bottom: 50px;
}
#wpcf7-f95-o1 .wpcf7-text {
    max-width: 400px;
    width: 30%;
    height: 60px;
    margin-right: 50px;
    border-radius: 5px;
    font-family: Roboto;
    font-weight: 100;
    font-size: 20px;
    line-height: 28px;
    padding-left: 20px;
    border: 1px solid #C2DAE6;
}
.callback__form {
    padding-bottom: 50px;
}
.callback__form-form {
    padding-bottom: 50px;
}
.wpcf7-submit {
    max-width: 305px;
    width: 23%;
    height: 60px;
    background-color: #475FDD;
    color:#fff;
    font-family: Roboto;
    font-weight: 700;
    font-size: 22px;
    line-height: 28px;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    padding: 14px 10px;
}
.wpcf7-submit:hover {
    opacity: 0.8;
    transition: all 300ms ease-in-out;
}
.callback__form-politics {
    font-family: Roboto;
    font-weight: 100;
    font-size: 14px;
    line-height: 28px;
    text-align: center;
    margin-top: 50px;
}

/* End Callback block */

/* Advantages block */

.advantages {
    background-color: #DEDEDE;
}
.advantages__block-line {
    max-width: 960px;
    width: 100%;
}
.advantages__container {
    display:flex;
    flex-direction: row;
    gap: 20px;
    flex-wrap: wrap;
    padding-bottom: 100px;
}
.advantages__item {
    width: calc(33% - 11px);
    text-align: center;
    border-radius:20px;
    border: 1px solid rgba(71, 95, 221, 0.5);
    background-color:rgba(186, 204, 221, 0.4);
    height: 240px;
}
.advantages__title {
    font-family: Open Sans;
    font-weight: 700;
    font-size: 20px;
    color: rgba(64, 63, 63, 1);
    text-transform: uppercase;
    position: relative;
    z-index: 2; 
    margin-bottom: 30px;
    padding-top: 40px;
}
.advantages__discription {
    font-family: Open Sans;
    font-weight: 400;
    font-size: 16px;
    color: rgba(0, 0, 0, 1);
    position: relative;
    z-index: 2; 
    padding-left: 20px;
    padding-right: 20px;
    
}
.advantages__figure {
    position: relative;
    font-family: Inter;
    font-weight: 900;
    font-size: 320px;
    height: 240px;
    color: rgba(71, 95, 221, 0.15);
}
.advantages__number {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    
}

/* End Advantages block */

/* Reviews block */

.reviews {
    background-color:#fff;
    padding-bottom:100px;

}
.reviews__block-line {
    max-width: 350px;
    width: 100%;
    margin: 20px auto;
}
.reviews__container {
    display: flex;
    flex-direction: row;
    gap: 20px;
}
/*
.reviews__container.slick-initialized .slick-slide {
    margin-right: 20px;
}*/
.reviews__container .slick-slider {
	text-align: center;
}
.reviews__container .slick-active {
    /*margin-right: 34px;*/
}

.reviews__container .slick-prev {
  background-image: url('../img/arrow-left-carousel_reviews.svg');
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  width: 36px; /* Ширина стрелки */
  height: 36px; /* Высота стрелки */
  display: block; /* Чтобы можно было задавать размеры */
  text-indent: -9999px; /* Скрыть текст, если он есть */
  border: none; /* Удалить границы кнопки */
  outline: none; /* Удалить обводку при фокусе */
  left: -18px;
  z-index: 10;
}
.reviews__container .slick-next {
  background-image: url('../img/arrow-lright-carousel_reviews.svg');
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  width: 36px; /* Ширина стрелки */
  height: 36px; /* Высота стрелки */
  display: block; /* Чтобы можно было задавать размеры */
  text-indent: -9999px; /* Скрыть текст, если он есть */
  border: none; /* Удалить границы кнопки */
  outline: none; /* Удалить обводку при фокусе */
  right: -1px;
  z-index: 10;
}


.about-slider .slick-prev, .about-slider .slick-next {
  border-radius: 50%; /* Делаем кнопки круглыми */
  overflow: hidden; /* Убираем проблемы с отображением изображения */
}

.reviews__container .slick-prev:hover {
  color: inherit; /* Сохраняем цвет */
  background-image: url('../img/arrow-left-carousel_reviews.svg');
  outline: none; /* Убираем обводку */
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3); /* Добавляем тень с округлыми краями */
}
.reviews__container .slick-next:hover {
   color: inherit; /* Сохраняем цвет */
   background-image: url('../img/arrow-lright-carousel_reviews.svg');
   outline: none; /* Убираем обводку */
   box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3); /* Добавляем тень с округлыми краями */ 
}

.reviews__container .slick-prev::before, .reviews__container .slick-next::before {
  content: ''; /* Убираем текстовое содержимое */
}

.reviews__item {
    max-width: 640px;
    width: 98%!important;
    border-radius: 5px;
    border: 1px solid rgba(0, 0, 0, 0.1);
}
.reviews__item-data {
    font-family: Inter;
    font-weight: 200;
    font-size: 14px;
    line-height: 28px;
    padding-top: 20px;
    padding-left: 20px;
}
.reviews__item-name {
    font-family: Inter;
    font-weight: 600;
    font-size: 24px;
    line-height: 28px;
    padding-left: 20px;
    padding-bottom: 10px;
}
.reviews__item-rating {
    padding-left: 20px;
    padding-bottom: 20px;
    display: flex;
}
.reviews__item-rating img {
    margin-right: 10px;
    width: 22px;
}
.reviews__item-text {
    font-family: Inter;
    font-weight: 300;
    font-size: 16px;
    line-height: 28px;
    padding-left: 20px;
    padding-bottom: 20px;
}
.reviews__item-button {
    width: 180px;
    height: 50px;
    background-color:rgba(71, 95, 221, 1);
    font-family: Roboto;
    font-weight: 600;
    font-size: 18px;
    letter-spacing: 1.4px;
    line-height: 28px;
    color: #fff;
    text-transform: uppercase;
    padding: 11px 30px;
    margin-left: 20px;
    margin-bottom: 20px;
}
.reviews__item-button:hover {
    opacity: 0.8;
    transition: all 300ms ease-in-out;
}

/* End Reviews block */

/* Map block */

.map {
    background-color: rgba(194, 218, 230, 1);
    padding-bottom: 100px;
}
.map__block-line {
    max-width: 380px;
    width: 100%;
    margin-bottom: 0px;
}
.map__container {
    max-height: 610px;
    width: 100%;
    padding-bottom: 100px;
}

/* End Map block */
/* Footer*/
footer {
    background-color: rgba(222, 222, 222, 1);
}
.footer__cotainer {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin-bottom: 50px;
    padding-top: 50px;
}
.footer__button-telegram-button {
    width: 248px;
    height: 50px;
    background-color: rgba(32, 160, 225, 1);
    border-radius:20px;
    margin: 30px auto 25px auto;
    display: flex;
    flex-direction: row;
    font-family: Roboto;
    font-weight: 500;
    font-size: 20px;
    line-height: 28px;
    color: #fff;
}
.footer__button-telegram-button p,
.footer__button-telegram-button span {
    padding: 10px 5px;
}
.footer__button-whatsapp-button {
    width: 248px;
    height: 50px;
    background-color: rgba(81, 200, 93, 1);
    border-radius:20px;
    margin: 30px auto 25px auto;
    display: flex;
    flex-direction: row;
    font-family: Roboto;
    font-weight: 500;
    font-size: 20px;
    line-height: 28px;
    color: #fff;
}
.footer__button-whatsapp-button p {
    padding: 10px 5px;
}
.footer__button-whatsapp-button span {
    padding: 14px 3px 14px 5px;
}
.footer__button-telegram-button:hover,
.footer__button-whatsapp-button:hover {
    background-color: rgb(153, 164, 170);
    transition: all 300ms ease-in-out;
}
.footer__menu p {
    font-family: Roboto;
    font-weight: 500;
    font-size: 24px;
    line-height: 28px;
    color: rgba(0, 0, 0, 0.8);
    text-transform: uppercase;
    padding-bottom: 10px;
}
.footer__menu a:hover {
    color: #475FDD;
    transition: all 300ms ease-in-out;
}
.footer__menu-left,
.footer__menu-right {
    display: flex;
    flex-direction: column;
    font-weight: 500;
    font-size: 20px;
    line-height: 35px;
    color: rgba(0, 0, 0, 0.5);
}
.footer__contact-phone a:hover,
.footer__contact-email a:hover {
    color: #475FDD;
    transition: all 300ms ease-in-out;
} 
.footer__contact-phone,
.footer__contact-email,
.footer__contact-address,
.footer__contact-time {
    padding-bottom: 30px;
    display: flex;
}
.footer__contact-email {
    margin-top: -20px
} 
.footer__contact-phone {
    flex-direction: column;
}
.footer__contact-phon {
    margin-bottom: 20px;
}
.footer__contact-phone span,
.footer__contact-email span,
.footer__contact-address span,
.footer__contact-time span {
    padding-right: 20px;
} 
.footer__bottom-line {
    max-width: 1260px;
    width: 100%;
    height: 1px;
    background-color: rgba(123, 139, 155, 1);
    margin: 0 auto;
}
.footer__bottom-copyright {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    max-width: 1060px;
    width: 100%;
    margin: 0 auto;
    padding-bottom: 45px;
    padding-top: 45px;
    font-family: Roboto;
    font-weight: 500;
    font-size: 15px;
    line-height: 28px;
    color: rgba(0, 0, 0, 0.3);
}
.footer__bottom-copyright--politics a:hover {
    border-bottom: 1px dashed blue;
    transition: all 300ms ease-in-out;
}


a[href="#top"] {
    display: none; /* Скрыть ссылку */
    position: fixed; /* Чтобы она оставалась на одном месте */
    bottom: 20px; /* Расположить внизу экрана */
    right: 20px; /* Расположить справа */
    z-index: 1000; /* Убедиться, что она поверх остальных элементов */
    background: #000; /* Фон */
    color: #fff; /* Цвет текста */
    padding: 10px 15px; /* Внутренние отступы */
    border-radius: 5px; /* Скругление */
    text-decoration: none; /* Убрать подчеркивание */
}

a[href="#top"]:hover {
    background: #333; /* Изменение фона при наведении */
}

/* End Footer*/

/* Page About */

.line-aboutpage {
    max-width: 325px;
}
.about__page-content {
    max-width: 1260px;
    width: 100%;
    background-color: #fbfbfb;
    margin-top: 50px;
    margin-bottom: 100px;
    padding: 30px;
}
.about__page-content h2 {
    margin-top: 10px;
    margin-bottom: 30px;
    font-size: 28px;
    color: #000000a8;
}
.about__page-content h3 {
    margin-bottom: 20px;
    margin-top: 10px;
    font-size: 25px;
    color: #000000a8;
}
.about__page-content h4 {
    margin-top: 15px;
    margin-bottom: 20px;
    font-size: 22px;
    color: #000000a8;
}
.about__page-content ul,
.about__page-content ol {
    padding-left: 30px;
    font-size: 17px;
    line-height: 25px;
    color: #000000bd;
}
.about__page-content li::before {
    content: "\2727";
    padding-right: 10px;
}
.about__page-content ol li::before {
  content: "";
}
.about__page-content p {
    font-size: 16px;
    line-height: 22px;
    margin-bottom: 20px;
    color: #000000b0;
}
.about__page-content img {
    margin: 0 auto;
    display: flex;
}
.sert__line-about {
    max-width: 490px;
    margin-top: -40px;
}
.sert__h2-about {
    padding-bottom: 50px;
    margin-top: -60px;
}
/* End Page About */



/* Page single */
.single__img-bord img {
    max-height: 500px;
    height: 100%;
}
.single__img {
    margin-bottom: 50px;
}
.single__title {
  font-size: 40px;
  line-height: 40px;
  letter-spacing: 4px;
  color: rgba(0, 0, 0, 0.7);
  text-align: center;
  margin-top: 50px;
}
.line-single {
    max-width: 1260px;
    width: 98%;
    margin: 20px auto;
}
.single__page-content {
    max-width: 1260px;
    width: 100%;
    background-color: #fbfbfb;
    margin-top: 50px;
    margin-bottom: 100px;
    padding: 30px;
}
.single__page-content h2 {
    margin-top: 10px;
    margin-bottom: 30px;
    font-size: 28px;
    color: #000000a8;
}
.single__page-content h3 {
    margin-bottom: 20px;
    margin-top: 10px;
    font-size: 25px;
    color: #000000a8;
}
.single__page-content h4 {
    margin-top: 15px;
    margin-bottom: 20px;
    font-size: 22px;
    color: #000000a8;
}
.single__page-content ul,
.single__page-content ol {
    padding-left: 30px;
    font-size: 17px;
    line-height: 25px;
    color: #000000bd;
}
.single__page-content li::before {
    content: "\2727";
    padding-right: 10px;
}
.single__page-content ol li::before {
  content: "";
}
.single__page-content p {
    font-size: 16px;
    line-height: 22px;
    margin-bottom: 20px;
    margin-top: 10px;
    color: #000000b0;
}
.single__page-content img {
    margin: 0 auto;
    display: flex;
}

/* End Page single */

/* Хлебные крошки */

.bread {
    max-width: 1260px;
    width: 100%;
    background-color: #DEDEDE;
    margin-top: 50px;
    margin-bottom: 50px;
    height: auto;
    align-content: center;
    padding: 5px 20px;
    border: 1px solid #C3C0D7;
}

.breadcrumbs span a:hover {
    color: #0a6eaa;
}

/* End Хлебных крошек */

/* Page 404 */ 

.err {
    font-size: 40px;
    line-height: 40px;
    letter-spacing: 4px;
    color: rgba(0, 0, 0, 0.7);
    text-align: center;
    padding-top: 50px;
    padding-bottom: 50px;
}  
.err-content {
    margin-top: 10px;
    margin-bottom: 100px;
    font-size: 25px;
    color: #000000a8;
    text-align: center;
    line-height: 45px;
}
.err-button {
    max-width: 254px;
    height: 50px;
    background-color: #475FDD;
    border-radius: 5px;
    margin: 0 auto;
    font-size: 16px;
    line-height: 28px;
    color: #fff;
    letter-spacing: 1.7px;
    font-family: Roboto;
    font-weight: 700;
    text-transform: uppercase;
    width: 100%;
    padding: 11px 22px;
    margin-bottom: 100px;
}
.err-button:hover {
    background-color: #4757AD;
}

/* End Page 404 */

/* Категорийная страница отзывов */

.archive__reviews-container,
.archive__services-container {
    max-width: 1260px;
    width: 100%;
    background-color: #fbfbfb;
    margin-top: 50px;
    margin-bottom: 100px;
    padding: 30px;
}
.archive__reviews-item {
    max-width: 1260px;
    width: 100%;
    border-radius: 5px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    margin-bottom: 40px;
}

.archive__reviews-item--data {
    font-family: Inter;
    font-weight: 200;
    font-size: 14px;
    line-height: 28px;
    padding-top: 20px;
    padding-left: 20px;
}

.archive__reviews-item--name {
    font-family: Inter;
    font-weight: 600;
    font-size: 24px;
    line-height: 28px;
    padding-left: 20px;
    padding-bottom: 10px;
}

.archive__reviews-item--rating {
    padding-left: 20px;
    padding-bottom: 20px;
    display: flex;
}

.archive__reviews-item--rating img {
    margin-right: 10px;
    width: 22px;
}

.archive__reviews-item--text {
    font-family: Inter;
    font-weight: 300;
    font-size: 16px;
    line-height: 28px;
    padding-left: 20px;
    padding-bottom: 20px;
}

/* End Категорийной страницы отзывов */


/* Archive Page */
.archive__content {
    background-color: #fff;
    padding-bottom: 50px;
    margin-bottom: 50px
}
.archive__post-content {
    display: flex;
    gap: 30px;
}
.archive__post-title {
    padding-left: 20px;
    padding: 20px 20px;
    font-size: 25px;
    color: #000000a8;
}
.archive__post-img {
    margin-left: 20px;
}
.archive__post-img img {
    max-width: 500px;
}
.archive__post-text {
    font-size: 15px;
    line-height: 22px;
    margin-bottom: 20px;
    color: #000000b0;
    padding-right: 20px;
}
.archive__block-line {
    max-width: 1220px;
    width: 100%;
    margin: 10px auto;
}
/* End Archive */


/* Contacts Page */


.line-contactspage {
    max-width: 470px;
    width: 100%;
    margin: 30px 0;
}
.contacts__page-content {
    display: flex;
    background-color: #fbfbfb;
    padding: 30px;
  
}
.contacts-time {
    font-weight: 700;
    font-size: 20px;
}
.contacts__page-content-data,
.contacts__container-form {
    padding: 30px;
}
.contacts__page-content-data p {
    line-height: 25px;
}
.contacts__container-form--title {
    font-size: 20px;
    font-weight: 500;
    padding-bottom: 20px;    
}
.contacts__container-form--description {
    padding-bottom: 20px;
}
#wpcf7-f117-o1 {
    max-width: 590px;
    width: 100%;
    border-radius: 5px;
    font-size: 20px;
    line-height: 28px;
}
#wpcf7-f117-o1 .wpcf7-text {
    max-width: 590px;
    width: 100%;
    height: 60px;
    border-radius: 5px;
    font-family: Roboto;
    font-weight: 100;
    font-size: 20px;
    line-height: 28px;
    padding-left: 20px;
    border: 1px solid #C2DAE6;
    margin-bottom: 30px;
}
#wpcf7-f117-o1 .wpcf7-textarea {
    max-width: 590px;
    width: 100%;
    height: 200px;
    border-radius: 5px;
    font-family: Roboto;
    font-weight: 100;
    font-size: 20px;
    line-height: 28px;
    padding-left: 20px;
    border: 1px solid #C2DAE6;
    margin-bottom: 30px;
}
#wpcf7-f117-o1 .wpcf7-submit {
    max-width: 305px;
    width: 100%;
}

/* End Contacts Page */


/* Таблицы */

table {
   border-collapse: collapse;
   /*убираем пустые промежутки между ячейками*/
   border: 1px solid grey;
   /*устанавливаем для таблицы внешнюю границу серого цвета толщиной 1px*/
   margin-top: 30px;
   width: 100%;
}
th {
   background-color: #C2DAE6;
   text-transform: uppercase;
   padding: 10px 0;
}
td a {
   color: #1966B7;
}
td a:hover {
   text-decoration-line: underline;
}
th, td {
   border: 1px solid grey;
   width: 25%;
   padding: 10px 20px;
}
td:first-child {
   width: 50%;
}
tr:nth-child(2n) {
  background: #DCEDFF;
}

/* Конец Таблиц */

/* Search Page*/

.search__text-none {
   padding: 30px 30px;
   margin: 0;
}

/* End Search Page*/

/* Price Page */

.price {
    padding-bottom: 100px;   
}
.price__container {
   background-color: #fbfbfb;
   padding: 30px 
}
.price__page-content h2 {
   margin-top: 10px;
   margin-bottom: 30px;
   font-size: 28px;
   color: #000000a8; 
}
.price__page-content h3 {
   margin-bottom: 20px;
   margin-top: 10px;
   font-size: 25px;
   color: #000000a8;  
} 
.price__page-content h4 {
   margin-top: 15px;
   margin-bottom: 20px;
   font-size: 22px;
   color: #000000a8; 
}
.price__page-content ul,
.price__page-content ol {
   padding-left: 30px;
   font-size: 17px;
   line-height: 25px;
   color: #000000bd; 
}
.price__page-content ol li::before {
   content: ""; 
}
.price__page-content li::before {
   content: "\2727";
   padding-right: 10px; 
}
.price__page-content p {
  font-size: 16px;
  line-height: 22px;
  margin-bottom: 20px;
  color: #000000b0;
}
/* End Price Pag */

/* Услуги */

.tabs__content.active {
   -webkit-animation: .2s linear .1s forwards show;
   animation: .2s linear .1s forwards show;
   display: -webkit-box;
   display: -ms-flexbox;
   display: flex;
   opacity: 1;
}
.tabs__content {
    display: none;
    opacity: 0;
   -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}
.archive__services-item {
    display: flex;
    flex-direction: column; /* Устанавливает вертикальное расположение элементов */
    justify-content: space-between; /* Размещает элементы с равными промежутками */
    height: 100%; /* Устанавливает высоту на 100% родительского блока */
   margin-bottom: 50px;
   padding: 10px;
   background: #f3f9fb;
   max-width: 380px;
   width: 100%;
   height: 300px;
   position: relative;
   -webkit-transition: all .4s ease;
   transition: all .4s ease;
   color: #000000b5;
}
.archive__services-item:hover {
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
    box-shadow: 0 10px 45px rgba(181, 192, 202, 0.75);
    background: linear-gradient(to right, #0034ffb2 0%, #00a2ff 100%);
    color: #fff;
    transition: all .2s ease;
}
.archive__services-item--name {
   font-family: Inter;
   font-weight: 600;
   font-size: 22px;
   line-height: 28px;
   padding-left: 20px;
   padding-bottom: 10px; 
   height: 90px;
   margin-top: 25px;
}
.archive__services-item--text {
   font-family: Inter;
   font-weight: 300;
   font-size: 14px;
   line-height: 23px;
   padding-left: 20px;
   padding-bottom: 20px; 
}
.services__item-button {
  width: 180px;
  height: 50px;
  background-color: rgba(71, 95, 221, 1);
  font-family: Roboto;
  font-weight: 600;
  font-size: 18px;
  letter-spacing: 1.4px;
  line-height: 28px;
  color: #fff;
  text-transform: uppercase;
  padding: 11px 30px;
  margin-left: 20px;
  margin-bottom: 20px; 
  margin-top: auto; 
}
.archive__services-tabs {
    margin: 13px 0 0;
    display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  margin: 16px 0 91px 0;
}
.archive__services-tabs--caption {
    display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 53px;
  max-width: 790px;
  background-color: #fff;
  border-radius: 5px;
  box-shadow: 0 5px 30px rgba(206, 218, 228, 0.6);
  color: #858585;
  font-size: 16px;
  overflow: hidden;
  margin: 0 auto;
}


.archive__services-tabs--caption li.active::after {
  opacity: 0;
}
.archive__services-tabs--caption li::after {
  position: absolute;
  top: 16px;
  right: 0;
  width: 1px;
  height: 24px;
  background-color: #dee6e9;
  content: '';
  display: block;
}
.archive__services-tabs--caption li.active {
  background-image: -webkit-linear-gradient(24deg, #0cf 0%, #00a2ff 100%);
  background-image: linear-gradient(66deg, #0cf 0%, #00a2ff 100%);
  color: #fff;
  font-weight: 600;
  cursor: default;
}
.archive__services-tabs--caption li {
  position: relative;
  line-height: 53px;
  padding: 0 42px;
  cursor: pointer;
  white-space: nowrap;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
}
.tabs__content {
    display: none;
  opacity: 0;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.archive__services-block--line  {
    max-width: 170px;
    width: 100%;
    margin: 20px auto
}

/* Конец Услуг */



/* Taxonomy */

.taxonomy__services-container {
  max-width: 1260px;
  width: 100%;
  background-color: #fbfbfb;
  margin-bottom: 100px;
  padding: 30px;
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  justify-content: center;
}
.taxonomy__services-item {
    display: flex;
    flex-direction: column; /* Устанавливает вертикальное расположение элементов */
    justify-content: space-between; /* Размещает элементы с равными промежутками */
    height: 100%; /* Устанавливает высоту на 100% родительского блока */
   margin-bottom: 50px;
   padding: 10px;
   background: #f3f9fb;
   max-width: 380px;
   width: 100%;
   height: 300px;
   position: relative;
   -webkit-transition: all .4s ease;
   transition: all .4s ease;
   color: #000000b5;
}
.taxonomy__services-item:hover {
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
    box-shadow: 0 10px 45px rgba(181, 192, 202, 0.75);
    background: linear-gradient(to right, #0034ffb2 0%, #00a2ff 100%);
    color: #fff;
    transition: all .2s ease;
}
.taxonomy__services-item--name {
   font-family: Inter;
   font-weight: 600;
   font-size: 22px;
   line-height: 28px;
   padding-left: 20px;
   padding-bottom: 10px; 
   height: 90px;
   margin-top: 25px;
}
.taxonomy__services-item--text {
   font-family: Inter;
   font-weight: 300;
   font-size: 14px;
   line-height: 23px;
   padding-left: 20px;
   padding-bottom: 20px; 
}
.taxonomy__item-button {
  width: 180px;
  height: 50px;
  background-color: rgba(71, 95, 221, 1);
  font-family: Roboto;
  font-weight: 600;
  font-size: 18px;
  letter-spacing: 1.4px;
  line-height: 28px;
  color: #fff;
  text-transform: uppercase;
  padding: 11px 30px;
  margin-left: 20px;
  margin-bottom: 20px; 
  margin-top: auto; 
}


/* End Taxonomy */






@media (max-width: 1299px) { 
    
    .header__container-content {
        max-width: 880px;
    }
    .header__top-phone {
        margin-left: 9%;
    }
    .header__bottom {
        margin-top: 35px;
    }
    .slider__top-text-description {
        margin-bottom: 80px;
    }
}
@media (max-width: 1295px) {
   .slider__top-text-description {
       margin-bottom: 20px;
   }
}
@media (max-width: 1207px) { 
    
    .header__container-content {
        max-width: 880px;
    }
    .header__top-phone {
        padding: 0;
        margin-left: 9.5%;
        padding-top: 12px;
    }
    .header__bottom {
        margin-top: 35px;
    }
    .slider__top-text-category {
        margin-bottom: 30px;
    }
    .slider__top-text-title {
        margin-bottom: 30px;
    }
    .slider__top-text-description {
        margin-bottom: 20px;
    }
    .wpcf7-submit {
        font-size: 18px;
    }
    .footer__contact {
        width: 25%;
    }
    .footer__contact-address img {
        max-width: none;
    }
}

@media (max-width: 1080px) { 
    
    .header__menu {
        font-size: 16px;
    }
    .header__top {
        margin-left: 20px;
    }
    .wpcf7-submit {
        font-size: 16px;
    }
    .advantages__block-h2 h2 {
        font-size: 35px;
        line-height: 36px;
    }
    .slider__top-text-title {
        margin-bottom: 20px;
   }
}

@media (max-width: 992px) {
    .reviews__item {
	   text-align: left;
   }
    .reviews__container {
	   text-align: center;
   }
    .archive__post-content {
        flex-direction: column;
   }
    .archive__post-text {
        padding-left: 20px;
   }
}

@media (max-width: 970px) {
    .text__block-h2 h2,
    .work__block-h2 h2 {
        font-size: 35px;
    }
    .work__container-item {
        width: calc(50% - 20px);
    }
    .footer__cotainer {
        flex-direction: column;
    }
    .footer__logo-logo {
        text-align: center;
    }
    .footer__menu {
        margin: 0 auto;
        width: 140px;
    }
    .footer__menu-left, 
    .footer__menu-right {
        text-align: left;
        padding-bottom: 40px;
    }
    .footer__menu p {
        text-align: center;
    }
    .footer__contact-address img {
        max-width: none;
    }
    .footer__bottom-copyright {
        flex-direction: column;
    }
    .footer__contact {
        width: 75%;
        margin: 0 auto;
       /* text-align: center; */
    }
    .flex-control-nav {
        display: none;
    }
}

@media (max-width: 954px) { 
    
    .header__top-phone {
        margin-left: 6.5%;
    }
    .header__container-content {
        max-width: calc(58% + var(--padding-container) * 2);
    }
    .header__menu {
        font-weight: 700;
        font-size: 14px;
    }
    .slider__top-text-category a {
        font-size: 24px;
    }
    .slider__top-text-title a {
        font-size: 34px;
    }
    .slider__top-text-description {
        margin-bottom: 30px;
    }
    .slider__top-text-description span {
        font-size: 16px;
    }
    .callback__form-form {
        display: flex;
        flex-direction: column;
        gap: 30px;
        align-items: center;
    }
    #wpcf7-f95-o1 .wpcf7-text{                
         width: 100%;
         max-width: none;
         margin-bottom: 20px;
    }
    .wpcf7-submit {
        display: flex;
        margin: 0 auto;
        max-width: 320px;
        width: 100%;
    }
    .advantages__item {
        width: calc(50% - 10px);
    }


}

@media (max-width: 876px) {

    .header__bottom {
        display: none;
    }
    .header__top-block {
        display: flex;
        flex-direction: row;
        gap: 40px;
        margin-top: 50px;
    }
    .header__top-burger {
        display: flex;
        flex-direction: column;
        gap: 6px;
        padding-top: 13px;
        cursor: pointer;
    }
    .header__top-burger span {
        background-color:#000;
        width: 30px;
        height: 2px;
    }
    .header__top {
        flex-direction: column;
    }
    .header__top-search {
        width: 99%;
    }
    .header__top-phone {
        display: none;
    }
    .header__top-block-phone {
        display: flex;
    }
    .slider__top {
        margin-bottom: 60px;
    }
    .slider__top-text-category {
        margin-bottom: 20px;
    }
    .slider__top-text-category a {
        font-size: 20px;
        letter-spacing: 0.6px;
    }
    .slider__top-text-title {
        margin-bottom: 20px;
    }
    .slider__top-text-title a {
        font-size: 28px;
        letter-spacing: 2.7px;
        
    }
    .slider__top-text-description {
        margin-bottom: 20px;
    }
    .slider__top-text-description span {
        font-size: 14px;
        line-height: 26px;
    }
    .about__content {
        flex-direction: column;
    }
    .about__content-left,
    .about__content-right {
        max-width: 100%;
        width: 100%;
        margin-bottom: 20px
    }
    .sert__h2 h2 {
        padding-top: 50px;
    }
    .sert__h2 {
        padding-bottom: 50px;
    }
    .service__item {
        flex-direction: column;
        height: auto;
    }
    .service__item-left {
        max-width: none;
        padding-bottom: 50px;
    }
    .service__line-vertical {
        display: none;
    }
    .service__item-right {
        max-width: none;
        padding-bottom: 50px;
    }
    .service__item-right ul {
        margin: 0 auto;
    }
    .service__line-gorisontal {
        margin: 25px auto 25px auto;
    }
    .text__block-h2 h2,
    .work__block-h2 h2  {
        font-size: 30px;
        line-height: 35px;
    }
    .text__block-bottom {
        flex-direction: column;
    }
    .text__block-left,
    .text__block-right {
        margin: 0 auto;
    }
    .contacts__page-content {
        flex-direction: column;
        text-align: center; 
    }
    .archive__services-tabs--caption {
        height: 170px;
        flex-direction: column;
    }
    .archive__services-tabs--caption li {
        line-height: 40px
    }
    
}

@media (max-width: 678px) {
    .header__container {
        flex-direction: column;
        text-align: center;
    }
    .header__container-content {
        max-width: calc(90% + var(--padding-container) * 2);
    }
    .header__top {
        padding-top: 5px;
    }
    .header__top-block {
        margin: 10px auto 0 auto;
    }
    .header__top-block-phone {
        margin-left: 0;
    }
    .slider__top-text-category {
        margin-bottom: 20px;
    }
    .slider__top-text-category a {
        font-size: 18px;
        letter-spacing: 0.6px;
    }
    .slider__top-text-title {
        margin-bottom: 20px;
    }
    .slider__top-text-title a {
        font-size: 22px;
        letter-spacing: 1.7px;
    }
    .slider__top-text-description {
        margin-bottom: 20px;
        max-width: 408px;
    }
    .slider__top-text-description span {
        font-size: 14px;
        line-height: 16px;
    }
    .slider__top-text-button {
        width: 180px;
        height: 40px;
        padding: 10px 36px;
    }
    .slider__top-text-button a {
        font-size: 18px;
        line-height: 20px;
        letter-spacing: 1px;
    }
    .sert__h2 h2 {
        font-size: 30px;
    }
    .sert__line {
        width: 80%;
    }
    .work__container-item {
        width: calc(100% - 20px);
    }
    .advantages__item {
        width: calc(100% - 10px);
    }
    .price__page-content-table {
        overflow-y: scroll;
    }
}

@media (max-width: 668px) {
    .sert__carousel-item img {
	   margin: 0 auto;
    }
}

@media (max-width: 580px) {
    .slider__top-text-category, 
    .slider__top-text-title, 
    .slider__top-text-description {
        margin-bottom: 15px;
    }
    .sert__h2 h2 {
        line-height: 36px
    }
    .flex-direction-nav a {
        width: 24px;
        height: 28px;  
    }
    .archive__post-img img {
       width: 100%;
       padding-right: 20px;
   }
}

@media (max-width: 500px) {
    .slider__top-text-category, 
    .slider__top-text-title, 
    .slider__top-text-description {
        margin-bottom: 8px;
    }
    .slider__top-text-description {
        max-width: 308px;
    }
    .single__title {
       font-size: 30px; 
    }
}

@media (max-width: 480px) {
    .slider__top-text-category, 
    .slider__top-text-title, 
    .slider__top-text-description {
        margin-bottom: 5px;
    }
    .slider__top-text-category a {
        font-size: 15px;
    }
    .slider__top-text-title a {
        font-size: 18px;
    }
    .slider__top-img img {
        height: 200px;
    }
    .about__title {
        font-size: 40px;
    }
    .line {
        width: 285px;
        margin: 15px auto;
    }
    .service__item-left p {
        font-size: 25px;
    }
    .service__item-right ul {
        font-size: 15px;
        line-height: 30px;
    }
    .service__item-right ul li::before {
        width: 14px;
        height: 14px;
    }
    .flex-next,
    .flex-prev {
        margin: 0;
    }
}


