/*========= VARIABLES ==========*/
:root {
  --card: #ffffff;
  --bg-light: #F4F4F4;
  --bg-dark: #DEDEDE;
  --stroke: #A7A7A7;
  --head: #000000;
  --main-text: #000000;
  --wa: #25D366;
  --vk: #0076FE;
  --tg: #229ED9;
  --primary: linear-gradient(to right, #6da6db, #1e5284);
  --hover: #1e5284 #6da6db;
  --accent-1: #4c84b8;
  --accent-2: #5ba0e0;
  --accent-3: #7abfff;
  --bg-true: #e0eedd;
  --true: #559b71;
  --bg-false: #f5e3e5;
  --false: #bb4253;
}

/*============= ALIGNES ===============*/
.alignwide {
  width: 100%;
}

.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;
  }
}

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

* {
  margin: 0;
  padding: 0;
  font-family: "Golos Text", sans-serif;
  font-weight: 400;
  box-sizing: border-box;
}

body {
  background-color: #fff;
  max-width: 1920px;
  overflow-x: hidden;
  margin: 0 auto;
  width: auto;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  align-items: center;
}

main {
  width: 100%;
}

a {
  text-decoration: none;
}

h1,
.h1 {
  font-weight: 600;
  font-size: clamp(34px, 1vw + 30.8px, 50px);
  line-height: 120%;
  color: var(--head);
}

h1 span,
.h1 span {
  font-weight: inherit;
  font-size: inherit;
  line-height: inherit;
  color: var(--accent-1);
}

h2,
.h2 {
  font-weight: 600;
  font-size: clamp(30px, 0.625vw + 28px, 40px);
  line-height: 120%;
  color: var(--head);
}

h2 span,
.h2 span {
  font-weight: inherit;
  font-size: inherit;
  line-height: inherit;
  color: var(--accent-1);
}

h3,
.h3 {
  font-weight: 600;
  font-size: clamp(26px, 0.625vw + 24px, 36px);
  line-height: 120%;
  color: var(--head);
}

h3 span,
.h3 span {
  font-weight: inherit;
  font-size: inherit;
  line-height: inherit;
  color: var(--accent-1);
}

h4,
.h4 {
  font-weight: 600;
  font-size: clamp(20px, 0.25vw + 19.2px, 24px);
  line-height: 120%;
  color: var(--head);
}

h5,
.h5 {
  font-weight: 600;
  font-size: clamp(18px, 0.125vw + 17.6px, 20px);
  line-height: 130%;
  color: var(--head);
}

h6,
.h6 {
  font-weight: 600;
  font-size: 16px;
  line-height: 120%;
  color: var(--head);
}

.p1 {
  font-weight: 400;
  font-size: 20px;
  line-height: 140%;
  color: var(--main-text);
}

p,
.p2 {
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
  color: var(--main-text);
}

.p3 {
  font-weight: 400;
  font-size: 14px;
  line-height: 130%;
  color: var(--main-text);
}

.breadcrumbs {
  padding: 20px 0;
  font-weight: 400;
  font-size: 14px;
  line-height: 130%;
  color: var(--main-text);
}

.breadcrumbs span {
  font-weight: 400;
  font-size: 14px;
  line-height: 130%;
  color: var(--main-text);
}

.breadcrumbs .current-item {
  color: var(--accent-1);
}

.breadcrumbs .current-item span {
  color: var(--accent-1);
}

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

.container-big {
  max-width: 1860px;
  width: 100%;
  margin: 0 auto;
}

.btn {
  font-weight: 700;
  font-size: 14px;
  line-height: 140%;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--card);
  border: none;
  display: inline-block;
  width: fit-content;
  outline: none;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  padding: 15px 35px;
  overflow: hidden;
  transition: all 0.3s ease-in;
  position: relative;
  z-index: 2;
  text-align: center;
}

.btn::before {
  position: absolute;
  content: '';
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 1;
  transition: all 0.3s ease-in;
  background: var(--primary);
  z-index: -1;
}

.btn::after {
  position: absolute;
  content: '';
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: all 0.3s ease-in;
  background: linear-gradient(to right, #2e69a0, #123352);
  z-index: -1;
}

.btn:hover::before {
  opacity: 0;
}

.btn:hover::after {
  opacity: 1;
}

.btn-w {
  font-weight: 700;
  font-size: 14px;
  line-height: 140%;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--accent-1);
  background-color: var(--card);
  border: none;
  display: inline-block;
  width: fit-content;
  outline: none;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  padding: 15px 35px;
  overflow: hidden;
  transition: all 0.3s ease-in;
  position: relative;
  z-index: 2;
  text-align: center;
}

.btn-w:hover {
  background: var(--accent-1);
  color: var(--card);
}

.btn-w.active {
  background: var(--accent-1);
  color: var(--card);
}

.btn-t {
  font-weight: 700;
  font-size: 14px;
  line-height: 140%;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--accent-1);
  border: 1px solid var(--accent-1);
  background-color: transparent;
  display: inline-block;
  width: fit-content;
  outline: none;
  border-radius: 10px;
  cursor: pointer;
  padding: 15px 35px;
  overflow: hidden;
  transition: all 0.3s ease-in;
  position: relative;
  z-index: 2;
  text-align: center;
}

.btn-t::after {
  position: absolute;
  content: '';
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: all 0.3s ease-in;
  background: var(--primary);
  z-index: -1;
}

.btn-t:hover {
  color: var(--card);
}

.btn-t:hover::after {
  opacity: 1;
}

textarea {
  resize: none;
}

.input {
  font-weight: 400;
  font-size: 14px;
  line-height: 130%;
  color: var(--main-text);
  border: 1px solid var(--bg-dark);
  border-radius: 10px;
  background-color: var(--card);
  padding: 16px 25px;
  transition: all 0.3s ease-in;
}

.input.error {
  border-color: red !important;
}

.input::placeholder {
  font-weight: 400;
  font-size: 14px;
  line-height: 130%;
  color: var(--main-text);
  transition: all 0.3s ease-in;
}

.input:hover,
.input:focus {
  outline: none;
  border: 1px solid var(--stroke);
  color: var(--head);
}

.input:hover::placeholder,
.input:focus::placeholder {
  color: var(--head);
}

img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

svg path {
  /* stroke: #4c84b8;
  fill: #4c84b8; */
  transition: all 0.3s ease-in;
}

.archive .archive-review svg path {
  stroke: #4c84b8;
  fill: #4c84b8;
  transition: all 0.3s ease-in;
}


#reviews-block svg path {
  stroke: #4c84b8;
  fill: #4c84b8;
  transition: all 0.3s ease-in;
}

#price-block svg path {
  stroke: #4c84b8;
  fill: #4c84b8;
  transition: all 0.3s ease-in;
}


.nav__prev svg path {
  stroke: #4c84b8;
  fill: #4c84b8;
  transition: all 0.3s ease-in;
}
.nav__next svg path {
  stroke: #4c84b8;
  fill: #4c84b8;
  transition: all 0.3s ease-in;
}

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

/* #contacts-block > div > div > div:nth-child(4) > div.item__top > svg > g > path:nth-child(2){
  fill: none;
} */

.file__title:hover {
  cursor: pointer;
}

#about-banner-block .swiper-button-disabled {
  cursor: not-allowed;
}

.block {
  margin-bottom: clamp(40px, 2.5vw + 32px, 80px);
}

.p-block {
  padding-top: clamp(30px, 3.125vw + 20px, 80px);
  padding-bottom: clamp(30px, 3.125vw + 20px, 80px);
}

.block-title {
  margin-bottom: 30px;
}

.page-title {
  margin-bottom: 40px;
}

.swiper-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}

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

.swiper-nav .btns .arr {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--card);
  border: 1px solid var(--accent-1);
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s ease-in;
}

.swiper-nav .btns .arr:hover {
  background-color: var(--accent-3);
}

.swiper-nav .btns .arr:hover svg path {
  stroke: var(--card);
}

