/*============= ALIGNES ===============*/
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@100..900&family=Raleway:ital,wght@0,100..900;1,100..900&family=Unbounded:wght@200..900&display=swap");

:root {
  --card: #fff;
  --head: #1e1e1e;
  --bg-dark: #272727;
  --stroke: #383838;
  --main-text: #a8a8a8;
  --primary: #1410f9;
  --hover: #0c0a7e;

  --font-family: "Inter", sans-serif;
  --second-family: "Unbounded", sans-serif;
  --third-family: "Raleway", sans-serif;
  --font3: "Avenir Next Cyr", sans-serif;

  --transition: all 0.3s ease-in-out;
}

::selection {
  background-color: var(--primary);
  color: var(--card);
}

::-webkit-scrollbar {
  width: 3px;
  /* ширина scrollbar */
}

::-webkit-scrollbar-track {
  background: var(--bg-dark);
  /* цвет дорожки */
}

::-webkit-scrollbar-thumb {
  background-color: var(--primary);
  /* цвет плашки */
  border-radius: 20px;
  /* закругления плашки */
  border: 3px solid var(--primary);
  /* padding вокруг плашки */
}

.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;
    /*margin-left: calc(-1 * (1920px - 1170px) / 2) !important;*/
    /*margin-right: calc(-1 * (1920px - 1170px) / 2) !important;*/
  }
}

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

* {
  margin: 0;
  padding: 0;
  font-family: var(--font-family);
  font-weight: 400;
  box-sizing: inherit;
}

body {
  background-color: var(--head);
  /*max-width: 1920px;*/
  overflow-x: hidden;
  margin: 0 auto;
  width: auto;

  /*-webkit-box-shadow: 0 0 20px 5px #747474;*/
  /*box-shadow: 0 0 20px 5px #747474;*/
}

a {
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  color: var(--main-text);
  transition: var(--transition);
  text-decoration: none;
}

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

ul li {
  color: var(--main-text);
  font-size: 18px;
  line-height: 26px;
}

ul li::marker {
  color: var(--primary);
}

ol li {
  list-style-position: inside;
  color: var(--main-text);
  font-size: 18px;
  line-height: 26px;
  margin-bottom: 10px;
}

.wp-block-heading {
  margin-top: 20px;
  font-size: clamp(1rem, 0.364rem + 3.18vw, 2.75rem);
  color: var(--card);
}

.wp-block-table * {
  color: var(--main-text);
  /* 16 - 12 */
  font-size: clamp(0.75rem, 0.7rem + 0.25vw, 1rem);
}
.wp-block-table {
  max-width: 1320px;
  width: 100%;
  margin: 0 auto;
  padding: 0 15px;
  overflow-x: auto;
}
.wp-block-table::-webkit-scrollbar {
  height: 7px;
}
.wp-block-table table {
  min-width: 550px;
}

h1,
.page-title {
  font-family: var(--second-family);
  font-weight: 500;
  font-size: 35px;
  /* font-size: clamp(1.5rem, 1rem + 2.5vw, 2.875rem); */
  line-height: 120%;
  text-transform: uppercase;
  color: var(--card);
}

h2.page-title {
  font-size: clamp(1rem, 0.318rem + 3.41vw, 2.875rem);
}

.page-title span,
h2 span {
  color: var(--primary);
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  font-family: inherit;
  display: block;
}

.page-title.hero__title span {
  display: inline;
}

h2,
.h2 {
  font-family: var(--second-family);
  font-weight: 700;
  /* font-size: 44px; */
  font-size: clamp(1.5rem, 1.045rem + 2.27vw, 2.75rem);
  line-height: 120%;
  text-transform: uppercase;
  color: var(--card);
  /*  margin-bottom: 40px; */
}

h3,
.h3 {
  font-family: var(--second-family);
  font-weight: 700;
  /* font-size: 32px; */
  font-size: clamp(1.25rem, 0.977rem + 1.36vw, 2rem);
  line-height: 120%;
  color: var(--card);
}

h4,
.h4 {
  font-family: var(--second-family);
  font-weight: 700;
  font-size: 24px;
  line-height: 120%;
  color: var(--card);
}

h5,
.h5 {
  font-family: var(--second-family);
  font-weight: 700;
  /* font-size: 20px; */
  font-size: clamp(0.875rem, 0.739rem + 0.68vw, 1.25rem);
  line-height: 120%;
  color: var(--card);
}

h6,
.h6 {
  font-family: var(--second-family);
  font-weight: 500;
  font-size: 16px;
  line-height: 120%;
  color: var(--card);
}

p {
  font-weight: 400;
  /* font-size: 20px; */
  font-size: clamp(1rem, 0.909rem + 0.45vw, 1.25rem);
  line-height: 150%;
  color: var(--main-text);
}

p span,
p a {
  color: var(--card);
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
}

.p2 {
  font-weight: 400;
  /* font-size: 16px; */
  font-size: clamp(0.875rem, 0.83rem + 0.23vw, 1rem);
  line-height: 150%;
}

.p2 span {
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
}

.p3 {
  font-weight: 400;
  font-size: 14px;
  line-height: 150%;
}

main.foned {
  position: relative;
  overflow: hidden;
  z-index: 999;
}

main.foned:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 9999;
}

.breadcrumbs {
  padding: 20px 0;
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  line-height: 18px;
  color: var(--main-text);
}

.breadcrumbs span {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  color: inherit;
}

.breadcrumbs span.current-item {
  color: #121212;
}

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

.btn {
  border-radius: 10px;
  padding: 13px 35px;
  background-color: var(--primary);
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  color: var(--card);
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.btn:hover {
  background-color: var(--hover);
  color: var(--card);
  cursor: pointer;
}

.btn:focus {
  letter-spacing: normal;
}

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

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

.separator {
  background: var(--stroke);
  height: 100%;
  width: 2px;
  height: 40px;
}

#main,
#primary {
  min-height: 83vh;
}

.soc-holder {
  display: flex;
  gap: 10px;
}

.site-main .about-block {
  padding-top: 0;
}

.soc__text {
  margin-right: 5px;
  max-width: 126px;
  width: 100%;
  color: var(--main-text);
}

#header .soc {
  height: 50px;
  width: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--stroke);
  border-radius: 10px;
  padding: 10px;
  transition: var(--transition);
  flex-shrink: 0;
}

#header .soc:hover {
  border: 1px solid var(--primary);
}

.soc svg {
  max-width: 30px;
  max-height: 30px;
  width: 100%;
  height: 100%;
  transition: var(--transition);
}

.soc svg path,
.soc svg g path {
  transition: var(--transition);
}

.soc:hover svg g path:nth-child(1) {
  fill: var(--primary);
}

.soc:hover svg path:nth-child(1) {
  fill: var(--primary);
}

#footer .soc:last-child:hover svg path {
  fill: var(--primary);
}

