/*
Theme Name: ledneon
Author: ledneon
Author URI: http://halabudenco.com/
Version: 0.1
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Tags: white, black, gray, light, one-column, two-columns, right-sidebar, responsive-layout, custom-background, editor-style, featured-images, full-width-template, sticky-post, theme-options
Text Domain: ledneon
*/

* {
  box-sizing: border-box;
  /* Учитывает padding и border внутри заданной высоты */
  font-family: "IBM Plex Sans", Arial, sans-serif;
  font-weight: 300;
  color: #fff;
  _font-size: 1.02em;
}

@font-face {
  font-family: "NeoTokyo";
  src:
        /* url('./css/NeoTokyo.woff2') format('woff2'),
         url('./css/NeoTokyo.woff') format('woff'),*/ url("./css/NeoTokyo.ttf")
    format("truetype");
  font-weight: normal;
  font-style: normal;
}

h2 {
  font-weight: 600;
  font-size: 36px;
}

.h2 {
  font-weight: 600;
  font-size: 32px;
  margin-bottom: 10px;
  text-decoration: none;
  display: block;
}

body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background-color: #0e0e0e;
  scroll-snap-type: y mandatory;
}

.header {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding-top: 100px;
}

.header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  /* Прозрачный темный слой */
  z-index: 1;
}

.header img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.header img.active {
  opacity: 1;
}

.header-content {
  position: relative;
  z-index: 55;
}

.header-content h1 {
  font-size: clamp(58px, 7vw, 72px);
  line-height: 72px;
  margin: 0 30px 0 30px;
}

.header-content p {
  padding-right: 10px;
  padding-left: 10px;
  box-sizing: border-box;
  display: block;
  font-size: 1.5em;
  margin: 10px 0;
  padding: 20px;
}

.phone {
  position: absolute;
  top: 100px;
  right: 20px;
  font-size: 26px;
  text-decoration: none;
  text-shadow: 1px 1px 1px #000;
}

.cta-button {
  display: inline-block;
  padding: 15px 30px;
  margin-top: 20px;
  color: #000000;
  text-decoration: none;
  background-color: #ebcc88;
  box-shadow: 0 0 20px #ebcc88;
  border-radius: 5px;
  transition: box-shadow 0.3s ease;
  clear: both;
}

.cta-button:hover {
  _text-shadow: 0 0 5px #ff0, 0 0 10px #ff0, 0 0 20px #ff0, 0 0 40px #ff0,
    0 0 80px #ff0, 0 0 90px #ff0, 0 0 100px #ff0;
  /* Желтый неоновый эффект для текста */
  box-shadow: 0 0 10px #ff0, 0 0 20px #ff0, 0 0 30px #ff0, 0 0 40px #ff0;
  color: #000;
}

.nav {
  background-color: rgba(0, 0, 0, 1);
  position: fixed;
  width: 100%;
  top: 0;
  height: 100px;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-sizing: border-box;
  _align-items: flex-start;
}

.nav .logo {
  max-height: 100px;
  float: left;
}

.nav ul {
  list-style: none;
  margin: auto;
  width: auto;
  padding: 0;
  display: flex;
  justify-content: flex-end;
  text-align: center;
  align-items: center;
  flex-grow: 1;
}

.nav ul li {
  position: relative;
  margin: 0;
  margin-right: 5px;
  margin-left: 5px;
}

.nav ul li a {
  font-size: 22px;
  font-weight: 300;
  display: inline-block;
  height: 100%;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  padding: 14px 20px;
  color: #ffe7b3;
  text-decoration: none;
  text-shadow: 1px 1px 2px black;
  font-family: NeoTokyo, Arial, Helvetica, sans-serifs;
}

.nav ul li a:hover {
  text-shadow: 0 0 5px #0ff, 0 0 10px #0ff, 0 0 20px #0ff, 0 0 40px #00f,
    0 0 80px #00f, 0 0 90px #00f, 0 0 100px #00f;
  /* Неоновый эффект для текста */
  _box-shadow: 0 0 10px #0ff, 0 0 20px #0ff, 0 0 30px #0ff, 0 0 40px #00f;
  /* Неоновый эффект для блока */
}

.current_page_item {
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
}

.current_page_item a {
  text-shadow: 0 0 5px #0ff, 0 0 10px #0ff, 0 0 20px #0ff, 0 0 40px #00f,
    0 0 80px #00f, 0 0 90px #00f, 0 0 100px #00f !important;
  /* Неоновый эффект для текста */
}

.nav ul li ul {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #333;
  list-style: none;
  padding: 0;
  margin: 0;
  min-width: 200px;
}

.nav ul li:hover ul {
  display: block;
}

.nav ul li ul li a {
  padding: 10px 20px;
}

.nav ul li ul li a:hover {
  background-color: #555;
}

.nav .language-switcher {
  margin-left: 20px;
}

.nav .language-switcher select {
  padding: 5px;
  background-color: #333;
  color: white;
  border: 1px solid #555;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  _margin-top: 40px;
  margin-right: 25px;
  _margin-bottom: 10px;
}

.menu-toggle div {
  width: 25px;
  height: 3px;
  background-color: white;
  margin: 4px;
}

.social-links {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 3;
}

.social-links a {
  color: white;
  text-decoration: none;
  margin-left: 10px;
}

.social-links a:hover {
  color: #ff073a;
}

.content {
  padding: 20px;
  text-align: center;
  margin-top: 60px;
}

.clients {
  margin-top: 40px;
  margin-bottom: 40px;
  margin-left: auto;
  margin-right: auto;
  max-width: 1200px;
  width: 100%;
}

.clients h2 {
  margin-bottom: 20px;
}

.slider {
  display: flex;
  overflow-x: auto;
  white-space: nowrap;
  gap: 20px;
}

