/*============= ALIGNES ===============*/

/* :root {
	--white: #FFFFFF;
	--head-primary: #181816;
	--main-text-primary: #23221F;
	--main-text-secondary: #4B4B4B;
	--primary: radial-gradient(100.43% 241.42% at 0% 0%, #0372ff 0%, #01c38e 100%);
	--accent: #0372FF;
	--background-light: #F8F8F8;
	--background-primary: linear-gradient(135deg, #e0edfb 0%, #e0f5f0 100%);
	--stroke: #e0f0f7;
	--border: #d7d7d7;

  --font-family: "Golos Text", sans-serif;
} */

.alignwide {
  width: 100%;
  padding: 50px 0;
}

.alignfull {
  margin-left: calc(-100vw / 2 + 100% / 2);
  margin-right: calc(-100vw / 2 + 100% / 2);
  max-width: 1920px;
}

@media only screen and (min-width: 1920px) {
  .alignfull {
    width: 100vw !important;
    max-width: unset;
  }
}

@media (max-width: 1100px) {
  .alignwide {
    padding: 40px 0;
  }
}

@media (max-width: 620px) {
  .alignwide {
    padding: 20px 0;
  }
}

body:has(.about-banner-block) h1.page-title,
body:has(.law-banner-block) h1.page-title {
  display: none;
}

/* =========== BASE CONFIG =========== */
html {
  box-sizing: border-box;
}

* {
  margin: 0;
  padding: 0;
  font-family: var(--font-family);
  line-height: 120%;
  box-sizing: inherit;
  color: var(--main-text-primary);
  box-sizing: border-box;
}

body {
  overflow-x: hidden;
  margin: 0 auto;
  width: auto;
  background: var(--background-light);
}

::-webkit-scrollbar {
  width: 5px;
  background-color: var(--stroke);
  /* border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px; */
}

::-webkit-scrollbar-thumb {
  width: 5px;
  background-color: var(--primary);
}

::selection {
  color: white;
  background: var(--primary);
  -webkit-text-fill-color: white;
}

a {
  text-decoration: none;
  color: var(--main-text-primary);
  transition: all 0.3s;
}

a:hover,
span {
  color: var(--primary);
}

strong {
  font-weight: 500;
}

ul,
ol {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

ol {
  gap: 5px;
  list-style-position: outside;
  padding-left: 20px;
}

ol li {
  padding-left: 5px;
}

ol li::marker {
  display: flex;
  list-style-position: inside;
  margin-right: 10px;
  padding-right: 20px;
}

ul li {
  display: flex;
  position: relative;
  align-items: center;
  font-size: inherit;
  list-style-position: inside;
  list-style-type: none;
  height: fit-content;
  gap: 10px;
}

ul li::before {
  display: flex;
  position: relative;
  align-items: center;
  justify-content: center;
  border-radius: 100px;
  content: "";
  flex-shrink: 0;
  top: 0;
  left: 0;
  width: 10px;
  height: 10px;
  background: var(--primary);
}

@media (max-width: 576px) {
  ul {
    gap: 5px;
  }
}

table {
  font-size: 14px;
}

h2.wp-block-heading {
  font-size: 32px;
  margin: 20px 0;
}

@media (max-width: 768px) {
  h2.wp-block-heading {
    font-size: 20px;
  }
}

.wp-block-heading,
.wp-block-heading * {
  color: var(--main-text-primary);
}

h1,
.h1,
.h1 p {
  font-weight: 600;
  /*font-size c 60 до 26 */
  font-size: clamp(1.625rem, 1.2rem + 2.13vw, 3.75rem);
  line-height: 110%;
  color: var(--main-text-primary);
  margin-bottom: 40px;
}

h2,
.h2,
.h2 p {
  font-weight: 500;
  /*font-size c 48 до 22 */
  font-size: clamp(1.375rem, 1.05rem + 1.63vw, 3rem);
  line-height: 110%;
  color: var(--main-text-primary);
}

h3,
.h3,
.h3 p {
  font-weight: 600;
  /*font-size c 36 до 18 */
  font-size: clamp(1.125rem, 0.9rem + 1.13vw, 2.25rem);
  line-height: 110%;
  color: var(--main-text-primary);
}

h4,
.h4,
.h4 p {
  font-weight: 600;
  /*font-size c 28 до 16 */
  font-size: clamp(1rem, 0.85rem + 0.75vw, 1.75rem);
  line-height: 110%;
  color: var(--main-text-primary);
}

h5,
.h5,
.h5 p {
  font-weight: 600;
  /*font-size c 22 до 16 */
  font-size: clamp(1rem, 0.925rem + 0.38vw, 1.375rem);
  line-height: 110%;
  color: var(--main-text-primary);
}

@media (max-width: 620px) {

  h1,
  .h1,
  .h1 p {
    margin-bottom: 20px;
  }
}

p {
  font-weight: 400;
  font-size: 16px;
  line-height: 120%;
  color: var(--main-text-secondary);
}

.p1,
.p1 p,
.p1 li {
  font-weight: 700;
  /*font-size c 20 до 16 */
  font-size: clamp(1rem, 0.95rem + 0.25vw, 1.25rem);
  color: var(--main-text-primary);
}

.p2,
.p2 p,
.p2 li {
  font-weight: 700;
  /*font-size c 18 до 16 */
  font-size: clamp(1rem, 0.975rem + 0.13vw, 1.125rem);
  color: var(--main-text-secondary);
}

.p3,
.p3 p,
.p3 li {
  font-weight: 500;
  /*font-size c 18 до 14 */
  font-size: clamp(0.875rem, 0.825rem + 0.25vw, 1.125rem);
  color: var(--main-text-secondary);
}

.p4,
.p4 p,
.p4 li {
  font-weight: 400;
  /*font-size c 18 до 14 */
  font-size: clamp(0.875rem, 0.825rem + 0.25vw, 1.125rem);
  color: var(--main-text-secondary);
}

.p5,
.p5 p,
.p5 li {
  font-weight: 700;
  /*font-size c 16 до 14 */
  font-size: clamp(0.875rem, 0.85rem + 0.13vw, 1rem);
  color: var(--main-text-secondary);
}

.p6,
.p6 p,
.p6 li {
  font-weight: 500;
  /*font-size c 16 до 14 */
  font-size: clamp(0.875rem, 0.85rem + 0.13vw, 1rem);
  color: var(--main-text-secondary);
}

.p7,
.p7 p,
.p7 li {
  font-weight: 400;
  /*font-size c 16 до 14 */
  font-size: clamp(0.875rem, 0.85rem + 0.13vw, 1rem);
  text-transform: uppercase;
  color: var(--main-text-secondary);
}

.p8,
.p8 p,
.p8 li {
  font-weight: 400;
  /*font-size c 16 до 14 */
  font-size: clamp(0.875rem, 0.85rem + 0.13vw, 1rem);
  color: var(--main-text-secondary);
}

.p9,
.p9 p,
.p9 li {
  font-weight: 500;
  font-size: 14px;
  color: var(--main-text-secondary);
}

.p10,
.p10 p,
.p10 li {
  font-weight: 400;
  font-size: 14px;
  color: var(--main-text-secondary);
}

.breadcrumbs {
  padding-bottom: 10px;
  font-weight: 400;
  font-size: 14px;
  line-height: 120%;
  color: var(--main-text-secondary);
}

.breadcrumbs span {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  color: var(--main-text-secondary);
  background-clip: unset;
  -webkit-background-clip: unset;
  -webkit-text-fill-color: unset;
  background: transparent;
  transition: all 0.3s;
}

.breadcrumbs .current-item,
.breadcrumbs .current-item span,
.breadcrumbs span:hover {
  color: var(--main-text-primary);
}

.container {
  max-width: 1560px;
  width: 100%;
  margin: 0 auto;
  padding: 0 15px;
}

.btn {
  display: flex;
  position: relative;
  align-items: center;
  justify-content: center;
  width: fit-content;
  height: 50px;
  text-align: center;
  outline: none;
  border-radius: 10px;
  padding: 10px 20px;
  font-weight: 500;
  font-size: 18px;
  line-height: 120%;
  color: var(--primary);
  white-space: nowrap;
  background: transparent;
  overflow: hidden;
  cursor: pointer;
  border: 1px solid var(--primary);
  box-sizing: border-box;
  flex-shrink: 0;
  transition: all 0.3s;
}

.btn:hover {
  background: var(--primary);
  color: var(--white);
}

.btn.large {
  height: 60px;
  padding: 10px 30px;
}

.btn.first {
  color: var(--white);
  background: var(--primary);
}

.btn.first:hover {
  background: var(--primary-hover);
}

.btn.second {
  color: var(--primary);
  background: var(--white);
  border: 1px solid var(--white);
}

.btn.second:hover {
  background: var(--secondary);
  border: 1px solid var(--secondary);
}

@media (max-width: 512px) {
  .btn {
    width: 100%;
    padding: 10px;
    font-size: 16px;
  }

  .btn.large {
    height: 50px;
    padding: 10px;
  }
}

.title-wrap {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 40px;
}

.title-wrap .title {
  max-width: 620px;
}

.title-wrap span {
  color: var(--main-text-secondary);
}

.title-wrap .mark {
  display: flex;
  align-items: center;
  width: fit-content;
  gap: 5px;
  border-radius: 100px;
  padding: 5px;
  background: var(--secondary);
  flex-shrink: 0;
}

.title-wrap .mark img {
  height: 18px;
  width: 9px;
  object-fit: contain;
}

.title-wrap .mark-text {
  padding: 0 5px;
  font-weight: 400;
  font-size: clamp(0.875rem, 0.85rem + 0.13vw, 1rem);
  color: var(--primary);
}

@media (max-width: 620px) {
  .title-wrap {
    flex-direction: column-reverse;
    align-items: start;
    gap: 10px;
    margin-bottom: 20px;
  }
}

#main {
  min-height: 60vh;
}