.block {
  padding-top: 90px;
}

@media (max-width: 600px) {
  .hero-block {
    margin-top: 40px;
  }

  .block {
    padding-top: 40px;
  }
}

/*============ HEADER =================*/
#header {
  background: var(--bg-dark);
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 999;
}

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

#header .header__menu {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
}

#header .logo {
  max-width: 250px;
  width: 100%;
  font-family: var(--second-family);
  font-weight: 700;
  /* font-size: 20px; */
  font-size: clamp(0.75rem, 0.568rem + 0.91vw, 1.25rem);
  line-height: 120%;
  color: var(--card);
  text-align: left;
}

#header .logo__holder {
  display: flex;
  gap: 15px;
}

#header .logo__subtitle {
  max-width: 101px;
  width: 100%;
  color: var(--main-text);
}

#header .schedule {
  color: var(--main-text);
}

#header .phone {
  font-family: var(--second-family);
  font-weight: 500;
  /* font-size: 16px; */
  font-size: clamp(0.875rem, 0.83rem + 0.23vw, 1rem);
  line-height: 120%;
  color: var(--card);
  text-align: left;
}

#header .phone:hover {
  color: var(--primary);
}

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

#header .menuTop {
  width: 100%;
  padding: 15px 0;
}

#header .menuTop {
  display: flex;
  list-style: none;
  width: 100%;
  justify-content: space-between;
  align-items: center;
}

#header .menuTop li {
  position: relative;
}

#header .menuTop li a::after {
  content: "";
  position: absolute;
  top: 110%;
  left: 0;
  right: 0;
  width: 100%;
  height: 1px;
  background-color: var(--primary);
  transition: opacity 0.3s ease-in-out;
  opacity: 0;
}

#header .menuTop li a:hover::after {
  opacity: 1;
}

#header .nav-menu-element.has-childs {
  display: flex;
  align-items: center;
  margin-right: 34px;
}

#header .nav-menu-element.has-childs:after {
  content: "";
  position: absolute;
  transition: var(--transition);
  height: 24px;
  width: 24px;
  mask: url(../images/menu-arrow.svg);
  -webkit-mask-size: cover;
  mask-size: cover;
  background-color: var(--main-text);
  right: -34px;
}

#header .nav-menu-element.has-childs:hover a {
  color: var(--primary);
}

#header .nav-menu-element.has-childs:hover:after {
  transform: rotate(180deg);
  background-color: var(--primary);
}

#header .nav-menu-element.has-childs:hover svg path {
  stroke: var(--primary);
}

#header .sub-menu {
  display: none;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
  position: absolute;
  top: 170%;
  left: 0;
  flex-direction: column;
  border-top: 1px solid var(--primary);
  width: 100%;
  background-color: var(--bg-dark);
  list-style: none;
  border-radius: 0 0 10px 10px;
  width: fit-content;
  max-width: 525px;
}

#header .sub-menu .nav-menu-element {
  white-space: nowrap;
  transition: var(--transition);
}

#header .sub-menu .nav-menu-element a {
  color: var(--main-text) !important;
  width: 100%;
  height: 100%;
  padding: 10px 40px;
  display: flex;
}

#header .sub-menu .nav-menu-element:last-child {
  border-radius: 0 0 10px 10px;
}

#header .sub-menu .nav-menu-element:hover {
  background-color: var(--primary);
  color: var(--card);
}

#header .sub-menu .nav-menu-element:hover a {
  color: var(--card) !important;
}

#header .sub-menu .nav-menu-element a:hover {
  color: var(--card);
}

#header .sub-menu .nav-menu-element a:hover::after {
  display: none;
}

#header .has-childs {
  position: relative;
}

@media (any-hover: hover) {
  #header .has-childs:hover .sub-menu {
    display: flex;
    opacity: 1;
  }
}

#header #mobile-mnu .has-childs:hover .sub-menu {
  display: none;
}

#footer .sub-menu {
  display: none;
}

#header .sub-menu.show {
  display: flex;
  opacity: 1;
}

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

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

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

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

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

#header #mobile-mnu {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100vw;
  background-color: var(--bg-dark);
  padding: 30px;
  transition: var(--transition);
  transform: translateX(-100vw);
  z-index: 9999;
}

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

#header #mobile-mnu a {
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  text-align: center;
  color: var(--main-text);
  transition: var(--transition);
  text-decoration: none;
}

#header #mobile-mnu a:hover {
  color: var(--hover);
}

#header #mobile-mnu .logo__holder {
  display: flex;
  gap: 15px;
}

#header #mobile-mnu .logo {
  max-width: 220px;
  width: 100%;
  font-family: var(--second-family);
  font-weight: 700;
  font-size: 16px;
  line-height: 120%;
  color: var(--card);
  text-align: left;
}

#header #mobile-mnu .menuTop {
  list-style-type: none;
  margin-bottom: 10px;
}

#header #mobile-mnu .menuTop li {
  margin-bottom: 10px;
}

#header #mobile-mnu .menuTop li a {
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  text-align: center;
  color: var(--main-text);
  transition: var(--transition);
  text-decoration: none;
}

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

#header #mobile-mnu .menuTop li.active a {
  color: var(--primary);
}

#header #mobile-mnu .adresses__holder {
  display: flex;
  flex-direction: column;
  position: relative;
  padding-left: 30px;
  margin-bottom: 20px;
  width: 100%;
}

#header #mobile-mnu .adresses__holder:before {
  content: "";
  position: absolute;
  top: 4px;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 20px;
  height: 20px;
  background-image: url("../images/map.svg");
  background-position: center center;
  background-repeat: no-repeat;
}

#header #mobile-mnu .adresses__holder p {
  font-size: 16px;
  line-height: 1;
  color: #374957;
  font-weight: 450;
}

#header #mobile-mnu .email__holder {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  margin-bottom: 20px;
}

#header #mobile-mnu .email__holder .email__item {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  font-size: 16px;
  line-height: 1;
  color: #374957;
  font-weight: 450;
}

#header #mobile-mnu .email__holder .email__item:hover {
  color: #d12d26;
}

#header #mobile-mnu .email__holder .email__item svg {
  margin-right: 10px;
}

#header #mobile-mnu .phones__holder {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  margin-bottom: 20px;
}

#header #mobile-mnu .phones__holder .phone__item {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  font-size: 16px;
  line-height: 1;
  color: #374957;
  font-weight: 450;
}

#header #mobile-mnu .phones__holder .phone__item:hover {
  color: #d12d26;
}

#header #mobile-mnu .phones__holder .phone__item svg {
  margin-right: 10px;
}

#header #mobile-mnu .soc__holder {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  flex-wrap: wrap;
}

#header #mobile-mnu .soc__holder .soc__item {
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  transition: background-color 0.3s ease-in;
}

#header #mobile-mnu .soc__holder .soc__item:hover {
  background-color: #609fa8;
}

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