.slider img {
  max-width: 150px;
  height: auto;
  margin-right: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

.clients-column {
  margin-top: 40px;
  text-align: left;
}

.clients-column h3 {
  font-size: 1.5em;
  margin-bottom: 10px;
}

.clients-column ul {
  list-style: none;
  padding: 0;
}

.clients-column ul li {
  margin-bottom: 5px;
}

.t-col:nth-child(1) .h2::before {
  content: "";
  display: inline-block;
  background-image: url(/wp-content/themes/ledneon/i/elem/led14.png);
  background-repeat: no-repeat;
  background-size: contain;
  width: auto;
  height: 1em; /* подгонка по высоте текста */
  aspect-ratio: 1 / 1; /* если квадратная иконка */
  vertical-align: middle;
  margin-right: 15px;
}


.order__steps-wrapper{
    position: relative;
}
.order__steps-line {
    width: 120%;
    max-width: 100vw;
    height: 2px;
    position: absolute;
    left: -10%;
    top: 32px;
    background: linear-gradient(to right, rgba(255, 39, 76, 0), rgb(189, 234, 251), rgb(189, 234, 251), rgb(189, 234, 251), rgba(255, 39, 76, 0));
}

.order__steps-cards {
    padding-inline: 60px;
    display: flex
;
    justify-content: space-between;
    margin-bottom: 64px;
}
.order__steps-card {
    display: flex
;
    flex-direction: column;
    align-items: center;
}

.steps-card__icon-wrapper {
    border: 1px solid rgb(43, 43, 43);
    border-radius: 16px;
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    background: rgba(255, 255, 255, 0.04);
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 24px;
    width: 64px;
    height: 64px;
}



@media (max-width: 767px) {
    .order__steps-line {
        display: none;
    }
}
@media (max-width: 767px) {
    .order__steps-cards {
        padding-inline: 0;
        /* flex-direction: column; */
        gap: 24px;
        flex-wrap: wrap;
        align-items: center;
        justify-content: center;
    }
}
@media (max-width: 767px) and (max-width: 500px) {
    .order__steps-card {
        width: 100%;
    }
}

@media (max-width: 767px) {
    .order__steps-card {
        border: 1px solid rgb(43, 43, 43);
        border-radius: 24px;
        padding: 16px;
        /* width: 300px; */
        width: calc(48% - 16px);
    }
}


.t-col:nth-child(2) .h2::before {
  content: "";
  display: inline-block;
  background-image: url(/wp-content/themes/ledneon/i/elem/led16.png);
  background-repeat: no-repeat;
  background-size: contain;
  width: auto;
  height: 1em; /* подгонка по высоте текста */
  aspect-ratio: 1 / 1; /* если квадратная иконка */
  vertical-align: middle;
  margin-right: 15px;
}

.t-col:nth-child(3) .h2::before {
  content: "";
  display: inline-block;
  background-image: url(/wp-content/themes/ledneon/i/elem/led18.png);
  background-repeat: no-repeat;
  background-size: contain;
  width: auto;
  height: 1em; /* подгонка по высоте текста */
  aspect-ratio: 1 / 1; /* если квадратная иконка */
  vertical-align: middle;
  margin-right: 15px;
}
.t-col:nth-child(4) .h2::before {
  content: "";
  display: inline-block;
  background-image: url(/wp-content/themes/ledneon/i/elem/led17.png);
  background-repeat: no-repeat;
  background-size: contain;
  width: auto;
  height: 1em; /* подгонка по высоте текста */
  aspect-ratio: 1 / 1; /* если квадратная иконка */
  vertical-align: middle;
  margin-right: 15px;
}

.t-col:nth-child(5) .h2::before {
  content: "";
  display: inline-block;
  background-image: url(/wp-content/themes/ledneon/i/elem/led11.png);
  background-repeat: no-repeat;
  background-size: contain;
  width: auto;
  height: 1em; /* подгонка по высоте текста */
  aspect-ratio: 1 / 1; /* если квадратная иконка */
  vertical-align: middle;
  margin-right: 15px;
}

.t-col:nth-child(6) .h2::before {
  content: "";
  display: inline-block;
  background-image: url(/wp-content/themes/ledneon/i/elem/led5.png);
  background-repeat: no-repeat;
  background-size: contain;
  width: auto;
  height: 1em; /* подгонка по высоте текста */
  aspect-ratio: 1 / 1; /* если квадратная иконка */
  vertical-align: middle;
  margin-right: 15px;
}

@media only screen and (max-width: 976px) {
  .t-col1,
  .t-col2 {
    margin-bottom: 30px;
  }
  .workscategory h2 {
    font-size: 18px;
  }

  .cta-button {
    margin-left: 20px !important;
  }

  .phone::before {
    content: "";
    display: inline-block;
    width: 24px;
    height: 24px;
    --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cpath d='m12.593 23.258l-.011.002l-.071.035l-.02.004l-.014-.004l-.071-.035q-.016-.005-.024.005l-.004.01l-.017.428l.005.02l.01.013l.104.074l.015.004l.012-.004l.104-.074l.012-.016l.004-.017l-.017-.427q-.004-.016-.017-.018m.265-.113l-.013.002l-.185.093l-.01.01l-.003.011l.018.43l.005.012l.008.007l.201.093q.019.005.029-.008l.004-.014l-.034-.614q-.005-.018-.02-.022m-.715.002a.02.02 0 0 0-.027.006l-.006.014l-.034.614q.001.018.017.024l.015-.002l.201-.093l.01-.008l.004-.011l.017-.43l-.003-.012l-.01-.01z'/%3E%3Cpath fill='%23000' d='M8.172 15.829c3.845 3.845 7.408 4.266 8.454 4.305c1.264.046 2.554-.986 3.112-2.043c-.89-1.044-2.049-1.854-3.318-2.732c-.749.748-1.672 2.138-2.901 1.64c-.699-.281-2.425-1.076-3.933-2.585S7.283 11.18 7 10.482c-.498-1.231.896-2.156 1.645-2.905c-.878-1.29-1.674-2.479-2.716-3.324c-1.072.56-2.11 1.84-2.063 3.121c.039 1.046.46 4.609 4.306 8.455m8.38 6.304c-1.44-.053-5.521-.617-9.795-4.89c-4.273-4.274-4.836-8.354-4.89-9.795c-.08-2.196 1.602-4.329 3.545-5.162a1.47 1.47 0 0 1 1.445.159c1.608 1.173 2.717 2.95 3.67 4.342A1.504 1.504 0 0 1 10.35 8.7l-1.356 1.357C9.309 10.752 9.95 11.95 11 13s2.248 1.691 2.944 2.006l1.355-1.356a1.5 1.5 0 0 1 1.918-.171c1.42.984 3.088 2.077 4.304 3.634a1.47 1.47 0 0 1 .189 1.485c-.837 1.953-2.955 3.616-5.158 3.535'/%3E%3C/g%3E%3C/svg%3E");
    background-color: currentColor;
    -webkit-mask-image: var(--svg);
    mask-image: var(--svg);
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
  }

  .phone {
    width: 25px;
    height: 25px;
    overflow: hidden;
    _display: flex;
    flex-direction: column;
    position: absolute;
    top: 40px;
    right: 70px;
    font-size: 24px !important;
    animation: ring 0.5s infinite;
  }

  .nav .logo {
    max-width: 280px;
  }

  .body {
    margin-left: 20px !important;
    margin-right: 20px !important;
  }

  .header-content p {
    font-size: clamp(10px, 7vw, 24px);
    text-shadow: 1px 1px 2px black;
  }

  .menu-toggle {
    display: flex;
  }

  .nav ul {
    display: none;
    flex-direction: column;
    width: 100%;
  }

  .nav ul.active {
    justify-content: center;
    z-index: 999;
    display: flex;
    top: 100px;
    bottom: 0px;
    position: fixed;
    background-color: rgba(0, 0, 0, 0.8);
  }

  .nav ul.active li a {
    font-size: 32px;
    font-weight: 600;
  }

  .nav ul li {
    display: block;
  }

  .nav ul li ul {
    position: static;
  }

  .nav ul li:hover ul {
    display: block;
    width: 100%;
  }

  .slider img {
    max-width: 100px;
  }

  .lang,
  #lang {
    top: 120px !important;
    left: 20px !important;
    right: 20px !important;
    display: none;
  }
}