/*============ HEADER =================*/
#header {
  display: flex;
  position: sticky;
  flex-direction: column;
  width: 100%;
  top: 0;
  margin-bottom: 20px;
  z-index: 99;
  background: var(--white);
}

#header .header-wrapper {
  display: flex;
  flex-direction: column;
  width: 100%;
}

#header .header__menu ul li {
  list-style-type: none;
  margin: 0;
  cursor: pointer;
  white-space: nowrap;
  border-radius: 10px;
  height: 40px;
  background: var(--background);
  transition: all 0.3s;
}

#header .header__menu ul li:hover {
  background: var(--secondary);
}

#header ul li::before {
  display: none;
}

#header .header-top {
  display: flex;
  align-items: center;
  width: 100%;
  gap: 60px;
  padding: 10px 0;
  border-bottom: 1px solid var(--stroke);
}

#header .header-top .address {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 122px;
}

#header .header-top .address img {
  width: 11px;
  height: 15px;
  object-fit: contain;
  flex-shrink: 0;
}

#header .grade-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
}

#header .grade-item {
  display: flex;
  align-items: center;
  padding: 8px;
  gap: 5px;
  border: 1px solid var(--stroke-secondary);
  border-radius: 10px;
}

#header .grade-item__icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

#header .grade-item__value {
  margin-right: 3px;
  font-weight: 700;
}

#header .header-top__info {
  display: flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  height: 100%;
  gap: 20px;
  margin-left: auto;
}

#header .header-top__info .soc-text {
  display: flex;
  align-items: center;
  gap: 8px;
}

#header .header-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 15px 0;
  gap: 20px;
  border-bottom: 1px solid var(--stroke);
}

#header .header-bottom .logo__holder {
  display: flex;
  max-width: 200px;
  max-height: 75px;
  width: 100%;
  height: 100%;
  align-items: center;
  /* Вертикальное центрирование */
  justify-content: center;
  /* Горизонтальное центрирование */
  overflow: hidden;
  /* Скрываем всё, что выходит за границы */
}

#header .header-bottom .logo__holder img,
#header .header-bottom .logo__holder svg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* Сохраняем пропорции, вписывая в контейнер */
  display: block;
  /* Убираем лишние отступы */
  max-width: 100%;
  /* Ограничиваем максимальную ширину */
  max-height: 100%;
  /* Ограничиваем максимальную высоту */
}

#header .header-bottom__info {
  display: flex;
  align-items: center;
  margin-left: auto;
}

#header .header-bottom .phones-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* #header .header-bottom .phones-wrap__cons {
  display: flex;
  position: relative;
  align-items: center;
  width: 50px;
  height: 50px;
} */
#header .header-bottom .phones-wrap__cons svg {
  display: flex;
  position: absolute;
  bottom: 0;
  right: 6px;
  border-radius: 100%;
  fill: #1bca4a;
  stroke-width: 1px;
  stroke: var(--white);
}

.header .header-bottom .phones-wrap__cons {
  display: flex;
  position: relative;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  overflow: hidden;
}

#header>div>div.header-bottom>div.header-bottom__info>div.phones-wrap>div.phones-wrap__cons>img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.phones-holder {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.phones-holder .phone {
  white-space: nowrap;
}