.swiper-nav .btns .arr svg {
  width: 24px;
  height: 24px;
}

.swiper-nav .pagination {
  width: fit-content !important;
}

.swiper-nav .pagination .swiper-pagination-bullet {
  width: 10px;
  height: 3px;
  background-color: var(--bg-dark);
  opacity: 1;
  border-radius: 0;
}

.swiper-nav .pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: var(--accent-1);
}

/*====== NAVIGATION ===========*/
.navigation.pagination {
  width: 100%;
  margin-top: 40px;
  display: flex;
  justify-content: center;
  text-align: center;
}

.navigation.pagination .nav-links {
  display: flex;
  justify-content: center;
  text-align: center;
}

.navigation.pagination .page-numbers {
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  color: #1C0130;
  margin: 0 10px;
}

.navigation.pagination .page-numbers.current {
  font-weight: 750;
}

.navigation.pagination a.prev {
  margin-right: 100px;
  margin-left: -100px;
}

.navigation.pagination a.next {
  margin-right: -100px;
  margin-left: 100px;
}

.socials {
  display: flex;
  gap: 10px;
}

.socials .social {
  box-sizing: content-box;
  padding: 12px;
  width: 26px;
  height: 26px;
  border-radius: 10px;
  transition: all 0.3s ease-in;
}

.socials .social:nth-child(1) {
  background-color: var(--wa);
}

.socials .social:nth-child(2) {
  background-color: var(--vk);
}

.socials .social:nth-child(3) {
  background-color: var(--tg);
}

.socials .social:hover {
  background-color: var(--accent-1);
}

.header__right .info .search {
  position: relative;
  margin-left: 80px;
}
/*============ HEADER =================*/
/*================ MOBILE MNU =============*/
#search-icon {
  display: none;
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 55px;
  height: 55px;
  align-items: center;
  justify-content: center;
  background-color: var(--head);
  border: 1px solid var(--card);
  border-radius: 50%;
  z-index: 100;
}

@media (max-width: 600px) {
  #search-icon {
    display: flex;
  }
}

#search-icon svg {
  width: 18px;
  height: 18px;
}

.site-header {
  border-radius: 0 0 20px 20px;
  box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.07);
  background: var(--card);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header {
  padding: 15px 0;
  display: flex;
  gap: clamp(15px, 2.1739130435vw + -6.7391304348px, 35px);
}

@media (max-width: 1100px) {
  .header {
    align-items: center;
  }
}

.header__left {
  display: flex;
  gap: 15px;
  align-items: center;
  flex-shrink: 0;
}

.header__left .logo {
  width: 90px;
  height: 90px;
  object-fit: contain;
}

@media (max-width: 600px) {
  .header__left .logo {
    width: 80px;
    height: 80px;
  }
}

.header__left .text {
  display: flex;
  flex-direction: column;
  max-width: 125px;
}

@media (max-width: 700px) {
  .header__left .text {
    display: none;
  }
  .header__right .info .search {
    position: relative;
    margin: 0;
  }
}

.header__left .text .top {
  font-weight: 700;
  font-size: 14px;
  line-height: 140%;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--head);
  padding-bottom: 5px;
  margin-bottom: 5px;
  position: relative;
}

.header__left .text .top::before {
  content: '';
  position: absolute;
  border-bottom: 1px dashed var(--stroke);
  width: 15px;
  height: 1px;
  bottom: 0;
}

.header__right {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.header__right .info {
  border-bottom: 1px dashed var(--stroke);
  padding-bottom: 10px;
  margin-bottom: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}

@media (max-width: 1100px) {
  .header__right .info {
    padding-bottom: 0;
    border: none;
  }
}

@media (max-width: 600px) {
  .header__right .info {
    justify-content: flex-end;
  }
}



@media (max-width: 600px) {
  .header__right .info .search {
    display: none;
  }
}

.header__right .info .search #search-wrapper {
  position: absolute;
  display: flex;
  flex-direction: column;
  width: 100%;
  max-height: 300px;
  overflow: auto;
  z-index: 100;
  box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.07);
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease-in;
}

.header__right .info .search #search-wrapper .search-item {
  padding: 5px 10px;
  background-color: var(--card);
  font-weight: 500;
  font-size: 16px;
  line-height: 140%;
  color: var(--head);
  border-bottom: 1px solid var(--bg-light);
}

.header__right .info .search #search-wrapper .search-item.all {
  font-size: 18px;
  text-align: center;
}

.header__right .info .search button {
  cursor: pointer;
  position: absolute;
  width: 16px;
  height: 16px;
  right: 20px;
  top: 17px;
  border: none;
  outline: none;
  display: block;
}

.header__right .info .search input {
  font-weight: 400;
  font-size: 14px;
  line-height: 130%;
  color: var(--main-text);
  border-radius: 10px;
  background-color: var(--bg-light);
  width: clamp(250px, 21.7391304348vw + 32.6086956522px, 450px);
  padding: 16px 25px;
  border: none;
  outline: none;
}

@media (max-width: 1100px) {
  .header__right .info .search input {
    width: clamp(180px, 10.2941176471vw + 147.0588235294px, 250px);
  }
}

.header__right .info .search input::placeholder {
  font-weight: 400;
  font-size: 14px;
  line-height: 130%;
  color: var(--main-text);
}

@media (max-width: 1100px) {
  .header__right .info .work_time {
    display: none;
  }
}

.header__right .info .work_time p {
  font-weight: 400;
  font-size: 14px;
  line-height: 130%;
  color: var(--main-text);
}

@media (max-width: 1100px) {
  .header__right .info .socials {
    display: none;
  }
}

.header__right .info .phone-wrapper {
  display: flex;
  flex-direction: column;
  gap: 5px;
  white-space: nowrap;
}

@media (max-width: 1100px) {
  .header__right .nav {
    display: none;
  }
}

.header__right .nav #menu-menyu-hedera {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header__right .nav #menu-menyu-hedera li {
  list-style: none;
}

.header__right .nav #menu-menyu-hedera li>a {
  transition: all 0.3s ease-in;
}

.header__right .nav #menu-menyu-hedera li>a:hover {
  color: var(--accent-1);
}

.header__right .nav #menu-menyu-hedera>li {
  list-style: none;
}

.header__right .nav #menu-menyu-hedera>li.has-childs {
  position: relative;
  display: flex;
  gap: 5px;
  align-items: center;
}

.header__right .nav #menu-menyu-hedera>li.has-childs:hover::after,
.header__right .nav #menu-menyu-hedera>li.has-childs.active::after {
  filter: brightness(0) saturate(100%) invert(29%) sepia(10%) saturate(1973%) hue-rotate(195deg) brightness(94%) contrast(89%);
}

.header__right .nav #menu-menyu-hedera>li.has-childs:hover::before {
  pointer-events: all;
}

.header__right .nav #menu-menyu-hedera>li.has-childs:hover::after {
  transform: scale(1, -1);
}

.header__right .nav #menu-menyu-hedera>li.has-childs::after {
  content: '';
  transition: all 0.3s ease-in;
  transform: translateY(1.5px);
  width: 8px;
  height: 6px;
  background-image: url("../images/menu-has-childs.svg");
  background-position: center center;
  background-size: 100% 100%;
  background-repeat: no-repeat;
  transition: all 0.3s ease-in;
}

.header__right .nav #menu-menyu-hedera>li.has-childs:hover>ul {
  opacity: 1;
  pointer-events: all;
}

.header__right .nav #menu-menyu-hedera>li.has-childs::before {
  content: '';
  position: absolute;
  width: 200%;
  height: 30px;
  bottom: -26px;
  pointer-events: none;
}

