h1, h2, h3, h4, h5, h6 {
  margin: 0;
}

* {
  box-sizing: border-box;
}

p {
  margin: 0;
}

button {
  border: none;
  padding: 0;
  cursor: pointer;
  background: transparent;
  transition: 0.7s;
}

ul, li {
  margin: 0;
  padding: 0;
  list-style: none;
  line-height: normal;
}

a {
  text-decoration: none;
  line-height: normal;
  cursor: pointer;
  transition: 0.7s;
}

img, svg {
  max-width: 100%;
  height: auto;
  object-fit: cover;
  flex-shrink: 0;
  display: block;
}

html,
body {
  padding: 0;
  margin: 0;
  height: 100%;
}

html {
  scrollbar-width: thin;
  scroll-behavior: smooth;
}

::placeholder {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 130%;
}

::-webkit-input-placeholder {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 130%;
}

::-moz-placeholder {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 130%;
}

:-ms-input-placeholder {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 130%;
}

:root {
  --font-family: "Gilroy", sans-serif;
}

body {
  display: flex;
  flex-direction: column;
  position: relative;
  background: #151515;
  font-family: var(--font-family);
}
body.hidden {
  overflow: hidden;
}

.text {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 20px;
  line-height: 130%;
  transition: 0.7s;
  color: #fff;
}

.title {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 48px;
  line-height: 100%;
  text-align: center;
  color: #fee348;
}

.content {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 130%;
  color: #fff;
}

.hover__text:hover {
  color: #fee348;
}

.hover__button:hover {
  background-color: #fee348;
}

.hover__svg-path {
  transition: 0.7s;
}
.hover__svg:hover .hover__svg-path {
  fill: #fee348;
}

.container {
  max-width: 1440px;
  width: 100%;
  padding: 0 100px;
  box-sizing: border-box;
  margin: 0 auto;
}

.row {
  display: flex;
}

.opacite {
  background: rgba(0, 0, 0, 0.5);
  display: none;
  width: 100vw;
  height: 100vh;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  backdrop-filter: blur(3px);
}
.opacite.active {
  display: block;
}

.header {
  flex: 0 0 auto;
  width: calc(100vw - 20px);
  position: fixed;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  backdrop-filter: blur(100px);
  background: rgba(0, 0, 0, 0.4);
  border-radius: 100px;
  padding: 17.5px 40px;
  z-index: 99999;
  max-width: 1420px;
}
.header__burger {
  display: none;
}
.header__logo {
  display: flex;
  gap: 5px;
  margin-right: 100px;
}
.header__logo svg:first-child {
  width: 105px;
}
.header__logo svg:last-child {
  width: 49px;
}
.header__row {
  align-items: center;
  justify-content: space-between;
}
.header__lang {
  display: flex;
  gap: 10px;
  align-items: center;
}
.header__lang-item {
  position: relative;
}
.header__lang-item.active .text {
  color: #fee348;
}
.header__lang-item.active .header__lang-line {
  display: block;
}
.header__lang-line {
  display: none;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
.header__button {
  display: flex;
  align-items: center;
  gap: 20px;
}
.header__button-social {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.header__button-main {
  border-radius: 30px;
  padding: 6px 12px;
  min-width: 154px;
  background-color: #fff;
  transition: 0.7s;
}
.header__button-main span {
  color: #000;
}
.header nav {
  margin-left: 0;
  margin-right: auto;
}
.header__service {
  flex-direction: column;
  padding: 20px 40px;
  gap: 20px;
  backdrop-filter: blur(100px);
  background: rgba(0, 0, 0, 0.8);
  border-radius: 20px;
  position: absolute;
  top: calc(100% + 10px);
  display: none;
}
.header__serviceJS.active .header__service {
  display: flex;
}
.header__serviceJS.active .header__menuJS span {
  color: #fee348;
}
.header__serviceJS.active .header__menuJS div svg path {
  stroke: #fee348;
}
.header__menu {
  display: flex;
  gap: 30px;
  align-items: center;
}
.header__menu-more {
  flex-shrink: 0;
}
.header__menu-more svg path {
  transition: 0.7s;
}
.header__menu-item:first-child {
  gap: 1px;
  display: flex;
  align-items: center;
}
.header__menu-item:first-child span {
  transition: 0.7s;
}
.header__menu-item:first-child:hover span {
  color: #fee348;
}
.header__menu-item:first-child:hover div svg path {
  stroke: #fee348;
}

.footer {
  flex: 0 0 auto;
  z-index: 10;
  background: #0b0a0c;
}
.footer__row {
  padding: 40px 0 50px 0;
  flex-direction: column;
}
.footer__top {
  display: flex;
  justify-content: space-between;
}
.footer__nav {
  display: flex;
  gap: 40px;
  margin-left: 0;
  margin-right: auto;
}
.footer__menu {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer__menu-second .text {
  font-weight: 700;
}
.footer__menu-mini {
  list-style: disc;
  display: flex;
  flex-direction: column;
  gap: 5px;
  color: #fff;
  opacity: 0.8;
  margin-left: 25px;
  margin-top: 5px;
}
.footer__menu-mini li {
  list-style: disc;
  transition: 0.7s;
}
.footer__menu-mini li:hover {
  color: #FEE348;
}
.footer__logo {
  gap: 5px;
  display: flex;
  flex-direction: column;
  margin-right: 240px;
}
.footer__logo svg:first-child {
  max-width: 234px;
}
.footer__logo svg:last-child {
  max-width: 237px;
}
.footer__social {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: end;
}
.footer__bottom {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 12px;
  line-height: 110%;
  color: #fff;
  margin-top: 25px;
}

.main {
  flex: 1 0 auto;
  display: flex;
  flex-direction: column;
  position: relative;
}

.first {
  height: 100dvh;
  position: relative;
  align-items: center;
  display: flex;
}
.first__second {
  height: 70dvh;
  display: flex;
  flex-direction: column;
}
.first__second-row {
  flex-direction: column;
  max-width: 796px;
  text-align: center;
  padding-top: 30px;
}
.first__second-title {
  color: #FEE348;
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 60px;
  line-height: 100%;
  text-align: center;
  text-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.29), 0 21px 21px 0 rgba(0, 0, 0, 0.26), 0 47px 28px 0 rgba(0, 0, 0, 0.15), 0 84px 33px 0 rgba(0, 0, 0, 0.04), 0 131px 37px 0 rgba(0, 0, 0, 0.01);
}
.first__second-subtitle {
  display: flex;
  flex-direction: column;
  margin-top: 15px;
  margin-bottom: 30px;
}
.first__second-subtitle .text {
  color: #fff;
}
.first__second-button {
  border-radius: 30px;
  padding: 10px 20px;
  min-width: 166px;
  margin: 0 auto;
  background: #fff;
}
.first__second-button:hover {
  background: #FEE348;
}
.first__second-button:hover span {
  color: #000;
}
.first__second-button span {
  color: #000;
}
.first__third {
  height: auto;
}
.first__third .first__second-row {
  padding-top: 65px;
}
.first__gradient {
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  overflow: hidden;
}
.first__gradient img {
  width: 100%;
  height: 100%;
}
.first__title {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 60px;
  line-height: 100%;
  text-align: center;
  color: #fff;
  text-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.29), 0 21px 21px 0 rgba(0, 0, 0, 0.26), 0 47px 28px 0 rgba(0, 0, 0, 0.15), 0 84px 33px 0 rgba(0, 0, 0, 0.04), 0 131px 37px 0 rgba(0, 0, 0, 0.01);
}
.first__row {
  position: relative;
  z-index: 2;
  flex-direction: column;
  max-width: 796px;
  text-align: center;
}
.first .container {
  display: flex;
  justify-content: center;
  height: 100%;
  position: relative;
  align-items: center;
}
.first__subtitle {
  display: flex;
  flex-direction: column;
  margin-top: 15px;
  margin-bottom: 30px;
}
.first__star {
  display: flex;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
  gap: 10px;
}
.first .first__container {
  display: flex;
  justify-content: start;
  height: auto;
  position: relative;
  align-items: start;
}
.first .first__container .Project__breadcrumbs {
  margin-top: 120px;
}
.first__client {
  backdrop-filter: blur(150px);
  background: rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  padding: 20px;
  gap: 10px;
  position: absolute;
  right: 95px;
  top: 180px;
  z-index: 20;
  max-width: 255px;
  display: flex;
  flex-direction: column;
}
.first__client p {
  margin-left: 20px;
}
.first__client-stars {
  display: flex;
  gap: 3px;
  margin-left: 20px;
}
.first__client-button {
  border-radius: 30px;
  padding: 10px 20px;
  background: #fff;
  min-width: 215px;
  text-align: center;
  display: flex;
  justify-content: center;
}
.first__client-button span {
  color: #000;
}
.first__button {
  border-radius: 30px;
  padding: 10px 20px;
  background: #fff;
  max-width: max-content;
  margin: 0 auto;
}
.first__button span {
  color: #000;
}

.project {
  border-radius: 30px 30px 0 0;
  margin-top: -37px;
  position: relative;
  z-index: 10;
  background-color: #151515;
  margin-bottom: 120px;
   /* display: none; */
}
/* .rule {
    border-radius: 30px 30px 0 0;
    margin-top: -37px;
    padding-top: 20px;
    position: relative;
    background-color: #151515;
    z-index: 10;
} */

.project__second {
  margin-top: 0;
}
.project__overlay {
  position: absolute;
  border-radius: 20px;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: 0.6s;
  opacity: 0;
  z-index: 1;
}
.project__overlay .text {
  color: #000;
}
.project__overlay-chip {
  display: flex;
  gap: 5px;
}
.project__overlay-text {
  background-color: #FEE348;
  border-radius: 30px;
  padding: 5px 10px;
  max-width: max-content;
  display: flex;
  align-items: center;
  gap: 5px;
}
.project__overlay-text .text{
  font-size: 14px;
}
.project__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: auto;
  gap: 20px;
  margin-top: 25px;
}
.project__grid-text {
  display: flex;
  flex-direction: column;
  flex: 0 0 auto;
}
.project__grid-title {
  font-weight: 700;
  color: #FEE348;
}
.project__grid-item {
  overflow: hidden;
  border-radius: 20px;
  position: relative;
  height: 100%;
  max-height: 500px;
}
.project__grid-item:hover img {
  transform: scale(1.1);
  opacity: 0.8;
}
.project__grid-item:hover .project__overlay {
  opacity: 1;
}
.project__grid-item img {
  border-radius: 20px;
  height: 100%;
  min-height: 0;
  flex: 1 1 auto;
  transition: transform 0.6s, opacity 0.6s;
  width: 100%;
}
.project__grid-item-big {
  grid-column: span 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
  border-radius: 0;
  min-height: 0;
}
.project__grid-item:nth-child(1) {
  grid-column: 1/2;
}
.project__grid-item:nth-child(2) {
  grid-column: 2/span 2;
}
.project__grid-item:nth-child(3) {
  grid-column: 4/5;
}
.project__grid-item:nth-child(4) {
  grid-column: 1/span 2;
}
.project__grid-item:nth-child(5) {
  grid-column: 3/4;
}
.project__grid-item:nth-child(6) {
  grid-column: 4/5;
}
.project__row {
  padding-top: 20px;
  flex-direction: column;
}
.project__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.project__title {
  display: flex;
  align-items: center;
  gap: 5px;
}
.project__title .text {
  color: #FEE348;
}
.project-reset {
  stroke: #FEE348;
  transition: 0.6s;
}
.project__button {
  border: 2px solid #FEE348;
  border-radius: 30px;
  padding: 10px 20px;
  background: transparent;
  max-width: max-content;
  width: 100%;
  display: flex;
  align-items: center;
  gap: 20px;
  transition: 0.6s;
}
.project__button span {
  color: #fee348;
  transition: 0.6s;
}
.project__button:hover {
  background-color: #FEE348;
  border: 2px solid #fee348;
}
.project__button:hover span {
  color: #000;
}
.project__button:hover .project-reset {
  stroke: #000;
}
.project__button.is-active .project-reset {
  stroke: #000 !important;
}