#header .header-bottom .btn-holder {
  width: max-content;
  margin-left: 20px;
}

#header .header__menu,
#header .header-top__info {
  display: flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  height: 100%;
}

#header .header__menu {
  width: 100%;
}

#header .header__menu .header-menu {
  width: 100%;
  max-width: 705px;
  justify-content: space-between;
  gap: 5px;
}

#header .soc-holder.mobile {
  display: none;
}

#header .header-top .soc-holder .soc-icon {
  width: 35px;
  height: 35px;
}

.soc-holder {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.soc-holder .soc-icon {
  display: flex;
  width: 50px;
  height: 50px;
  border-radius: 10px;
  overflow: hidden;
}

.soc-holder .soc-icon svg {
  width: 100%;
  height: 100%;
}

.soc-holder .soc-icon svg * {
  transition: 0.3s;
}

.soc-holder .soc-icon:hover svg rect,
.soc-holder .soc-icon:hover svg g> :nth-child(3) {
  fill: var(--primary);
}

#header .header-menu {
  display: flex;
  flex-direction: row;
  align-items: center;
  width: 100%;
  max-width: 707px;
  height: 100%;
}

#header .header-menu li a {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  padding: 0 12px;
  font-weight: 500;
  font-size: 16px;
  line-height: 120%;
  text-align: center;
  gap: 5px;
}

#header .header-menu li:hover a {
  color: var(--primary);
}

#header .header-menu .nav-menu-element.has-childs>a::after {
  content: "";
  position: relative;
  display: block;
  width: 12px;
  height: 12px;
  flex-shrink: 0;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url(../images/arrow-down.svg);
  transition: all 0.3s;
}

#header .header-menu .nav-menu-element.has-childs:hover>a::after {
  background-image: url(../images/arrow-top.svg);
}

#header .header-menu .sub-menu {
  display: flex;
  position: absolute;
  top: 30px;
  width: max-content;
  height: max-content;
  min-width: 360px;
  left: 50%;
  right: 0;
  gap: 15px;
  column-gap: 50px;
  opacity: 0;
  visibility: hidden;
  cursor: default;
  padding: 20px;
  background: var(--background);
  border-radius: 10px;
  border: 1px solid var(--stroke-secondary);
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
  transform: translate(0, 20px);
  transition: all 0.3s ease;
  transition-delay: 0.15s;
  z-index: 100;
}

#header .header-menu .sub-menu li,
#header .header-menu .sub-menu li:hover {
  height: fit-content;
  background: transparent;
}

#header .header-menu .sub-menu li a {
  font-weight: 500;
  font-size: 16px;
  line-height: 120%;
  color: var(--main-text-primary);
  height: fit-content;
  padding: 0;
  text-transform: none;
}

#header .header-menu .sub-menu li a:hover {
  color: var(--primary);
}

#header .header-menu>.nav-menu-element.has-childs:hover .sub-menu,
#header .header-menu>.nav-menu-element.has-childs:active .sub-menu {
  opacity: 1;
  left: 0%;
  visibility: visible;
}


#header .burger.open_menu {
  display: none;
  flex-direction: column;
  background-color: transparent;
  height: 30px;
  width: 30px;
  justify-content: space-evenly;
  align-items: center;
  border-radius: 2px;
  flex-shrink: 0;
  cursor: pointer;
}

#header .burger.open_menu span {
  background: var(--primary);
  background-clip: border-box;
  pointer-events: none;
  width: 24px;
  height: 2px;
  transition: all 0.3s ease-in;
}

#header .burger.open_menu.clicked {
  background-color: var(--white);
}

@media (max-width: 1420px) {
  #header .header-top {
    gap: 30px;
  }

  #header .header__menu {
    display: none;
  }

  #header .burger.open_menu {
    display: flex;
  }
}

@media (max-width: 992px) {
  .soc-holder .soc-icon {
    width: 40px;
    height: 40px;
  }

  #header .header-top__info .soc-text,
  #header .header-bottom .phones-wrap__cons {
    display: none;
  }
}

@media (max-width: 768px) {

  #header .header-bottom .btn-holder,
  #header .header-top .grade-wrap {
    display: none;
  }
}

@media (max-width: 512px) {
  #header .header-top {
    display: none;
  }

  #header .soc-holder.mobile {
    display: flex !important;
    justify-content: end !important;
  }

  #header .soc-holder.mobile .soc-icon {
    width: 30px;
    height: 30px;
  }

  #header .header-bottom {
    gap: 10px;
  }

  #header .header-bottom .logo__holder {
    max-width: 200px;
  }
}

@media (max-width: 425px) {
  #header .header-bottom .phones-holder .phone {
    font-size: 14px;
  }
}

/*================ MOBILE MNU Start =============*/

#header #mobile-mnu {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 320px;
  gap: 15px;
  background-color: var(--white);
  padding: 20px;
  padding-top: 50px;
  overflow-y: auto;
  transition: all 0.3s ease-in;
  transform: translateX(-350px);
  z-index: 9999;
}

#header #mobile-mnu p {
  color: var(--main-text-primary);
}

#header #mobile-mnu.opened {
  transform: translateX(0);
}

#header #mobile-mnu #close-mnu {
  display: block;
  position: absolute;
  width: 30px;
  height: 30px;
  top: 10px;
  right: 10px;
  cursor: pointer;
}

#header #mobile-mnu #close-mnu svg {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

#header #mobile-mnu #close-mnu svg path {
  fill: var(--primary);
  transition: 0.3s;
}

#header #mobile-mnu #close-mnu:hover svg path {
  opacity: 0.7;
}

#header #mobile-mnu .logo__holder {
  display: flex;
  width: 100%;
  max-height: 70px;
  margin-bottom: 10px;
}

#header #mobile-mnu .logo__holder img {
  width: 100%;
  height: 100%;
}

#header #mobile-mnu .menuTop {
  list-style-type: none;
  gap: 0;
}

#header #mobile-mnu .menuTop li {
  display: flex;
  flex-direction: column;
  margin-bottom: 10px;
  gap: 10px;
}

#header #mobile-mnu .menuTop li a {
  display: flex;
  align-items: center;
  position: relative;
  width: 100%;
  gap: 5px;
}

#header #mobile-mnu .menuTop .sub-menu {
  display: none;
}

#header #mobile-mnu .item-holder {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

#header #mobile-mnu .address {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

#header #mobile-mnu .btn {
  width: 100%;
  height: 50px;
}

#header #mobile-mnu .soc {
  width: 35px;
  height: 35px;
}