.header__right .nav #menu-menyu-hedera>li.has-childs>ul {
  opacity: 0;
  pointer-events: none;
  position: absolute;
  display: grid;
  grid-template-columns: auto auto;
  padding: 40px 100px 60px 100px;
  box-shadow: 0 20px 30px 0 rgba(0, 0, 0, 0.07);
  background: var(--card);
  border-top: 1px solid var(--bg-light);
  border-radius: 0 0 20px 20px;
  top: 37px;
  z-index: 50;
  transform: translateX(-100px);
  transition: all 0.3s ease-in;
  max-height: 600px;
  overflow: auto;
  max-width: clamp(900px, 200vw + -1500px, 1300px);
}

.header__right .nav #menu-menyu-hedera>li.has-childs>ul>.nav-menu-element:not(.has-childs) {
  grid-column: span 2;
  margin-bottom: 10px;
}

.header__right .nav #menu-menyu-hedera>li.has-childs>ul>.nav-menu-element:not(.has-childs):not(:last-child) {
  margin-right: 10px;
}

.header__right .nav #menu-menyu-hedera>li.has-childs>ul>li {
  width: fit-content;
}

.header__right .nav #menu-menyu-hedera>li.has-childs>ul>li:not(:last-child) {
  margin-right: clamp(30px, 1.875vw + 24px, 60px);
}

.header__right .nav #menu-menyu-hedera>li.has-childs>ul>li.has-childs>a {
  position: relative;
  font-weight: 700;
  font-size: 14px;
  line-height: 140%;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  background: linear-gradient(90deg, #3e4361 0%, #10142c 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: flex;
  align-items: center;
  gap: 5px;
}

.header__right .nav #menu-menyu-hedera>li.has-childs>ul>li.has-childs>a:hover::after {
  transform: rotate(45deg);
}

.header__right .nav #menu-menyu-hedera>li.has-childs>ul>li.has-childs>a::after {
  content: '';
  width: 20px;
  height: 20px;
  background-image: url("../images/menu-arr.svg");
  background-position: center center;
  background-size: 100% 100%;
  background-repeat: no-repeat;
  transition: all 0.3s ease-in;
}

.header__right .nav #menu-menyu-hedera>li.has-childs>ul>li>a {
  width: fit-content;
  white-space: nowrap;
}

.header__right .nav #menu-menyu-hedera>li.has-childs>ul ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 20px;
}

.header__right .nav #menu-menyu-hedera>li.has-childs>ul ul li {
  width: fit-content;
}

.header__right .nav #menu-menyu-hedera>li.has-childs>ul ul li a {
  width: fit-content;
  white-space: nowrap;
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
  color: var(--head);
  transition: all 0.3s ease-in;
}

.header__right .nav #menu-menyu-hedera>li.has-childs>ul ul li a:hover {
  color: var(--accent-1);
}

.header__right .nav #menu-menyu-hedera>li.active a {
  color: var(--accent-1);
}

.header__right .nav #menu-menyu-hedera>li a {
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
  color: var(--head);
}

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

@media (max-width: 1100px) {
  #header .burger.open_menu {
    display: flex;
  }
}

#header .burger.open_menu span {
  background-color: var(--head);
  width: 30px;
  height: 4px;
  transition: all 0.3s ease-in;
  pointer-events: none;
}

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

#header .burger.open_menu.clicked span {
  background-color: #fff;
}

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

#header #mobile-mnu .logo-holder {
  width: 100%;
  height: auto;
  max-width: 80px;
  max-height: 80px;
  margin-bottom: 20px;
}

#header #mobile-mnu #menu-mobilnoe-menyu {
  display: flex;
  flex-direction: column;
  gap: 3px;
  margin-bottom: 20px;
}

#header #mobile-mnu #menu-mobilnoe-menyu li {
  list-style-type: none;
}

#header #mobile-mnu #menu-mobilnoe-menyu li a {
  font-weight: 600;
  font-size: 18px;
  line-height: 140%;
  color: var(--head);
}

#header #mobile-mnu .phones__holder,
#header #mobile-mnu .email__holder {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 10px;
}

#header #mobile-mnu #close-mnu {
  font-size: 45px;
  position: absolute;
  right: 10px;
  top: 10px;
  cursor: pointer;
  transform: rotate(45deg);
  display: block;
  color: var(--head);
}

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

/*============ FOOTER ===============*/
#mini-banner-block.top {
  margin-top: 30px;
}

#mini-banner-block .container-big {
  border-radius: 20px;
  background-color: var(--bg-light);
  height: 100%;
  height: fit-content;
  min-height: 420px;
  position: relative;
}

#mini-banner-block .container-big .icon-1 {
  position: absolute;
  width: 150px;
  height: 150px;
  background-image: url("../images/banner-1.png");
  background-position: center center;
  background-size: 100% 100%;
  background-repeat: no-repeat;
  right: 46%;
  bottom: -4%;
  z-index: 10;
}

#mini-banner-block .container-big .icon-2 {
  position: absolute;
  width: 130px;
  height: 130px;
  background-image: url("../images/banner-2.png");
  background-position: center center;
  background-size: 100% 100%;
  background-repeat: no-repeat;
  right: 42%;
  top: 24%;
  z-index: 10;
}

#mini-banner-block .container-big .icon-3 {
  position: absolute;
  width: 160px;
  height: 160px;
  background-image: url("../images/banner-3.png");
  background-position: center center;
  background-size: 100% 100%;
  background-repeat: no-repeat;
  right: 16.5%;
  top: 11%;
  z-index: 10;
}

#mini-banner-block .container-big .icon-4 {
  position: absolute;
  width: 140px;
  height: 140px;
  background-image: url("../images/banner-4.png");
  background-position: center center;
  background-size: 100% 100%;
  background-repeat: no-repeat;
  right: 8%;
  bottom: 7%;
  z-index: 10;
}

@media (max-width: 600px) {
  #mini-banner-block .container-big {
    min-height: unset;
  }
}

#mini-banner-block .container-big .slide {
  display: flex;
  height: 100%;
}

@media (max-width: 1200px) {
  #mini-banner-block .container-big .slide {
    flex-direction: column;
    justify-content: space-between;
  }
}

#mini-banner-block .container-big .slide .left {
  display: flex;
  flex-direction: column;
  padding-top: clamp(40px, 2.5vw + 32px, 80px);
  padding-bottom: clamp(60px, 5.625vw + 42px, 150px);
  padding-left: calc((100% - 1290px) / 2);
  max-width: 660px;
  width: 100%;
  flex-shrink: 0;
  box-sizing: content-box;
}

@media (max-width: 1320px) {
  #mini-banner-block .container-big .slide .left {
    padding-left: 15px;
    padding-right: 15px;
    box-sizing: border-box;
  }
}

@media (max-width: 1200px) {
  #mini-banner-block .container-big .slide .left {
    width: 100%;
    max-width: unset;
    padding-bottom: 20px;
  }
}

@media (max-width: 600px) {
  #mini-banner-block .container-big .slide .left {
    padding-bottom: 40px;
  }
}

#mini-banner-block .container-big .slide .left .title {
  margin-bottom: 15px;
}

#mini-banner-block .container-big .slide .left .title span {
  font-weight: inherit;
  font-size: inherit;
  line-height: inherit;
  color: var(--accent-1);
}

#mini-banner-block .container-big .slide .left .advantages {
  margin-top: clamp(30px, 0.625vw + 28px, 40px);
  display: flex;
  gap: clamp(30px, 1.875vw + 24px, 60px);
}

#mini-banner-block .container-big .slide .left .advantages .advant {
  display: flex;
  gap: 10px;
}

#mini-banner-block .container-big .slide .left .advantages .advant__left {
  width: 18px;
  height: 18px;
}

#mini-banner-block .container-big .slide .left .advantages .advant__right {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

#mini-banner-block .container-big .slide .left .subtitle {
  margin-bottom: clamp(20px, 0.625vw + 18px, 30px);
}

#mini-banner-block .container-big .slide .left .btns {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  align-items: center;
}

@media (max-width: 500px) {
  #mini-banner-block .container-big .slide .left .btns {
    flex-direction: column;
    gap: 10px;
  }

  #mini-banner-block .container-big .slide .left .btns * {
    width: 100%;
  }
}