@keyframes gradientShift {
  0% {
    background-position: 0% 0%;
  }
  50% {
    background-position: 100% 100%;
  }
  100% {
    background-position: 0% 0%;
  }
}
@keyframes dashMove {
  to {
    stroke-dashoffset: 28;
  }
}
.rule {
  margin-bottom: 120px;
}
.rule__about {
  margin-top: 120px;
}
.rule__about .rule__item {
  gap: 0;
  min-height: 258px;
}
.rule__about-title {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 128px;
  line-height: 100%;
  color: #191919;
}
.rule__about-content {
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 24px;
  line-height: 130%;
  color: #191919;
}
.rule__button {
  border: 2px solid #fee348;
  border-radius: 30px;
  padding: 10px 20px;
  background: transparent;
  max-width: 300px;
  width: 100%;
  margin: 40px auto 0;
}
.rule__button span {
  color: #fee348;
  transition: 0.6;
}
.rule__button:hover {
  background-color: #FEE348;
  border: 2px solid #fee348;
}
.rule__button:hover span {
  color: #000;
}
.rule__row {
  display: flex;
  flex-direction: column;
}
.rule__title {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 48px;
  line-height: 100%;
  text-align: center;
  color: #FEE348;
}
.rule__wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-top: 60px;
  justify-content: space-between;
}
.rule__item {
  width: calc(25% - 17px);
  display: flex;
  flex-direction: column;
  gap: 40px;
  box-sizing: border-box;
  border-radius: 20px;
  padding: 20px;
  box-shadow: 0 4px 15px 0 rgba(0, 0, 0, 0.25);
  overflow: hidden;
}
.rule__item svg {
  pointer-events: none;
}
.rule__item-title {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 40px;
  line-height: 100%;
  color: #0d0d0d;
}
.rule__item-content {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 130%;
  color: #191919;
  gap: 10px;
  display: flex;
  flex-direction: column;
}
.rule__item-content p:first-child {
  font-weight: 700;
}
.rule__item-first {
  box-shadow: 0 4px 15px 0 rgba(0, 0, 0, 0.25);
  background: conic-gradient(from 180deg, #FEE348 0%, #FEE348 12%, #FFF097 20%, #FFF097 34%, #FEE348 42%, #FEE348 54%, #FFF097 62%, #FFF097 85%, #FEE348 92%, #FEE348 100%);
}
.rule__item-second {
  position: relative;
  background: linear-gradient(215deg, #fee348 0%, #fff097 37.02%, #fff097 62.98%, #fee348 100%);
  background-size: 100% 100%;
  animation: gradientShift 7s ease infinite;
}
.rule__item-second svg {
  position: absolute;
  top: 0;
  left: 0;
}
.rule__item-second svg path {
  opacity: 0.5;
  stroke: black;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 0 6px rgba(255, 224, 72, 0.4));
  stroke-dasharray: 24 4;
  stroke-dashoffset: 0;
  animation: dashMove 2s linear infinite;
}
.rule__item-third {
  backdrop-filter: blur(100px);
  background: conic-gradient(from 180deg, #FEE348 0%, #FEE348 12%, #FFF097 20%, #FFF097 34%, #FEE348 42%, #FEE348 54%, #FFF097 62%, #FFF097 85%, #FEE348 92%, #FEE348 100%);
}
.rule__item-fourth {
  background: linear-gradient(215deg, #fee348 0%, #fff097 37.02%, #fff097 62.98%, #fee348 100%);
  background-size: 100% 100%;
  animation: gradientShift 7s ease infinite;
  position: relative;
}
.rule__item-fourth svg {
  position: absolute;
  bottom: 0;
  left: 0;
}
.rule__item-fourth svg path {
  opacity: 0.5;
  stroke: black;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 0 6px rgba(255, 224, 72, 0.4));
  stroke-dasharray: 24 4;
  stroke-dashoffset: 0;
  animation: dashMove 2s linear infinite;
}
.rule__item-first, .rule__item-third {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  z-index: 0;
}
.rule__item-first::before, .rule__item-third::before {
  content: "";
  position: absolute;
  top: -300%;
  left: -75%;
  width: 250%;
  height: 700%;
  border-radius: 50%;
  background: conic-gradient(from 180deg, #FEE348 0%, #FEE348 12%, #FFF097 20%, #FFF097 34%, #FEE348 42%, #FEE348 54%, #FFF097 62%, #FFF097 85%, #FEE348 92%, #FEE348 100%);
  z-index: -1;
  animation: rotateGradient 10s linear infinite;
  filter: blur(8px);
  -webkit-mask-image: radial-gradient(circle at center, #000 70%, transparent 92%);
  mask-image: radial-gradient(circle at center, #000 70%, transparent 92%);
}
@keyframes rotateGradient {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.background__lines {
  position: absolute;
  top: -60px;
  right: 0;
}
.background__lines-second {
  right: auto;
  left: 0;
  width: 100%;
  opacity: 0.6;
  position: absolute;
  top: 110px;
}
.background__lines-mob {
  position: absolute;
  right: 0;
  top: 0;
}

.svg__block {
  width: 38px;
  height: 38px;
  border-radius: 100%;
  background: #fff;
  transition: 0.6s;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 7px;
}
.svg__block svg {
  /* width: 100%; */
  height: auto;
}
.svg__block:hover {
  background: #FEE348;
}

.service {
  margin-bottom: 120px;
}
.service__row {
  flex-direction: column;
}
.service__ring {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
  pointer-events: none;
}
.service__ring-circle {
  fill: none;
  stroke: #000;
  stroke-width: 4;
  stroke-linecap: round;
  stroke-dasharray: 302;
  stroke-dashoffset: 302;
  transition: stroke-dashoffset 0.8s ease;
}
.service__circle {
  position: relative;
  width: 52px;
  height: 52px;
  padding: 10px;
  border-radius: 50%;
  display: grid;
  place-items: center;
}
.service__block {
  background: linear-gradient(90deg, #FEE348 0%, #FFF097 100%);
  border-radius: 30px;
  overflow: hidden;
  padding: 0px 44px;
  position: relative;
  margin-bottom: 20px;
  margin-top: 60px;
}
.service__title {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 60px;
  line-height: 100%;
  color: #191919;
}
.service__title-block {
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: space-between;
}
.service__item {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding-bottom: 30px;
  padding-top: 60px;
  border-bottom: 1px solid #000;
  max-width: 927px;
}
.service__item:hover .service__ring-circle {
  stroke-dashoffset: 0;
}
.service__item:last-child {
  border: none;
  padding-bottom: 60px;
}
.service__item:first-child {
  padding-top: 60px;
}
.service__text {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 24px;
  line-height: 110%;
  color: #191919;
  max-width: 850px;
  transition: 0.5s;
  gap: 5px;
  display: flex;
  flex-direction: column;
}
.service__text ul, .service__text li {
  list-style: disc;
  margin-left: 15px;
}
.service__text ul {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.service__lines {
  position: absolute;
  right: 0;
  pointer-events: none;
  top: 0;
}
.service__lines path {
  stroke: black;
  stroke-width: 1;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 0 6px rgba(255, 224, 72, 0.4));
  stroke-dasharray: 24 4;
  stroke-dashoffset: 0;
  animation: dashMove 2s linear infinite;
}

.swiper {
  width: 100%;
  height: 100%;
}
.swiper__arrow {
  display: flex;
  gap: 10px;
  align-items: center;
  position: absolute;
  top: 65px;
  right: 110px;
}
.swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #444;
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 295px;
  border-radius: 20px;
}
.swiper-slide img {
  border-radius: 20px;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.talk {
  background: linear-gradient(-90deg, #FEE348 0%, #FFF097 100%);
  position: relative;
  border-radius: 30px 30px 0 0;
  overflow: hidden;
}
.talk__row {
  padding: 85px 0;
  justify-content: center;
}
.talk__popup {
  display: flex;
  flex-direction: column;
  border-radius: 30px;
  padding: 20px 40px;
  backdrop-filter: blur(100px);
  background: rgba(0, 0, 0, 0.35);
  position: relative;
  align-items: center;
  z-index: 10;
}
.talk__popup .content {
  max-width: 320px;
  text-align: center;
  margin: 20px 0 30px 0;
}
.talk__popup .title {
  color: #fff;
}
.talk__lines {
  pointer-events: none;
}
.talk__lines-1 {
  position: absolute;
  top: 0;
  left: 0;
}
.talk__lines-2 {
  position: absolute;
  top: 0;
  left: 0;
}
.talk__lines-3 {
  position: absolute;
  right: 0;
  bottom: 0;
}

.popup input:focus, .popup textarea:focus {
  outline: none;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 130%;
  color: #fff;
}
.popup input, .popup textarea {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 130%;
  color: #fff;
}
.popup__button {
  border-radius: 30px;
  padding: 10px 25px;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 20px;
  line-height: 130%;
  color: #000;
  transition: 0.7s;
  background: #fff;
  max-width: max-content;
  display: flex;
  margin: 10px auto 0 auto;
}
.popup__button:hover {
  background: #FEE348;
}
.popup__custom-box {
  border-radius: 2px;
  width: 16px;
  margin-right: 10px;
  height: 16px;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #fff;
}
.popup__custom-box svg {
  opacity: 0;
  transform: scale(0.8);
  transition: opacity 0.15s ease, transform 0.15s ease;
}
.popup__checkbox-group {
  position: relative;
  align-items: center;
  display: flex;
  margin-left: 10px;
  margin-bottom: 10px;
}
.popup__checkbox-group input[type=checkbox]:checked + label .popup__custom-box svg {
  opacity: 1;
  transform: scale(1);
}
.popup__checkbox-group input[type=checkbox]:checked + .popup__checkbox-label .popup__custom-box {
  transform: translateY(-0.5px);
  border: 1px solid #FEE348;
}
.popup__checkbox-group input[type=checkbox]:checked + .popup__checkbox-label .popup__custom-box .check {
  transform: scale(1);
  opacity: 1;
}
.popup__checkbox-group input[type=checkbox]:focus + .popup__checkbox-label .popup__custom-box {
  outline: none;
}
.popup__checkbox-group input[type=checkbox] {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}
.popup__checkbox-group label {
  cursor: pointer;
  user-select: none;
  display: flex;
  align-items: center;
}
.popup__checkbox-group label span {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 12px;
  line-height: 110%;
  color: #fff;
}
.popup__form {
  display: flex;
  flex-direction: column;
  max-width: 314px;
}
.popup__form-group {
  position: relative;
  margin-bottom: 10px;
}
.popup__form-group label {
  position: absolute;
  top: 18px;
  left: 20px;
}
.popup__form-group input {
  border: 1px solid #fff;
  border-radius: 20px;
  padding: 10px 20px;
  background: transparent;
  width: 100%;
  outline: none;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 130%;
  color: #fff;
}

.article {
  margin-bottom: 180px;
}
.article__row {
  display: flex;
  flex-direction: column;
}
.article__wrapper {
  display: flex;
  gap: 20px;
  margin-top: 60px;
  margin-bottom: 20px;
}
.article__big {
  width: calc(50% - 10px);
  background: rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  padding: 20px;
  gap: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: 0.7s;
}
.article__big:hover {
  background: rgba(255, 255, 255, 0.3);
}
.article__big:hover img {
  transform: scale(1.1);
}
.article__big-img {
  border-radius: 20px;
  overflow: hidden;
  height: 100%;
}
.article__big-img img {
  height: 100%;
  transition: transform 0.6s;
  border-radius: 20px;
}
.article__big-content {
  display: flex;
  justify-content: space-between;
}
.article__big-content .text {
  font-weight: 700;
  color: #FEE348;
}
.article__big-content-data {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 12px;
  line-height: 110%;
  color: #fff;
  margin-top: 5px;
  margin-bottom: 10px;
}
.article__big-content-right {
  display: flex;
  align-items: flex-start;
}
.article__small {
  width: calc(50% - 10px);
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.article__small-item {
  background: rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  padding: 20px;
  transition: 0.7s;
  height: 100%;
}
.article__small-item:hover {
  background: rgba(255, 255, 255, 0.3);
}

.Project {
  position: relative;
  z-index: 2;
}
.Project .first__second-subtitle {
  text-align: center;
  max-width: 796px;
  display: flex;
  margin: 15px auto 30px auto;
}
.Project__row {
  flex-direction: column;
  padding-top: 127px;
  padding-bottom: 70px;
}
.Project__row h1 {
  color: #FEE348;
}
.Project.is-filtering .Project__grids {
  display: none;
}
.Project.is-filtering .Project__filtered {
  display: grid;
}
.Project__grids {
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.Project__grids .project__grid {
  display: none;
}
.Project__grids .project__grid:nth-of-type(1) {
  display: grid;
}
.Project__grids .project__grid:nth-of-type(2) {
  display: grid;
}
.Project__grids .project__grid:nth-of-type(6n + 2) .project__grid-item:nth-child(1) {
  grid-column: 1/2;
}
.Project__grids .project__grid:nth-of-type(6n + 2) .project__grid-item:nth-child(2) {
  grid-column: 2/span 2;
}
.Project__grids .project__grid:nth-of-type(6n + 3) .project__grid-item:nth-child(1) {
  grid-column: 1/2;
}
.Project__grids .project__grid:nth-of-type(6n + 3) .project__grid-item:nth-child(2) {
  grid-column: 2/3;
}
.Project__grids .project__grid:nth-of-type(6n + 3) .project__grid-item:nth-child(3) {
  grid-column: 3/span 2;
}
.Project__grids .project__grid:nth-of-type(6n + 4) .project__grid-item:nth-child(1) {
  grid-column: 1/2;
}
.Project__grids .project__grid:nth-of-type(6n + 4) .project__grid-item:nth-child(2) {
  grid-column: 2/3;
}
.Project__grids .project__grid:nth-of-type(6n + 4) .project__grid-item:nth-child(3) {
  grid-column: 3/4;
}
.Project__grids .project__grid:nth-of-type(6n + 4) .project__grid-item:nth-child(4) {
  grid-column: 4/5;
}
.Project__grids .project__grid:nth-of-type(6n + 4) .project__grid-item:nth-child(5) {
  grid-column: 1/span 2;
}
.Project__grids .project__grid:nth-of-type(6n + 5) .project__grid-item:nth-child(1) {
  grid-column: 1/2;
}
.Project__grids .project__grid:nth-of-type(6n + 5) .project__grid-item:nth-child(2) {
  grid-column: 2/3;
}
.Project__grids .project__grid:nth-of-type(6n + 5) .project__grid-item:nth-child(3) {
  grid-column: 3/4;
}
.Project__grids .project__grid:nth-of-type(6n + 5) .project__grid-item:nth-child(4) {
  grid-column: 4/5;
}
.Project__grids .project__grid:nth-of-type(6n + 5) .project__grid-item:nth-child(5) {
  grid-column: 1/2;
}
.Project__grids .project__grid:nth-of-type(6n + 5) .project__grid-item:nth-child(6) {
  grid-column: 2/span 2;
}
.Project__grids .project__grid:nth-of-type(6n + 6) .project__grid-item:nth-child(1) {
  grid-column: 1/2;
}
.Project__grids .project__grid:nth-of-type(6n + 6) .project__grid-item:nth-child(2) {
  grid-column: 2/3;
}
.Project__grids .project__grid:nth-of-type(6n + 6) .project__grid-item:nth-child(3) {
  grid-column: 3/4;
}
.Project__grids .project__grid:nth-of-type(6n + 6) .project__grid-item:nth-child(4) {
  grid-column: 4/5;
}
.Project__grids .project__grid:nth-of-type(6n + 6) .project__grid-item:nth-child(5) {
  grid-column: 1/2;
}
.Project__grids .project__grid:nth-of-type(6n + 6) .project__grid-item:nth-child(6) {
  grid-column: 2/3;
}
.Project__grids .project__grid:nth-of-type(6n + 6) .project__grid-item:nth-child(7) {
  grid-column: 3/span 2;
}
.Project__grid {
  margin-top: 0;
}
.Project__grid .project__grid-item {
  max-height: 430px;
}
.Project__grid .project__grid-item:nth-child(1) {
  grid-column: 1/span 2;
}
.Project__grid .project__grid-item:nth-child(2) {
  grid-column: 3/4;
}
.Project__grid .project__grid-item:nth-child(3) {
  grid-column: 4/5;
}
.Project__grid .project__grid-item:nth-child(4) {
  grid-column: 1/2;
}
.Project__grid .project__grid-item:nth-child(5) {
  grid-column: 2/3;
}
.Project__grid .project__grid-item:nth-child(6) {
  grid-column: 3/4;
}
.Project__grid .project__grid-item:nth-child(7) {
  grid-column: 4/5;
}
.Project__breadcrumbs {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-bottom: 45px;
}
.Project__breadcrumbs a {
  position: relative;
}
.Project__breadcrumbs a:not(:first-child)::before {
  content: "/";
  margin: 0 8px;
  color: #fee348;
}
.Project__breadcrumbs .text {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.Project__breadcrumbs .text svg {
  margin-left: 5px;
}
.Project__breadcrumbs .text a {
  color: #fee348;
  opacity: 0.5;
}
.Project__breadcrumbs .text a:last-of-type {
  opacity: 1;
}
.Project__filters {
  display: flex;
  align-items: start;
  margin: 40px 0 20px 0;
  flex-wrap: wrap;
  gap: 15px 10px;
}
.Project__filters .is-active {
  background: #FEE348;
  border: 1px solid #fee348;
}
.Project__filters .is-active .text {
  color: #000;
}
.Project__filters button {
  padding: 5px 20px;
  gap: 10px;
}
.Project .project__button {
  border: 1px solid #fee348;
}
.Project .project__button span {
  color: #fee348;
  transition: 0.6s;
}
.Project .is-active .project-reset
{
  stroke: #000;
}
.Project .project__button:hover {
  background-color: #FEE348;
  border: 1px solid #fee348;
}
.Project .project__button:hover span {
  color: #000;
}

.Article {
  position: relative;
}
.Article .first__second-subtitle {
  text-align: center;
  max-width: 796px;
  display: flex;
  margin: 15px auto 30px auto;
}
.Article__wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: start;
  gap: 10px;
}
.Article__wrapper .article__big {
  width: calc(33% - 7px);
  min-width: 345px;
}
.more__blog .more__swiper .swiper-slide{
  height: unset;
}
.Article .article__big {
  max-width: 401px;
  background: transparent;
}
.Article .article__big:hover {
  background: rgba(255, 255, 255, 0.3);
}
.Article .project__button {
  border: 1px solid #FEE348;
}
.Article .project__button span {
  color: #fee348;
  transition: 0.6s;
}
.Article .project__button:hover {
  background-color: #FEE348;
  border: 2px solid #000;
}
.Article .project__button:hover span {
  color: #000;
}
.Article .article__big[hidden] {
  display: none !important;
}

.policy__text {
  margin-top: 60px;
  margin-bottom: 30px;
}

.advantages {
  margin-bottom: 120px;
}
.advantages__row {
  flex-direction: column;
  padding-top: 37px;
}
.advantages__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.advantages__wrapper {
  display: grid;
  grid-template-columns: 23% 32% 8% 32%;
  grid-template-rows: repeat(2, 1fr);
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  margin-top: 30px;
}
.advantages__item {
  display: flex;
  position: relative;
  flex-direction: column;
  justify-content: space-between;
  min-height: 204px;
  padding: 30px;
  overflow: hidden;
  gap: 10px;
  border-radius: 20px;
  box-shadow: 10px 1px 52px 0 rgba(0, 0, 0, 0.15), inset -2px 3px 5px 0 #fff;
  background: linear-gradient(215deg, #fee348 0%, #fff097 37.02%, #fff097 62.98%, #fee348 100%);
}
.advantages__item svg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0.6;
  pointer-events: none;
  max-width: none;
}
.advantages__item:nth-child(1) {
  grid-area: 1/1/3/2;
}
.advantages__item:nth-child(2) {
  grid-area: 1/2/2/4;
}
.advantages__item:nth-child(3) {
  grid-area: 1/4/2/5;
}
.advantages__item:nth-child(4) {
  grid-area: 2/2/3/3;
}
.advantages__item:nth-child(5) {
  grid-area: 2/3/3/5;
}
.advantages__item h3 {
  font-weight: 700;
  color: #000;
  font-size: 20px;
}
.advantages__item p {
  color: #000;
}

.turn {
  margin-bottom: 120px;
}
.turn__row {
  flex-direction: column;
}
.turn__wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 60px;
}
.turn__wrapper-second .turn__item-button {
  border: 2px solid #191919;
}
.turn__wrapper-second .turn__item-button:hover {
  border: 2px solid #191919;
}
.turn__item {
  display: flex;
  text-align: left;
  justify-content: space-between;
  border-radius: 30px;
  padding: 40px;
  gap: 30px;
  box-shadow: inset -2px 3px 5px 0 #fff, 10px 1px 52px 0 rgba(0, 0, 0, 0.15);
  background: linear-gradient(206deg, #fee348 0%, #fff097 100%);
}
.turn__item-left {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 20px;
}
.turn__item-left .text {
  color: #000;
  margin-bottom: auto;
}
.turn__item-open svg {
  transition: 0.7s;
}
.turn__item-open.turnAcc-btn svg {
  transform: rotate(135deg);
}
.turn__item-content {
  color: #191919;
  border-bottom: 1px solid #191919;
  display: flex;
  padding-right: 40px;
  max-height: 0;
  overflow: hidden;
  opacity: 1;
  transition: 0.7s;
}
.turn__item-content.turnAcc-open {
  max-height: 500px;
  padding: 0 40px 10px 0;
}
.turn__item-right {
  max-width: 609px;
  width: 100%;
}
.turn__item-right li {
  width: 100%;
}
.turn__item-right li:last-child .turn__item-content {
  border: none;
}
.turn__item-right li:first-child button {
  padding-top: 0;
}
.turn__item-right li:last-child button {
  padding-bottom: 0;
  border: none;
}
.turn__item-right li button {
  width: 100%;
  display: flex;
  justify-content: space-between;
  gap: 30px;
  padding: 14px 0;
}
.turn__item-button {
  max-width: max-content;
  display: flex;
  gap: 30px;
  padding: 10px 30px;
  align-items: center;
  background: #191919;
  border-radius: 60px;
  transition: 0.6s;
}
.turn__item-button .content {
  transition: 0.6s;
}
.turn__item-button svg path {
  transition: 0.6s;
}
.turn__item-button:hover {
  background: transparent;
}
.turn__item-button:hover svg path {
  stroke: #000;
}
.turn__item-button:hover .content {
  color: #000;
}
.turn__item .service__title {
  font-size: 40px;
  font-weight: 400;
}
.turn__item-list {
  gap: 20px;
  display: flex;
  flex-direction: column;
}
.turn__item-list li {
  list-style: disc;
}
.turn__item-list li .text {
  color: #000;
}
.turn__item-filter {
  display: flex;
  gap: 20px;
  padding: 0;
  background: transparent;
  border-radius: 0;
}
.turn__item-filter span {
  background: #191919;
  padding: 10px 30px;
  border-radius: 60px;
}
.turn__second {
  border: 2px solid #fee348;
  background: transparent;
  box-shadow: none;
  transition: 0.6s;
  position: relative;
  padding: 30px;
  overflow: hidden;
}
.turn__second::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(206deg, #fee348 0%, #fff097 100%);
  opacity: 0;
  transition: opacity 0.6s;
  z-index: -1;
}
.turn__second:hover::before {
  opacity: 1;
}
.turn__second:hover {
  box-shadow: inset -2px 3px 5px 0 #fff, 10px 1px 52px 0 rgba(0, 0, 0, 0.15);
}
.turn__second:hover .service__title {
  color: #000;
}
.turn__second:hover .text {
  color: #000;
}
.turn__second:hover .turn__item-button .content {
  background: #000;
  color: #FEE348;
}
.turn__second:hover .turn__item-list li {
  color: #000;
}
.turn__second:hover .turn__item-list li .text {
  color: #000;
}
.turn__second .service__title {
  transition: 0.6s;
  color: #FEE348;
}
.turn__second .text {
  transition: 0.6s;
  color: #FEE348;
}
.turn__second .turn__item-button .content {
  transition: 0.6s;
  background: #FEE348;
  color: #000;
}
.turn__second .turn__item-list {
  gap: 10px;
}
.turn__second .turn__item-list li {
  transition: 0.6s;
  color: #FEE348;
}
.turn__second .turn__item-list li .text {
  transition: 0.6s;
  color: #FEE348;
}

.special {
  margin-bottom: 120px;
}
.special__row {
  flex-direction: column;
}
.special__filter {
  margin-top: 60px;
  gap: 40px;
  display: flex;
}
.special__content {
  width: 100%;
  border-radius: 20px;
  padding: 30px 40px;
  box-shadow: inset -2px 3px 5px 0 #fff, 10px 1px 52px 0 rgba(0, 0, 0, 0.15);
  background-image: linear-gradient(206deg, #fee348 0%, #fff097 100%);
}
.special__content .text {
  color: #000;
  display: none;
}
.special__content .text.active {
  display: flex;
}
.special__chip {
  display: flex;
  align-items: center;
  gap: 10px;
  border-radius: 90px;
  padding: 10px 20px;
}
.special__chip .svg__block {
  width: 50px;
  height: 50px;
  min-width: 50px;
  background: #FEE348;
  transition: 0.6s;
}
.special__chip .svg__block svg path {
  fill: #000;
  transition: 0.6s;
}
.special__chip.active {
  background: #fee348;
}
.special__chip.active .svg__block {
  background: #000;
}
.special__chip.active p {
  color: #000;
}
.special__chip.active svg path {
  fill: #FEE348;
}
.special__chip-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 334px;
  width: 100%;
  flex-shrink: 0;
}
.special__chip-title {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 18px;
  line-height: 150%;
  color: #fee348;
}

.job {
  margin-bottom: 120px;
}
.job .project__grid-item {
  max-height: 424px;
}

.comment .article__big {
  padding: 0;
  background: transparent;
  justify-content: start;
}
.comment .article__big-img {
  max-height: 250px;
}
.comment .article__big-img img {
  width: 100%;
}
.comment .article__big-content-block {
  gap: 25px;
  display: flex;
  flex-direction: column;
}
.comment .article__small {
  overflow-y: scroll;
  max-height: 420px;
  scrollbar-width: thin;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.comment .article__small ::-webkit-scrollbar {
  display: none;
}
.comment__swiper {
  width: calc(50% - 10px);
  height: 450px;
}
.comment__swiper .swiper-slide {
  display: inline;
  text-align: start;
  font-size: inherit;
  background: none;
  border-radius: 0;
  max-width: none;
  height: auto;
}

.question {
  margin-bottom: 234px;
}
.question__row {
  flex-direction: column;
}
.question__wrapper {
  display: flex;
  justify-content: space-between;
  gap: 26px;
  margin-top: 60px;
}
.question__subtitle {
  margin: 10px 0 20px 0;
}
.question__form {
  max-height: max-content;
  padding: 40px;
  width: 41%;
  display: flex;
  flex-direction: column;
  align-items: center;
  border-radius: 20px;
  box-shadow: inset -2px 3px 5px 0 #fff, 10px 1px 52px 0 rgba(0, 0, 0, 0.15);
  background: linear-gradient(215deg, #fee348 0%, #fff097 37.02%, #fff097 62.98%, #fee348 100%);
}
.question__form .text {
  color: #000;
}
.question__form .title {
  color: #000;
  font-size: 40px;
}
.question__form .popup input:focus, .question__form .popup textarea:focus {
  color: #000;
}
.question__form .popup input, .question__form .popup textarea {
  color: #000;
}
.question__form .popup input::placeholder, .question__form .popup textarea::placeholder {
  color: #000 !important;
}
.question__form .popup__button {
  border-radius: 30px;
  padding: 10px 25px;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 20px;
  line-height: 130%;
  color: #000;
  border: 2px solid #000;
  transition: 0.7s;
  background: transparent;
  max-width: max-content;
  display: flex;
  margin: 10px auto 0 auto;
}
.question__form .popup__button:hover {
  background: #000;
  color: #fff;
}
.question__form .popup__custom-box {
  border: 1px solid #000;
}
.question__form .popup__checkbox-group label span {
  color: #000;
}
.question__form .popup__checkbox-group input[type=checkbox]:checked + .popup__checkbox-label .popup__custom-box {
  border: 1px solid #000;
}
.question__form .popup__form-group input {
  border: 1px solid #000;
  color: #000;
}

.question__list {
  width: 57%;
  display: flex;
  gap: 20px;
  flex-direction: column;
  justify-content: space-between;
}
.question__list-item button {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  width: 100%;
  box-shadow: inset -2px 3px 5px 0 #fff, 10px 1px 52px 0 rgba(0, 0, 0, 0.15);
  background: linear-gradient(206deg, #fee348 0%, #fff097 100%);
  padding: 30px;
  border-radius: 20px;
  text-align: start;
  flex-direction: row;
  font-weight: 500;
  font-size: 28px;
}
.question__list-item button svg {
  transition: 0.7s;
}
.question__list-item button svg.active {
  transform: rotate(135deg);
}
.question__list-item p {
  width: 100%;
  background: linear-gradient(206deg, #fee348 0%, #fff097 100%);
  border-radius: 20px;
  color: #000;
  max-height: 0;
  transition: 0.7s;
  opacity: 0;
}
.question__list-item p.active {
  max-height: 500px;
  padding: 40px 30px;
  margin-top: 10px;
  opacity: 1;
}

@keyframes trust-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}/* =========================
   TRUST: initial view (as is) + infinite marquee after init
   ========================= */

.trust {
  margin-top: 46px;
  overflow: hidden;
}

.trust__row {
  flex-direction: column;
  gap: 18px;
}

.trust__row .text {
  display: flex;
  margin: 0 auto;
}

/* ВАЖНО: исходный вид ДО инициализации (как у тебя было) */
.trust__loop {
  display: flex;
  align-items: center;
  gap: 20px;
}

/* Карточка */
.trust__loop-item {
  background: linear-gradient(206deg, #fee348 0%, #fff097 100%);
  width: 190px;
  height: 63px;
  border-radius: 5px;
  display: flex;
  overflow: hidden;
  justify-content: center;
  align-items: center;
  flex: 0 0 auto;
  /* object-fit: сover; */
  padding: 0 10px;
}
.trust__loop-item img{
  max-height: 90%;
  width: auto;
  object-fit: unset;
}

/* ====== РЕЖИМ БЕСКОНЕЧНОЙ ЛЕНТЫ (включается JS-ом) ====== */
.trust__loop.is-marquee {
  overflow: hidden;
  display: block;             /* чтобы не было центрирования/скачков */
  position: relative;
  gap: 0;                     /* gap теперь на track */
}
/* стартуем анимацию только когда JS сказал "готово" */
.trust__loop.is-marquee .trust__loop-track {
  animation-play-state: paused;
  opacity: 0;
  transform: translate3d(0,0,0);
}

.trust__loop.is-marquee.is-ready .trust__loop-track {
  animation-play-state: running;
  opacity: 1;
  transition: opacity .15s linear;
}
/* Трек, который двигается */
.trust__loop-track {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  width: max-content;
  gap: 20px;
  will-change: transform;

  /* duration и shift выставит JS */
  animation-name: trust-marquee;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
  animation-duration: var(--trust-duration, 20s);
}

@keyframes trust-marquee {
  from { transform: translate3d(0, 0, 0); }
  to   { transform: translate3d(calc(-1 * var(--trust-shift, 0px)), 0, 0); }
}

/* Пауза при наведении — опционально */
.trust__loop.is-marquee:hover .trust__loop-track {
  animation-play-state: paused;
}

.error {
  position: relative;
  overflow: hidden;
}
.error__row {
  flex-direction: column;
  align-items: center;
  padding: 150px 0 100px 0;
}
.error__row h1 {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 80px;
  line-height: 100%;
  color: #fee348;
  text-align: center;
}
.error__main {
  display: flex;
  align-items: center;
  margin: 80px 0;
}
.error__main svg {
  width: 175px;
}
.error__main span {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 300px;
  line-height: 100%;
  color: #FEE348;
}
.error .first__second-button {
  background: #000;
  border: 2px solid #fee348;
}
.error .first__second-button span {
  color: #FEE348;
}
.error .first__second-button:hover {
  background: #FEE348;
}
.error .first__second-button:hover span {
  color: #000;
}
.error__img-1 {
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
}
.error__img-2 {
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
}
.error__img-3 {
  position: absolute;
  bottom: 0;
  right: 0;
  pointer-events: none;
}

@keyframes draw {
  to {
    stroke-dashoffset: 0;
  }
}
.thanks {
  position: relative;
  overflow: hidden;
  height: 100%;
  text-align: center;
  padding: 150px 0 100px 0;
}
.thanks__row {
  flex-direction: column;
  align-items: center;
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.93), 0 7px 7px 0 rgba(0, 0, 0, 0.81), 0 17px 10px 0 rgba(0, 0, 0, 0.48), 0 30px 12px 0 rgba(0, 0, 0, 0.14), 0 46px 13px 0 rgba(0, 0, 0, 0.02);
  border-radius: 30px;
  padding: 40px;
  background: linear-gradient(215deg, #fee348 0%, #fff097 37.02%, #fff097 62.98%, #fee348 100%);
  max-width: 986px;
  margin: 0 auto;
}
.thanks h1 {
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 48px;
  line-height: 100%;
  text-align: center;
  color: #191919;
  margin: 20px 0 10px 0;
}
.thanks h3 {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 24px;
  line-height: 130%;
  text-align: center;
  color: #000;
}
.thanks .first__second-button {
  margin: 20px 0;
  background: transparent;
  border: 2px solid #000;
}
.thanks .first__second-button span {
  color: #000;
}
.thanks .first__second-button:hover {
  background: #000;
}
.thanks .first__second-button:hover span {
  color: #FEE348;
}
.thanks .svg__block {
  background: transparent;
  border: 1px solid #000;
  transition: 0.6s;
}
.thanks .svg__block svg path {
  transition: 0.6s;
}
.thanks .svg__block:hover {
  border: 1px solid #000;
  background: #000;
}
.thanks .svg__block:hover svg path {
  fill: #fee348;
}
.thanks__social {
  display: flex;
  gap: 10px;
}
.thanks__circle {
  width: 100px;
  height: 100px;
  border-radius: 100%;
  background: #000;
  display: flex;
  justify-content: center;
  align-items: center;
}
.thanks__checkmark-path {
  stroke-dasharray: 260;
  stroke-dashoffset: 260;
  animation: draw 2s linear forwards;
}

.history {
  margin-bottom: 120px;
}
.history__row {
  flex-direction: column;
}
.history__content {
  margin-top: 60px;
}
.history__title {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 60px;
  line-height: 100%;
  margin-bottom: 20px;
  color: #fee348;
}
.history__subtitle {
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 32px;
  line-height: 100%;
  cursor: pointer;
  color: #d0bb40;
  padding: 18px 0;
  padding-right: 20px;
  position: relative;
}
.history__subtitle::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  width: 10px;
  height: 10px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-50%) rotate(45deg);
  transition: transform 0.3s ease;
}
.history__subtitle.active::after {
  transform: translateY(-50%) rotate(-135deg);
}
.history__text {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 24px;
  line-height: 100%;
  color: #fff;
  max-height: 0;
  opacity: 0;
  overflow-y: hidden;
  transition: max-height 0.4s ease, opacity 0.25s ease;
}
.history__text.active {
  max-height: 500px;
  opacity: 1;
}
.history__img {
  position: relative;
  max-width: max-content;
  float: left;
  margin-right: 30px;
  margin-bottom: 20px;
}
.history__img img {
  max-width: 439px;
}
.history__img-overlay {
  position: absolute;
  width: 100%;
  z-index: -1;
  height: 100%;
  border-radius: 30px;
  top: 11px;
  left: 11px;
  background: linear-gradient(206deg, #fee348 0%, #fff097 100%);
}

.blog__row {
  padding-top: 120px;
  flex-direction: column;
}
.blog__title {
  margin-top: 20px;
  margin-bottom: 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.blog__container {
  display: flex;
  justify-content: space-between;
  position: relative;
  margin-bottom: 120px;
}
.blog__content {
  display: flex;
  flex-direction: column;
  width: 74%;
}
.blog__sticky {
  display: flex;
  flex-direction: column;
  width: 24%;
  box-shadow: inset -2px 3px 5px 0 #fff, 10px 1px 52px 0 rgba(0, 0, 0, 0.15);
  background: linear-gradient(215deg, #fee348 0%, #fff097 37.02%, #fff097 62.98%, #fee348 100%);
  border-radius: 30px;
  padding: 20px;
  gap: 12px;
  position: sticky;
  max-height: max-content;
  top: 10%;
}
.blog__sticky-title {
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 24px;
  line-height: 130%;
  color: #191919;
  margin-bottom: 4px;
}
.blog__sticky li {
  list-style: disc;
  color: #0b0a0d;
  opacity: 0.5;
  margin-left: 20px;
}
.blog__sticky li a {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 20px;
  line-height: 130%;
  text-align: center;
  color: #0b0a0d;
}
.blog__item {
  width: calc(50% - 10px);
  border-radius: 20px;
  padding: 30px;
  box-shadow: inset 5px 5px 7px 0 rgba(14, 14, 14, 0.25);
  background: linear-gradient(215deg, #fee348 0%, #fff097 37.02%, #fff097 62.98%, #fee348 100%);
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.blog__item-row {
  display: flex;
  gap: 20px;
  margin-bottom: 36px;
  scroll-margin-top: 100px;
}
.blog__item-row img {
  border-radius: 20px;
}
.blog__item-second {
  flex-direction: row;
  width: 100%;
  gap: 35px;
  align-items: center;
}
.blog__item-second .svg__block {
  background: transparent;
  border: 2px solid #000;
  padding: 10px;
  width: 40px;
  height: 40px;
  transition: 0.6s;
}
.blog__item-second .svg__block svg path {
  fill: #000;
  stroke: #000;
  transition: 0.6s;
}
.blog__item-second .svg__block:hover {
  background: #000;
  border: 2px solid #000;
}
.blog__item-second .svg__block:hover svg path {
  fill: #FEE348;
  stroke: #FEE348;
}
.blog__item-margin {
  margin-bottom: 72px;
}
.blog__item-title {
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 27px;
  line-height: 100%;
  color: #151515;
}
.blog__item-subtitle {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 18px;
  line-height: 130%;
  color: #151515;
}
.blog__item-text {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 14px;
  line-height: 130%;
  color: #191919;
}
.blog__item-wrap {
  gap: 18px;
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 36px;
}
.blog__item-wrap .blog__item {
  width: calc(50% - 9px);
  min-height: 170px;
  justify-content: space-between;
}
.blog__item-left {
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.blog__item-social {
  display: flex;
  align-items: center;
  gap: 18px;
}
.blog__item-without {
  margin-bottom: 0;
}
.blog__img {
  width: calc(50% - 10px);
  border-radius: 20px;
}
.blog__img img {
  border-radius: 20px;
  height: 100%;
}

.more {
  margin-bottom: 120px;
  overflow: hidden;
  position: relative;
}
.more .container {
  padding: 0 0 0 100px;
  max-width: none;
}
.more__row {
  flex-direction: column;
}
.more__title {
  margin-bottom: 90px;
}
.more__swiper {
  overflow: hidden;
}
.more__swiper  .swiper-slide{
  height: 260px;

}
.more__swiper  .swiper-slide img{
  height: 100%;
  object-fit: cover;
}
.more .advantages__top {
  margin-bottom: 100px;
}
.more__blog .swiper-slide {
  max-width: 400px;
  width: calc(33% - 14px);
}
.more__blog .swiper-slide .article__big {
  width: 100%;
  text-align: start;
}
.more__blog .swiper-slide .article__big img {
  max-height: 200px;
}
.more__blog .container {
  padding: 0 100px;
  max-width: 1440px;
}

.contact {
  margin-top: 120px;
  margin-bottom: 80px;
}
.contact input::placeholder{
  color: #fff !important;
}

.contact input ::-webkit-input-placeholder {
  color: #fff !important;
}
.contact input ::-moz-placeholder {
  color: #fff !important;
}
.contact input :-ms-input-placeholder {
  color: #fff !important;
}
.talk input::placeholder{
  color: #fff !important;
}

.talk input ::-webkit-input-placeholder {
  color: #fff !important;
}
.talk input ::-moz-placeholder {
  color: #fff !important;
}
.talk input :-ms-input-placeholder {
  color: #fff !important;
}
.contact .svg__block {
  background: transparent;
  border: 2px solid #000;
  padding: 10px;
  width: 40px;
  height: 40px;
  transition: 0.6s;
}
.contact .svg__block svg path {
  fill: #000;
  transition: 0.6s;
}
.contact .svg__block:hover {
  background: #000;
  border: 2px solid #000;
}
.contact .svg__block:hover svg path {
  fill: #FEE348;
}
.contact__row {
  display: flex;
  gap: 20px;
}
.contact__item {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-bottom: 20px;
}
.contact__item:last-child {
  margin-bottom: 0;
}
.contact__text {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 24px;
  line-height: 110%;
  color: #191919;
}
.contact__left {
  width: calc(50% - 10px);
  border-radius: 30px;
  background: linear-gradient(206deg, #fee348 0%, #fff097 100%);
  position: relative;
  padding: 35px 90px;
}
.contact__left h3 {
  color: #000;
  margin-bottom: 60px;
}
.contact__left-svg {
  position: absolute;
  bottom: 0;
  left: 0;
  pointer-events: none;
}
.contact__time {
  margin-top: 20px;
}
.contact__form {
  width: calc(50% - 10px);
  backdrop-filter: blur(196.3999938965px);
  background: #444;
  border-radius: 30px;
  padding: 25px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.contact__form p {
  max-width: 315px;
  text-align: center;
  margin-top: 20px;
  margin-bottom: 30px;
}
.contact__form h2 {
  color: #fff;
  max-width: 315px;
}

.entry__title {
  align-items: start;
  justify-content: start;
  flex-direction: column;
  gap: 20px;
}
.entry__title .content {
  color: #FEE348;
  gap: 15px;
  display: flex;
  align-items: center;
}
.entry__content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.limon-left {
  position: absolute;
  left: 0;
  bottom: -175px;
}
.limon-right {
  position: absolute;
  right: 0;
  bottom: -175px;
}

#client {
  scroll-margin-top: 100px;
}

.popup__question {
  position: fixed;
  z-index: 1000000000000;
  display: none;
  justify-content: center;
  align-items: center;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5);
}
.popup__question .question__form {
  position: relative;
  z-index: 1000;
}
.popup__question .question__form .title {
  font-size: 32px;
}
.popup__question.active {
  display: flex;
}
.popup__question ::placeholder {
  color: #000;
}
.popup__question ::-webkit-input-placeholder {
  color: #000;
}
.popup__question ::-moz-placeholder {
  color: #000;
}
.popup__question :-ms-input-placeholder {
  color: #000;
}
input::placeholder {
  color: #000 !important;
}
input::-webkit-input-placeholder {
  color: #000;
}
input::-moz-placeholder {
  color: #000;
}
input:-ms-input-placeholder {
  color: #000;
}
textarea::placeholder {
  color: #000;
}
textarea::-webkit-input-placeholder {
  color: #000;
}
textarea::-moz-placeholder {
  color: #000;
}
textarea:-ms-input-placeholder {
  color: #000;
}

.popup__close {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 10;
  padding: 7px;
  border-radius: 100%;
  background: transparent;
  border: 2px solid #000;
}
.popup__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.mob {
  display: none;
}

input[type=tel].error {
  border-color: red;
}

@media (max-width: 1439px) {
  .container {
    padding: 0 70px;
  }
  .more {
    margin-bottom: 90px;
  }
  .more .container {
    padding: 0 0 0 70px;
  }
  .more__blog .container {
    padding: 0 70px;
  }
  .background__lines {
    width: 334px;
  }
  .special {
    margin-bottom: 90px;
  }
  .history {
    margin-bottom: 90px;
  }
  .history__img img {
    max-width: 312px;
  }
  .history__title {
    font-size: 45px;
  }
  .history__subtitle {
    font-size: 25px;
    padding: 12px 0;
    padding-right: 20px;
  }
  .history__text {
    font-size: 20px;
  }
  .first__button {
    width: 258px;
    padding: 7px 14px;
  }
  .first__subtitle {
    margin: 10px 0 20px 0;
  }
  .first__subtitle svg {
    width: 11px;
    height: auto;
  }
  .first__row {
    max-width: 600px;
    margin-top: 90px;
  }
  .first__client {
    gap: 7px;
    padding: 14px;
    top: 110px;
    right: 70px;
    max-width: 230px;
  }
  .first__client-stars {
    margin-left: 14px;
  }
  .first__client p {
    margin-left: 14px;
  }
  .first__client-button {
    min-width: auto;
    padding: 7px 14px;
  }
  .header {
    padding: 15px 30px;
  }
  .header__logo {
    margin-right: 30px;
  }
  .header .text {
    font-size: 17px;
  }
  .header__service {
    padding: 20px;
    gap: 10px;
  }
  .header__menu {
    gap: 15px;
  }
  .header__button {
    gap: 14px;
    margin-left: 20px;
  }
  .header__button-main {
    padding: 4px 8px;
    min-width: 110px;
  }
  .header__button-social {
    gap: 7px;
  }
  .project {
    margin-bottom: 90px;
    margin-top: -27px;
    border-radius: 20px 20px 0 0;
  }
  .project__second {
    margin-top: 0;
  }
  .project__button {
    padding: 7px 14px;
    gap: 14px;
  }
  .project__button svg {
    width: 11px;
    height: auto;
  }
  .project__overlay svg {
    width: 11px;
    height: auto;
  }
  .project__row {
    padding-top: 15px;
  }
  .project__grid {
    margin-top: 15px;
    gap: 14px;
  }
  .project__grid-item {
    max-height: 350px;
  }
  .project__title svg {
    width: 11px;
    height: auto;
  }
  .title {
    font-size: 40px;
  }
  .blog__item-row {
    margin-bottom: 30px;
  }
  .blog__item-margin {
    margin-bottom: 50px;
  }
  .blog__item-without {
    margin-bottom: 0;
  }
  .error__row {
    padding: 120px 0 100px 0;
  }
  .error__row h1 {
    font-size: 60px;
  }
  .error__main {
    margin: 40px 0;
  }
  .error__main svg {
    width: 120px;
  }
  .error__main span {
    font-size: 200px;
  }
  .error__img-1 img {
    max-width: 400px;
  }
  .error__img-2 img {
    max-width: 1000px;
  }
  .error__img-3 img {
    max-width: 350px;
  }
  .thanks {
    padding: 120px 0 100px 0;
  }
  .thanks__row {
    max-width: 800px;
  }
  .thanks h1 {
    font-size: 40px;
  }
  .thanks h3 {
    font-size: 20px;
  }
  .rule {
    margin-bottom: 90px;
  }
  .rule__wrapper {
    margin-top: 43px;
    gap: 16px;
  }
  .rule__item {
    width: calc(25% - 12px);
    padding: 14px;
    gap: 28px;
    border-radius: 14px;
  }
  .rule__item-title {
    font-size: 28px;
  }
  .rule__item-content {
    gap: 7px;
  }
  .rule__button {
    margin-top: 28px;
    max-width: 213px;
    padding: 7px 14px;
  }
  .rule__about .rule__item {
    min-height: 200px;
  }
  .rule__about-title {
    font-size: 91px;
  }
  .rule__about-content {
    font-size: 20px;
  }
  .service {
    margin-bottom: 90px;
  }
  .service__block {
    margin-top: 43px;
    padding: 0px 32px;
    border-radius: 20px;
  }
  .service__title {
    font-size: 50px;
  }
  .service__text {
    font-size: 20px;
  }
  .service__item {
    padding-top: 43px;
    padding-bottom: 20px;
    max-width: 720px;
  }
  .service__item:first-child {
    padding-top: 40px;
  }
  .article__wrapper {
    margin-top: 43px;
    gap: 14px;
  }
  .article__big {
    padding: 14px;
    gap: 14px;
  }
  .article__big-content-data {
    margin-top: 4px;
    margin-bottom: 8px;
  }
  .article__big-content-right svg {
    width: 28px;
    height: auto;
  }
  .article__small-item {
    padding: 14px;
  }
  .talk__row {
    padding: 40px 0;
  }
  .talk__popup {
    padding: 14px 28px;
    border-radius: 20px;
    min-width: 450px;
  }
  .talk__popup .content {
    margin: 14px 0 20px 0;
    max-width: 320px;
  }
  .talk__popup .title {
    max-width: 228px;
  }
  .advantages__wrapper {
    grid-template-columns: 24% 32% 8% 32%;
    grid-column-gap: 15px;
    grid-row-gap: 15px;
  }
  .advantages__item {
    padding: 20px;
  }
  .contact__left {
    padding: 35px 60px;
  }
  .question__list {
    gap: 10px;
  }
  .question__list-item p {
    padding: 0px;
  }
  .question__list-item p.active {
    padding: 20px;
  }
  .question__list-item button {
    padding: 30px 20px;
    font-size: 24px;
  }
  .question__form {
    padding: 40px 20px;
    width: 470px;
    flex-shrink: 0;
  }
  .job {
    margin-bottom: 90px;
  }
  .turn {
    margin-bottom: 90px;
  }
  .popup__button {
    font-size: 14px;
    padding: 7px 17px;
  }
  .popup__close {
    top: 10px;
    right: 10px;
  }
  .popup__form {
    max-width: 320px;
  }
  .popup__form-group input {
    font-size: 14px;
  }
  .popup input:focus, .popup textarea:focus {
    font-size: 14px;
  }
  .popup input, .popup textarea {
    font-size: 14px;
  }
  .popup__checkbox-group label span {
    font-size: 12px;
  }
  ::placeholder {
    font-size: 14px;
  }
  ::-webkit-input-placeholder {
    font-size: 14px;
  }
  ::-moz-placeholder {
    font-size: 14px;
  }
  :-ms-input-placeholder {
    font-size: 14px;
  }
  .footer__row {
    padding: 30px 0 20px 0;
  }
  .footer__social {
    gap: 7px;
  }
  .footer__menu {
    gap: 7px;
  }
  .footer__menu-mini {
    gap: 3px;
  }
  .footer__bottom {
    font-size: 13px;
  }
  .footer__logo svg:first-child {
    max-width: 167px;
  }
  .footer__logo svg:last-child {
    max-width: 169px;
  }
  .Project__row {
    padding-bottom: 45px;
    padding-top: 110px;
  }
  .Project__breadcrumbs {
    margin-bottom: 35px;
  }
  .Project__grid .project__grid-item {
    max-height: 307px;
  }
  .Project .project__grid {
    margin-top: 0;
  }
  .Project__grids {
    gap: 13px;
  }
  .Project__filters {
    margin: 15px 0;
    gap: 7px 5px;
  }
}
@media (max-width: 1023px) {
  .container {
    padding: 0 50px;
  }
  .more {
    margin-bottom: 60px;
  }
  .more .container {
    padding: 0 0 0 70px;
  }
  .more__blog .container {
    padding: 0 70px;
  }
  .more__blog .article__big {
    border-radius: 20px;
    padding: 20px;
  }
  .more__blog .article__big img {
    border-radius: 20px;
  }
  .more__blog .swiper-slide {
    width: calc(50% - 10px);
    max-width: none;
  }
  .error__row h1 {
    font-size: 50px;
  }
  .error__main svg {
    width: 100px;
  }
  .error__main span {
    font-size: 170px;
  }
  .error__img-1 img {
    max-width: 300px;
  }
  .error__img-2 img {
    max-width: 800px;
  }
  .error__img-3 img {
    max-width: 300px;
  }
  .thanks h1 {
    font-size: 36px;
  }
  .thanks__checkmark {
    width: 60px;
  }
  .thanks__circle {
    width: 80px;
    height: 80px;
  }
  .thanks__row {
    max-width: 600px;
    padding: 30px;
  }
  .swiper-slide {
    max-width: 220px;
    border-radius: 20px;

  }
  .blog__row {
    padding-top: 80px;
  }
  .first__title {
    font-size: 50px;
  }
  .first__star {
    gap: 5px;
  }
  .first__button {
    width: 175px;
    padding: 10px 20px;
  }
  .first__subtitle {
    margin: 8px 0 16px 0;
  }
  .first__subtitle svg {
    width: 8px;
    height: auto;
  }
  .first__row {
    max-width: 500px;
  }
  .first__client {
    gap: 5px;
    padding: 11px;
    top: 80px;
    right: 50px;
    border-radius: 5px;
    max-width: 160px;
  }
  .first__client-stars {
    margin-left: 11px;
    gap: 2px;
  }
  .first__client-stars svg {
    width: 12px;
  }
  .first__client p {
    margin-left: 11px;
  }
  .first__client-button {
    min-width: auto;
    padding: 5px 10px;
  }
  .first__client-button .text {
    font-size: 14px;
  }
  .special {
    margin-bottom: 60px;
  }
  .header {
    padding: 8px 20px;
    top: 8px;
  }
  .header__logo {
    margin-right: 25px;
  }
  .header__logo svg:first-child {
    width: 80px;
  }
  .header__logo svg:last-child {
    width: 37px;
  }
  .header .text {
    font-size: 16px;
  }
  .header__service {
    padding: 10px;
    gap: 5px;
    border-radius: 10px;
    top: calc(100% + 5px);
  }
  .header__menu {
    gap: 16px;
  }
  .header__menu-more {
    width: 10px;
    height: auto;
  }
  .header__lang {
    gap: 5px;
  }
  .header__button {
    gap: 10px;
  }
  .header__button-main {
    padding: 3px 6px;
    min-width: 82px;
    border-radius: 16px;
  }
  .header__button-social {
    gap: 5px;
  }
  .svg__block {
    width: 30px;
    height: 30px;
    padding: 6px;
  }
  .history {
    margin-bottom: 60px;
  }
  .history__img img {
    max-width: 235px;
  }
  .history__img-overlay {
    border-radius: 20px;
    top: 5px;
    left: 5px;
  }
  .history__title {
    font-size: 32px;
  }
  .history__subtitle {
    font-size: 20px;
    padding: 10px 0;
    padding-right: 20px;
  }
  .history__text {
    font-size: 16px;
  }
  .project {
    margin-bottom: 60px;
    margin-top: -20px;
  }
  .project__second {
    margin-top: 0;
  }
  .project__button {
    padding: 7px 14px;
    gap: 14px;
  }
  .project__button svg {
    width: 8px;
    height: auto;
  }
  .project__overlay svg {
    width: 11px;
    height: auto;
  }
  .project__row {
    padding-top: 15px;
  }
  .project__grid {
    margin-top: 13px;
    gap: 12px;
  }
  .project__grid-item {
    height: 270px;
  }
  .project__title svg {
    width: 8px;
    height: auto;
  }
  .title {
    font-size: 35px;
  }
  .text {
    font-size: 16px;
  }
  .content {
    font-size: 14px;
  }
  .rule {
    margin-bottom: 60px;
  }
  .rule__wrapper {
    margin-top: 32px;
    gap: 12px;
  }
  .rule__item {
    width: calc(25% - 9px);
    padding: 10px;
    gap: 22px;
    border-radius: 11px;
  }
  .rule__item-title {
    font-size: 21px;
  }
  .rule__item-content {
    gap: 5px;
  }
  .rule__button {
    margin-top: 22px;
    max-width: 160px;
    padding: 5px 10px;
  }
  .rule__about {
    margin-top: 90px;
  }
  .rule__about .rule__item {
    min-height: 150px;
  }
  .rule__about-title {
    font-size: 68px;
  }
  .rule__about-content {
    font-size: 16px;
  }
  .service {
    margin-bottom: 60px;
  }
  .service__block {
    margin-top: 32px;
    padding: 0 24px;
    border-radius: 16px;
    margin-bottom: 10px;
  }
  .service__title {
    font-size: 40px;
  }
  .service__text {
    font-size: 16px;
  }
  .service__item {
    padding-top: 32px;
    padding-bottom: 15px;
    max-width: 600px;
    gap: 10px;
  }
  .service__item:first-child {
    padding-top: 30px;
  }
  .service__item svg {
    width: 25px;
  }
  .contact__text {
    font-size: 20px;
  }
  .contact__left {
    padding: 30px;
  }
  .contact p {
    font-size: 16px;
  }
  .article {
    margin-bottom: 140px;
  }
  .article__wrapper {
    margin-top: 32px;
    gap: 11px;
    margin-bottom: 10px;
  }
  .article__big {
    padding: 11px;
    border-radius: 11px;
    gap: 11px;
  }
  .article__big-img {
    height: 100%;
  }
  .article__big-img img {
    height: 100%;
  }
  .article__big-content-data {
    margin-top: 3px;
    margin-bottom: 5px;
  }
  .article__big-content-right svg {
    width: 21px;
  }
  .article__small-item {
    padding: 11px;
  }
  .question__form {
    width: 370px;
  }
  .question__list-item button {
    padding: 30px 20px;
    font-size: 20px;
  }
  .blog__sticky {
    padding: 10px;
    gap: 7px;
    border-radius: 15px;
  }
  .blog__sticky li {
    margin-left: 15px;
  }
  .blog__item {
    border-radius: 15px;
    padding: 15px;
    gap: 10px;
  }
  .blog__item-wrap {
    gap: 10px;
    margin-bottom: 20px;
  }
  .blog__item-wrap .blog__item {
    min-height: 150px;
  }
  .blog__item-row {
    gap: 10px;
    margin-bottom: 20px;
  }
  .blog__item-row-margin {
    margin-bottom: 40px;
  }
  .blog__item-title {
    font-size: 24px;
  }
  .blog__item-subtitle {
    font-size: 16px;
  }
  .blog__item-without {
    margin-bottom: 0;
  }
  .blog__title {
    margin-bottom: 40px;
  }
  .blog__container {
    margin-bottom: 60px;
  }
  .limon-left {
    bottom: -140px;
  }
  .limon-left img {
    max-width: 200px;
  }
  .limon-right {
    bottom: -140px;
  }
  .limon-right img {
    max-width: 200px;
  }
  .talk {
    border-radius: 16px 16px 0 0;
  }
  .talk__row {
    padding: 30px 0;
  }
  .talk__popup {
    padding: 11px 25px;
    border-radius: 16px;
    min-width: 350px;
  }
  .talk__popup .content {
    margin: 11px 0 16px 0;
    max-width: 215px;
  }
  .talk__popup .title {
    max-width: 172px;
  }
  .talk__lines-1 {
    width: 150px;
  }
  .talk__lines-2 {
    width: 750px;
  }
  .talk__lines-3 {
    width: 130px;
  }
  .popup__button {
    font-size: 16px;
    padding: 5px 13px;
    margin-top: 0;
  }
  .popup__question .question__form {
    width: 470px;
  }
  .popup__form {
    max-width: 100%;
  }
  .popup__form-group input {
    font-size: 16px;
  }
  .popup input:focus, .popup textarea:focus {
    font-size: 16px;
  }
  .popup input, .popup textarea {
    font-size: 16px;
  }
  .popup__checkbox-group label span {
    font-size: 12px;
  }
  .popup__custom-box {
    width: 12px;
    margin-right: 5px;
    height: 12px;
  }
  .turn {
    margin-bottom: 60px;
  }
  .turn__item {
    padding: 30px;
  }
  .turn__item-open .service__text {
    text-align: start;
  }
  .job {
    margin-bottom: 60px;
  }
  .job .project__grid-item {
    height: 300px;
  }
  .advantages__wrapper {
    grid-template-columns: 25% 32% 8% 32%;
    grid-column-gap: 10px;
    grid-row-gap: 10px;
  }
  .advantages__item {
    padding: 10px;
    border-radius: 10px;
  }
  ::placeholder {
    font-size: 16px;
  }
  ::-webkit-input-placeholder {
    font-size: 16px;
  }
  ::-moz-placeholder {
    font-size: 16px;
  }
  :-ms-input-placeholder {
    font-size: 16px;
  }
  .footer__row {
    padding: 20px 0 15px 0;
  }
  .footer__social {
    gap: 5px;
  }
  .footer__menu {
    gap: 5px;
  }
  .footer__menu-mini {
    gap: 3px;
  }
  .footer__bottom {
    font-size: 12px;
    margin-top: 13px;
  }
  .footer__logo {
    margin-right: 125px;
  }
  .footer__logo svg:first-child {
    max-width: 125px;
  }
  .footer__logo svg:last-child {
    max-width: 127px;
  }
}
@media (max-width: 899px) {
  .first__row {
    padding-top: 40px;
  }
  .header__logo {
    margin-right: 20px;
  }
  .header__logo svg:first-child {
    width: 65px;
  }
  .header__logo svg:last-child {
    width: 30px;
  }
  .header__menu {
    gap: 10px;
  }
  .header__menu .text {
    font-size: 14px;
  }
  .service__item {
    max-width: 480px;
  }
}
@media (max-width: 767px) {
  .container {
    padding: 0 16px;
  }
  .more .container {
    padding: 0 16px;
  }
  .more__blog .container {
    padding: 0 16px;
  }
  .more__blog .swiper-slide {
    width: 100%;
    max-width: 400px;
  }
  .error__row h1 {
    font-size: 45px;
  }
  .error__main svg {
    width: 90px;
  }
  .error__main span {
    font-size: 150px;
  }
  .error__img-1 img {
    max-width: 220px;
  }
  .error__img-2 img {
    max-width: 700px;
  }
  .error__img-3 img {
    max-width: 220px;
  }
  .thanks__row {
    max-width: 100%;
    margin: 0 20px;
    padding: 20px;
  }
  .thanks__circle {
    width: 60px;
    height: 60px;
  }
  .thanks__checkmark {
    width: 45px;
  }
  .thanks h1 {
    font-size: 30px;
  }
  .thanks h3 {
    font-size: 16px;
  }
  .swiper-slide {
   
    border-radius: 20px;
    width: 100%;
  }
  .swiper__arrow {
    top: 80px;
    right: 20px;
  }
  .first {
    height: 90dvh;
  }
  .first__second {
    height: 80dvh;
  }
  .first__second-title {
    font-size: 45px;
  }
  .first__title {
    font-size: 35px;
  }
  .first__row {
    max-width: none;
    margin-top: 50px;
  }
  .first__subtitle {
    margin: 15px 0 20px 0;
  }
  .first__client {
    position: relative;
    top: auto;
    padding: 20px;
    right: auto;
    max-width: max-content;
    margin: 0 auto 20px auto;
    border-radius: 20px;
    overflow: hidden;
  }
  .first__client-button .text {
    font-size: 16px;
  }
  .first__client-stars {
    margin: 0 auto;
  }
  .first__client-stars svg {
    width: 21px;
    margin: 0 auto;
  }
  .first__button {
    width: auto;
    padding: 10px 30px;
  }
  .first__third {
    height: auto;
  }
  .Article .article__big {
    max-width: 500px;
    padding: 0;
  }
  .Article__wrapper {
    gap: 20px;
  }
  .Article__wrapper .article__big {
    width: 100%;
  }
  .svg__block {
    width: 38px;
    height: 38px;
    padding: 7px;
  }
  .header {
    padding: 8px 20px;
    top: 25px;
  }
  .header__mob-button {
    padding: 6px 15px;
    margin: 0 20px 0 auto;
  }
  .header__logo {
    margin-right: 20px;
  }
  .header__logo svg:first-child {
    width: 95px;
  }
  .header__logo svg:last-child {
    width: 47px;
  }
  .header__burger {
    display: block;
  }
  .header__menu {
    display: none;
  }
  .header__button {
    display: none;
  }
  .text {
    font-size: 16px;
  }
  .content {
    font-size: 14px;
  }
  .footer .text {
    font-size: 20px;
  }
  .footer .content {
    font-size: 16px;
  }
  .footer__row {
    align-items: center;
    padding: 25px 0 50px 0;
  }
  .footer__nav {
    gap: 10px;
    flex-direction: column;
    width: 100%;
  }
  .footer__svg {
    transition: 0.6s;
  }
  .footer__svg.active {
    transform: rotate(180deg);
  }
  .footer__menu-second .text {
    font-weight: 400;
  }
  .footer__menu-mini {
    display: none;
  }
  .footer__menu-mini li a {
    width: 100%;
    display: flex;
  }
  .footer__menu-mini.active {
    display: flex;
  }
  .footer__menu:first-child {
    gap: 10px;
    order: 1;
  }
  .footer__menu-service {
    flex-direction: column;
    display: flex;
  }
  .footer__menu-service-mob span {
    transition: 0.6s;
  }
  .footer__menu-service-mob svg path {
    transition: 0.6s;
  }
  .footer__menu-service-mob:hover span {
    color: #FEE348;
  }
  .footer__menu-service-mob:hover svg path {
    stroke: #FEE348;
  }
  .footer__bottom {
    font-size: 12px;
    text-align: center;
  }
  .footer__top {
    flex-direction: column;
    gap: 20px;
    width: 100%;
  }
  .footer__logo {
    order: 1;
    margin: 0 auto;
  }
  .footer__logo svg:first-child {
    max-width: 255px;
  }
  .footer__social {
    align-items: start;
  }
  .project__button {
    gap: 7px;
  }
  .project__button svg {
    width: 15px;
  }
  .project__overlay {
    opacity: 1;
    padding: 10px;
  }
  .project__title svg {
    width: 15px;
  }
  .project__grid {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
  .project__grid-item {
    max-width: 500px;
    max-height: none;
    width: 100%;
    height: auto;
  }
  .project__grid-item-big {
    gap: 10px;
  }
  .history__content {
    margin-top: 30px;
  }
  .history__img {
    margin: 0 auto 20px auto;
    float: none;
  }
  .rule__wrapper {
    flex-direction: column;
  }
  .rule__item {
    width: 100%;
  }
  .rule__item-second svg {
    width: 180px;
    right: 0;
    left: auto;
  }
  .rule__about .rule__item {
    min-height: 100px;
    flex-direction: row;
    align-items: center;
    gap: 20px;
    justify-content: space-between;
  }
  .rule__about-content {
    text-align: end;
    font-size: 20px;
  }
  .turn__item {
    padding: 30px;
    flex-direction: column;
  }
  .turn__item .service__title {
    font-size: 30px;
  }
  .turn__item-right {
    gap: 24px;
    display: flex;
    flex-direction: column;
  }
  .turn__item-right li button {
    border: none;
    padding: 0;
  }
  .turn__item-content {
    padding: 10px 40px 0 20px;
    border: none;
  }
  .turn__item-list {
    margin-left: 20px;
    gap: 10px;
  }
  .turn__second {
    padding: 20px;
    border-radius: 20px;
  }
  .service__block {
    background: transparent;
    gap: 20px;
    display: flex;
    flex-direction: column;
    padding: 0;
  }
  .service__title {
    font-size: 35px;
  }
  .service__lines {
    display: none;
  }
  .service__text {
    font-size: 16px;
  }
  .service__item {
    background: #fde86d;
    border-radius: 30px;
    padding: 30px;
    border: none;
    max-width: 100%;
  }
  .service__item svg {
    width: 44px;
  }
  .service__item:first-child {
    padding: 30px;
  }
  .service__item:last-child {
    padding: 30px;
  }
  .article__wrapper {
    flex-direction: column;
  }
  .article__big {
    width: 100%;
    padding: 20px;
    border-radius: 20px;
  }
  .article__big-content-right svg {
    width: 30px;
  }
  .article__big img {
    max-height: 200px;
    width: 100%;
  }
  .article__big .article__big-content {
    padding: 0;
  }
  .article__small {
    width: 100%;
  }
  .article__small-item {
    padding: 20px;
  }
  .advantages__wrapper {
    display: flex;
    gap: 20px;
    flex-direction: column;
  }
  .advantages__item {
    padding: 30px;
    border-radius: 20px;
  }
  .policy .title {
    font-size: 30px;
  }
  .blog__content {
    width: 100%;
  }
  .blog__title {
    flex-direction: column;
    gap: 20px;
  }
  .blog__title .title {
    text-align: center !important;
  }
  .blog__sticky {
    display: none;
  }
  .blog__item {
    width: 100% !important;
  }
  .blog__item-second {
    flex-direction: column;
    align-items: start;
  }
  .blog__item-row {
    flex-direction: column;
  }
  .blog__item-row img {
    max-width: 450px;
    margin: 0 auto;
    width: 100%;
  }
  .blog__item-wrap .blog__item {
    min-height: 125px;
  }
  .blog__img {
    width: 100%;
    justify-content: center;
    display: flex;
  }
  .popup__button {
    padding: 5px 20px;
    font-size: 16px;
  }
  .popup__question {
    padding: 0 20px;
  }
  .popup__question .question__form {
    max-width: 500px;
    width: 100%;
  }
  .popup__form {
    max-width: 100%;
  }
  .popup__form-group input {
    font-size: 16px;
  }
  .popup input:focus, .popup textarea:focus {
    font-size: 16px;
  }
  .popup input, .popup textarea {
    font-size: 16px;
  }
  .popup__checkbox-group label span {
    font-size: 12px;
  }
  .popup__custom-box {
    width: 15px;
    margin-right: 5px;
    height: 15px;
  }
  .contact__row {
    flex-direction: column;
  }
  .contact__item {
    margin-bottom: 10px;
  }
  .contact__time {
    margin-top: 10px;
  }
  .contact__left {
    width: 100%;
    padding: 30px;
    min-height: 400px;
  }
  .contact__left h3 {
    margin-bottom: 30px;
  }
  .contact__left-svg {
    width: 100%;
  }
  .contact__form {
    width: 100%;
  }
  .talk__row {
    padding: 50px 0;
  }
  .question {
    margin-bottom: 150px;
  }
  .question__form {
    width: 100%;
  }
  .question__list {
    width: 100%;
  }
  .question__wrapper {
    flex-direction: column-reverse;
  }
  .limon-left {
    bottom: -65px;
  }
  .limon-left img {
    max-width: 100px;
  }
  .limon-right {
    bottom: -65px;
  }
  .limon-right img {
    max-width: 100px;
  }
  .comment .article__big {
    padding: 20px;
    background: #474747;
  }
  .comment__swiper {
    height: auto;
    width: 100%;
  }
  .comment__swiper .swiper-slide {
    max-width: 400px;
  }
  .Project__row {
    padding-top: 110px;
  }
  .Project__grids .project__grid:nth-of-type(1) {
    display: flex;
  }
  .Project__grids .project__grid:nth-of-type(2) {
    display: flex;
  }
  .Project .project__grid-item {
    height: 270px;
  }
  .Project.is-filtering .Project__filtered {
    display: flex;
  }
  .Project__filters {
    gap: 5px 3px;
  }
  .Project__filters .text {
    font-size: 14px;
  }
  .Project__filters button {
    padding: 3px 10px;
    gap: 5px;
  }
  .Project .project__button:hover {
    background-color: transparent;
  }
  .Project .project__button:hover span {
    color: #fee348;
  }
  ::placeholder {
    font-size: 16px;
  }
  ::-webkit-input-placeholder {
    font-size: 16px;
  }
  ::-moz-placeholder {
    font-size: 16px;
  }
  :-ms-input-placeholder {
    font-size: 16px;
  }
  .decs {
    display: none;
  }
  .mob {
    display: flex;
  }
  .special__content-mob {
    display: none;
    width: 100%;
    border-radius: 20px;
    padding: 20px;
    box-shadow: inset -2px 3px 5px 0 #fff, 10px 1px 52px 0 rgba(0, 0, 0, 0.15);
    background-image: linear-gradient(206deg, #fee348 0%, #fff097 100%);
    color: #000;
  }
  .special__content-mob.active {
    display: flex;
  }
  .special__chip-container {
    max-width: none;
  }
  .special__chip-title {
    font-size: 28px;
  }
  .comment__swiper {
    padding-bottom: 22px; /* место под точки */
  }

  .comment__pagination {
    position: absolute;
    left: 0;
    right: 0;
            bottom: 10px !important;
    display: flex;
    justify-content: center;
    gap: 10px;
    z-index: 5;
  }

  .comment__pagination .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    opacity: 1;
    background: rgba(254, 227, 72, 0.35); /* фирменный желтый, приглушенный */
    border-radius: 999px;
    transition: transform .2s ease, background .2s ease;
  }

  .comment__pagination .swiper-pagination-bullet-active {
    background: #FEE348;
    transform: scale(1.2);
  }
  .CommentSwiper {
    padding-bottom: 30px !important; 
  }
}
@media (min-width: 768px) {
  .comment__pagination { display: none; }
}
@media (max-width: 450px) {
  .service__item {
    padding: 20px;
    border-radius: 20px;
  }
  .service__item:first-child {
    padding: 20px;
  }
  .service__item svg {
    width: 30px;
  }
  .service__item:last-child {
    padding: 20px;
  }
  .service__text {
    font-size: 14px;
  }
  .service__title {
    font-size: 25px;
  }
  .Project .project__grid-item {
    height: 200px;
  }
  .question .service__text {
    font-size: 16px;
  }
}
.burger {
  position: absolute;
  overflow-y: hidden;
  display: none;
  flex-direction: column;
  background: #191919;
  right: -10px;
  top: -25px;
  padding: 20px 20px 30px 20px;
  width: 105%;
  max-width: 480px;
  height: 100dvh;
  z-index: 100000;
}
.burger.active {
  display: flex;
}
.burger__close {
  display: flex;
  justify-content: end;
}
.burger .text {
  font-size: 30px;
  color: #FEE348;
}
.burger__tel {
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 26px;
  line-height: 100%;
  color: #fee348;
}
.burger__buttons {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  justify-content: space-between;
}
.burger__buttons-left {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.burger .header__lang .text {
  color: #fff;
}
.burger .header__lang-item.active .text {
  color: #FEE348;
}
.burger .header__menu {
  flex-direction: column;
  align-items: start;
  width: 100%;
  gap: 0;
}
.burger .header__menu-more {
  width: auto;
}
.burger .header__menu-more svg {
  transition: 0.5s;
}
.burger .header__menu li {
  width: 100%;
  border-bottom: 1px solid #fee348;
}
.burger .header__menu li:last-child {
  border: none;
}
.burger .header__menu-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 13px 0;
}
.burger .header__button-social {
  gap: 10px;
}
.burger .header__service {
  position: relative;
  padding: 0;
  gap: 0;
  border-radius: 0;
  top: auto;
  background: transparent;
  margin-left: 20px;
}
.burger .header__service li {
  padding: 5px 0;
  border: none;
  list-style: disc;
  color: #FEE348;
}
.burger .header__service li:last-child {
  padding-bottom: 20px;
}
.burger .header__service li a {
  font-size: 18px;
}
.burger .header__serviceJS.active .header__menu-more svg {
  transform: rotate(90deg);
}
.burger nav {
  margin: 0 0 40px 0;
  overflow-y: scroll;
  overflow-x: hidden;
}

.melime-toast {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 99999;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .3s ease, transform .3s ease;
  pointer-events: none;
}

.melime-toast.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.melime-toast__inner {
  min-width: 280px;
  max-width: 420px;
  padding: 16px 20px;
  border-radius: 18px;
  background: #191919;
  color: #fff;
  box-shadow: 0 10px 30px rgba(0,0,0,.22);
  border: 1px solid rgba(254, 227, 72, .35);
}

.melime-toast--success .melime-toast__inner {
  background: linear-gradient(135deg, #191919 0%, #2a2a2a 100%);
  border-color: #fee348;
}

.melime-toast--error .melime-toast__inner {
  background: linear-gradient(135deg, #2b1717 0%, #3a1d1d 100%);
  border-color: #ffb4a8;
}

.melime-toast__text {
  display: block;
  font-size: 15px;
  line-height: 1.45;
}
.popup__form input.error {
  border-color: #fee348 !important;
  box-shadow: 0 0 0 1px #fee348 inset;
}

.popup__form input[type="checkbox"].error + .popup__checkbox-label .popup__custom-box {
  border-color: #fee348 !important;
  box-shadow: 0 0 0 1px #fee348 inset;
}

.popup__button.is-loading {
  opacity: .7;
  pointer-events: none;
}

.entry__content img {
    border-radius: 20px;
    scroll-margin-top: 100px;
    max-width: 100%;
    height: auto;
}

.entry__content p {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 24px;
    line-height: 130%;
    color: #fff;
    border-radius: 20px;
    padding: 20px;
    background: #444;
    scroll-margin-top: 100px;
}

.entry__content h2 {
    font-family: var(--font-family);
    font-weight: 700;
    font-size: 32px;
    line-height: 100%;
    color: #fee348;
    margin: 20px 0;
    scroll-margin-top: 100px;
}

.entry__content h3 {
    font-family: var(--font-family);
    font-weight: 600;
    font-size: 24px;
    scroll-margin-top: 100px;
    line-height: 100%;
    color: #fff;
}

.entry__content h4,
.entry__content h5,
.entry__content h6 {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 24px;
    line-height: 130%;
    color: #fff;
    border-radius: 20px;
    padding: 20px;
    background: #444;
    scroll-margin-top: 100px;
}

.entry__content span {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 24px;
    scroll-margin-top: 100px;
    line-height: 130%;
    color: #fff;
}

.entry__content ul,
.entry__content ol {
    border-radius: 20px;
    padding: 20px;
    background: #444;
    scroll-margin-top: 100px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.entry__content li {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 24px;
    scroll-margin-top: 100px;
    line-height: 130%;
    color: #fff;
    list-style: disc;
    margin-left: 20px;
}

.entry__content .wp-block-image {
    margin: 0;
}

.entry__content .wp-block-image img {
    display: block;
    width: 100%;
}

.entry__content a {
    color: #fee348;
    text-decoration: underline;
}

.entry__hero-img img {
    width: 100%;
    display: block;
}

@media (max-width: 1023px) {
    .entry__content p,
    .entry__content h4,
    .entry__content h5,
    .entry__content h6,
    .entry__content span,
    .entry__content li {
        font-size: 16px;
    }

    .entry__content h2 {
        font-size: 28px;
        margin: 10px 0;
    }

    .entry__content h3 {
        font-size: 20px;
    }
}