#header #mobile-mnu .phone,
#header #mobile-mnu .email {
  color: var(--card);
  margin-bottom: 10px;
  font-family: var(--second-family);
  font-weight: 500;
  font-size: clamp(0.875rem, 0.83rem + 0.23vw, 1rem);
  line-height: 120%;
  color: var(--card);
  text-align: left;
}

#header .header-soc {
  display: flex;
  gap: 10px;
}

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

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

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

  #header .nav-menu-element.has-childs {
    margin-right: 25px;
  }
}

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

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

@media (max-width: 700px) {
  #header .nav-menu-element.has-childs:after {
    display: none;
  }

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

  #header .menuTop {
    display: none;
  }

  #header .header__upper {
    border: none;
  }

  #header .schedule {
    display: none;
  }

  #header .phones-holder {
    flex-direction: unset;
    align-items: center;
  }

  #header .header__menu {
    gap: 10px;
  }

  #header #mobile-mnu .menuTop {
    display: flex;
    flex-direction: column;
    align-items: start;
  }

  #header #mobile-mnu .logo__subtitle {
    display: block;
    max-width: 100%;
  }

  #header #mobile-mnu .logo__holder {
    flex-direction: column;
    gap: 5px;
    margin-bottom: 30px;
  }

  #header #mobile-mnu .soc-holder {
    margin-top: 20px;
    display: flex;
  }
}

@media (max-width: 500px) {
  #header .header__menu {
    gap: 5px;
  }

  #header .logo {
    max-width: 150px;
  }

  #header .header__upper {
    gap: 5px;
  }
}

@media (max-width: 400px) {
  #header .logo {
    max-width: 135px;
  }

  #header .burger.open_menu {
    height: 25px;
    width: 30px;
  }

  #header .burger.open_menu span {
    width: 25px;
    height: 3px;
  }
}

@media (max-width: 375px) {
  #header .phone {
    font-size: 10px;
  }
}

@media (max-width: 325px) {
  #header .phone {
    font-size: 8px;
  }
}

/*============ FOOTER ===============*/
#footer {
  background: var(--bg-dark);
  margin-top: 90px;
}

#footer .logo__holder {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

#footer .logo {
  font-family: var(--second-family);
  font-weight: 700;
  /* font-size: 20px; */
  font-size: clamp(1rem, 0.909rem + 0.45vw, 1.25rem);
  line-height: 120%;
  color: var(--card);
  max-width: 220px;
}

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

#footer .footer__title {
  margin-bottom: 30px;
}

#footer .footer__copy {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 30px 15px;
  border-top: 1px solid var(--main-text);
}

#footer .privacy {
  text-decoration: underline;
}

#footer .grampus__link {
  display: flex;
  gap: 10px;
  color: var(--main-text);
}

#footer .grampus__link span {
  font-family: var(--third-family);
  font-weight: 900;
  font-size: 22px;
  letter-spacing: 0.02em;
  text-align: center;
  color: var(--main-text);
  transition: var(--transition);
}
.privacy-policy p {
  padding-bottom: 5px;
}
#footer .grampus__link:hover,
#footer .grampus__link:hover span {
  color: var(--primary);
}

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

#footer .footer__nav {
  padding-top: 60px;
  padding-bottom: 30px;
  display: flex;
  justify-content: space-between;
}

#footer .footerMenu {
  list-style: none;
  display: grid;
  grid-auto-flow: column;
  grid-template-rows: repeat(3, 1fr);
  gap: 15px 60px;
}

#footer .footer__contacts {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

#footer .footer__contacts .footer__title {
  margin-bottom: 15px;
}

#footer .footer__item {
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  color: var(--main-text);
}

#footer .requisites__holder {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

#footer .requisites__holder .footer__title {
  margin-bottom: 15px;
}

@media (max-width: 1100px) {
  #footer .footerMenu {
    gap: 15px 20px;
  }

  #footer .nav-menu-element {
    width: fit-content;
  }
}

@media (max-width: 1000px) {
  #footer .footer__nav {
    display: grid;
    grid-template-columns: repeat(2, auto);
    gap: 20px;
  }
}

@media (max-width: 850px) {
  #footer .footer__copy {
    flex-direction: column;
    gap: 15px;
  }

  #footer {
    margin-top: 60px;
  }
}

@media (max-width: 630px) {
  #footer {
    margin-top: 30px;
  }

  #footer .footerMenu {
    width: fit-content;
  }

  #footer .footer__nav {
    padding-top: 30px;
  }
}

@media (max-width: 560px) {
  #footer .footer__nav {
    grid-template-columns: 1fr;
  }
}

/* ============== MODAL ============= */
.wpcf7 .wpcf7-response-output,
.wpcf7 .wpcf7-not-valid-tip {
  display: none;
}

.wpcf7 .ajax-loader {
  display: none;
}

.wpcf7 .wpcf7-spinner {
  display: none;
}

.theme-modal {
  height: fit-content;
  width: fit-content;
  max-height: 90vh;
  max-width: 90vw;
  background-color: var(--head) !important;
  border-radius: 10px !important;
  position: fixed;
  /* left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) scale(0); */
  pointer-events: all;
  transition: transform 0.3s ease-in;
  z-index: 9999;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 15px !important;
  padding: 40px !important;
  display: none;
}

.form__holder {
  display: flex;
  flex-direction: column;
  gap: 15px !important;
  text-align: center;
}

.form .subtitle {
  margin-bottom: 10px;
}

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

input {
  position: relative;
}

input.file-input {
  height: 0 !important;
  overflow: hidden !important;
  padding: 0 !important;
  border: none !important;
  position: absolute;
}

.input__holder {
  text-align: left;
  position: relative;
}

.delete-file {
  position: absolute;
  right: 0;
  top: 0;
  font-size: 18px;
  color: var(--card);
  transform: rotate(45deg);
  transition: var(--transition);
  display: block;
}

.delete-file.hidden {
  display: none;
}

.delete-file:hover {
  color: var(--primary);
  cursor: pointer;
}

.custom-file-upload {
  color: var(--primary);
  cursor: pointer;
  transition: var(--transition);
}

.custom-file-upload:hover {
  color: var(--hover);
}

.form input {
  outline: none;
  border: 1px solid var(--card);
  background-color: transparent;
  border-radius: 10px;
  padding: 16px 20px;
  height: 50px;
  transition: var(--transition);
  font-weight: 400;
  font-size: 14px;
  line-height: 150%;
  color: var(--card);
  transition: var(--transition);
}

.form textarea {
  outline: none;
  border: 1px solid var(--card);
  background-color: transparent;
  border-radius: 10px;
  padding: 16px 20px;
  resize: vertical;
  font-weight: 400;
  font-size: 14px;
  line-height: 150%;
  color: var(--card);
  transition: var(--transition);
  min-height: 150px;
}