#mini-banner-block .container-big .slide .right {
  max-height: 520px;
  height: auto;
  width: 100%;
  display: flex;
  align-items: flex-end;
}

@media (max-width: 1200px) {
  #mini-banner-block .container-big .slide .right {
    max-height: 300px;
    width: auto;
    align-items: flex-start;
  }
}

@media (max-width: 600px) {
  #mini-banner-block .container-big .slide .right {
    display: none;
  }
}

#mini-banner-block .container-big .slide .right img {
  height: auto;
  object-fit: contain;
  max-width: 100vw;
}

@media (max-width: 1200px) {
  #mini-banner-block .container-big .slide .right img {
    width: auto;
    height: 100%;
    max-height: 300px;
  }
}

#page-search .tabs {
  margin-bottom: clamp(30px, 0.625vw + 28px, 40px);
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
}

@media (max-width: 450px) {
  #page-search .tabs {
    flex-direction: column;
  }
}

#page-search .tabs .btn-w {
  border: 1px solid var(--accent-1);
}

@media (max-width: 450px) {
  #page-search .tabs .btn-w {
    width: 100%;
  }
}

#page-search .items {
  display: none !important;
}

#page-search .items.active {
  display: grid !important;
}

#page-search .services {
  grid-template-columns: repeat(4, 1fr);
  display: grid;
  gap: clamp(15px, 0.9375vw + 12px, 30px);
}

@media (max-width: 1100px) {
  #page-search .services {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 800px) {
  #page-search .services {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 500px) {
  #page-search .services {
    grid-template-columns: 1fr;
  }
}

#page-search .tests {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(10px, 1.25vw + 6px, 30px);
}

@media (max-width: 1100px) {
  #page-search .tests {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 700px) {
  #page-search .tests {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 500px) {
  #page-search .tests {
    grid-template-columns: 1fr;
  }
}

.error-page .error {
  margin-top: 40px;
  display: flex;
  justify-content: space-between;
  gap: clamp(30px, 6.862745098vw + -31.7647058824px, 100px);
  align-items: center;
}

@media (max-width: 900px) {
  .error-page .error {
    flex-direction: column;
  }
}

.error-page .error .left {
  width: 450px;
  height: auto;
  object-fit: contain;
  flex-shrink: 0;
}

@media (max-width: 900px) {
  .error-page .error .left {
    width: 100%;
    max-width: 450px;
  }
}

.error-page .error .right {
  display: flex;
  flex-direction: column;
}

.error-page .error .right .title {
  margin-bottom: 10px;
}

@media (max-width: 900px) {
  .error-page .error .right .title {
    text-align: center;
  }
}

.error-page .error .right .text {
  margin-bottom: 30px;
}

@media (max-width: 900px) {
  .error-page .error .right .text {
    text-align: center;
  }
}

@media (max-width: 900px) {
  .error-page .error .right .btn {
    align-self: center;
  }
}

.site-footer {
  width: 100%;
  margin-top: auto;
  border-radius: 20px 20px 0 0;
  background-color: var(--head);
}

.site-footer .payment-methods-wrapper {
  overflow: auto;
  max-width: 100%;
  padding: 15px 0;
  border-top: 1px dashed var(--stroke);
}

.site-footer .payment-methods {
  align-items: center;
  display: flex;
  justify-content: space-between;
  min-width: 980px;
  overflow: auto;
}

.site-footer .payment-methods .payment-methods__image {
  align-items: center;
  background-repeat: no-repeat;
  display: flex;
  height: 80px;
  justify-content: center;
  opacity: .8;
  transition: opacity .3s;
  width: 120px;
}

.site-footer .payment-methods .payment-methods__image.p2 {
  width: 130px;
  color: var(--card);
}

@media (max-width: 800px) {
  .site-footer .payment-methods .payment-methods__image.p2 {
    display: none;
  }
}

.site-footer .payment-methods .payment-methods__image:hover {
  opacity: 1;
}

.footer__top {
  padding-top: clamp(30px, 1.25vw + 26px, 50px);
  padding-bottom: clamp(30px, 1.25vw + 26px, 50px);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: clamp(20px, 3.2608695652vw + -12.6086956522px, 50px);
}

@media (max-width: 500px) {
  .footer__top {
    flex-direction: column;
  }
}

.footer__top .services-wrapper {
  display: flex;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(30px, 2.1739130435vw + 8.2608695652px, 50px);
  width: 100%;
}

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

.footer__top .item {
  display: flex;
  flex-direction: column;
  max-width: 210px;
}

.footer__top .item.services {
  max-width: unset;
}

.footer__top .item.services ul {
  display: grid;
  grid-template-columns: 1fr;
}

.footer__top .item.services ul li:last-child a {
  cursor: pointer;
  font-weight: 700;
  font-size: 14px;
  line-height: 140%;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--card);
}

.footer__top .item.services ul li:last-child a:hover {
  opacity: 0.8;
}

.footer__top .item__title {
  color: var(--card);
  margin-bottom: clamp(15px, 0.3125vw + 14px, 20px);
}

.footer__top .item .phone-wrapper {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-bottom: 20px;
}

.footer__top .item .phone-wrapper .phone {
  color: var(--card);
}

.footer__top .item .phone-wrapper .p3 {
  color: var(--stroke);
}

.footer__top .item .work_time {
  margin-bottom: 20px;
}

.footer__top .item .work_time p {
  color: var(--stroke);
}

.footer__top .item ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__top .item ul li {
  list-style: none;
}

.footer__top .item ul li a {
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
  color: var(--stroke);
  transition: all 0.3s ease-in;
}

.footer__top .item ul li a:hover {
  color: var(--card);
}

.footer__top .question .btn {
  margin-bottom: 20px;
}

.footer__top .question p {
  color: var(--stroke);
}

.footer__top .question p:not(:last-child) {
  margin-bottom: 10px;
}

.footer__bottom {
  padding-bottom: clamp(15px, 0.9375vw + 12px, 30px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  padding-top: clamp(20px, 0.625vw + 18px, 30px);
  border-top: 1px dashed var(--stroke);
}

@media (max-width: 700px) {
  .footer__bottom {
    flex-direction: column;
    align-items: center;
  }
}

.footer__bottom .policy {
  font-weight: 400;
  font-size: 14px;
  line-height: 130%;
  text-decoration: underline;
  text-decoration-skip-ink: none;
  color: var(--stroke);
}

.footer__bottom .copy {
  color: var(--stroke);
}

.footer__bottom .grampus {
  display: flex;
  gap: 10px;
  align-items: center;
  color: var(--stroke);
}

.footer__bottom .grampus img {
  height: 20px;
  width: auto;
  max-width: 110px;
  object-fit: contain;
}

.cat-card {
  border-radius: 20px;
  background-color: var(--bg-light);
  padding: clamp(15px, 1.5625vw + 10px, 40px);
  padding-top: clamp(15px, 0.9375vw + 12px, 30px);
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease-in;
  position: relative;
}

.cat-card::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  inset: 0;
  background: var(--primary);
  border-radius: 20px;
  z-index: 0;
  opacity: 0;
  transition: all 0.3s ease-in;
}

.cat-card:first-child::before {
  opacity: 1;
}

.cat-card:first-child .title {
  color: var(--card);
}

.cat-card:first-child .advantages .advant {
  color: var(--card);
  border-color: var(--card);
}

.cat-card:first-child .bottom .price * {
  color: var(--card);
}

.cat-card:first-child .bottom .btns .arr {
  background-color: transparent;
  border-color: var(--card);
  border-radius: 10px;
  overflow: hidden;
}

.cat-card:first-child .bottom .btns .arr svg path {
  stroke: var(--card);
}

.cat-card:first-child .bottom .btns .btn-t {
  border-color: var(--card);
  background: transparent !important;
  color: var(--card);
}

.cat-card:first-child .bottom .btns .btn-t:hover {
  background: transparent !important;
  border-color: transparent;
  color: var(--card);
}