#header #mobile-mnu a,
#header #mobile-mnu p {
  font-size: 16px;
  line-height: 130%;
  font-weight: 450;
}

#header #mobile-mnu .grade-wrap {
  flex-direction: column;
  align-items: normal;
}

/*================ MOBILE MNU End =============*/

/*============ FOOTER Start ===============*/
#footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  margin-top: 30px;
}

#footer ul li::before {
  display: none;
}

.footer-top {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  gap: 30px;
  padding: 50px 0;
  border-top: 1px solid var(--stroke-secondary);
}

.footer-top .menu a {
  font-weight: 500;
  font-size: clamp(0.875rem, 0.85rem + 0.13vw, 1rem);
  line-height: 120%;
  color: var(--main-text-secondary);
}

.footer-top .menu a:hover {
  color: var(--primary);
}

.footer-top__item {
  display: flex;
  flex-direction: column;
  width: 100%;
  min-width: 160px;
  gap: 20px;
  flex: 1;
}

.footer-top__contacts {
  min-width: 280px;
  border-radius: 15px;
  padding: 30px;
  background: var(--background);
  gap: 30px;
}

.footer-top__contacts .items-holder {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
}

.footer-top__contacts .phones-holder .phone {
  /* font-size с 32 до 16 */
  font-size: clamp(1rem, 0.8rem + 1vw, 2rem);
  font-weight: 500;
}

.emails-holder {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.emails-holder .email {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--main-text-primary);
}

.emails-holder .email:hover {
  color: var(--primary);
}

.emails-holder img {
  width: 20px;
  height: 20px;
}

.footer-top__contacts .soc-holder {
  margin-top: 20px;
}

.footer-top__item .menu-title {
  color: var(--main-text-primary);
}

.footer-top__item.logo-wrap {
  margin-right: 40px;
}

.footer-top__item .logo__holder {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 240px;
  width: 100%;
  /* height: 40px; */
  object-fit: contain;
}

.footer-top__item .logo__holder img {
  width: 100%;
  height: 100%;
}

.footer-top__item .soc-holder {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: 60px;
  padding-top: 15px;
  padding-bottom: 20px;
  margin-top: 10px;
  gap: 10px;
  border-top: 1px solid #e7e7e7;
}

#footer .dev {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--main-text-secondary);
}

#footer .privacy-holder {
  color: var(--main-text-secondary);
}

#footer .privacy-holder:hover,
#footer .dev:hover {
  color: var(--primary);
}

#footer .dev .glogo {
  width: 111px;
  height: 17px;
  mask-image: url(../images/gmask.png);
  mask-origin: border-box;
  mask-size: contain;
  mask-repeat: no-repeat;
  background-color: var(--main-text-secondary);
  position: relative;
  cursor: pointer;
  display: inline-flex;
  vertical-align: sub;
  overflow: hidden;
}

#footer .dev .glogo:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: red;
  transform: translateX(100%);
  transition: transform 0.7s ease-in;
  background: linear-gradient(90deg,
      #fe6604 10%,
      #ee0a76 30%,
      #ee0a76 60%,
      #fe6604 101%) repeat-x 0 0;
  background-size: 100px;
  animation-duration: 5s;
  animation-name: slideUp;
  animation-iteration-count: infinite;
  animation-delay: 3s;
}

#footer .dev .glogo:hover:before {
  animation-name: unset;
  transform: translateX(0);
}

#footer .rights {
  color: var(--main-text-secondary);
}

@keyframes slideUp {
  0% {
    transform: translateX(-100%);
  }

  50% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(100%);
  }
}

@media (max-width: 1420px) {
  .footer-top__contacts {
    gap: 20px;
  }

  .footer-top__contacts .items-holder {
    gap: 10px;
  }

  .footer-top__item .soc-holder {
    margin-top: 0;
  }
}

@media (max-width: 992px) {
  .footer-top {
    padding: 20px 0;
  }

  .footer-top__item.logo-wrap {
    width: 100%;
    flex: auto;
  }
}

@media (max-width: 768px) {
  .footer-bottom {
    flex-direction: column;
  }
}

@media (max-width: 380px) {

  .footer-top__item,
  .footer-top__item ul,
  .footer-top__contacts .items-holder {
    align-items: center;
    flex-direction: column;
    gap: 10px;
  }

  .footer-top__item.logo-wrap {
    margin: 0;
  }
}

#header>div>div.header-bottom>div.header-bottom__info>div.phones-wrap>div.phones-wrap__cons>svg>circle {
  display: none;
}

/*============ FOOTER End ===============*/

/*============ ERROR PAGE Start ===============*/

.error-wrapper {
  display: flex;
  justify-content: space-between;
  position: relative;
  width: 100%;
  height: 400px;
  padding: 40px;
  gap: 30px;
  border-radius: 20px;
  background: var(--background);
  overflow: hidden;
}

.error-wrapper .error-text {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 450px;
  gap: 20px;
}

.error-wrapper .error-text__title,
.error-wrapper .error-text__subtitle {
  margin: 0;
}

.error-wrapper .error-text__subtitle {
  max-width: 430px;
}

.error-wrapper .btn {
  margin-top: auto;
  z-index: 1;
}

.error-wrapper .error-int {
  display: flex;
  position: absolute;
  bottom: -85px;
  right: 0;
  font-weight: 600;
  font-size: 350px;
  line-height: 120%;
  text-transform: uppercase;
  text-align: right;
  color: var(--stroke-secondary);
}

@media (max-width: 768px) {
  .error-wrapper {
    flex-direction: column;
    align-items: center;
    height: 350px;
    padding: 20px;
  }

  .error-wrapper .error-text {
    width: auto;
    align-items: center;
    text-align: center;
  }

  .error-wrapper .error-text .btn {
    margin: 0;
  }

  .error-wrapper .error-int {
    justify-content: center;
    transform: translate(-50%, 0);
    left: 50%;
    font-size: 160px;
    bottom: -40px;
  }
}

/*============ ERROR page End===============*/

/* ============== MODAL Start ============= */
.theme-modal {
  display: none;
  position: relative;
}

.theme-modal .title {
  font-weight: 600;
  /*font-size c 36 до 26 */
  font-size: clamp(1.625rem, 1.5rem + 0.63vw, 2.25rem);
  line-height: 110%;
  text-align: center;
  color: var(--main-text-primary);
  margin-bottom: 10px;
}

.theme-modal .subtitle {
  font-weight: 400;
  font-size: 16px;
  line-height: 120%;
  text-align: center;
  color: var(--main-text-secondary);
  margin-bottom: 30px;
}