.header-content h1 {
  color: #fff;
  text-shadow: 0 0 7px #fff;

  animation: pulsate 0.11s ease-in-out infinite alternate;
  font-family: "Pacifico", cursive;
  font-weight: 100;
  font-style: normal;
}

.act {
  display: block !important;
}

.lang,
#lang {
  position: absolute;
  text-align: center;
  _left: 20px;
  top: 10px;
  right: 20px;
  z-index: 9999;
  list-style: none;
}

.lang li,
#lang li {
  display: inline-block;
}

.lang a,
#lang a {
  color: #f2f2f2;
  font-size: 14px;
  padding: 3px 6px 3px 6px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  text-decoration: none;
}

.lang a:hover,
.lang .current-lang a,
#lang a:hover,
#lang .current-lang a {
  color: #000;
  background-color: #b3eaf8;
}

.nav ul {
  _bottom: 0px;
  padding-top: 20px;
  padding-bottom: 20px;
}

@keyframes pulsate {
  /*
    0% {
        text-shadow:
        0 0 4px #ffe7b3,
        0 0 8px #ffe7b3, 
        0 0 16px #ffe7b3,
        0 0 30px #05536e,
        0 0 60px #05536e,
        0 0 70px #05536e,
        0 0 80px #05536e,
        0 0 100px #05536e; 
    }

    100% {
        text-shadow:
        0 0 7px #ffe7b3,
        0 0 10px #ffe7b3,
        0 0 20px #ffe7b3,
        0 0 40px #05536e,
        0 0 70px #05536e, 
        0 0 80px #05536e,
        0 0 90px #05536e,
        0 0 100px #05536e;
    }*/
}

.pagination {
  clear: both;
  display: flex;
  justify-content: center;
  /* Центрирует пагинацию на странице */
  align-items: center;
  gap: 10px;
  /* Расстояние между ссылками */
  margin: 40px 0;
  /* Отступы сверху и снизу */
  font-family: Arial, sans-serif;
}

.pagination a {
  text-decoration: none;
  color: #4fa7a9;
  /* Синий цвет ссылок */
  padding: 10px 15px;
  /* Отступы внутри кнопки */
  border: 1px solid #ffe7b3;
  /* Граница */
  border-radius: 5px;
  /* Скругленные углы */
  transition: background-color 0.3s, color 0.3s;
  /* Анимация при наведении */
}

.pagination a:hover {
  background-color: #ffe7b3;
  /* Светлый фон при наведении */
  color: #4fa7a9;
  /* Более темный цвет текста */
}

.pagination .current {
  background-color: #4fa7a9;
  /* Синий фон для активной страницы */
  color: #ffe7b3;
  /* Белый текст */
  border-color: #4fa7a9;
  /* Синий цвет границы */
  cursor: default;
  /* Убирает "руку" на активной ссылке */
  pointer-events: none;
  /* Отключает кликабельность активной ссылки */

  text-decoration: none;
  padding: 10px 15px;
  /* Отступы внутри кнопки */
  border: 1px solid #ffe7b3;
  /* Граница */
  border-radius: 5px;
  /* Скругленные углы */
  transition: background-color 0.3s, color 0.3s;
  /* Анимация при наведении */
}

.pagination a:first-child,
.pagination a:last-child {
  font-weight: bold;
  /* Выделение кнопок "Previous" и "Next" */
}

@media only screen and (max-width: 768px) {
  .works {
  }
}

.bg2 {
  background-color: #0e0e0e;
}

.works,
.workscategory {
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  max-width: 1200px;
  margin-top: 40px;
  margin-bottom: 40px;
  z-index: 3;
}

.workscategory h1,
.works h1 {
  color: #fff;
  margin-left: 10px;
}

.workscategory h2,
.works h2 {
  color: #fff;
  margin-left: 10px;
  _font-size: 20px;
}

.works-content {
  width: 100%;
}

.work-item:hover {
  _text-shadow: 0 0 5px #0ff, 0 0 10px #0ff, 0 0 20px #0ff, 0 0 40px #00f,
    0 0 80px #00f, 0 0 90px #00f, 0 0 100px #00f;
  /* Неоновый эффект для текста */
  box-shadow: 0 0 10px #0ff, 0 0 20px #0ff, 0 0 30px #0ff, 0 0 40px #00f;
  /* Неоновый эффект для блока */
}

.workscategory .pr {
  width: 33%;
  display: inline-block;
  vertical-align: top;
  padding: 50px 30px 20px 30px;
  box-sizing: border-box;
  cursor: pointer;
}

.works .pr {
  width: 25%;

  display: inline-block;
  vertical-align: top;
  padding: 20px 10px 0 10px;
  box-sizing: border-box;
  cursor: zoom-in;
  aspect-ratio: 1 / 1;
}

@media only screen and (max-width: 768px) {
  .workscategory .pr,
  .works .pr {
    width: 50%;
    /* 50% ширины на меньших экранах */
  }
}

.catname {
  position: absolute;
  font-size: 18px;
  top: 0;
  bottom: 0px;
  vertical-align: middle;
  text-align: center;
  left: 0;
  right: 0;
  display: table-row;
  _background-color: rgba(0, 0, 0, 0.2);
}

.workscategory .work-item::before,
.works .work-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient-bg, linear-gradient(135deg, #ff7e5f, #feb47b));
  z-index: -9999;
  transition: opacity 0.5s ease;
  /* Плавное исчезновение */
  opacity: 0.5;
  /* Градиент виден по умолчанию */
}