.cat-card:first-child .bottom .btns .btn-t:hover::after {
  content: '';
  opacity: 1;
}

.cat-card:first-child:hover::before {
  opacity: 0;
}

.cat-card:first-child:hover .title {
  color: var(--head);
}

.cat-card:first-child:hover .advantages .advant {
  color: var(--stroke);
  border-color: var(--stroke);
}

.cat-card:first-child:hover .bottom .price .p3 {
  color: var(--main-text);
}

.cat-card:first-child:hover .bottom .price .h4 {
  color: var(--head);
}

.cat-card:first-child:hover .bottom .btns .arr {
  background: transparent;
  border-color: transparent;
}

.cat-card:first-child:hover .bottom .btns .arr::after {
  opacity: 1;
}

.cat-card:first-child:hover .bottom .btns .arr svg {
  transform: rotate(45deg);
}

.cat-card:first-child:hover .bottom .btns .btn-t {
  background: transparent !important;
  border-color: transparent;
}

.cat-card:first-child:hover .bottom .btns .btn-t::after {
  opacity: 1;
}

.cat-card:hover::before {
  opacity: 1;
}

.cat-card:hover .title {
  color: var(--card);
}

.cat-card:hover .advantages .advant {
  color: var(--card);
  border-color: var(--card);
}

.cat-card:hover .bottom .price * {
  color: var(--card);
}

.cat-card:hover .bottom .btns .arr {
  background-color: var(--card);
  border-color: var(--card);
}

.cat-card:hover .bottom .btns .arr svg {
  transform: rotate(45deg);
}

.cat-card:hover .bottom .btns .btn-t {
  border-color: var(--card);
  background-color: var(--card);
}

.cat-card .title {
  transition: all 0.3s ease-in;
  margin-bottom: 20px;
  position: relative;
  z-index: 3;
}

.cat-card .advantages {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: clamp(25px, 1.5625vw + 20px, 50px);
  position: relative;
  z-index: 3;
}

@media (max-width: 450px) {
  .cat-card .advantages {
    flex-direction: column;
  }
}

.cat-card .advantages .advant {
  transition: all 0.3s ease-in;
  color: var(--stroke);
  padding: 5px 15px;
  border: 1px dashed var(--stroke);
  border-radius: 40px;
}

@media (max-width: 450px) {
  .cat-card .advantages .advant {
    width: 100%;
  }
}

.cat-card .bottom {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  position: relative;
  z-index: 3;
}

@media (max-width: 450px) {
  .cat-card .bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

.cat-card .bottom .price .p3,
.cat-card .bottom .price .h4 {
  transition: all 0.3s ease-in;
}

.cat-card .bottom .btns {
  display: flex;
  gap: 2px;
}

.cat-card .bottom .btns .arr {
  height: a;
  border-radius: 10px;
  width: 50px;
  min-height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease-in;
  cursor: pointer;
  border: 1px solid var(--accent-1);
  position: relative;
}

.cat-card .bottom .btns .arr::after {
  position: absolute;
  content: "";
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: all 0.3s ease-in;
  background: var(--primary);
  z-index: -1;
}

.cat-card .bottom .btns .arr svg {
  transition: all 0.3s ease-in;
  width: 24px;
  height: 24px;
}

.cat-card .bottom .btns .btn-t:hover {
  background: var(--card);
  color: var(--accent-1);
}

.cat-card .bottom .btns .btn-t:hover::after {
  content: none;
}

.service-card {
  border-radius: 10px;
  background-color: var(--bg-light);
  padding: clamp(15px, 0.3125vw + 14px, 20px) clamp(15px, 0.9375vw + 12px, 30px);
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease-in;
  position: relative;
}

.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: var(--primary);
  z-index: -1;
  border-radius: 10px;
  opacity: 0;
  transition: all 0.3s ease-in;
}

.service-card:hover {
  background-color: transparent;
}

.service-card:hover::before {
  opacity: 1;
}

.service-card:hover .service-top .name {
  color: var(--card);
}

.service-card:hover .service-top .arr {
  transform: rotate(45deg);
}

.service-card:hover .service-top .arr svg path {
  stroke: var(--card);
}

.service-card:hover .service-bottom {
  border-color: var(--bg-dark);
}

.service-card:hover .service-bottom .p2 {
  color: var(--bg-dark);
}

.service-card .service-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: clamp(30px, 0.625vw + 28px, 40px);
  position: relative;
  z-index: 3;
}

.service-card .service-top .name {
  transition: all 0.3s ease-in;
}

.service-card .service-top .arr {
  width: 24px;
  height: 24px;
  transition: all 0.3s ease-in;
  flex-shrink: 0;
}

.service-card .service-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
  padding-top: 5px;
  border-top: 1px dashed var(--stroke);
  position: relative;
  z-index: 3;
  transition: all 0.3s ease-in;
}

.service-card .service-bottom .p2 {
  transition: all 0.3s ease-in;
}

.service-big-card {
  position: relative;
  padding: clamp(15px, 1.5625vw + 10px, 40px);
  padding-bottom: 15px;
  padding-top: clamp(15px, 0.9375vw + 12px, 30px);
  border-radius: 10px;
  overflow: hidden;
  display: block;
}

.service-big-card::before {
  position: absolute;
  content: '';
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 1;
  transition: all 0.3s ease-in;
  background: var(--primary);
  z-index: -1;
}

.service-big-card::after {
  position: absolute;
  content: '';
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: all 0.3s ease-in;
  background: linear-gradient(to right, #092c4c, #6dace7);
  z-index: -1;
}

.service-big-card:hover .bottom .arr {
  background-color: var(--card);
}

.service-big-card:hover .bottom .arr svg {
  transform: rotate(45deg);
}

.service-big-card:hover .bottom .arr svg path {
  stroke: var(--accent-1);
}

.service-big-card:hover::before {
  opacity: 0;
}

.service-big-card:hover::after {
  opacity: 1;
}

.service-big-card .name {
  color: var(--card);
  margin-bottom: 15px;
}

.service-big-card .advantages {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-bottom: clamp(20px, 0.625vw + 18px, 30px);
}

.service-big-card .advantages .advant {
  color: var(--bg-dark);
}

.service-big-card .bottom {
  margin-top: auto;
  display: flex;
  align-items: center;
  padding-top: 15px;
  border-top: 1px dashed var(--accent);
  justify-content: space-between;
  gap: clamp(15px, 2.7173913043vw + -12.1739130435px, 40px);
  flex-wrap: wrap;
  margin-top: auto;
}

.service-big-card .bottom .price .p3 {
  color: var(--bg-dark);
}

.service-big-card .bottom .price .h6 {
  color: var(--card);
}

.service-big-card .bottom .time .p3 {
  color: var(--bg-dark);
}

.service-big-card .bottom .time .h6 {
  color: var(--card);
}

.service-big-card .bottom .arr {
  flex-shrink: 0;
  margin-left: auto;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: transparent;
  border: 1px solid var(--card);
}

.service-big-card .bottom .arr svg {
  width: 24px;
  height: 24px;
  transition: all 0.3s ease-in;
}

.review {
  height: fit-content;
  min-height: 480px;
}

@media (max-width: 600px) {
  .review {
    min-height: unset;
  }
}

.review.text {
  background-color: var(--bg-light);
  border-radius: 20px;
  overflow: hidden;
  padding: clamp(15px, 0.9375vw + 12px, 30px);
  padding-bottom: clamp(15px, 0.9375vw + 12px, 30px);
}

.review.text .top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 10px;
  margin-bottom: 20px;
}

.review.text .top svg {
  width: 24px;
  height: 24px;
}

.review.text .name {
  margin-bottom: 5px;
}