.theme-modal .btn {
  width: 100%;
}

.fancybox__content>.f-button.is-close-btn {
  top: 20px !important;
  right: 20px !important;
  width: 12px !important;
  height: 12px !important;
  opacity: 1 !important;
  --f-button-color: transparent !important;
  --f-button-bg: transparent !important;
  --f-button-active-bg: transparent !important;
  --f-button-hover-bg: transparent !important;
  transition: all 0.3s !important;
}

.fancybox__content>.f-button.is-close-btn svg {
  width: 14px !important;
  height: 14px !important;
  stroke: transparent !important;
}

.fancybox__content>.f-button.is-close-btn svg path {
  transition: all 0.3s;
  fill: var(--stroke-secondary) !important;
}

.fancybox__content>.f-button.is-close-btn:hover svg path {
  fill: var(--primary) !important;
}

.f-button svg {
  stroke: white !important;
}

.fancybox__content {
  overflow: hidden !important;
}

.theme-modal.fancybox__content {
  width: 500px;
  display: flex;
  flex-direction: column;
  padding: 30px;
  padding-top: 50px;
  background: var(--white);
  border-radius: 20px;
  overflow: auto;
}

#modal-success.theme-modal .title {
  margin: 0;
}

#modal-success.theme-modal .subtitle {
  color: var(--main-text-primary);
  margin: 40px 0 20px;
}

.fancybox__html5video,
.fancybox__iframe {
  outline: none;
  overflow: hidden;
}

.fancybox__backdrop {
  background-color: #0000008f !important;
}

.fancybox__slide {
  padding: 60px 5px !important;
}

button {
  border: unset;
}

button,
input {
  outline: none;
}

.theme-modal #file {
  display: none;
}