.form input::placeholder,
.form textarea::placeholder {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 14px;
  line-height: 150%;
  color: var(--card);
  transition: var(--transition);
}

.form input.error,
.form textarea.error {
  background-color: var(--card);
  border: 1px solid var(--primary);
  color: var(--primary);
}

.form input.error::placeholder,
.form textarea.error::placeholder {
  color: var(--primary);
}

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

.form input:hover::placeholder,
.form textarea:hover::placeholder {
  color: var(--primary);
}

.form button {
  outline: none;
  border: none;
  transition: var(--transition);
  margin-top: 10px;
}

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

.form .privacy {
  display: block;
}

#modal-callback {
  max-width: 550px !important;
  width: 100%;
}

#modal-error {
  max-width: 400px !important;
  width: 100%;
}

#modal-success {
  max-width: 540px !important;
  width: 100%;
}

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

.theme-modal .close-modal {
  position: absolute;
  right: 20px;
  top: 20px;
  font-size: 40px;
  font-weight: 750;
  color: #374957;
  transform: rotate(45deg);
  cursor: pointer;
}

.theme-modal .title {
  font-family: var(--second-family);
  font-weight: 700;
  font-size: 24px;
  line-height: 120%;
  color: var(--card);
}

.theme-modal .subtitle {
  font-weight: 400;
  /* font-size: 16px; */
  font-size: clamp(0.875rem, 0.83rem + 0.23vw, 1rem);
  line-height: 150%;
}

.fancybox__content > .f-button.is-close-btn {
  right: 5px !important;
  top: 5px !important;
  --f-button-color: var(--stroke) !important;
  opacity: 1 !important;
  transition: var(--transition) !important;
}

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

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

/*# sourceMappingURL=main.css.map */
.breadcrumbs {
  font-family: var(--font-family) !important;
  font-weight: 400 !important;
  font-size: 16px !important;
  line-height: 150% !important;
}

.breadcrumbs span.current-item {
  color: var(--primary) !important;
}

.error__content {
  padding-top: 80px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
}

.error__panel {
  padding: 50px;
  border-radius: 10px;
  max-width: 467px;
  background-color: var(--bg-dark);
  max-height: 344px;
  height: 100%;
  margin-bottom: 20px;
}

.error__title {
  margin-bottom: 20px;
}

.error__subtitle {
  margin-bottom: 50px;
}

.error404 #footer {
  margin-top: 0;
}

.error-page {
  height: fit-content;
}

#primary {
  min-height: unset;
}

.error__img {
  max-width: 783px;
  max-height: 421px;
  width: 100%;
  height: 100%;
}

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

@media (max-width: 900px) {
  .error__content {
    flex-direction: column;
    padding-top: 0;
  }

  .error__panel {
    padding: 30px;
  }

  .error__content {
    gap: 20px;
  }
}

.service {
  max-height: 377px;
  height: 100%;
  height: 377px;
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  display: block;
}

.service__img {
  max-width: 100%;
  max-height: 100%;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.service__img img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.service:hover .service__img img {
  transform: scale(1.3);
}

.service__info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--stroke);
  border-radius: 10px;
  padding: 15px;
  width: 100%;
  min-height: 121px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.service__title span {
  font-size: inherit;
  font-weight: inherit;
  font-family: inherit;
}

.service__price {
  color: var(--card);
}

.advants__item {
  display: flex;
  align-items: center;
  gap: 15px;
}

.advant__text span {
  display: block;
}

.advants__holder {
  display: flex;
  gap: 40px;
  margin-top: 40px;
}

.icon__holder {
  width: 54px;
  height: 54px;
  border-radius: 10px;
  background-color: var(--head);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
}

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

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

.singe-service-block {
  position: relative;
  margin-top: 30px;
  min-height: 720px;
}

.singe-service-block .bg {
  position: absolute;
  left: 0;
  top: 0;
  max-height: 530px;
  z-index: -1;
}

.singe-service-block .bg img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.singe-service-block .hero__title {
  margin-bottom: 0;
}

.singe-service-block .hero__bg-block {
  position: absolute;
  bottom: 0;
  height: 379px;
  background-color: var(--bg-dark);
  z-index: -2;
}

.singe-service-block .bg-block-right {
  right: 0;
  top: -40px;
  width: 44%;
  border-radius: 10px 0 0 10px;
  height: 402px;
}

.singe-service-block .hero__text span {
  font-family: var(--second-family);
  font-weight: 700;
  /* font-size: 24px; */
  font-size: clamp(1rem, 0.818rem + 0.91vw, 1.5rem);
  line-height: 120%;
  color: var(--card);
}

.singe-service-block .hero__content {
  display: flex;
  flex-direction: column;
  gap: 40px;
  max-width: 65%;
  padding-top: 60px;
}

.singe-service-block .hero__heading {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 761px;
}

.singe-service-block .clients__holder {
  display: flex;
}

.singe-service-block .client__photo {
  width: 70px;
  height: 70px;
  border-radius: 100%;
  overflow: hidden;
  border: 3px solid var(--head);
}

.singe-service-block .client__photo img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.singe-service-block .client__photo:not(:first-child) {
  margin-left: -30px;
}

.singe-service-block .hero__sale {
  display: flex;
  align-items: center;
  gap: 25px;
  position: relative;
}

.singe-service-block .sale span,
.singe-service-block .hero__text span {
  display: block;
}

.singe-service-block .sale-arrow {
  position: absolute;
  bottom: -50%;
  left: 255px;
}

.singe-service-block .hero__buttons {
  display: flex;
  align-items: center;
  gap: 20px;
}

.singe-service-block .hero__btn {
  max-width: 300px;
  width: 100%;
}

.singe-service-block .hero__bg {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  height: 100%;
  max-height: 719px;
  max-width: 41%;
  border-radius: 10px 0 0 0;
  overflow: hidden;
  z-index: -2;
  width: 100%;
}

.singe-service-block .hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 1300px) {
  .singe-service-block .hero__bg {
    max-width: 35%;
  }
}

.singe-service-block .advants__holder {
  gap: 10px;
  flex-direction: row;
  margin-top: 20px;
}

.singe-service-block .advants__item {
  padding: 10px;
  background-color: var(--bg-dark);
  min-height: 108px;
  border-radius: 10px;
  max-width: 280px;
  width: 100%;
}

.singe-service-block .icon__holder {
  width: 62px;
  height: 88px;
  background-color: var(--card);
}

@media (max-width: 1350px) {
  .singe-service-block .hero__bg-block {
    /* display: none; */
  }
}

@media (max-width: 980px) {
  .singe-service-block .hero__bg {
    position: unset;
    max-width: 100%;
    border-radius: 10px;
    max-height: 300px;
    margin-top: 20px;
    display: flex;
    align-items: center;
  }

  .singe-service-block .hero__content {
    padding-top: 0;
    max-width: 100%;
  }

  .singe-service-block {
    min-height: unset;
  }

  .singe-service-block .hero__bg-block {
    display: none;
  }

  .singe-service-block .advants__item {
    max-width: 100%;
  }
}