.workscategory .work-item,
.works .work-item {
  width: 100%;
  height: 100%;
  padding-bottom: 100%;
  position: relative;
  overflow: hidden;
}

.workscategory .category,
.works .category {
  margin-left: 10px;
  background-color: transparent;
  border: 2px solid #ffffff;
  /* Неоновый цвет */
  color: #ffffff;
  /* Текст неоновый */
  padding: 10px 15px;
  font-size: 16px;
  font-family: "Arial", sans-serif;
  border-radius: 5px;
  outline: none;
  position: relative;
  transition: all 0.3s ease;
}

/* Эффект при фокусе */
.works .category:focus {
  border-color: #ff00ff;
  /* Неоновый розовый при фокусе */
  box-shadow: 0 0 10px rgba(255, 0, 255, 0.7);
  /* Неоновый свет */
}

/* Стиль для опций в селекте */
.works .category option {
  background-color: #333;
  color: #ffffff;
  /* Цвет текста для опций */
  padding: 10px;
  border: none;
  font-size: 16px;
}

.works-content p {
  color: #fff;
  margin-left: 10px;
}

/* Эффект для опций при наведении */
.works .category option:hover {
  background-color: #ff00ff;
  /* Неоновый розовый при наведении */
  color: black;
}

/* Стиль для активного/выбранного элемента */
.works .category option:checked {
  background-color: #ffffff;
  /* Выбранный элемент выделяется */
  color: black;
}

.lb-prev,
.lb-next {
  background-color: rgba(0, 0, 0, 0.5);
  /* Тёмный фон */
  color: #fff;
  /* Белый цвет стрелок */
  padding: 10px;
  border-radius: 50%;
}

.lb-prev:hover,
.lb-next:hover {
  background-color: rgba(0, 0, 0, 0.8);
  /* Более темный фон при наведении */
}

.body {
  color: #fff;
  font-size: 16px;
  line-height: 22px;
  margin-top: 120px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.body strong,
.body b {
  font-weight: 600;
}

.body a {
  color: #7df9ff;
}

.blog-container {
  max-width: 1200px;
  margin: 100px auto;
  padding: 20px;
  font-family: Arial, sans-serif;
}

.blog-header h1 {
  text-align: left;
  margin-bottom: 30px;
  color: #fff;
}

.blog-categories {
  margin-bottom: 20px;
  padding: 15px;
  background-color: rgba(26, 26, 26, 0.8);
  border: 1px solid #0e0e0e;
  border-radius: 8px;
}

.blog-categories h2 {
  margin-bottom: 15px;
  font-size: 1.5em;
}

.categories-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.categories-list li {
  background-color: #020202;
  border-radius: 5px;
}

.categories-list li a {
  display: block;
  padding: 10px 15px;
  color: #fff;
  text-decoration: none;
  font-size: 1em;
  font-weight: bold;
  text-align: center;
}

.categories-list li a:hover {
  background-color: #333333;
}

.blog-post {
  margin-bottom: 30px;
  border-bottom: 1px solid #333;
  padding-bottom: 15px;
}

.blog-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
}

.blog-td:first-child {
  flex: 0 0 40%;
  text-align: center;
}

/* Правая колонка — текст (больше) */
.blog-td:last-child {
  flex: 1;
}

.blog-post h2 a {
  color: #fff;
  text-decoration: none;
  font-size: 1em;
}

.blog-post h2 a:hover {
  text-decoration: underline;
}

.content_b .bg1 {
  margin-top: 100px;
}

.post-meta {
  font-size: 0.9em;
  color: #666;
  margin-bottom: 10px;
}

.post-meta span {
  color: #7df9ff;
}

.post-meta span a {
  color: #ffea19;
}

@media only screen and (max-width: 768px) {
  .categories-list {
    flex-direction: column;
  }

  .categories-list li a {
    font-size: 0.9em;
    padding: 8px 12px;
  }

  .blog-post h2 a {
    font-size: 1.2em;
  }
}

.blocks h2 {
  color: #f2f2f2;
  font-size: 36px;
  font-family: "IBM Plex Sans", Arial, sans-serif;
  line-height: 1.2;
  font-weight: 700;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
}

.bg1 {
  box-shadow: #000 0px 0px 5px;
  background-image: -webkit-linear-gradient(
    top,
    rgb(26, 26, 26),
    rgb(26, 26, 26)
  );
  min-height: 50vh;
  box-sizing: border-box;
  display: flex;
  /* Включаем Flexbox */
  justify-content: center;
  /* Центрируем по горизонтали */
  align-items: center;
  position: relative;
}

.elm1 {
  width: 100%;
  z-index: 6;
}

.icon0 {
  position: absolute;
  width: 100px;
  height: 100px;
  background-size: contain;
  z-index: 5;
}

.icon {
  position: absolute;
  width: 100px;
  height: 100px;
  background-size: contain;
  z-index: -9999;
}

@media only screen and (max-width: 1400px) {
  .icon-1 {
    left: 150px !important;
  }

  .blocksabout {
    padding-bottom: 60px;
  }
}

.iconov {
  overflow: hidden;
}

.icon-1 {
  top: 0px;
  left: 150px;
  width: 100px;
  background: url("i/elem/led1.png") no-repeat;
  background-size: contain;
  transform: rotate(45deg) !important;
  z-index: 2;

  webkit-animation: fadein 5s ease-in 1s infinite alternate;
  animation: fadein 5s ease-in 1s infinite alternate;
}

.icon-2 {
  width: 35%;
  height: 35%;
  top: 0px;
  bottom: 0px;
  margin: auto;
  right: 0;
  background: url("i/elem/led2.png") no-repeat;
  background-size: contain;
  z-index: 999;

  webkit-animation: fadein 2s ease-in 1s infinite alternate;
  animation: fadein 2s ease-in 1s infinite alternate;

  z-index: 2;
}

.icon-3 {
  margin: auto;
  right: 0px;
  left: 0;
  bottom: 0px;
  width: 300px;
  height: 260px;
  background: url("i/elem/led7.png") bottom no-repeat;
  background-size: contain;
  z-index: 999;
  webkit-animation: fadein2 1s ease-in 1s infinite alternate;
  animation: fadein2 1s ease-in 1s infinite alternate;
  z-index: 2;
}

.icon-4 {
  top: 180px;
  left: 6%;
  background: url("i/elem/led4.png") 50% 50% no-repeat;
  background-size: contain;
  webkit-animation: fadein2 2s infinite alternate;
  animation: fadein2 2s infinite alternate;
  z-index: 2;
}