.theme-modal .file span {
  font-family: var(--second-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 120%;
  letter-spacing: -0.02em;
  text-align: center;
  color: var(--card);
  cursor: pointer;
  transition: 0.3s;
}

.theme-modal .file span:hover {
  color: var(--primary);
}

@media (max-width: 420px) {
  .theme-modal.fancybox__content {
    padding: 20px;
    padding-top: 40px;
  }
}

/* ============== MODAL End ============= */

/* ============== SWIPER Start ============= */

.swiper {
  width: 100%;
  overflow: hidden;
}

.swiper-slide {
  width: 100%;
  height: 100%;
}

.swiper-additionals {
  display: flex;
  justify-content: space-between;
  align-items: end;
  width: 100%;
  gap: 20px;
}

.swiper-pagination {
  display: flex !important;
  align-items: center !important;
  position: relative !important;
  top: 0 !important;
  left: 0 !important;
  bottom: 0 !important;
  right: 0 !important;
  width: fit-content !important;
  gap: 5px !important;
}

.swiper-pagination-bullet {
  position: relative;
  width: 10px !important;
  height: 10px !important;
  opacity: 1 !important;
  margin: 0 !important;
  border-radius: 100% !important;
  background: var(--secondary) !important;
  transition: background-color 0.3s !important;
}

.swiper-pagination-bullet-active,
.swiper-pagination-bullet:hover {
  opacity: 1 !important;
  background: var(--primary) !important;
}

.swiper-btns {
  display: flex;
  align-items: center;
  gap: 10px;
}

.swiper-btn-prev {
  scale: -1;
}

.btn svg path {
  fill: var(--primary);
  z-index: 2;
  transition: all 0.3s;
}

.btn:hover svg path {
  fill: var(--white);
}

.swiper-btn-prev,
.swiper-btn-next {
  display: flex;
  position: relative;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 10px;
  flex-shrink: 0;
  cursor: pointer;
  background: var(--secondary);
  transition: all 0.3s;
  margin-top: 30px;
}

.swiper-btn-prev:hover,
.swiper-btn-next:hover {
  background: var(--primary);
}

.swiper-btn-prev svg,
.swiper-btn-next svg {
  z-index: 2;
}

.swiper-btn-prev svg path,
.swiper-btn-next svg path {
  fill: var(--primary);
  transition: all 0.3s;
}

.swiper-btn-prev:hover svg path,
.swiper-btn-next:hover svg path {
  fill: var(--white);
}

.swiper-button-disabled {
  pointer-events: none;
  opacity: 0.5;
}

@media (max-width: 768px) {

  .swiper-btn-prev,
  .swiper-btn-next,
  .swiper-pagination {
    margin-top: 20px;
  }
}

@media (max-width: 420px) {
  .swiper-pagination {
    order: -1;
    width: 100% !important;
  }

  .swiper-additionals {
    display: flex;
    justify-content: start;
    flex-wrap: wrap;
    width: 100%;
    gap: 20px;
  }

  .swiper-btn-prev,
  .swiper-btn-next {
    margin: 0;
  }
}

/* ============== SWIPER End ============= */

/* ============== PAGINATIONS PAGE Start ============= */
.page-navigation {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  gap: 40px;
  margin-top: 50px;
}

.page-navigation .swiper-btn-prev,
.page-navigation .swiper-btn-next {
  margin: 0;
}

.page-navigation {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  gap: 40px;
}

.page-navigation .nav-links {
  display: flex;
  align-items: center;
  gap: 5px;
}

.page-navigation .nav-links .page-numbers {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  color: var(--main-text-primary);
  border-radius: 10px;
  border: 1px solid var(--stroke);
  font-weight: 500;
  font-size: 18px;
  line-height: 120%;
}

.page-navigation .nav-links .page-numbers.dots,
.page-navigation .nav-links .page-numbers.dots:hover {
  border: none;
  color: var(--main-text-primary);
  background: transparent;
}

.page-navigation .nav-links .page-numbers:hover,
.page-navigation .nav-links .page-numbers.current {
  color: var(--primary);
  background: var(--secondary);
  border: 1px solid var(--secondary);
}

.swiper-btn-prev.disabled,
.swiper-btn-next.disabled {
  pointer-events: none;
  opacity: 0.5;
}

/* ============== PAGINATIONS PAGE End ============= */

/* ============== FORM STYLE Start ============= */

.form {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.form-top,
.form-bot {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.form input,
.form textarea {
  width: 100%;
  height: 60px;
  padding: 28px 20px 13px 20px;
  outline: none;
  font-weight: 400;
  font-size: 16px;
  line-height: 120%;
  color: var(--main-text-primary);
  cursor: pointer;
  border-radius: 10px;
  border: 1px solid var(--stroke-secondary);
  background: transparent;
  transition: all 0.3s;
}

.form textarea {
  height: 120px;
  resize: vertical;
}

/* .form input:hover,
.form textarea:hover,
.form input:focus,
.form textarea:focus {
  
} */
.form input::placeholder,
.form textarea::placeholder {
  font-weight: 400;
  font-size: 16px;
  line-height: 120%;
  color: var(--main-text-primary);
  opacity: 0;
  transition: 0.3s;
}

.form input:hover,
.form input:focus,
.form textarea:hover,
.form textarea:focus {
  border: 1px solid var(--primary);
}

.form input:hover::placeholder,
.form input:focus::placeholder,
.form textarea:hover::placeholder,
.form textarea:focus::placeholder {
  opacity: 1;
}

.form .input-wrapper {
  position: relative;
  width: 100%;
}

.form .input-wrapper .label {
  position: absolute;
  top: 20px;
  transform: translate(20px, 0);
  font-weight: 400;
  font-size: 16px;
  line-height: 120%;
  color: var(--main-text-secondary);
  pointer-events: none;
  transition: all 0.3s;
}

.input-wrapper:hover .label,
.input-wrapper input:focus~.label,
.input-wrapper textarea:focus~.label,
.input-wrapper>input:not(:placeholder-shown)~.label,
.input-wrapper>textarea:not(:placeholder-shown)~.label {
  top: 15px;
  font-size: 10px;
  color: var(--main-text-secondary);
}

.form input:focus,
.form>input:not(:placeholder-shown) {
  outline: none;
}

.form input.error,
.form textarea.error,
.form input.error+.label,
.form textarea.error+.label {
  border-color: red !important;
  color: red !important;
}

.form input.error::placeholder,
.form textarea.error::placeholder {
  color: red !important;
}

.form .form-input {
  display: flex;
  align-items: center;
  width: 100%;
  height: 49px;
  padding: 15px 30px;
  gap: 10px;
  border: 1px solid var(--primary);
  border-radius: 200px;
  overflow-x: auto;
  overflow-y: hidden;
  text-wrap: nowrap;
  cursor: pointer;
  color: var(--main-text-primary);
  transition: 0.3s;
}

.form .form-input .file-label {
  display: flex;
  align-items: center;
  gap: 10px;
  text-wrap: nowrap;
  transition: 0.3s;
}

.form .form-input:hover .file-label {
  color: var(--primary);
}

.form .form-input::-webkit-scrollbar {
  height: 5px;
  background-color: var(--stroke);
}

.form .form-input::-webkit-scrollbar-thumb {
  border-radius: 100px;
}

.form .form-input .file {
  display: contents;
}

.form .form-input .file-remove__icon {
  transform: rotate(45deg);
  font-weight: 400;
  font-size: 20px;
  line-height: 120%;
  pointer-events: none;
  display: none;
  cursor: pointer;
}

.form .form-input.active .file-remove__icon {
  display: flex;
  pointer-events: all;
}

.form .btn {
  width: 100%;
}

.form .agreement {
  display: flex;
  gap: 5px;
  
}

input[type=checkbox] {
  max-width: 15px;
  max-height: 15px;
}

button:disabled {
  pointer-events: none;
  opacity: 0.5;
}

.form .privacy-policy,
.form .privacy-policy a {
  width: 100%;
  font-weight: 400;
  font-size: 14px;
  line-height: 120%;
  color: var(--main-text-secondary);
}

.form .privacy-policy a:hover {
  color: var(--primary);
}

.form-block-data {
  gap: 10px;
}

.form-block-data input,
.form-block-data textarea {
  color: var(--white);
  border: 1px solid transparent;
  background: rgba(255, 255, 255, 0.15);
}

.form-block-data input:hover,
.form-block-data input:focus,
.form-block-data textarea:hover,
.form-block-data textarea:focus {
  border: 1px solid transparent;
}

.form-block-data input::placeholder,
.form-block-data textarea::placeholder {
  color: var(--white);
  transition: 0.3s;
}

.form-block-data .input-wrapper .label {
  color: var(--white);
  opacity: 0.5;
}

.form-block-data .input-wrapper:hover .label,
.form-block-data .input-wrapper input:focus~.label,
.form-block-data .input-wrapper textarea:focus~.label,
.form-block-data .input-wrapper>input:not(:placeholder-shown)~.label,
.form-block-data .input-wrapper>textarea:not(:placeholder-shown)~.label {
  color: var(--white);
}

.form-block-data .privacy-policy,
.form-block-data .privacy-policy a {
  color: var(--white);
}

.form-block-data .privacy-policy a:hover {
  color: var(--white);
  opacity: 0.7;
}

@media (max-width: 768px) {

  .form input,
  .form textarea {
    padding: 20px;
    padding-bottom: 5px;
  }

  .form .input-wrapper .label {
    transform: translate(20px, 0);
  }

  .input-wrapper:hover .label,
  .input-wrapper input:focus~.label,
  .input-wrapper textarea:focus~.label,
  .input-wrapper>input:not(:placeholder-shown)~.label,
  .input-wrapper>textarea:not(:placeholder-shown)~.label {
    transform: translate(20px, -7px);
  }

  .theme-modal .subtitle {
    margin-bottom: 20px;
  }

  .form .form-input {
    padding: 10px;
  }

  .form .privacy-policy {
    font-size: 14px;
  }
}

/* ============== FORM STYLE End============= */


/* ============== ARCHIVE STOCKS Start============= */
.stocks-content {
  padding-bottom: 70px;
}

.stocks-wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.stock-card {
  display: flex;
  position: relative;
  flex-direction: column;
  min-height: 380px;
  border-radius: 20px;
  padding: 40px;
  gap: 20px;
  overflow: hidden;
  background: var(--thirdly);
  cursor: pointer;
}

.stock-card__top-wrap *,
.stock-card__desc * {
  color: var(--white) !important;
}

.stock-card__top-wrap {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 320px;
  z-index: 4;
}

.stock-card__desc {
  max-width: 400px;
  z-index: 4;
}

.stock-card__btn-holder {
  margin-top: auto;
  z-index: 4;
}

.stock-card__img {
  display: flex;
  position: absolute;
  align-items: center;
  justify-content: center;
  bottom: 0;
  right: 0;
  width: fit-content;
  height: fit-content;
  max-height: 100%;
  max-width: 360px;
  z-index: 2;
}

.stock-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.stocks-btn-holder {
  display: flex;
  width: 100%;
  justify-content: center;
  margin-top: 30px;
}

@media (max-width: 1560px) {
  .stocks-content {
    padding-bottom: 50px;
  }

  /* .stock-card__img {
    opacity: 0.3;
  } */
  .stock-card::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 3;
  }
}

@media (max-width: 1100px) {
  .stocks-content {
    padding-bottom: 40px;
  }
}

@media (max-width: 992px) {
  .stocks-wrapper {
    gap: 20px;
  }

  .stock-card {
    padding: 20px;
    min-height: 260px;
  }
}

@media (max-width: 620px) {
  .stocks-content {
    padding-bottom: 20px;
  }

  .stocks-wrapper {
    grid-template-columns: 1fr;
  }

  .stock-card__img {
    bottom: 50%;
    transform: translate(0, 50%);
    height: 100%;
  }
}

/* ============== ARCHIVE STOCKS End============= */

/* ============== ARCHIVE WORKS Start============= */
#archive-works .works-content {
  padding-bottom: 50px;
}

#archive-works .works-wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.work-item {
  display: flex;
  flex-direction: column;
  position: relative;
  height: 100%;
  padding: 20px;
  gap: 20px;
  border-radius: 20px;
  background: var(--background);
}