@media (max-width: 570px) {
  .singe-service-block .hero__buttons {
    flex-direction: column;
    align-items: start;
  }

  .singe-service-block .separator {
    display: none;
  }

  .singe-service-block .hero__btn {
    max-width: 100%;
  }

  .singe-service-block .advants__holder {
    flex-direction: column;
  }

  .singe-service-block {
    margin-top: 40px;
  }
}

@media (max-width: 460px) {
  .singe-service-block .hero__sale {
    flex-direction: column;
    margin-bottom: 10px;
  }

  .singe-service-block .sale-arrow {
    bottom: -50px;
    left: 38%;
  }

  .singe-service-block .hero__text span {
    display: inline;
  }
}

.service__description {
  display: flex;
  gap: 30px;
}

.descr__block {
  padding: 40px;
  border-radius: 10px;
  width: 100%;
}

.service__descr {
  background-color: var(--stroke);
}

.descr__title {
  margin-bottom: 25px;
}

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

@media (max-width: 500px) {
  .descr__block {
    padding: 20px;
  }
}

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

.service__terms .terms__title {
  margin-bottom: 30px;
}

.terms__block {
  padding: 30px;
  background-color: var(--bg-dark);
  border-radius: 10px;
}

.term__item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 17.5px 30px;
}

.term__item:not(:last-child) {
  border-bottom: 1px solid var(--bg-dark);
}

.terms {
  background-color: var(--head);
  border-radius: 10px;
}

.term__title {
  color: var(--card);
}

.term__value {
  font-family: var(--second-family);
  font-weight: 500;
  font-size: 16px;
  line-height: 120%;
  color: var(--card);
  white-space: nowrap;
}

.terms-phone {
  color: var(--primary);
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  white-space: nowrap;
}

.terms-phone:hover {
  color: var(--hover);
}

.info__block {
  display: flex;
  justify-content: space-between;
  gap: 40px;
}

.info__block svg {
  flex-shrink: 0;
  height: 24px;
  width: 24px;
}

@media (max-width: 600px) {
  .terms__block {
    padding: 20px;
  }

  .term__item {
    padding: 15px;
    gap: 10px;
  }

  .info__block {
    flex-direction: column;
    gap: 20px;
  }

  .info__block svg {
    margin: auto;
  }
}

.swiper__nav {
  display: flex;
  justify-content: space-between;
  margin-top: 40px;
  gap: 20px;
}

.swiper-pagination {
  position: unset !important;
  width: fit-content !important;
  max-width: 50% !important;
}

.btn-next,
.btn-prev {
  height: 50px;
  width: 50px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--primary);
  transition: var(--transition);
}

.btn-next svg path,
.btn-prev svg path {
  stroke: var(--primary);
  transition: var(--transition);
}

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

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

.btn-next:hover svg path,
.btn-prev:hover svg path {
  stroke: var(--card);
}

.swiper-button-disabled,
.swiper-button-disabled:hover {
  background-color: var(--stroke);
  border: 1px solid var(--stroke);
  cursor: not-allowed;
}

.swiper-button-disabled svg path,
.swiper-button-disabled:hover svg path {
  stroke: var(--main-text);
}

.swiper-pagination-bullet {
  border-radius: 30px !important;
  width: 15px !important;
  height: 6px !important;
  opacity: 1 !important;
  background-color: var(--stroke) !important;
  transition: var(--transition) !important;
}

.swiper-pagination-bullet-active {
  width: 35px !important;
  background-color: var(--primary) !important;
}

.swiper-slide,
.swiper-wrapper {
  height: auto !important;
}

.contacts__wrapper {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
}

.contacts-page {
  position: relative;
}

.contacts-page .bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: -1;
}

.contacts-page .bg {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.contacts__wrapper .soc {
  height: 50px;
  width: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--stroke);
  border-radius: 10px;
  padding: 10px;
  transition: var(--transition);
  flex-shrink: 0;
}

.contacts__wrapper .soc:hover {
  border: 1px solid var(--primary);
}

.contacts__item {
  display: flex;
  gap: 10px;
  min-width: 250px;
}

.contacts__item svg {
  height: 24px;
  width: 24px;
  object-fit: contain;
  flex-shrink: 0;
}

.contacts__item svg path,
.contacts__item svg circle,
.contacts__item svg rect {
  stroke: var(--primary);
}

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

.contact,
.contact p {
  color: var(--card);
  font-weight: 400;
  /* font-size: 20px; */
  font-size: clamp(1rem, 0.909rem + 0.45vw, 1.25rem);
  line-height: 150%;
}

@media (max-width: 1060px) {
  .contacts__wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 650px) {
  .contacts__wrapper {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .contacts__wrapper .soc-holder {
    order: 999;
    padding-left: 27px;
  }
}

.reviews-page {
}

.reviews-page .photo__holder {
  border-radius: 10px;
  overflow: hidden;
  height: 100%;
  width: 100%;
  position: relative;
}

.reviews-page .overflow {
  background-color: var(--primary);
  position: absolute;
  inset: 0;
  height: 100%;
  width: 100%;
  opacity: 0;
  transition: all 0.7s ease-out;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateY(-100%);
  border-radius: 10px;
}

.reviews-page .loop__holder {
  height: 50px;
  width: 50px;
  border-radius: 50%;
  background-color: var(--card);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
}

@media (any-hover: hover) {
  .reviews-page .photo__holder:hover .overflow {
    opacity: 0.8;
    cursor: pointer;
    transform: translateY(0);
  }
}

.reviews-page .photo__holder img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.reviews-page .reviews__wrapper {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.reviews-page .review {
  background-color: var(--bg-dark);
  border-radius: 10px;
  padding: 40px;
  max-width: 960px;
}

.reviews-page .review.hidden {
  display: none;
}

.reviews-page .review.hidden.show {
  display: block;
}

.reviews-page .review__upper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  margin-bottom: 30px;
}

.reviews-page .review-gallery {
  display: flex;
  gap: 20px;
}

.reviews-page .review-gallery .photo__holder {
  height: 80px;
  width: 80px;
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
}

.reviews-page .review-gallery .photo__holder img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.reviews-page .review-text {
  color: var(--main-text);
  margin-bottom: 30px;
}

.reviews-page .text-reviews .container {
  display: flex;
  gap: 30px;
  position: relative;
}

.reviews-page .reviews__panel {
  background-color: var(--primary);
  padding: 40px 30px;
  height: fit-content;
  border-radius: 10px;
  position: sticky;
  top: 150px;
  max-width: 300px;
}

.reviews-page .reviews__panel-title {
  margin-bottom: 15px;
}

.reviews-page .reviews__panel-subtitle {
  color: var(--card);
  margin-bottom: 40px;
}

.reviews-page .reviews__panel-btn {
  background-color: var(--card);
  color: var(--primary);
}

.reviews-page .reviews__panel-btn:hover {
  background-color: var(--hover);
  color: var(--card);
}

.reviews-page #more.hidden {
  display: none;
}