.icon-5 {
  top: 120px;
  right: 10%;
  width: 100px;
  height: 100px;
  background: url("i/elem/led5.png") 50% 50% no-repeat;
  background-size: contain;
  webkit-animation: rotate 10s linear infinite;
  animation: rotate 10s linear infinite;
  z-index: 2;
}

.icon-6 {
  margin: auto;
  right: 0px;
  bottom: 100px;
  width: 75px;
  height: 75px;
  background: url("i/elem/led6.png") 50% 50% no-repeat;
  background-size: contain;
  webkit-animation: fadein 2s ease-in 1s infinite alternate;
  animation: fadein 2s ease-in 1s infinite alternate;
  z-index: 2;
}

.icon-7 {
  top: 120px;
  right: 3%;
  background: url("i/elem/led7.png") no-repeat;
  background-size: contain;
  webkit-animation: rotate 10s linear infinite;
  animation: rotate 10s linear infinite;
  z-index: 2;
}

.icon-8 {
  top: 20px;
  right: 3%;
  background: url("i/elem/led8.png") no-repeat;
  background-size: contain;
  webkit-animation: fadein 2s ease-in 1s infinite alternate;
  animation: fadein 2s ease-in 1s infinite alternate;
  z-index: 2;
}

.icon-9 {
  top: 5%;
  right: 3%;
  background: url("i/elem/led9.png") no-repeat;
  background-size: contain;
  webkit-animation: rotate 10s linear infinite;
  animation: rotate 10s linear infinite;
  z-index: 2;
}

.icon-10 {
  bottom: 0;
  left: 3%;
  background: url("i/elem/led10.png") no-repeat;
  background-size: contain;
  webkit-animation: fadein 5s ease-in 1s infinite alternate;
  animation: fadein 5s ease-in 1s infinite alternate;
  z-index: 2;
}

.icon-11 {
  top: 9%;
  left: 3%;
  background: url("i/elem/led11.png") no-repeat;
  background-size: contain;
  webkit-animation: fadein2 2s infinite alternate;
  animation: fadein2 2s infinite alternate;
  z-index: 2;
}

.icon-12 {
  bottom: 9%;
  right: 3%;
  background: url("i/elem/led12.png") no-repeat;
  background-size: contain;
  webkit-animation: fadein2 3s linear infinite;
  animation: fadein2 30s linear infinite;
  z-index: 2;
}

.icon-13 {
  top: 50%;
  left: 5%;
  background: url("i/elem/led13.png") no-repeat;
  background-size: contain;
  webkit-animation: fadein 10s linear infinite;
  animation: fadein 10s linear infinite;
  z-index: 2;
}

@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(1turn);
  }
}

@keyframes fadein {
  0% {
    opacity: 1;
  }

  to {
    opacity: 0.2;
  }
}

@keyframes fadein2 {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0.2;
  }
}

.blocksabout {
  box-sizing: border-box;
  margin-right: auto;
  margin-left: auto;
  color: #fff;
  line-height: 24px;
  max-width: 1200px;
  padding: 0 20px 60px 20px;
}

.blockscontacts {
  margin-right: auto;
  margin-left: auto;
  color: #fff;
  line-height: 24px;
  max-width: 1200px;
  padding: 20px;
  box-sizing: border-box;
  width:100%;
}

.blocksservices {
  margin-right: auto;
  margin-left: auto;
  color: #fff;
  line-height: 24px;
  max-width: 1200px;
  padding-left: 10px;
  padding-right: 10px;
  padding-bottom: 40px;
  padding-top: 40px;
}

@media only screen and (max-width: 768px) {
  .preimush .ul{
    margin-left:0% !important;
  }
}

.preimush{
  background:url("/wp-content/uploads/2025/08/IMG_2978.jpg") no-repeat top;
}
.preimush .ul{
  margin-left:50%;

}

.preimush .ul .li{
  background-image: -webkit-linear-gradient(top, rgb(26, 26, 26), rgb(26, 26, 26));
  padding:20px;
  border-radius: 30px;
}

.floatr {
  float: right;
}

.t-col {
  display: flex;
  margin-top: 30px;
  margin-bottom: 30px;
  align-items: center;
}

.t-col1 {
  max-width: 560px;
  float: left;
  width: 50%;
  padding: 25px;
  background: linear-gradient(135deg, rgb(235, 204, 136, 0.5), rgb(0, 0, 0));
  box-shadow: 0 0 10px rgb(179, 234, 248, 0.5), 0 0 20px rgb(179, 234, 248, 0.5),
    0 0 40px rgb(179, 234, 248, 0.5), 0 0 80px rgb(179, 234, 248, 0.5);

  border-radius: 5px;
}

.t-col2 {
  max-width: 560px;
  float: right;
  width: 50%;
  padding: 25px;
  background: linear-gradient(135deg, rgb(0, 0, 0), rgb(179, 234, 248, 0.5));
  box-shadow: 0 0 10px rgb(235, 204, 136, 0.5), 0 0 20px rgb(235, 204, 136, 0.5),
    0 0 40px rgb(235, 204, 136, 0.5), 0 0 80px rgb(235, 204, 136, 0.5);

  border-radius: 5px;
}

.t-col1 img {
  max-width: 280px;
  text-align: center;

  max-width: 280px;
  max-height: 280px;
  object-fit: cover; /* обрезает изображение, не искажая */
  object-position: center; /* обрезка по центру */
  overflow: hidden;
  border-radius: 8px;
}

.t-col2 img {
  max-width: 280px;
  text-align: center;

  max-width: 280px;
  max-height: 280px;
  object-fit: cover; /* обрезает изображение, не искажая */
  object-position: center; /* обрезка по центру */
  overflow: hidden;
  border-radius: 8px;
}

.t-col-img {
  width: 50%;
  text-align: center;
  _padding: 25px;
}

.t-col-img img {
  max-width: 280px;
  margin: auto;
  _adding: 25px;

  max-width: 280px;
  max-height: 280px;
  object-fit: cover; /* обрезает изображение, не искажая */
  object-position: center; /* обрезка по центру */
  overflow: hidden;
  border-radius: 8px;
}

@media only screen and (max-width: 768px) {
  .t-col {
    display: flex;
    flex-direction: column;
    /* Ставим элементы в столбик */
  }

  .sort1 {
    order: 2;
  }

  .sort2 {
    order: 1;
  }

  .t-col1 {
    float: left;
    width: 100% !important;
  }

  .t-col2 {
    float: right;
    width: 100% !important;
  }

  .t-col-img {
    margin: auto;
    width: 80% !important;
    text-align: center;
  }

  .t-col-img img {
    max-width: none !important;
    margin: auto;
  }
}

.ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr;
  /* Одна колонка по умолчанию */
  gap: 10px;
  /* Расстояние между ячейками */
}

.ul .li {
  padding-bottom: 20px;
  /* Отступ внутри ячейки */
}

.ul h3 {
  font-size: 24px;
  font-weight: 600;
}

@media (min-width: 768px) {
  .ul {
    grid-template-columns: repeat(2, 1fr);
  }

  .ul .li {
    _margin-right: 150px;
  }
}

.ordernow1 {
  max-width: 800px;
  margin: auto;
  text-align: center;
  padding: 20px 20px 20px 20px;
}

#workers,
#clients {
  position: relative;
}

.workers {
  padding: 20px;
  box-sizing: border-box;
  margin: auto;
  max-width: 1200px;
}

#constru {
  background-image: url(i/works/IMG_1957.JPG);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding-top: 0px;
  padding-bottom: 0px;
}

.tooltip-horizontal-scroll-icon_hand {
  animation: tooltip-horizontal-scroll-icon_anim-scroll-hand 2s infinite;
}

.tooltip-horizontal-scroll-icon_card {
  animation: tooltip-horizontal-scroll-icon_anim-scroll-card 2s infinite;
}

@keyframes tooltip-horizontal-scroll-icon_anim-scroll-hand {
  0% {
    transform: translateX(80px) scale(1);
    opacity: 0;
  }

  10% {
    transform: translateX(80px) scale(1);
    opacity: 1;
  }

  20%,
  60% {
    transform: translateX(175px) scale(0.6);
    opacity: 1;
  }

  80% {
    transform: translateX(5px) scale(0.6);
    opacity: 1;
  }

  to {
    transform: translateX(5px) scale(0.6);
    opacity: 0;
  }
}

@keyframes tooltip-horizontal-scroll-icon_anim-scroll-card {
  0%,
  60% {
    transform: translateX(0);
  }

  80%,
  to {
    transform: translateX(-240px);
  }
}

.clients .swiper-slide {
  max-width: 150px;
  max-height: 150px;
  background-color: #1a1a1a;
  height: 200px !important;
  text-align: center;
  position: relative;
}

.clients .swiper-pagination {
  bottom: -20px !important;
}
.clients .swiper-slide img:hover{
  zoom:1.1;
}
.baseline{
  align-items: baseline;
}

.clients .swiper-slide img {
  max-width: 100px;
  max-height: 100px;
  margin: auto;
  position: absolute;
  left: 0px;
  bottom: 0;
  top: 0px;
  right: 0px;
  margin: auto;
}

.clients .swiper-button-next {
  color: #fff;
  opacity: 0.4;
  height: 40px;
  top: 40px;
  bottom: 0;
  margin: auto;
}

.clients .swiper-button-prev {
  color: #fff;
  opacity: 0.4;
  height: 40px;
  top: 40px;
  bottom: 0;
  margin: auto;
}

.clients .swiper-pagination {
  color: #fff;
  opacity: 0.4;
}

.review {
  max-width: 1200px;
  margin: auto;
}

.h50 {
  min-height: 50vh !important;
}

@media only screen and (min-width: 768px) {
  .workers .swiper-slide {
    background-color: #1a1a1a;
    overflow: hidden;
    position: relative;
    border-radius: 4px;
    height: 280px !important;
    text-align: left;
    position: relative;
    cursor: pointer;
  }
}

.workers .swiper-slide {
  background-color: #1a1a1a;
  overflow: hidden;
  position: relative;
  border-radius: 4px;
  height: 380px !important;
  text-align: left;
  position: relative;
  cursor: pointer;
}

.workers .swiper-slide img {
  max-width: 100px;
  max-height: 100px;
  margin: auto;
  position: absolute;
  left: 0px;
  bottom: 0;
  top: 0px;
  right: 0px;
  margin: auto;
}

.workers .swiper-button-next {
  color: #fff;
  opacity: 0.4;
  height: 40px;
  top: 40px;
  bottom: 0;
  margin: auto;
}

.workers .swiper-button-prev {
  color: #fff;
  opacity: 0.4;
  height: 40px;
  top: 40px;
  bottom: 0;
  margin: auto;
}

.workers .swiper-pagination {
  color: #fff;
  opacity: 0.4;
}

.author {
  width: 100%;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  text-align: left;
}

.occupation {
  -webkit-flex-grow: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}

.employee-card {
  padding: 40px 20px 20px 40px;
  height: 360px;
  cursor: pointer;
}

@media only screen and (min-width: 768px) {
  .employee-avatar {
    float: left;
    width: 100px !important;
    height: 100px !important;
    padding-left: 100px !important;
    background-size: cover;
    background-position: center;
    border-radius: 50%;
    margin: 0 auto 10px;
    margin-right: 30px;
    margin-bottom: 30px;
  }

  .employee-name {
    font-size: 26px !important;
    line-height: 1.23;
    font-family: "IBM Plex Sans", Arial, sans-serif;
    font-weight: 600;
    color: #e0e0e0;
    margin-bottom: 7px;
    margin-top: 5px !important;
  }

  .employee-description {
    font-size: 20px !important;
    line-height: 1.55;
    color: #e0e0e0;
    margin: 5px 0;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    /* Для Firefox на macOS */
  }
}

.employee-avatar {
  float: left;
  width: 50px;
  height: 50px;
  padding-left: 50px;
  background-size: cover;
  background-position: center;
  border-radius: 50%;
  margin: 0 auto 10px;
  margin-right: 30px;
  margin-bottom: 30px;
}

.employee-name {
  font-size: 18px;
  line-height: 1.23;
  font-family: "IBM Plex Sans", Arial, sans-serif;
  font-weight: 600;
  color: #e0e0e0;
  margin-bottom: 7px;
  margin-top: 0px;
}

.employee-description {
  font-size: 18px;
  line-height: 1.55;
  color: #e0e0e0;
  margin: 5px 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  /* Для Firefox на macOS */
}

.employee-description::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 200px;
  /* Увеличиваем высоту затемненной области */
  background: linear-gradient(
    to bottom,
    rgba(26, 26, 26, 0),
    rgba(26, 26, 26, 1)
  );
  /* Градиент с цветом фона */
}

.employee-position {
  box-sizing: border-box;
  font-family: "IBM Plex Sans", Arial, sans-serif;
  font-weight: 300;
  color: #fff;
  font-size: 16px;
  line-height: 1.55;
  margin: 5px 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  /* Для Firefox на macOS */
}