.work-item__photos {
  display: flex;
  position: relative;
  height: 300px;
  width: 100%;
  gap: 10px;
}

.work-item__photos__item {
  display: flex;
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
}

.work-item__photos__item img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.work-item__photos__mark {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 10px;
  left: 10px;
  height: 30px;
  padding: 0 15px;
  border-radius: 5px;
  color: var(--primary-hover);
  background: var(--secondary);
  z-index: 1;
}

.work-item__photos__img-filter {
  position: absolute;
  width: 100%;
  height: 100%;
  background: var(--primary-hover);
  opacity: 0;
  transition: all 0.3s;
}

.work-item__photos__item:hover .work-item__photos__img-filter {
  opacity: 0.3;
}

.work-item__photos__loop {
  display: flex;
  position: absolute;
  align-items: center;
  justify-content: center;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 40px;
  height: 40px;
  border-radius: 100px;
  opacity: 0;
  background-color: var(--white);
  transition: all 0.3s;
}

.work-item__photos__item:hover .work-item__photos__loop {
  opacity: 1;
}

.work-item__text {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.work-item__btn-holder {
  margin-top: auto;
}

.work-item__btn-holder .btn {
  margin-top: 10px;
}

@media (max-width: 1380px) {
  #archive-works .works-wrapper {
    gap: 20px;
  }

  .work-item__photos {
    height: 240px;
  }
}

@media (max-width: 1100px) {
  .works-content {
    padding-bottom: 40px;
  }

  #archive-works .works-wrapper {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .work-item__photos {
    height: 180px;
  }

  .work-item__btn-holder .btn {
    margin-top: 0;
  }
}

@media (max-width: 620px) {
  .works-content {
    padding-bottom: 20px;
  }
}

@media (max-width: 576px) {
  #archive-works .works-wrapper {
    grid-template-columns: 1fr;
  }
}

/* ============== ARCHIVE WORKS End============= */

/* ============== TAXONOMY SERVICES Start============= */
.services-banner {
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding-bottom: 50px;
}

.services-cat-banner {
  display: flex;
  gap: 30px;
}

.services-cat-banner__text-side {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 30px;
}

.services-cat-banner__text-side .page-title {
  margin-bottom: 10px;
}

.services-cat-banner__desc {
  max-width: 620px;
}

.services-cat-banner__img-side {
  display: flex;
  position: relative;
  width: 100%;
  min-height: 404px;
  border-radius: 20px;
  overflow: hidden;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 50%;
}

.services-cat-banner__img-side__price * {
  color: var(--white);
}

.services-cat-banner__img-side__price {
  display: flex;
  flex-direction: column;
  position: absolute;
  bottom: 30px;
  left: 30px;
  min-width: 210px;
  padding: 20px;
  gap: 10px;
  border-radius: 15px;
  background: var(--thirdly);
}

.services-cat-banner__btn-holder {
  display: flex;
  align-items: end;
  flex-wrap: wrap;
  gap: 15px;
}

.services-cat-banner__btn-holder__text-near {
  max-width: 177px;
}

.services-cat-advantages {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  padding: 30px;
  border-radius: 20px;
  background: var(--background);
}

.services-cat-advantage {
  display: flex;
  align-items: center;
  gap: 15px;
}

.services-cat-advantage__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 100px;
  background: var(--primary);
  flex-shrink: 0;
}

.services-cat-advantage__text {
  color: var(--main-text-primary);
}

.services-cat-mark {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  gap: 10px;
}

.services-cat-mark__text {
  color: var(--primary);
}

.services-cat-mark__icon {
  display: flex;
  position: relative;
  animation: move 3s infinite;
}

@keyframes move {
  0% {
    transform: translate(0%, -20%);
  }

  20% {
    transform: translate(0%, 20%);
  }

  100% {
    transform: translate(0%, -20%);
  }
}

@media (max-width: 1200px) {
  .services-cat-advantages {
    grid-template-columns: repeat(2, 1fr);
    padding: 20px;
    gap: 20px;
  }
}

@media (max-width: 1100px) {
  .services-banner {
    padding-bottom: 40px;
  }
}