.reviews-page .photo__holder.hidden {
  display: none;
}

@media (max-width: 1000px) {
  .reviews-page .text-reviews .container {
    flex-direction: column-reverse;
  }

  .reviews-page .reviews__panel {
    position: unset;
  }
}

@media (max-width: 550px) {
  .reviews-page .review__upper {
    flex-direction: column;
    align-items: start;
    gap: 15px;
  }

  .reviews-page .review {
    padding: 20px;
  }

  .reviews-page .review-gallery .photo__holder {
    height: 60px;
    width: 60px;
  }
}

.work {
  border-radius: 10px;
  background-color: var(--stroke);
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.work:hover .work__img img {
  transform: scale(1.2);
}

.work .work__img {
  max-width: 100%;
  max-height: 295px;
  height: 100%;
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
  flex-shrink: 0;
}

.work .work__img img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.work .work__info {
  border-radius: 10px;
  padding: 30px;
  padding-top: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

.work .work__title {
  margin-bottom: 20px;
}

.work .work__descr {
  margin-bottom: 20px;
}

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

.work .work__bottom {
  margin-top: 30px;
  display: flex;
  justify-content: space-between;
  gap: 10px;
}

.work .work__price span {
  display: block;
  font-family: var(--second-family);
  font-weight: 700;
  /* font-size: 20px; */
  font-size: clamp(0.875rem, 0.739rem + 0.68vw, 1.25rem);
  line-height: 120%;
  color: var(--card);
  white-space: nowrap;
}

.work .work__btn {
  height: fit-content;
}

.work {
  position: relative;
}

.work .work__btn::before {
  content: "";
  position: absolute;
  inset: 0;
  height: 100%;
  width: 100%;
}

.work .work__date {
  position: absolute;
  top: 30px;
  left: 30px;
  background-color: var(--card);
  border-radius: 7px;
  padding: 7px 13px;
  font-weight: 400;
  font-size: 14px;
  line-height: 150%;
  color: var(--bg-dark);
}

.single-works .work-block .bg {
  display: none;
}

.single-works .work-block {
  padding-bottom: 0;
}

.single-works .work-block {
  background-color: unset;
}

.single-works .single-work-swiper {
  max-width: 630px;
  max-height: 594px;
  width: 100%;
  height: 100%;
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
}

.single-work-swiper .swiper-slide {
  height: 100% !important;
}

.single-works .work__gallery {
  display: flex;
  gap: 20px;
  max-width: 770px;
  width: 100%;
  position: relative;
}

.single-works .swiper_thumbnail {
  max-width: 120px;
  max-height: 540px;
  transition: var(--transition);
}

.single-works .swiper_thumbnail img {
  transition: var(--transition);
}

.single-works .swiper_thumbnail .work-image__holder {
  height: 120px;
  width: 120px;
  border-radius: 10px;
  overflow: hidden;
}

.swiper_thumbnail .swiper-slide-thumb-active img {
  transform: scale(1.1);
  transition: var(--transition);
}

.work-btn-prev,
.work-btn-next {
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}

.work-btn-prev.swiper-button-disabled,
.work-btn-next.swiper-button-disabled {
  background-color: unset;
  border: none;
}

.work-btn-prev.swiper-button-disabled:hover,
.work-btn-next.swiper-button-disabled:hover {
  background-color: unset;
}

.work-btn-prev.swiper-button-disabled:hover svg path,
.work-btn-next.swiper-button-disabled:hover svg path {
  stroke: var(--main-text);
}

.work-btn-prev.swiper-button-disabled svg path,
.work-btn-next.swiper-button-disabled svg path {
  stroke: var(--main-text);
}

.work-btn-prev svg path,
.work-btn-next svg path {
  stroke: var(--primary);
  transition: var(--transition);
}

.work-btn-prev:hover,
.work-btn-next:hover {
  cursor: pointer;
  background-color: var(--primary);
  height: 24px;
  width: 24px;
  border-radius: 7px;
}

.work-btn-prev:hover svg path,
.work-btn-next:hover svg path {
  stroke: var(--card);
}

.swiper-work__nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  position: absolute;
  bottom: 0;
  left: 31px;
  z-index: 121;
}

.single-works .swiper_thumbnail .work-image__holder img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  cursor: pointer;
}

.single-works .single-work-swiper .work-image__holder {
  max-width: 630px;
  max-height: 594px;
  height: 100%;
  width: 100%;
}

.single-works .single-work-swiper .work-image__holder img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.work-hero .container {
  display: flex;
  justify-content: space-between;
  gap: 50px;
}