#sochialsharebutton {
  position: fixed;
  z-index: 10000;
  bottom: 10px;
  margin: auto;
  border-radius: 100px;
  -moz-border-radius: 100px;
  -webkit-border-radius: 100px;
  padding: 10px;
  box-sizing: border-box;
  background: rgba(86, 210, 247, 0.591);
  right: 20px;
  width: 50px;
  height: 50px;
  display: block;
}

#sochialshare {
  position: fixed;
  z-index: 10000;
  bottom: 60px;
  width: 50px;
  right: 20px;
  height: 170px;
  display: block;
  margin: auto;
}

#sochialshare div {
  display: block;
}

#sochialshare .fa svg {
  vertical-align: middle;
  padding: 5px;
}

#sochialshare .fa {
  border-radius: 100px;
  -moz-border-radius: 100px;
  -webkit-border-radius: 100px;
  display: inline-block;
  box-sizing: border-box;
  padding: 0px;
  box-sizing: border-box;
  font-size: 30px;
  line-height: 0px;
  width: 50px;
  height: 50px;
  margin-bottom: 3px;
  vertical-align: middle;
  color: #fff;
  text-align: center;
  text-decoration: none;
}

#sochialshare .fa svg {
  column-fill: #fff;
  margin-top: 12px;
}

#sochialshare .fa:hover {
  opacity: 0.7;
  color: #fff !important;
}

.fa-facebook {
  background: #3b5998;
  color: #fff !important;
}

.fa-telegram svg {
  margin-left: 7px;
  margin-top: 0px;
}

.fa-telegram {
  background: #3b5998;
  color: #fff !important;
}

.fa-whatsapp {
  background: #4fce5d;
  color: #fff !important;
}

.fa-viber {
  background: #665cac;
  color: #fff !important;
}

.relative {
  position: relative;
}

#reviews {
  margin-top: 50px;
  position: relative;
}

.reviews {
  max-width: 1200px;
  margin: auto;
  position: relative;
  margin-bottom: 30px;
  padding: 20px;
  box-sizing: border-box;
}

.reviews .employee-avatar {
  position: absolute;
  top: -50px;

  float: left;
  width: 100px;
  height: 100px;
  padding-left: 50px;
  background-size: cover;
  background-position: center;
  border-radius: 50%;
  margin: 0 auto 10px;
  margin-right: 30px;
  margin-bottom: 30px;
}

.reviews .employee-name {
  margin-top: 10px;
}

.reviews .swiper-slide img {
  max-width: 100px;
  max-height: 100px;
  margin: auto;
  position: absolute;
  left: 0px;
  bottom: 0;
  top: 0px;
  right: 0px;
  margin: auto;
}

.reviews .swiper-button-next {
  color: #fff;
  opacity: 0.4;
  height: 40px;
  top: 40px;
  bottom: 0;
  margin: auto;
}

.reviews .swiper-button-prev {
  color: #fff;
  opacity: 0.4;
  height: 40px;
  top: 40px;
  bottom: 0;
  margin: auto;
}

.reviews .swiper-pagination {
  color: #fff;
  opacity: 0.4;
}

.reviews .employee-card {
  height: 250px;
}

.swiper-pagination-bullet-active {
  background: #fff !important;
}

.swiper-pagination-bullet {
  background: #fff !important;
}

@media only screen and (min-width: 768px) {
  .reviewspage .review-card {
    width: 30% !important;
    float: left !important;
  }

  .reviews .employee-card {
    height: 320px !important;
  }

  .review-card:nth-child(3n + 2) {
    margin: 0 20px 0 20px !important;
  }
}

.review-card {
  margin-bottom: 20px;
}

.reviewspage .review-card {
  width: 100%;
  display: block;
}

.review-card {
  padding: 40px 20px 20px 40px;
  height: 360px;
  margin: 0 0 20px 0 !important;
}

.review-avatar {
  float: left;
  width: 100px;
  height: 100px;
  background-size: cover;
  background-position: center;
  border-radius: 50%;
  margin: 0 auto 10px;
  margin-right: 30px;
  margin-bottom: 30px;
}

.review-name {
  font-size: 26px;
  line-height: 1.23;
  font-family: "IBM Plex Sans", Arial, sans-serif;
  font-weight: 600;
  color: #e0e0e0;
  margin-bottom: 7px;
}

.review-description {
  font-size: 20px;
  line-height: 1.55;
  color: #e0e0e0;
  margin: 5px 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  /* Для Firefox на macOS */
}

.review-position {
  box-sizing: border-box;
  font-family: "IBM Plex Sans", Arial, sans-serif;
  font-weight: 300;
  color: #fff;
  font-size: 16px;
  line-height: 1.55;
  margin: 5px 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  /* Для Firefox на macOS */
}

.previewblog img {
  width: 100%;
  /* Растягиваем изображение на всю ширину */
  height: 100%;
  /* Растягиваем изображение на всю высоту */
  object-fit: cover;
  /* Обрезаем изображение по границам контейнера */
  object-position: center;
  /* Центрируем изображение внутри контейнера */
}

.previewblog {
  _float: left;
  display: block;
  width: 350px;
  /* Ширина контейнера */
  height: 250px;
  /* Высота контейнера */
  overflow: hidden;
  /* Прячем всё, что выходит за границы */
  margin: auto;
}

.centered {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10000;
  background-color: rgba(0, 0, 0, 0.7);
  padding: 20px;
  color: white;
  display: none;
  overflow: auto;
}

.centered .swiper-slide {
  max-width: 450px;
  width: 100% !important;
  height: auto !important;
  margin: auto !important;
  overflow: auto;
  max-height: 100vh;
}

.centered .employee-card {
  height: auto !important;
  overflow: auto !important;
}

.centered .employee-description::after {
  content: "";
  display: none !important;
}

body.no-scroll {
  overflow: hidden;
}

.close-btn {
  position: absolute;
  top: 15px;
  right: 25px;
  font-size: 42px;
  color: white;
  cursor: pointer;
  background: none;
  border: none;
  z-index: 9999;
  text-decoration: none;
  width: 72px;
  height: 72px;
  display: inline-block;
  color: #fff;
}

.close-btn svg {
  transition: transform 0.3s ease, filter 0.3s ease;
  width: 42px;
  height: 42px;
}

.cross-line {
  stroke-width: 3;
  color: #fff;
  cursor: pointer;
  stroke: #fff;
  transition: stroke 0.3s ease;
}