@media (max-width: 992px) {
  .services-cat-banner__btn-holder__text-near {
    max-width: none;
  }

  .services-cat-banner__btn-holder .btn {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .services-cat-banner {
    flex-direction: column;
    gap: 20px;
  }

  .services-cat-banner__text-side {
    gap: 15px;
  }

  .services-cat-banner__desc {
    max-width: none;
  }

  .services-cat-banner__btn-holder__text-near {
    max-width: 177px;
  }

  .services-cat-banner__btn-holder .btn {
    width: fit-content;
  }
}

@media (max-width: 620px) {
  .services-banner {
    padding-bottom: 20px;
    gap: 20px;
  }

  .services-cat-banner__img-side {
    min-height: 280px;
  }

  .services-cat-advantages {
    grid-template-columns: 1fr;
  }

  .services-cat-advantage__icon {
    width: 30px;
    height: 30px;
  }
}

@media (max-width: 512px) {
  .services-cat-banner__btn-holder__text-near {
    max-width: none;
  }

  .services-cat-banner__btn-holder .btn {
    width: 100%;
  }
}

/* ============== TAXONOMY SERVICES End============= */

/* ============== SERVICES CARD Start============= */
.services-card-block {
  display: flex;
  flex-direction: column;
}

.services-card-wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.service-card {
  display: flex;
  min-height: 250px;
  padding: 20px;
  gap: 20px;
  border-radius: 15px;
  border: 1px solid var(--stroke-secondary);
}

.service-card__img {
  display: flex;
  width: 100%;
  max-width: 210px;
  height: 100%;
  border-radius: 10px;
  overflow: hidden;
  flex-shrink: 0;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.service-card__text {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.service-card__text__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
  margin-top: auto;
}

.service-card__text__bottom .price-wrapper {
  display: flex;
  align-items: center;
  gap: 15px;
}

.service-card .price__mark {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  border-radius: 10px;
  background: var(--secondary);
  flex-shrink: 0;
}

.service-card .price__value {
  white-space: nowrap;
}

/* hover */
.services-card-block .service-card:hover {
  border: 1px solid var(--primary);
}

@media (max-width: 1220px) {
  .service-card {
    flex-direction: column;
  }

  .service-card__img {
    max-width: none;
    height: 320px;
  }

  .service-card .price__mark {
    width: 40px;
    height: 40px;
  }
}

@media (max-width: 992px) {
  .service-card__text__bottom {
    flex-direction: column;
    align-items: start;
  }

  .service-card__text__bottom .btn {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .services-card-wrapper {
    gap: 10px;
  }

  .service-card {
    padding: 10px;
  }

  .service-card__img {
    height: 220px;
  }
}

@media (max-width: 576px) {
  .services-card-wrapper {
    grid-template-columns: 1fr;
  }
}

/* ============== SERVICES CARD End============= */

/* ============== REVIEWS ITEM Start============= */

.reviews-links {
  display: flex;
  width: 100%;
  height: auto;
  border-radius: 15px;
  background: var(--background);
  padding: 30px;
  gap: 30px;
}

.review-link {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
  min-height: 170px;
  padding: 30px;
  gap: 10px;
  border-radius: 10px;
  background: var(--white);
}

.review-link__item-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.review-link__item-top svg {
  margin-left: auto;
}

.review-link:hover .review-link__item-top svg path {
  transition: 0.3s;
}

.review-link:hover .review-link__item-top svg path {
  fill: var(--primary);
}

.review-link__item-bottom {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.review-link__item-bottom img {
  height: 24px;
  width: fit-content;
  max-width: 100%;
  object-fit: contain;
}

.review-item {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 400px;
  box-sizing: border-box;
  padding: 20px;
  gap: 30px;
  border-radius: 15px;
  border: 1px solid var(--stroke-secondary);
  transition: all 0.3s;
}

.review-item.max-height {
  height: auto;
  min-height: 100%;
}

.review-item.img {
  justify-content: center;
  border: none;
  overflow: hidden;
}

.review-item__img {
  height: 450px;
}

.review-item__top {
  display: flex;
  align-items: center;
  min-height: 60px;
  gap: 10px;
  border-radius: 10px;
  background: var(--background);
}

.review-item__top img {
  border-radius: 10px;
  width: 60px;
  height: 60px;
  object-fit: cover;
}

.review-item__top .right-holder {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 5px;
}

.review-item__top .right-holder__name,
.review-item__bottom__text * {
  color: var(--main-text-primary) !important;
}

.review-item__bottom {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.review-item__bottom__text {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.review-item__bottom__text.hidden {
  display: -webkit-box;
  -webkit-line-clamp: 10;
  -webkit-box-orient: vertical;
  overflow: hidden;
  /* max-height: 155px; */
  max-height: 190px;
  margin: 0;
  transition: all 0.3s;
}

.read-more-btn {
  width: fit-content;
  cursor: pointer;
  text-decoration: underline 1px dashed var(--main-text-secondary);
  text-underline-offset: 5px;
  transition: all 0.3s;
}

.read-more-btn:hover {
  color: var(--primary);
  text-decoration: underline 1px dashed var(--primary);
}

.review-item.img {
  cursor: pointer;
  padding: 0;
  max-height: 300px;
  height: 100%;
}

.archive-reviews .swiper .swiper-slide {
  height: auto;
}

.review-item__img {
  display: flex;
  position: relative;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  height: 100%;
  width: 100%;
}

.review-item__img img {
  width: 100%;
  height: 100%;
  border-radius: 15px;
  object-fit: cover;
}

.review-item.img .img-filter {
  display: flex;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: black;
  border-radius: 15px;
  opacity: 0;
  z-index: 1;
  pointer-events: none;
  transition: all 0.3s;
}

.review-item.img:hover .img-filter {
  opacity: 0.15;
}

.review-item.img .show {
  display: flex;
  position: absolute;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 100px;
  background: var(--white);
  opacity: 0;
  transition: all 0.3s;
  z-index: 2;
}

.review-item.img:hover .show {
  opacity: 1;
}

@media (max-width: 520px) {
  .review-item {
    height: 360px;
    gap: 20px;
  }
}

/* ============== REVIEWS ITEM End============= */


/* ============== ARCHIVE REVIEWS Start============= */
#archive-reviews .reviews-elements {
  display: flex;
  margin: 60px 0 80px 0;
  gap: 30px;
}

#archive-reviews .reviews-el-form {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 490px;
  padding: 30px;
  gap: 40px;
  border-radius: 15px;
  background: var(--thirdly);
}

#archive-reviews .reviews-el-form__text * {
  color: var(--white);
}

#archive-reviews .reviews-el-form__text {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

@media (max-width: 1280px) {
  #archive-reviews .reviews-elements {
    margin: 40px 0;
    gap: 20px;
  }

  #archive-reviews .reviews-links {
    padding: 20px;
    gap: 20px;
  }

  #archive-reviews .review-link {
    padding: 20px;
  }

  #archive-reviews .reviews-el-form {
    gap: 20px;
  }
}

@media (max-width: 992px) {
  #archive-reviews .reviews-elements {
    flex-direction: column;
  }

  #archive-reviews .reviews-el-form {
    max-width: none;
  }
}

@media (max-width: 768px) {
  #archive-reviews .reviews-links {
    flex-direction: column;
    padding: 10px;
    gap: 10px;
  }

  #archive-reviews .review-link {
    min-height: auto;
    padding: 20px;
  }
}

/* ============== ARCHIVE REVIEWS End============= */

/* ============== REVIEWS MODAL Start============= */

#review-overflow.theme-modal {
  padding: 20px;
  overflow-y: auto !important;
}

#review-overflow .read-more-btn {
  display: none;
}

#review-overflow .review-item__bottom__text {
  -webkit-line-clamp: unset;
  max-height: unset;
}

#review-overflow .review-item {
  height: auto;
  padding: 0;
  gap: 60px;
  border: none;
}

#review-overflow .review-item__top {
  max-width: 400px;
}

.phones-wrap__cons {
  width: 45px;
}

/* ============== REVIEWS MODAL End============= */