.work-hero .work__characteristics {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.work-hero .characteristics__item {
  display: flex;
  gap: 5px;
  align-items: top;
}

.work-hero .work__info {
  width: 100%;
  max-width: 470px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.work-hero .characteristic__name {
  /* white-space: nowrap; */
  line-height: 150%;
}

.work-hero .characteristic__value {
  font-family: var(--second-family);
  font-weight: 500;
  font-size: 16px;
  color: var(--card);
  white-space: nowrap;
}

.work-hero .work__btn {
  width: 100%;
  max-width: 200px;
}

.work-hero .work__panel {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  background-color: var(--bg-dark);
  padding: 30px;
  border-radius: 10px;
}

.work-hero .work__price span {
  font-family: var(--second-family);
  font-weight: 700;
  font-size: 24px;
  line-height: 120%;
  color: var(--card);
  display: block;
  white-space: nowrap;
  margin-top: 5px;
}

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

@media (max-width: 1300px) {
  .work-hero .container {
    flex-direction: column;
  }

  .work-hero .work__info {
    max-width: 100%;
  }

  .work-hero .work__panel {
    width: fit-content;
  }

  .single-works .work__gallery {
    flex-direction: column-reverse;
    max-width: 100%;
  }

  .single-works .swiper_thumbnail {
    max-width: 100%;
  }

  .single-works .single-work-swiper {
    max-width: 100%;
  }

  .single-works .single-work-swiper .work-image__holder {
    max-width: 100%;
  }

  .swiper-work__nav {
    width: 100%;
    justify-content: space-between;
    left: 0;
    bottom: 40px;
  }

  .single-works .swiper_thumbnail .work-image__holder {
    width: auto;
  }

  .work-btn-prev,
  .work-btn-next {
    transform: rotate(-90deg);
  }

  .work-hero .work__info {
    flex-direction: row;
    justify-content: space-between;
  }
}

@media (max-width: 1000px) {
  .work-hero .work__info {
    flex-direction: column;
    justify-content: unset;
  }
}

@media (max-width: 630px) {
  .single-works .single-work-swiper .work-image__holder {
    max-height: 400px;
  }

  .single-works .swiper_thumbnail {
    display: none;
  }

  .swiper-work__nav {
    bottom: 50%;
  }

  .work-hero .container {
    gap: 30px;
  }

  .work-hero .work__panel {
    width: 100%;
  }
}

@media (max-width: 450px) {
  .single-works .single-work-swiper .work-image__holder {
    max-height: 300px;
  }

  .work-hero .work__panel {
    flex-direction: column;
    align-items: start;
  }

  .work-hero .work__btn {
    max-width: 100%;
    width: 100%;
  }
}

@media (max-width: 1100px) {
  .archive-works .archive__holder {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

  .work .work__info {
    padding: 20px;
  }

  .work .work__date {
    top: 20px;
    left: 20px;
  }
}

.form-two-block {
}

.form-two-block .form-two {
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  padding: 60px;
  z-index: 1;
}

.form-two-block .form__bg {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: -2;
}

.form-two-block .form__bg img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.form-two-block .form__img {
  position: absolute;
  right: 15%;
  top: 0;
  bottom: 0;
}

.form-two-block .form__img img {
  height: 100%;
  width: 100%;
  object-fit: contain;
}

.form-two-block .form__content {
  max-width: 581px;
  width: 100%;
  z-index: 1;
}

.form-two-block .form-two__title {
  margin-bottom: 15px;
}

.form-two-block .form-two__subtitle {
  color: var(--card);
  margin-bottom: 40px;
}

.form-two-block .form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: center;
}

.form-two-block .form-privacy {
  text-align: left;
}

@media (max-width: 1100px) {
  .form-two-block .form__img {
    right: 0;
  }

  .form-two-block .form-privacy {
    color: var(--card);
  }
}

@media (max-width: 950px) {
  .form-two-block .form__content {
    max-width: 100%;
  }

  .form-two-block .form__img {
    display: none;
  }
}

@media (max-width: 800px) {
  .form-two-block .form-two {
    padding: 30px;
  }
}

@media (max-width: 600px) {
  .form-two-block .form {
    grid-template-columns: 1fr;
  }

  .form-two-block .form-two__subtitle {
    margin-bottom: 20px;
  }
}

.work__holder.hidden {
  display: none;
}

.work__holder.hidden.show {
  display: block;
}

.archive-work__btn {
  margin-top: 40px;
}

.archive-work__btn.hidden {
  display: none;
}

.archive-services h1 {
  margin-bottom: 40px;
}

.archive-services .archive__holder {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.archive-services .services__holder {
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.archive-services .service__cat {
  margin-bottom: 30px;
  text-transform: none;
}

@media (max-width: 1200px) {
  .archive-services .archive__holder {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 880px) {
  .archive-services .archive__holder {
    grid-template-columns: repeat(2, 1fr);
  }
}

.title {
  margin-bottom: 40px;
}

@media (max-width: 600px) {
  .archive-services h1 {
    margin-bottom: 20px;
  }

  .title {
    margin-bottom: 20px;
  }
}

.price__title {
  text-transform: none;
}

@media (max-width: 550px) {
  .archive-services .archive__holder {
    grid-template-columns: 1fr;
  }
}

.category__holder {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

@media (max-width: 1200px) {
  .category__holder {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 880px) {
  .category__holder {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 550px) {
  .category__holder {
    grid-template-columns: 1fr;
  }
}

.single-services .form-block {
  margin-bottom: 0;
}

.price__holder {
  display: flex;
  flex-direction: column;
  gap: 15px;
  justify-content: space-between;
  align-items: flex-start;
}

.price__holder .price {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 15px 30px;
  background-color: var(--bg-dark);
  width: 100%;
  border-radius: 10px;
  cursor: pointer;
}

.price__holder .arrow {
  width: 50px;
  height: 50px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--main-text);
  transition: var(--transition);
  flex-shrink: 0;
}

.price__holder .arrow svg {
  transition: var(--transition);
}

.price__holder .arrow:hover {
  background-color: var(--primary);
  border: 1px solid var(--primary);
}

.price__holder .arrow:hover svg {
  transform: rotate(180deg);
}

.price__holder .arrow:hover svg path {
  stroke: var(--card);
}

.price__holder .arrow.opened {
  background-color: var(--primary);
}

.price__holder .price__item {
  width: 100%;
}

.price__holder .list__item {
  font-weight: 400;
  /* font-size: 16px; */
  font-size: clamp(0.875rem, 0.83rem + 0.23vw, 1rem);
  line-height: 150%;
}

.price__holder .price__item.is-opened .vacancy {
  background-color: var(--card);
  transition: var(--transition);
}

.price__holder .price__item.hidden {
  display: none;
}

.price__holder .price__item.hidden.show {
  display: flex;
}

.price__holder .prices__holder {
  border-radius: 10px;
  background-color: var(--head);
}

.price__holder .prices {
  padding: 15px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.price__holder .price-btn {
  display: flex;
  align-items: center;
  gap: 15px;
  color: var(--card);
  border-bottom: 1px dashed var(--primary);
  white-space: nowrap;
}

.price__holder .price-btn:hover {
  color: var(--primary);
  cursor: pointer;
}

.price__holder .service-price {
  font-family: var(--second-family);
  font-weight: 500;
  font-size: 16px;
  line-height: 120%;
  color: var(--card);
  white-space: nowrap;
}

.price__holder .price-btn svg path {
  transition: var(--transition);
}

.price__holder .price-btn:hover svg path {
  stroke: var(--primary);
  cursor: pointer;
}

.price__holder .price-right {
  display: flex;
  align-items: center;
  gap: 40px;
}

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

.price__holder .service-name:hover {
  color: var(--primary);
}

.price__holder .prices:not(:last-child) {
  border-bottom: 1px solid var(--bg-dark);
}

.price__holder .price__item.is-opened .arrow {
  background-color: var(--primary);
  border: 1px solid var(--primary);
}

.price__holder .price__itemitem.is-opened .arrow svg {
  transform: rotate(90deg);
}

.price__holder .price__itemitem.is-opened .arrow:hover svg {
  /*  transform: none; */
}

.price__holder .price__item.is-opened .arrow svg path {
  stroke: var(--card);
}

.price__holder .price__cats {
  padding: 30px;
  border-radius: 10px;
  margin-top: 5px;
  background-color: var(--bg-dark);
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.price__holder .vacancies__btn {
  margin: auto;
  margin-top: 40px;
  width: fit-content;
  text-align: center;
}

.price__holder .vacancy__upper {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
}

.price__holder .vacancy-item__btn {
  width: fit-content;
  height: fit-content;
  text-align: center;
}

.price__holder .salary {
  margin-bottom: 15px;
}

.price__holder .block__title {
  margin-bottom: 15px;
}

.price__holder .block__list {
  display: flex;
  flex-direction: column;
  gap: 15px;
  padding-left: 18px;
}

@media (max-width: 900px) {
  .price__holder .price-right {
    gap: 20px;
  }
}

@media (max-width: 770px) {
  .price__holder .price-right {
    flex-direction: column;
    gap: 10px;
    align-items: end;
  }
}

@media (max-width: 600px) {
  .price__holder .prices {
    flex-direction: column;
    align-items: start;
  }

  .price__holder .price-right {
    flex-direction: row;
    justify-content: space-between;
    align-items: start;
    width: 100%;
  }

  .price__holder .price__cats {
    padding: 20px;
  }
}

@media (max-width: 500px) {
  .price__holder .arrow {
    height: 30px;
    width: 30px;
  }

  .price__holder .vacancies__btn {
    margin-top: 20px;
  }

  .price__holder .vacancies__title {
    margin-top: 0;
  }
}

@media (max-width: 480px) {
  .price__holder .price-right {
    flex-direction: column;
  }
}

.front-page .equipment-block {
  margin-top: 0;
}

.front-page .form-block {
  padding-top: 158px;
}

@media (max-width: 1024px) {
  h1,
  .page-title {
    font-size: 25px;
  }
}

@media (max-width: 1000px) {
  .front-page .form-block {
    padding-top: 50px;
  }
}

@media (max-width: 450px) {
  h1,
  .page-title {
    font-size: 20px;
  }
}

@media (max-width: 380px) {
  h1,
  .page-title {
    font-size: 16px;
  }
}

.front-page .work-block,
.single-services .work-block {
  padding-top: 0;
}

.archive-services,
.page-price,
.archive-works,
.single-works,
.reviews-page,
.about-block {
  position: relative;
}

.archive-services .bg,
.page-price .bg,
.archive-works .bg,
.single-works .bg,
.reviews-page .bg,
.about-block .bg {
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  right: 0;
  z-index: -1;
}

.bg svg {
  height: 100%;
  width: 100%;
  object-fit: contain;
}

.about-block {
  overflow: hidden;
}

.smoke {
  display: none;
  position: absolute;
  max-height: 240px;
  bottom: -10px;
  left: 0;
  right: 0;
  z-index: -1;
}

.smoke img {
  height: 100%;
  max-height: 240px;
  width: 100%;
  object-fit: fill;
}

.soc {
  position: relative;
  z-index: 1;
}

.soc-bg {
  position: absolute;
  top: 50%;
  right: 50%;
  transform: translate(50%, -50%);
  height: 22px;
  width: 20px;
  border-radius: 50%;
  background-color: var(--card);
  z-index: -1;
}

#footer .soc:first-child .soc-bg {
  height: 24px;
  width: 24px;
  top: 48%;
}

.reviews-archive {
}

.reviews-archive .photo__holder {
  border-radius: 10px;
  overflow: hidden;
  height: 100%;
  width: 100%;
  position: relative;
  display: flex;
  cursor: pointer;
}

.reviews-archive .overflow {
  background-color: var(--primary);
  position: absolute;
  inset: 0;
  height: 100%;
  width: 100%;
  opacity: 0;
  transition: all 0.7s ease-out;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateY(-100%);
  border-radius: 10px;
}

.reviews-archive .loop__holder {
  height: 50px;
  width: 50px;
  border-radius: 50%;
  background-color: var(--card);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
}

@media (any-hover: hover) {
  .reviews-archive .photo__holder:hover .overflow {
    opacity: 0.8;
    cursor: pointer;
    transform: translateY(0);
  }
}

.reviews-archive .photo__holder img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.reviews-archive .reviews__wrapper {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.reviews-archive .review {
  background-color: var(--bg-dark);
  border-radius: 10px;
  padding: 40px;
  max-width: 960px;
}

.reviews-archive .review.hidden {
  display: none;
}

.reviews-archive .review.hidden.show {
  display: block;
}

.reviews-archive .review__upper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  margin-bottom: 30px;
}

.reviews-archive .review-gallery {
  display: flex;
  gap: 20px;
}

.reviews-archive .review-gallery .photo__holder {
  height: 80px;
  width: 80px;
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
}

.reviews-archive .review-gallery .photo__holder img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.reviews-archive .review-text {
  color: var(--main-text);
  margin-bottom: 30px;
}

.reviews-archive .text-reviews .container {
  display: flex;
  gap: 30px;
  position: relative;
}

.reviews-archive .reviews__panel {
  background-color: var(--primary);
  padding: 40px 30px;
  height: fit-content;
  border-radius: 10px;
  position: sticky;
  top: 150px;
  max-width: 300px;
}

.reviews-archive .reviews__panel-title {
  margin-bottom: 15px;
}

.reviews-archive .reviews__panel-subtitle {
  color: var(--card);
  margin-bottom: 40px;
}

.reviews-archive .reviews__panel-btn {
  background-color: var(--card);
  color: var(--primary);
}

.reviews-archive .reviews__panel-btn:hover {
  background-color: var(--hover);
  color: var(--card);
}

.reviews-archive #more.hidden {
  display: none;
}

.reviews-archive .photo__holder.hidden {
  display: none;
}

.reviews-archive .text-reviews.block {
  padding-top: 40px;
}

@media (max-width: 1000px) {
  .reviews-archive .text-reviews .container {
    flex-direction: column-reverse;
  }

  .reviews-archive .reviews__panel {
    position: unset;
    max-width: 100%;
  }
}

@media (max-width: 550px) {
  .reviews-archive .review__upper {
    flex-direction: column;
    align-items: start;
    gap: 15px;
  }

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

  .reviews-archive .review-gallery .photo__holder {
    height: 60px;
    width: 60px;
  }
}

.questions-archive {
  display: flex;
  flex-direction: column;
  gap: 15px;
  justify-content: space-between;
  align-items: flex-start;
  padding-top: 20px;
}

.questions-archive .question-item {
  width: 100%;
}

.questions-archive .question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 15px 30px;
  background-color: var(--bg-dark);
  width: 100%;
  border-radius: 10px;
  cursor: pointer;
}

.questions-archive .arrow {
  width: 50px;
  height: 50px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--main-text);
  transition: var(--transition);
  flex-shrink: 0;
}

.questions-archive .answer {
  display: none;
  padding: 30px;
  border-radius: 10px;
  margin-top: 5px;
  background-color: var(--bg-dark);
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.questions-archive .question-item.is-opened .arrow {
  background-color: var(--primary);
  border: 1px solid var(--primary);
}

.questions-archive .question-item.is-opened .arrow svg {
  transform: rotate(180deg);
}

.questions-archive .question-item.is-opened .arrow:hover svg {
  /*  transform: none; */
}

.questions-archive .question-item.is-opened .arrow svg path {
  stroke: var(--card);
}

.questions-archive .answer_holder {
  border-radius: 10px;
  background-color: var(--head);
  padding: 10px;
}