.review.text .service {
  font-weight: 400;
  font-size: 14px;
  line-height: 130%;
  background: linear-gradient(90deg, #3e4361 0%, #10142c 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  border-bottom: 1px dashed var(--accent-1);
  margin-bottom: 15px;
  display: inline-block;
}

.review.text .structure-text-all {
  font-weight: 600;
  font-size: 16px;
  line-height: 120%;
  background: linear-gradient(90deg, #3e4361 0%, #10142c 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-top: 10px;
  cursor: pointer;
}

.review.image {
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
  max-height: 480px;
}

@media (max-width: 600px) {
  .review.image {
    min-height: unset;
    height: clamp(300px, 11.25vw + 264px, 480px);
  }
}

.review.image img {
  border-radius: 20px;
}

.promo-card {
  display: flex;
  border-radius: 20px;
  background-color: var(--bg-light);
  border: 1px solid var(--bg-light);
  justify-content: space-between;
  transition: all 0.3s ease-in;
}

@media (max-width: 550px) {
  .promo-card {
    flex-direction: column;
    align-items: flex-start;
  }
}

.promo-card:hover {
  background: var(--card);
  border-color: var(--bg-dark);
}

.promo-card:hover .left .btn-t {
  color: var(--card);
}

.promo-card:hover .left .btn-t::after {
  opacity: 1;
}

.promo-card:hover .right img {
  transform: scale(1);
}

.promo-card .left {
  display: flex;
  flex-direction: column;
  padding: clamp(20px, 1.25vw + 16px, 40px);
}

.promo-card .left .time {
  border: 1px dashed var(--stroke);
  border-radius: 30px;
  padding: 7px 20px;
  margin-bottom: 20px;
  width: fit-content;
}

.promo-card .left .name {
  margin-bottom: 10px;
}

.promo-card .left .text {
  margin-bottom: clamp(20px, 3.75vw + 8px, 80px);
}

.promo-card .left .btn-t {
  margin-top: auto;
}

.promo-card .right {
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  height: auto;
  flex-shrink: 0;
  transition: all 0.3s ease-in;
}

@media (max-width: 550px) {
  .promo-card .right {
    height: clamp(200px, 6.25vw + 180px, 300px);
    width: 100%;
  }
}

.promo-card .right img {
  max-width: 240px;
  object-fit: cover;
  width: 100%;
  height: 100%;
  transition: all 0.3s ease-in;
  transform: scale(1.1);
}

@media (max-width: 550px) {
  .promo-card .right img {
    max-width: unset;
  }
}

.test-card {
  display: flex;
  flex-direction: column;
  border-radius: 10px;
  background-color: var(--bg-light);
  padding: clamp(15px, 0.3125vw + 14px, 20px);
  transition: all 0.3s ease-in;
}

.test-card:hover {
  background-color: var(--accent-1);
}

.test-card:hover .top .cat {
  color: var(--card);
}

.test-card:hover .top .cat svg path {
  fill: var(--card);
}

.test-card:hover .top .arr svg {
  transform: rotate(45deg);
}

.test-card:hover .top .arr svg path {
  stroke: var(--card);
}

.test-card:hover .name {
  color: var(--card);
}

.test-card:hover .bottom {
  border-color: var(--bg-dark);
}

.test-card:hover .bottom .date,
.test-card:hover .bottom .count {
  color: var(--bg-dark);
}

.test-card:hover .bottom .date svg path,
.test-card:hover .bottom .count svg path {
  fill: var(--bg-dark);
}

.test-card .top {
  gap: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}

.test-card .top .cat {
  display: flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease-in;
}

.test-card .top .cat svg {
  width: 18px;
  justify-self: 18px;
}

.test-card .top .arr {
  margin-left: auto;
}

.test-card .top .arr svg {
  width: 24px;
  height: 24px;
  transition: all 0.3s ease-in;
}

.test-card .name {
  color: var(--head);
  margin-bottom: 20px;
  transition: all 0.3s ease-in;
}

.test-card .bottom {
  margin-top: auto;
  padding-top: 5px;
  border-top: 1px dashed var(--stroke);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  transition: all 0.3s ease-in;
}

.test-card .bottom .date {
  display: flex;
  align-items: center;
  gap: 5px;
  transition: all 0.3s ease-in;
}

.test-card .bottom .date svg {
  width: 18px;
  height: 18px;
}

.test-card .bottom .count {
  display: flex;
  align-items: center;
  gap: 5px;
  transition: all 0.3s ease-in;
}

.test-card .bottom .count svg {
  width: 18px;
  height: 18px;
}

.test-cat-card {
  padding: 10px;
  padding-left: clamp(15px, 0.3125vw + 14px, 20px);
  border-radius: 10px;
  overflow: hidden;
  background-color: var(--bg-light);
  display: flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease-in;
  position: relative;
}

.test-cat-card::before {
  position: absolute;
  content: '';
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: all 0.3s ease-in;
  background: linear-gradient(90deg, #3e4361 0%, #10142c 100%);
  z-index: -1;
}

.test-cat-card:hover {
  background-color: transparent;
}

.test-cat-card:hover::before {
  opacity: 1;
}

.test-cat-card:hover .text .num {
  color: var(--bg-dark);
}

.test-cat-card:hover .text .name {
  color: var(--card);
}

.test-cat-card:hover .arr {
  border-color: var(--card);
  background-color: var(--card);
}

.test-cat-card:hover .arr svg {
  transform: rotate(45deg);
}

.test-cat-card .text {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.test-cat-card .text .num {
  margin-top: 1px;
  font-weight: 400;
  font-size: 14px;
  line-height: 120%;
  color: var(--main-text);
  transition: all 0.3s ease-in;
}

.test-cat-card .text .name {
  transition: all 0.3s ease-in;
}

.test-cat-card .arr {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  border: 1px solid var(--head);
  flex-shrink: 0;
  margin-left: auto;
  transition: all 0.3s ease-in;
}

.test-cat-card .arr svg {
  width: 24px;
  height: 24px;
  transition: all 0.3s ease-in;
}

.vacancy {
  border-radius: 20px;
  border: 1px solid transparent;
  background-color: var(--bg-light);
}

.vacancy:hover,
.vacancy.active {
  background-color: var(--card);
  transition: all 0.3s ease-in;
  border-color: var(--accent-1);
}

.vacancy:hover .vacancy__top .info .title,
.vacancy.active .vacancy__top .info .title {
  color: var(--hover);
}

.vacancy:hover .vacancy__top .info .title svg,
.vacancy.active .vacancy__top .info .title svg {
  transform: rotate(45deg);
}

.vacancy:hover .vacancy__top .info .title svg path,
.vacancy.active .vacancy__top .info .title svg path {
  fill: var(--hover);
}

.vacancy.active .vacancy__top {
  border-color: var(--accent-1);
}

.vacancy.active .vacancy__top .info .toggler .plus {
  opacity: 0;
}

.vacancy.active .vacancy__top .info .toggler .minus {
  opacity: 1;
}

.vacancy__top {
  padding: clamp(15px, 0.625vw + 13px, 25px) clamp(15px, 0.9375vw + 12px, 30px);
  background-color: transparent;
  border-bottom: 1px solid transparent;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  gap: clamp(25px, 0.9375vw + 22px, 40px);
  cursor: pointer;
  transition: all 0.3s ease-in;
}

.vacancy__top .info {
  display: flex;
  justify-content: space-between;
  gap: 10px;
}

@media (max-width: 600px) {
  .vacancy__top .info {
    flex-direction: column-reverse;
  }
}

.vacancy__top .info .title {
  display: flex;
  align-items: center;
  gap: 15px;
  transition: all 0.3s ease-in;
}

@media (max-width: 450px) {
  .vacancy__top .info .title {
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
  }
}

.vacancy__top .info .title svg {
  width: 24px;
  height: 24px;
  transition: all 0.3s ease-in;
  flex-shrink: 0;
}

.vacancy__top .info .toggler {
  width: 50px;
  height: 50px;
  position: relative;
  border-radius: 50px;
  background: var(--primary);
  flex-shrink: 0;
}

.vacancy__top .info .toggler .plus {
  position: absolute;
  width: 16px;
  height: 16px;
  inset: 0;
  margin: auto;
  transition: all 0.3s ease-in;
  opacity: 1;
}

.vacancy__top .info .toggler .minus {
  position: absolute;
  width: 16px;
  height: 2px;
  background-color: var(--card);
  display: block;
  inset: 0;
  margin: auto;
  transition: all 0.3s ease-in;
  opacity: 0;
}

.vacancy__top .attrs {
  padding-left: clamp(0px, 2.5vw + -8px, 40px);
  display: flex;
  gap: clamp(20px, 3.75vw + 8px, 80px);
  flex-wrap: wrap;
}

@media (max-width: 650px) {
  .vacancy__top .attrs {
    flex-direction: column;
    gap: 15px;
  }
}

.vacancy__top .attrs .attr {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.vacancy__bot {
  padding: clamp(20px, 1.25vw + 16px, 40px) clamp(15px, 3.4375vw + 4px, 70px) clamp(20px, 2.5vw + 12px, 60px) clamp(15px, 4.0625vw + 2px, 80px);
  display: none;
}

.vacancy__bot .text {
  margin-bottom: 30px;
}

.vacancy__bot .btns {
  display: flex;
  gap: 20px;
}

@media (max-width: 600px) {
  .vacancy__bot .btns {
    flex-direction: column;
    gap: 10px;
  }

  .vacancy__bot .btns .btn-w {
    width: 100%;
  }
}

.vacancy__bot .btns .btn {
  width: fit-content;
}

@media (max-width: 600px) {
  .vacancy__bot .btns .btn {
    width: 100%;
  }
}

.vacancy__bot .btns .btn-w {
  border: 1px solid var(--accent-1);
}

.vacancy__bot .btns .btn-w:hover::before {
  border-color: transparent;
  opacity: 1;
  color: var(--card);
}

.vacancy__bot .btns .btn-w::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background: var(--primary);
  inset: 0;
  transition: all 0.3s ease;
  z-index: -1;
  opacity: 0;
}

.archive-vacancy .content {
  display: flex;
  gap: 30px;
  position: relative;
  justify-content: space-between;
}

@media (max-width: 1000px) {
  .archive-vacancy .content {
    flex-direction: column;
  }
}

.archive-vacancy .content__left {
  width: 100%;
}

.archive-vacancy .content__left .tabs {
  margin-bottom: clamp(30px, 0.625vw + 28px, 40px);
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

@media (max-width: 500px) {
  .archive-vacancy .content__left .tabs {
    flex-direction: column;
  }
}

.archive-vacancy .content__left .tabs .tab {
  border: 1px solid var(--accent-1);
}

@media (max-width: 500px) {
  .archive-vacancy .content__left .tabs .tab {
    width: 100%;
  }
}

.archive-vacancy .content__left .vacancyes {
  margin-bottom: clamp(30px, 0.625vw + 28px, 40px);
  display: flex;
  flex-direction: column;
  gap: clamp(15px, 0.9375vw + 12px, 30px);
}

.archive-vacancy .content__right {
  flex-shrink: 0;
  width: 300px;
  background: var(--primary);
  padding: clamp(15px, 0.9375vw + 12px, 30px) clamp(15px, 1.5625vw + 10px, 40px);
  border-radius: 20px;
  height: fit-content;
  display: flex;
  flex-direction: column;
  position: sticky;
  top: 130px;
}

@media (max-width: 1000px) {
  .archive-vacancy .content__right {
    width: 100%;
  }
}

.archive-vacancy .content__right .title {
  margin-bottom: 10px;
  color: var(--card);
}

.archive-vacancy .content__right .text {
  color: var(--bg-dark);
  margin-bottom: 50px;
}

.archive-review .content {
  display: flex;
  gap: 30px;
  justify-content: space-between;
  position: relative;
}

@media (max-width: 1000px) {
  .archive-review .content {
    flex-direction: column-reverse;
  }
}

.archive-review .content .left {
  width: 100%;
}

.archive-review .content .left .recommendation {
  position: relative;
  margin-bottom: 30px;
  display: flex;
  align-items: center;
}

@media (max-width: 550px) {
  .archive-review .content .left .recommendation {
    flex-direction: column;
    gap: 15px;
    align-items: flex-start;
  }
}

.archive-review .content .left .recommendation .icon {
  border-radius: 50%;
  position: absolute;
  width: 70px;
  height: 70px;
  z-index: 3;
  box-shadow: 0 0 30px 0 rgba(70, 76, 117, 0.2);
}

@media (max-width: 550px) {
  .archive-review .content .left .recommendation .icon {
    position: relative;
  }
}

.archive-review .content .left .recommendation .text {
  display: flex;
  padding: 15px 70px;
  background-color: var(--bg-light);
  border-radius: 10px;
  margin-left: 35px;
  gap: 20px;
  align-items: center;
}

@media (max-width: 650px) {
  .archive-review .content .left .recommendation .text {
    width: 100%;
    text-align: center;
    justify-content: center;
    padding: 15px;
  }
}

@media (max-width: 550px) {
  .archive-review .content .left .recommendation .text {
    margin-left: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
}

.archive-review .content .left .recommendation .text .num {
  color: var(--accent-1);
  position: relative;
  display: flex;
  align-items: center;
  gap: 20px;
}

.archive-review .content .left .recommendation .text .num::before {
  content: '';
  position: relative;
  display: block;
  width: 1px;
  height: 15px;
  border-left: 1px dashed var(--accent-1);
}

.archive-review .content .left .recommendation .text .p2 {
  position: relative;
  display: flex;
  align-items: center;
  gap: 20px;
  text-align: left;
}

.archive-review .content .left .recommendation .text .p2::before {
  content: '';
  position: relative;
  display: block;
  width: 1px;
  height: 15px;
  border-left: 1px dashed var(--accent-1);
}

.archive-review .content .left .reviews {
  margin-bottom: 40px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 0.625vw + 18px, 30px);
}

@media (max-width: 1300px) {
  .archive-review .content .left .reviews {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .archive-review .content .left .reviews {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
  }
}

.archive-review .content .sidebar {
  padding: 30px 40px;
  background: var(--primary);
  flex-shrink: 0;
  width: 300px;
  height: fit-content;
  display: flex;
  flex-direction: column;
  border-radius: 20px;
  position: sticky;
  top: 130px;
}

@media (max-width: 1000px) {
  .archive-review .content .sidebar {
    width: 100%;
    top: 0;
    position: relative;
  }
}

.archive-review .content .sidebar .title {
  margin-bottom: 10px;
  color: var(--card);
}

.archive-review .content .sidebar .text {
  color: var(--card);
  margin-bottom: 50px;
}

.archive-review .content .sidebar .btn {
  width: 100%;
  padding-right: 10px;
  padding-left: 10px;
}

.archive-promo .promos {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(15px, 0.9375vw + 12px, 30px);
  margin-bottom: clamp(30px, 0.625vw + 28px, 40px);
}

@media (max-width: 1100px) {
  .archive-promo .promos {
    grid-template-columns: 1fr;
  }
}

.category-service-cat .services {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(15px, 0.9375vw + 12px, 30px);
}

@media (max-width: 1100px) {
  .category-service-cat .services {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 700px) {
  .category-service-cat .services {
    grid-template-columns: 1fr;
  }
}

.category-test-cat .tests-block .tests {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(10px, 1.25vw + 6px, 30px);
}

@media (max-width: 1100px) {
  .category-test-cat .tests-block .tests {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 700px) {
  .category-test-cat .tests-block .tests {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 500px) {
  .category-test-cat .tests-block .tests {
    grid-template-columns: 1fr;
  }
}

.page-article .articles {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.pagination:not(.swiper-pagination-bullets) {
  max-width: 570px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 10px;
}

.pagination:not(.swiper-pagination-bullets) .prev,
.pagination:not(.swiper-pagination-bullets) .next {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background-color: var(--card);
  border-radius: 10px;
  border: 1px solid var(--accent-1);
  transition: all 0.3s ease-in;
}

.pagination:not(.swiper-pagination-bullets) .prev svg,
.pagination:not(.swiper-pagination-bullets) .next svg {
  width: 24px;
  height: 24px;
}

.pagination:not(.swiper-pagination-bullets) .prev:hover,
.pagination:not(.swiper-pagination-bullets) .next:hover {
  background-color: var(--accent-1);
}

.pagination:not(.swiper-pagination-bullets) .prev:hover svg path,
.pagination:not(.swiper-pagination-bullets) .next:hover svg path {
  stroke: var(--card);
}

.pagination:not(.swiper-pagination-bullets) .prev.page-numbers {
  margin-right: auto;
}

.pagination:not(.swiper-pagination-bullets) .next.page-numbers {
  margin-left: auto;
}

.pagination:not(.swiper-pagination-bullets) a.page-numbers {
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
  color: var(--main-text);
}

.pagination:not(.swiper-pagination-bullets) .page-numbers.current {
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
  color: var(--head);
}

.seo-content {
  padding-right: clamp(20px, 0.625vw + 18px, 30px);
}

.seo-content h1,
.seo-content h2,
.seo-content h3,
.seo-content h4,
.seo-content h5,
.seo-content h6 {
  margin-bottom: 20px;
  margin-top: 30px;
}

.seo-content ul {
  margin-bottom: 30px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.seo-content ul li {
  list-style: none;
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.seo-content ul li::before {
  content: '';
  flex-shrink: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--accent-1);
  margin-top: 6px;
}

.seo-content ul li a {
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
  color: var(--main-text);
}

.seo-content::-webkit-scrollbar {
  width: 3px;
  height: 15px;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
}

.seo-content::-webkit-scrollbar-track {
  background-color: var(--bg-dark);
  border-left: 1px solid transparent;
  border-right: 1px solid transparent;
  background-clip: padding-box;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
}

.seo-content::-webkit-scrollbar-thumb {
  background-color: var(--stroke);
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
}

.seo-content p {
  margin-bottom: 15px;
}

.seo-content strong {
  font-weight: 600;
  color: var(--head);
}

/* ============== MODAL ============= */
#modal-search {
  height: 100vh;
}

#modal-search.modal-open {
  transform: translate() scale(1);
  max-height: unset;
  border-radius: 0;
}

#modal-search .search {
  position: relative;
}

#modal-search .search button {
  cursor: pointer;
  position: absolute;
  width: 16px;
  height: 16px;
  right: 20px;
  top: 17px;
  border: none;
  outline: none;
  display: block;
}

#modal-search .search input {
  font-weight: 400;
  font-size: 14px;
  line-height: 130%;
  color: var(--main-text);
  border-radius: 10px;
  background-color: var(--bg-light);
  width: 100%;
  padding: 16px 25px;
  border: none;
  outline: none;
}

#modal-search .search input::placeholder {
  font-weight: 400;
  font-size: 14px;
  line-height: 130%;
  color: var(--main-text);
}

.theme-modal {
  height: fit-content;
  width: 630px;
  max-height: 90vh;
  max-width: 90vw;
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) scale(0);
  pointer-events: none;
  transition: transform .3s ease-in;
  z-index: 99999;
  overflow-y: auto;
  background-color: var(--card);
  padding: clamp(20px, 2.5vw + 12px, 60px) clamp(15px, 4.0625vw + 2px, 80px);
  border-radius: 20px;
}

@media (max-width: 600px) {
  .theme-modal {
    width: 100%;
    max-width: unset;
  }
}

.theme-modal.modal-open {
  pointer-events: all;
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
}

.theme-modal .close-modal {
  position: absolute;
  right: clamp(10px, 1.25vw + 6px, 30px);
  top: clamp(10px, 1.25vw + 6px, 30px);
  width: 14px;
  height: 14px;
  cursor: pointer;
}

.theme-modal .form__holder {
  display: flex;
  flex-direction: column;
}

.theme-modal .form__holder .title {
  margin-bottom: 30px;
}

.modal-success .text {
  margin-bottom: 30px;
}

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

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

.modal-form .contact .h6 {
  margin-bottom: 10px;
}

.modal-form .contact .radios {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(10px, 0.625vw + 8px, 20px);
}

@media (max-width: 450px) {
  .modal-form .contact .radios {
    grid-template-columns: 1fr;
  }
}

.modal-form .contact .radios .radio input:checked+label::after {
  opacity: 1;
}

.modal-form .contact .radios .radio input {
  display: none;
}

.modal-form .contact .radios .radio label {
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
  color: var(--main-text);
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  transition: all 0.3s ease-in;
  padding-left: 28px;
}

.modal-form .contact .radios .radio label::before {
  flex-shrink: 0;
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 18px;
  height: 18px;
  border: 2px solid var(--accent-1);
  border-radius: 50%;
  transition: all 0.3s ease-in;
}

.modal-form .contact .radios .radio label::after {
  content: '';
  position: absolute;
  width: 10px;
  height: 10px;
  left: 0;
  background-color: var(--accent-1);
  border-radius: 50%;
  transform: translateX(60%) translateY(60%);
  opacity: 0;
  transition: all 0.3s ease-in;
}

.modal-form .group {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(10px, 0.625vw + 8px, 20px);
}

.privacy.p3 {
  text-align: center;
}


.arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 1px solid var(--accent-1);
  background-color: #ffffff;
  color: var(--card);
  transition: all 0.3s ease-in;
}

.arrow:hover {
  cursor: pointer;
}

.arrow.swiper-button-lock {
  display: none;
}

.arrow.swiper-button-disabled {
  pointer-events: none;
  border-left: none;
  border-right: none;
  background-color: #ffffff;
  border-color: var(--accent-1);
  cursor: not-allowed;
}

.arrow:not(.swiper-button-disabled):hover {
  background-color: var(--accent-3);
  border-color: var(--card);
  color: var(--primary);
}

.nav {
  display: flex;
  gap: 10px;
}

.swiper-pagination {
  position: static;
  width: auto !important;
}

.swiper-pagination-bullet {
  width: 14px;
  height: 15px;
  border-radius: 50%;
  background-color: transparent;
  border: 1px solid var(--primary);
  opacity: 1;
  transition: background 0.3s ease-in;
}

.swiper-pagination-bullet-active {
  background-color: var(--primary);
}

@media (max-width: 550px) {
  .modal-form .group {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

.modal-form .input {
  background-color: var(--bg-light);
}

.modal-form textarea {
  height: 120px;
}

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

.modal-form .form__file input {
  display: none;
}

.modal-form .form__file .file__title p {
  margin-top: 10px;
  word-break: break-all;
}

.modal-form .privacy a {
  color: inherit;
  line-height: inherit;
  font-weight: inherit;
  font-size: inherit;
  text-decoration: underline;
}

.price-form .radios .radio label {
  gap: 5px !important;
  cursor: pointer;
}

.price-form .radios .radio label.wa svg path {
  fill: var(--wa);
}

.price-form .radios .radio label.tg svg path {
  fill: var(--tg);
}

.price-form .radios .radio label.call svg {
  align-self: center;
  width: 17px;
  height: 17px;
}

.price-form .radios .radio label.call svg path {
  fill: var(--head);
}

.price-form .radios .radio label svg {
  width: 24px;
  height: 24px;
}

[form-send][disabled] {
  opacity: 0.5;
}

#reviews-block .swiper-button-disabled {
  cursor: not-allowed;
}

.menu-menyu-hedera-container {
  width: 100%;
}

@media (max-width: 425px) {
  .page-title {
    font-size: 26px;
  }

  .btn {
    width: 100%;
  }

  .promo-card .left .btn-t {
    width: 100%;
  }

  .btn-w {
    width: 100%;
  }

  .vacancy__top .info .title svg {
    display: none;
  }

  h1,
  .h1 {
    font-size: 26px;
  }
}

/* ============= MEDIA QUERIES =========== */

/*# sourceMappingURL=main.css.map */