.close-btn svg:hover {
  filter: drop-shadow(0px 0px 5px rgba(255, 255, 0, 1))           ; 
  transform: scale(1.1);
 
}

.requestform {
  display: none;
  position: fixed;
  width: 100%;
  height: 100%;
  bottom: 0px;
  right: 0px;
  left: 0px;
  top: 0px;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 9999;
  vertical-align: middle;
}

.requestform2 {
  width: 100%;
  height: 100%;

  vertical-align: middle;
}

.requestform2 form,
.requestform form {
  padding: 20px;
  max-width: 500px;
  width: 100%;
  vertical-align: middle;
  margin: auto;
}

.requestform button[type="submit"] {
  display: inline-block;
  padding: 15px 30px;
  margin-top: 20px;
  color: #000000;
  text-decoration: none;
  background-color: #ebcc88;
  box-shadow: 0 0 20px #ebcc88;
  border-radius: 5px;
  transition: box-shadow 0.3s ease;
  border: 0;
  cursor: pointer;
}

.requestform button:hover {
  text-shadow: 0 0 5px #ff0, 0 0 10px #ff0, 0 0 20px #ff0, 0 0 40px #ff0,
    0 0 80px #ff0, 0 0 90px #ff0, 0 0 100px #ff0;
  /* Желтый неоновый эффект для текста */
  box-shadow: 0 0 10px #ff0, 0 0 20px #ff0, 0 0 30px #ff0, 0 0 40px #ff0;
  color: #fff;
  cursor: pointer;
}

.requestform2 input,
.requestform2 textarea,
.requestform input,
.requestform textarea {
  color: #020202;
  display: block;
  min-height: 40px;
  width: 100%;
  border-radius: 10px;
  box-sizing: border-box;
  padding: 5px;
  font-size: 16px;
  margin-bottom: 6px;
}

.msteps {
  display: grid;
  gap: 20px;
  padding: 20px;
}

/* Версия для ПК: три столбца */
@media (min-width: 768px) {
  .msteps {
    grid-template-columns: repeat(3, 1fr);
    /* Три столбца одинаковой ширины */
  }
}

/* Версия для мобильных устройств: один столбец */
@media (max-width: 768px) {
  .msteps {
    grid-template-columns: 1fr;
    /* Один столбец */
  }
}

.mstep {
  border: 1px solid #333;
  padding: 15px;
  border-radius: 5px;
  background-color: rgba(0, 0, 0, 0.6);
  text-align: left;
  /* Центрирование текста */
  box-shadow: 0px 4px 6px rgba(255, 255, 255, 0.1);
  /* Лёгкая тень */
  transition: transform 0.3s, box-shadow 0.3s;
  /* Анимация при наведении */
}

.mstep:hover {
  transform: translateY(-5px);
  /* Лёгкий подъём при наведении */
  box-shadow: 0px 6px 12px rgba(0, 0, 0, 0.15);
  /* Усиление тени n*/
}

.mstep h3 {
  margin: 40px 0 10px;
  font-size: 1.2em;
  color: #fff;
  font-weight: 600;
}

.mstep p {
  margin: 0;
  font-size: 1em;
  color: #fff;
}

.mstep .icon {
  font-size: 2em;
  /* Размер иконки */
  color: #ff5722;
  /* Цвет иконки */
  margin-bottom: 10px;
  /* Отступ снизу */
}

.mstep .icon i {
  color: aqua;
  display: inline-block;
}

.social-links_bottom {
  text-align: center;
  margin-top: 20px;
  display: block;
}

.social-links_bottom a {
  display: inline-block;
  margin: 0 10px;
  font-size: 24px;
  color: #333;
  /* Цвет иконок */
  transition: color 0.3s ease;
}

.social-links_bottom a:hover {
  color: #0073e6;
  /* Цвет при наведении */
}

#result_title {
  text-shadow: 1px 1px 2px black;
}

html {
  scrollbar-color: #b3eaf8 rgba(0, 0, 0, 0.5);
  scrollbar-width: thin;
  /* Узкая полоса прокрутки */
}

@media only screen and (max-width: 375px) {
  .nav .logo {
    max-width: 200px !important;
  }
}

@keyframes ring {
  0% {
    transform: rotate(0);
  }

  25% {
    transform: rotate(15deg);
  }

  50% {
    transform: rotate(-15deg);
  }

  75% {
    transform: rotate(10deg);
  }

  100% {
    transform: rotate(0);
  }
}

.works-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  /* 4 изображения в строке */
  gap: 0px;
  /* Отступы между элементами */
  margin: 0px;
}

.work-item {
  display: grid;
  grid-template-columns: 1fr;
  /* Каждый work-item занимает одну ячейку */
  padding-bottom: 0px !important;
  box-shadow: 0px 20px 20px #000;
}

.catprimg {
  width: 22%;
  /*padding-bottom: 200px;*/
  background-size: cover;
  background-position: center;
  float: left;
  margin-right: 2%;
  aspect-ratio: 1 / 1;
}

.primg {
  width: 100%;
  padding-bottom: 50px;

  background-size: cover;
  background-position: center;
}

.imgcat {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  /* Расстояние между изображениями */
}

.phcategory {
  display: block;
  margin-bottom: 30px;
}

.more {
  margin-left: 30px;
  padding: 10px;
  color: #0ff;
  background-color: transparent;
  border: 2px solid #0ff;
  padding: 6px 15px;
  letter-spacing: 2px;
  border-radius: 8px;
  cursor: pointer;
  position: relative;
  box-shadow: 0 0 5px #0ff, 0 0 10px #0ff, 0 0 20px #0ff;
  transition: all 0.3s ease-in-out;
}

.blogtitle {
  font-size: 32px;
  font-weight: 600;
  text-decoration: none;
}

.post-featured-image {
  width: 100%;
  max-height: 500px; /* или нужная тебе высота */
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.post-featured-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.wp-block-heading {
  line-height: normal;
  font-size: 24px;
}
.page-title {
  font-size: 40px;
  font-weight: 600;
  line-height: normal;
}

.blogtitle:hover {
  color: #666;
}

.nv {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  padding: 10px 0 10px 10px;
  margin: 0;
  font-size: 14px;
}

.nv li {
  display: flex;
  align-items: center;
  color: #555;
}

.nv li + li::before {
  content: "›";
  padding: 0 8px;
  color: #aaa;
}

.nv li a {
  text-decoration: none;
  color: #f2f2f2;
  transition: color 0.2s ease;
}

.nv li a:hover {
  color: #f2f2f2;
}

.nv li:last-child {
  color: #f2f2f2;
  font-weight: bold;
}
