/*============= 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: var(--font-family);
  font-feature-settings: 'lnum' 1;
  font-weight: 400;
  box-sizing: inherit;
  color: var(--head-primary);
}

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

.seo-text:has(.text-holder)::-webkit-scrollbar,
.seo-block .seo-text::-webkit-scrollbar {
  width: 2px;
  background: var(--stroke);
}

.seo-text:has(.text-holder)::-webkit-scrollbar-thumb,
.seo-block .seo-text::-webkit-scrollbar-thumb {
  background-color: var(--primary);
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
}

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

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

ul li {
  list-style-position: inside;
  font-size: 16px;
  line-height: 130%;
  list-style-type: none;
}

ol li {
  list-style-position: inside;
  font-size: 16px;
  line-height: 130%;
}

p {
  font-size: 16px;
  line-height: 130%;
}

h1.page-title {
  font-weight: 600;
  font-size: 48px;
  line-height: 115%;
  margin-bottom: 40px;
}

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 0px 10px 0px;
  font-weight: 400;
  font-size: 14px;
  line-height: 140%;
  letter-spacing: 0.02em;
  color: var(--main-text-secondary);
  display: flex;
  flex-wrap: wrap;
  gap: 3px;
}

.breadcrumbs span {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  color: inherit;
  transition: 0.3s;
  position: relative;
  white-space: nowrap;
  display: block;
  width: fit-content;
}

.breadcrumbs span:hover {
  color: var(--primary);
}

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

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

.breadcrumbs span:has(.current-item),
.breadcrumbs span:has(.current-item) span {
  white-space: normal;
}

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

.btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  text-align: center;
  height: fit-content;
  border-radius: 10px;
  padding: 20px 35px;
  outline: none;
  font-weight: 600;
  font-size: 16px;
  line-height: 125%;
  color: var(--background);
  background: var(--primary);
  border: 1px solid var(--primary);
  cursor: pointer;
  overflow: hidden;
  transition: 0.5s;
}

.btn.second {
  background: transparent;
  color: var(--head-primary);
  border-color: var(--primary);
}

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

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

.main-title {
  font-weight: 600;
  font-size: 36px;
  line-height: 125%;
  margin-bottom: 40px;
}

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

.text-holder p,
.text-holder li {
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
  letter-spacing: 0.02em;
  color: var(--main-text-primary);
}

.text-holder ol,
.text-holder ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 10px;
}

.text-holder ol {
  counter-reset: list;
}

.text-holder ol li {
  list-style-type: none;
  padding-left: 25px;
  position: relative;
  counter-increment: list;
}

.text-holder ol li:before {
  content: counter(list)".";
  width: 25px;
  height: 25px;
  border-radius: 5px;
  display: flex;
  top: 0;
  left: 0;
  position: absolute;
  font-weight: 500;
  font-size: 16px;
  line-height: 125%;
}

.text-holder ul li {
  padding-left: 20px;
  position: relative;
}

.text-holder ul li:before {
  content: "";
  width: 10px;
  height: 4px;
  top: 9px;
  border-radius: 1px;
  left: 0;
  position: absolute;
  background: var(--primary);
}

.text-holder h2 {
  font-weight: 600;
  font-size: 48px;
  line-height: 110%;
  margin: 20px 0px;
}

.text-holder h3 {
  font-weight: 600;
  font-size: 36px;
  line-height: 110%;
  margin-top: 20px;
}

.text-holder h4 {
  font-weight: 600;
  font-size: 22px;
  line-height: 110%;
  margin-top: 20px;
}

.text-holder h5 {
  font-weight: 600;
  font-size: 18px;
  line-height: 110%;
  margin-top: 20px;
}

.text-holder p strong {
  font-weight: 500;
  font-size: 16px;
  line-height: 110%;
}

.text-holder a {
  color: var(--primary);
}

.text-holder a:hover {
  color: var(--hover);
}

.text-holder blockquote {
  background: var(--background-fourthly);
  border-radius: 30px;
  margin-top: 20px;
  padding: 90px 30px 30px 30px;
  position: relative;
}

.text-holder blockquote:before {
  content: "";
  width: 30px;
  height: 30px;
  top: 30px;
  left: 30px;
  position: absolute;
  background-image: url(../images/citate.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

.text-holder blockquote p {
  width: 100%;
}

.nav-holder {
  position: relative;
}

.nav-holder .nav {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 30px;
  width: 100%;
  margin-left: auto;
}

.nav-wrapper .nav {
  margin-top: unset;
}

.nav-holder .nav-btns {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-right: auto;
}

.nav-holder .swiper-button-prev,
.nav-holder .swiper-button-next {
  border: 1px solid var(--primary);
  border-radius: 10px;
  width: 58px;
  min-width: 58px;
  height: 58px;
  display: flex;
  align-items: center;
  position: static;
  justify-content: center;
  transition: 0.3s;
  cursor: pointer;
  margin-top: unset;
  z-index: 2;
}

.nav-holder .swiper-button-prev:hover,
.nav-holder .swiper-button-next:hover {
  background: var(--hover);
  border-color: var(--hover);
}

.nav-holder .swiper-button-prev svg,
.nav-holder .swiper-button-next svg {
  width: 18px;
  height: 14px;
}

.nav-holder .swiper-button-prev path,
.nav-holder .swiper-button-next path {
  transition: 0.5s;
}

.nav-holder .swiper-button-prev:hover path,
.nav-holder .swiper-button-next:hover path {
  stroke: var(--background);
}

.nav-holder .swiper-button-prev:after,
.nav-holder .swiper-button-next:after {
  display: none;
}

.nav-holder .swiper-button-disabled {
  pointer-events: none;
  opacity: 1 !important;
}

.nav-holder .swiper-pagination {
  display: flex;
  align-items: center;
  width: fit-content !important;
  bottom: unset !important;
  position: static;
  gap: 5px;
  top: unset !important;
  flex-wrap: wrap;
  justify-content: center;
  width: fit-content !important;
}

.nav-holder .swiper-pagination-bullet {
  width: 20px;
  height: 5px;
  border-radius: 5px;
  transition: 0.3s;
  background: var(--stroke);
  opacity: 1;
  margin: unset !important;
}

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

.nav-holder .progressbar {
  background: var(--stroke);
  height: 2px;
  width: 100%;
  margin-left: 10px;
}

.nav-holder .swiper-scrollbar-drag {
  background: var(--primary);
}

.swiper-slide {
  box-sizing: border-box !important;
}

.privacy-policy .content {
  padding-bottom: 40px;
}

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

.privacy-policy .content h2 {
  font-size: 18px;
  margin: 15px 0px 5px 0px;
  font-weight: 600;
}

.privacy-policy .content h2:nth-child(1) {
  margin-top: unset;
}

.text-desc-holder {
  display: flex;
  align-items: center;
  gap: 80px;
}

.text-desc-holder .text-desc-img {
  width: calc(44% - 40px);
  display: flex;
  border-radius: 30px;
  overflow: hidden;
  height: 600px;
}

.text-desc-holder .text-desc-img img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.text-desc-holder .desc-right-side {
  display: flex;
  flex-direction: column;
  width: calc(54% - 40px);
  height: 580px;
}

.text-desc-holder .text-desc {
  height: 500px;
  overflow: auto;
  padding-right: 25px;
}

.socs {
  display: flex;
  gap: 15px;
}

.soc {
  border-radius: 10px;
  width: 58px;
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--background-secondary);
  border: 1px solid var(--stroke);
}

.soc img,
.soc svg {
  width: auto;
  height: auto;
  display: block;
  object-fit: contain;
  max-width: 60%;
  max-height: 60%;
  transition: 0.5s;
}

.soc:hover {
  background: var(--hover);
}

.soc:hover img,
.soc:hover svg {
  filter: brightness(0) invert(1);
}

.pagination {
  max-width: 405px;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  margin-top: 30px;
  display: flex;
  justify-content: space-between;
  gap: 5px;
  align-items: center;
}

.prev.page-numbers {
  margin-right: 5px;
}

.next.page-numbers {
  margin-left: 5px;
}

.page-numbers {
  font-weight: 400;
  font-size: 20px;
  line-height: 140%;
  letter-spacing: 0.02em;
  padding: 6px 10px;
  border-radius: 5px;
  background: var(--background);
  transition: 0.5s;
}

.page-numbers:hover {
  color: var(--background);
  background: var(--primary);
}

.page-numbers.current {
  background: var(--primary);
  color: var(--background);
}

.prev.page-numbers,
.next.page-numbers {
  width: 58px;
  height: 58px;
  border-radius: 10px;
  background: transparent;
  transition: 0.5s;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--primary);
}

.prev.page-numbers:hover,
.next.page-numbers:hover {
  background: var(--hover);
  border-color: var(--hover);
}

.prev.page-numbers path,
.next.page-numbers path {
  transition: 0.5s;
}

.prev.page-numbers:hover path,
.next.page-numbers:hover path {
  fill: var(--background);
}

span.prev.page-numbers,
span.next.page-numbers {
  pointer-events: none;
}

.block-container {
  padding: 60px 0px;
}





/*============ HEADER =================*/
#header {
  position: sticky;
  top: 0px;
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
  background: var(--background);
  border-radius: 0px 0px 20px 20px;
  z-index: 123;
  padding: 15px 0px 10px 0px;
  border: 1px solid var(--stroke);
}

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

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

#header .info-icon {
  width: 16px;
  height: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

#header .info-icon img,
#header .info-icon svg {
  width: auto;
  height: auto;
  display: block;
  object-fit: contain;
  max-width: 100%;
  max-height: 100%;
}

#header .info-value,
#header .info-value p {
  font-weight: 400;
  font-size: 14px;
  line-height: 140%;
  letter-spacing: 0.02em;
  color: var(--main-text-primary);
}

#header a.info-value:hover {
  color: var(--hover);
}

#header .header-bot {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  padding-top: 10px;
  align-items: center;
  white-space: nowrap;
}

#header .logo {
  width: auto;
  max-width: 180px;
  display: flex;
}

#header .logo img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

#header .header-menu {
  gap: 5px;
  display: flex;
  align-items: center;
}

#header .socs-holder {
  display: flex;
  align-items: center;
  gap: 20px;
}

#header .socs-desc {
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
  letter-spacing: 0.02em;
  color: var(--main-text-primary);
  max-width: 85px;
}

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

#header .phone-value {
  font-weight: 600;
  font-size: 20px;
  line-height: 125%;
  white-space: nowrap;
}

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

#header .nav-menu-element a {
  font-weight: 600;
  font-size: 16px;
  line-height: 125%;
  color: var(--head-primary);
  padding: 10px 15px;
  border-radius: 15px;
}

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

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

#header .nav-menu-element.has-childs>a {
  position: relative;
  padding-right: 30px;
}

#header .nav-menu-element.has-childs>a::before {
  content: "";
  width: 13px;
  height: 8px;
  position: absolute;
  right: 8px;
  top: 17px;
  background-image: url(../images/menuClosed.png);
  transition: 0.5s;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

#header .nav-menu-element.has-childs:hover>a:before {
  background-image: url(../images/menuOpened.png);
}

#header .header-menu .sub-menu {
  position: absolute;
  top: 40px;
  width: max-content;
  min-width: 300px;
  height: max-content;
  max-width: 450px;
  padding: 10px;
  left: 0;
  right: 0;
  opacity: 0;
  transform: translate(0, 0);
  transition: all 0.2s ease;
  transition-delay: 0.15s;
  visibility: hidden;
  z-index: -100;
  display: flex;
  flex-direction: column;
  gap: 10px;
  border-radius: 10px;
  border: 1px solid var(--stroke);
  background: var(--background);
  align-items: flex-start;
}

#header .header-menu>.nav-menu-element.has-childs:hover .sub-menu {
  opacity: 1;
  visibility: visible;
  z-index: 100;
}

#header .header-menu .sub-menu a {
  display: block;
}

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

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

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

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

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

#header #mobile-mnu .site-title {
  max-width: unset;
  width: fit-content;
  padding: 15px;
  margin-bottom: 20px;
}

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

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

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

#header #mobile-mnu .logo {
  margin-bottom: 20px;
  max-width: 200px;
}

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

#header #mobile-mnu .logo__holder {
  text-align: center;
  margin-bottom: 30px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

#header #mobile-mnu .logo__holder img {
  max-height: 60px;
}

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

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

#header #mobile-mnu .menuTop li a {
  font-size: 16px;
  line-height: 130%;
  font-weight: 600;
  color: var(--head-primary);
  position: relative;
  width: fit-content;
  padding: unset !important;
}

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

#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: 130%;
  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: 130%;
  font-weight: 400;
}

#header #mobile-mnu .email__holder .email__item:hover {
  color: var(--head-primary);
}

#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: 130%;
  font-weight: 450;
}

#header #mobile-mnu .phones__holder .phone__item:hover {
  color: var(--head-primary);
}

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

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

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

#header #mobile-mnu .site-name-holder {
  order: unset;
  width: max-content;
  max-width: unset;
}

#header #mobile-mnu .site-name,
#header #mobile-mnu a,
#header #mobile-mnu .site-subtitle {
  color: var(--head-primary);
}

#header #mobile-mnu .soc-holder {
  margin-top: 10px;
  margin-left: unset;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

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

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

#header #mobile-mnu .sub-menu .nav-menu-element a:before {
  content: "";
  width: 5px;
  height: 1px;
  top: 9px;
  left: 0;
  position: absolute;
  background: var(--head-primary);
}

#header #mobile-mnu .phones-holder {
  margin: 5px 0px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

#header #mobile-mnu .sub-menu li {
  margin-bottom: 5px;
}

#header #mobile-mnu .nav-menu-element.has-childs>a::before {
  right: -20px;
  top: 7px;
}

#header #mobile-mnu .nav-menu-element.has-childs>a::after {
  right: -18px;
  top: 10px;
}

#header #mobile-mnu .emails-holder {
  display: flex;
  flex-direction: column;
}

#header #mobile-mnu .phones-holder a,
#header #mobile-mnu .emails-holder a {
  font-size: 14px;
  color: var(--primary);
  font-weight: 600;
}

#header #mobile-mnu .nav-menu-element.has-childs:hover>a:before {
  background-image: url(../images/menuClosed.png);
}

#header #mobile-mnu .menuTop .sub-menu li.nav-menu-element a {
  padding-left: 10px !important;
  position: relative;
  font-weight: 400;
  font-size: 13px;
}

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






/*============ FOOTER Start ===============*/
#footer {
  background: var(--background-secondary);
  border-radius: 30px 30px 0px 0px;
  border: 1px solid var(--stroke);
}

#footer .footer-wrapper {
  padding: 60px 0px 40px 0px;
  display: flex;
  gap: 20px;
  justify-content: space-between;
}

#footer .footer-left-side {
  display: flex;
  flex-direction: column;
  max-width: 370px;
  flex-grow: 1;
}

#footer .logo {
  display: flex;
  margin-bottom: 20px;
  max-width: 180px;
  width: auto;
}

#footer .logo img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

#footer .phones-holder {
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
  gap: 5px;
}

#footer .footer-phone {
  font-weight: 600;
  font-size: 28px;
  line-height: 125%;
}

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

#footer .footer-menu-holder {
  display: flex;
  gap: 100px;
}

#footer .menu-item {
  display: flex;
  flex-direction: column;
}

#footer .menu-title {
  font-weight: 600;
  font-size: 16px;
  line-height: 125%;
  margin-bottom: 15px;
  width: fit-content;
}

#footer .nav-menu-element a {
  font-weight: 600;
  font-size: 16px;
  line-height: 125%;
}

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

#footer .foot-menu-nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

#footer .menu-item.second .foot-menu-nav {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px 30px;
}

#footer .menu-item.second .foot-menu-nav a {
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
  letter-spacing: 0.02em;
  color: var(--main-text-secondary);
}

#footer .menu-item.second .foot-menu-nav a:hover {
  color: var(--hover);
}

#footer .footer-info {
  display: flex;
  align-items: flex-end;
  flex-direction: column;
}

#footer .reqs p {
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
  letter-spacing: 0.02em;
  text-align: right;
  color: var(--main-text-primary);
  pointer-events: none;
}

#footer .reqs {
  margin-top: 30px;
}

#footer .footer-default {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  align-items: center;
  padding: 15px 0px 20px 0px;
  border-top: 1px solid var(--stroke);
}

#footer .privacy-holder {
  font-weight: 400;
  font-size: 14px;
  line-height: 140%;
  letter-spacing: 0.02em;
  text-decoration: underline;
  text-decoration-skip-ink: none;
  color: var(--main-text-secondary);
}

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

#footer .rights {
  font-weight: 400;
  font-size: 14px;
  line-height: 140%;
  letter-spacing: 0.02em;
  text-align: right;
  color: var(--main-text-secondary);
}

.example-holder a {
  display: flex;
  gap: 20px;
  align-items: center;
  font-weight: 400;
  font-size: 14px;
  line-height: 140%;
  letter-spacing: 0.02em;
  text-align: center;
}

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

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

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

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

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

  50% {
    transform: translateX(0);
  }

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

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






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

.theme-modal .title {
  font-weight: 600;
  font-size: 24px;
  line-height: 125%;
  margin-bottom: 10px;
}

.theme-modal .subtitle {
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
  letter-spacing: 0.02em;
  color: var(--main-text-primary);
  margin-bottom: 40px;
}

#modal-success.theme-modal .subtitle {
  margin-bottom: unset;
}

.fancybox__content>.f-button.is-close-btn {
  top: 20px !important;
  right: 20px !important;
  --f-button-width: 20px !important;
  --f-button-height: 20px !important;
  --f-button-border-radius: unset !important;
  --f-button-color: unset !important;
  --f-button-hover-color: unset !important;
  --f-button-bg: transparent !important;
  --f-button-hover-bg: transparent !important;
  --f-button-active-bg: transparent !important;
  --f-button-svg-width: 100% !important;
  --f-button-svg-height: 100% !important;
  opacity: 1 !important;
  outline: none !important;
}

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

.fancybox__content>.f-button.is-close-btn:hover {
  border: unset !important;
  outline: none !important;
}

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

.theme-modal.fancybox__content {
  width: 870px;
  display: flex;
  flex-direction: column;
  padding: 60px;
  background: var(--background);
  border-radius: 10px;
  position: relative;
}

.theme-modal.fancybox__content .f-button.is-close-btn svg path {
  transition: stroke .3s ease-in;
}

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

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

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

#modal-callback.theme-modal .form-top {
  flex-direction: row;
}

.form-bot {
  margin-top: 20px;
}

button {
  border: unset;
}

.form input,
.form select {
  border: unset;
  padding: 18px 30px;
  transition: 0.3s;
  outline: none;
  cursor: pointer;
  width: 100%;
  background: var(--background);
  border: 1px solid var(--stroke);
  border-radius: 10px;
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
  letter-spacing: 0.02em;
  color: var(--main-text-secondary);
  /* min-width: fit-content; */
}

.form select {
  appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 15px center;
  background-size: 1em;
  max-width: 100%;
}


.form textarea {
  height: 200px;
  width: 100%;
  border: unset;
  outline: none;
  border-radius: 10px;
  background: var(--background);
  border: 1px solid var(--stroke);
  padding: 18px 30px;
  cursor: pointer;
  transition: 0.3s;
  resize: none;
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
  letter-spacing: 0.02em;
  color: var(--main-text-secondary);
  min-width: fit-content;
}



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

.form input::placeholder,
.form textarea::placeholder {
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
  letter-spacing: 0.02em;
  color: var(--main-text-secondary);
  transition: 0.3s;
}

.select-container {
  margin-top: 15px;
}

button {
  outline: none;
}


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

@media(max-width: 768px) {
	.mainbanner-block .wrapper {
        min-height: stretch !important;
    }
  #modal-callback.theme-modal .form-top {
    flex-direction: column;
  }

  .policy-checkbox label {
    font-size: 14px;
  }

  .policy-checkbox label a {
    font-size: 14px;
  }
}

.form .privacy-policy {
  width: 100%;
  font-weight: 400;
  font-size: 14px;
  line-height: 140%;
  letter-spacing: 0.02em;
  color: var(--main-text-primary);
  margin-top: 10px;
  display: block;
}


.form .privacy-policy a {
  text-decoration: underline;
  text-decoration-skip-ink: none;
  color: var(--primary);
}

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

#file {
  display: none;
}

.form-input.file {
  background: var(--stroke);
  border-radius: 10px;
  padding: 20px 35px;
  display: block;
  cursor: pointer;
}

.file-wrapper p {
  font-weight: 400;
  font-size: 14px;
  line-height: 140%;
  letter-spacing: 0.02em;
  color: var(--main-text-secondary);
  margin-top: 5px;
}

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

.file span {
  font-weight: 600;
  font-size: 16px;
  line-height: 125%;
  color: var(--main-text-secondary);
  position: relative;
  display: block;
  transition: 0.3s;
  cursor: pointer;
  text-align: center;
}

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

.fancybox__container {
  --fancybox-bg: rgba(0, 0, 0, 0.7) !important;
}

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







/* ============== Pages Start ============= */
.error-wrapper {
  display: flex;
  position: relative;
  padding-bottom: 120px;
  padding-top: 30px;
  gap: 30px;
}

.error-wrapper .error-left-side {
  display: flex;
  flex-direction: column;
  width: 50%;
  padding-top: 90px;
}

.error-wrapper .error-subtitle {
  font-weight: 600;
  font-size: 24px;
  line-height: 125%;
  margin-bottom: 15px;
}

.error-wrapper .error-desc {
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
  letter-spacing: 0.02em;
  color: var(--main-text-primary);
  margin-bottom: 30px;
}

.error-wrapper .error-img {
  width: 40%;
  margin-left: auto;
  height: auto;
  overflow: hidden;
  display: flex;
}

.error-wrapper .error-img img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

/* ============== Pages End ============= */










/* ============== Review Start ============= */
#archive-reviews .reviews-holder {
  padding-bottom: 120px;
  display: flex;
  flex-direction: column;
}

#archive-reviews h1.page-title {
  display: flex;
  justify-content: space-between;
  gap: 10px;
}

#archive-reviews .reviews {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.review-item-template {
  /* min-height: 450px; */
  background: var(--background-secondary);
  border-radius: 10px;
  border: 1px solid var(--stroke);
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  width: calc((100% - 90px) / 4);
  max-width: calc((100% - 30px) / 2);
}

.review-item-template.img-item {
  padding: 15px 15px 20px 15px;
}

.review-item-template.img-item .preview-video {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: flex;
}

.review-item-template.img-item .preview-video img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.review-item-template.text-review {
  width: calc((100% - 30px) / 2);
  padding: 30px 40px;
}

.review-item-template .review-top {
  display: flex;
  justify-content: space-between;
  gap: 5px;
  margin-bottom: 15px;
  align-items: center;
}

.review-item-template .review-name {
  font-weight: 600;
  font-size: 20px;
  line-height: 125%;
}

.review-item-template .review-date {
  font-weight: 400;
  font-size: 14px;
  line-height: 140%;
  letter-spacing: 0.02em;
  text-align: right;
  color: var(--main-text-secondary);
}

.text-all {
  font-weight: 600;
  font-size: 16px;
  line-height: 125%;
  color: var(--primary);
  width: fit-content;
  cursor: pointer;
  transition: 0.5s;
}

.text-all:hover {
  color: var(--hover);
}

.review-item-template .review-gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.review-item-template .gal-img {
  width: calc((100% - 40px) / 5);
  height: 120px;
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
  transition: 0.5s;
  position: relative;
}

.review-item-template .gal-img:before {
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  position: absolute;
  background-color: rgba(0, 0, 0, 0.5);
  background-image: url(../images/loop.png);
  background-position: center;
  background-repeat: no-repeat;
  transition: 0.5s;
  opacity: 0;
  pointer-events: none;
  z-index: 1;
}

.review-item-template .gal-img:hover:before {
  opacity: 1;
}

.review-item-template .gal-img img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: 0.5s;
}

.review-item-template .gal-img:hover img {
  transform: scale(1.05);
}

.review-item-template.img-item .review-info {
  display: flex;
  gap: 5px;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
}

.review-item-template .review-img {
  width: 100%;
  height: auto;
  max-height: 370px;
  border: 1px solid var(--stroke);
  border-radius: 10px;
  display: flex;
  cursor: zoom-in;
  margin-bottom: 20px;
}

.review-item-template .review-img img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.review-item-template .video-holder {
  height: auto;
  flex-grow: 1;
  display: flex;
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--stroke);
  margin-bottom: 20px;
}

.review-item-template .media-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.review-item-template #play-pause-button {
  top: 50%;
  left: 50%;
  position: absolute;
  background: var(--background);
  width: 50px;
  height: 50px;
  cursor: pointer;
  transition: 0.5s;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translate(-50%, -50%);
}

.review-item-template #play-pause-button svg {
  margin-left: 2px;
}

.review-item-template #play-pause-button path {
  transition: 0.5s;
}

.review-item-template #play-pause-button:hover path {
  fill: var(--hover);
}

/* ============== Review End ============= */







/* ============== Works Start ============= */
#archive-works .works-holder {
  padding-bottom: 120px;
}

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

.works-item-template {
  border-radius: 10px;
  overflow: hidden;
  height: auto;
  display: flex;
  max-height: 360px;
  position: relative;
  cursor: pointer;
}

.works-item-template:before {
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  position: absolute;
  background-color: rgba(0, 0, 0, 0.5);
  background-image: url(../images/loopBig.png);
  background-repeat: no-repeat;
  background-position: center;
  transition: 0.5s;
  z-index: 1;
  opacity: 0;
}

.works-item-template:hover:before {
  opacity: 1;
}

.works-item-template img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  transition: 0.5s;
}

.works-item-template:hover img {
  transform: scale(1.05);
}

/* ============== Works End ============= */













/* ============== Services Start ============= */
.cat-item-template {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.cat-item-template .cat-img {
  width: 100%;
  height: auto;
  max-height: 350px;
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  position: relative;
}

.cat-item-template .cat-img img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  transition: 0.5s;
  aspect-ratio: 1/1;
}

.cat-item-template:hover .cat-img img {
  transform: scale(1.05);
}

.cat-item-template .cat-info {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  margin-top: 15px;
}

.cat-item-template .cat-name {
  font-weight: 600;
  font-size: 20px;
  line-height: 125%;
}

.cat-item-template .cat-price {
  font-weight: 600;
  font-size: 16px;
  line-height: 125%;
  text-align: right;
  min-width: fit-content;
}

.cat-item-template .cat-icon {
  position: absolute;
  bottom: 10px;
  right: 10px;
  border-radius: 40px;
  width: 40px;
  height: 40px;
  transition: 0.5s;
  backdrop-filter: blur(30px);
  background: rgba(112, 112, 112, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
}

.cat-item-template:hover .cat-icon {
  background: var(--hover);
}

.cat-item-template .cat-icon svg {
  transition: 0.5s;
}

.cat-item-template:hover .cat-icon svg {
  transform: rotate(45deg);
}

#archive-services .cats-holder {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  padding-bottom: 60px;
}

.category-page .banner-wrapper {
  display: flex;
  gap: 30px;
  background: var(--background-secondary);
  border: 1px solid var(--stroke);
  border-radius: 10px;
  min-height: 530px;
  padding: 50px;
  margin-bottom: 60px;
  justify-content: space-between;
}

.category-page .banner-left-side {
  display: flex;
  flex-direction: column;
  width: 49%;
}

.category-page .banner-left-side .btn {
  margin-top: auto;
}

.category-page .banner-img {
  width: 40%;
  display: flex;
  height: auto;
  max-height: 480px;
  border-radius: 10px;
  overflow: hidden;
}

.category-page .banner-img img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.category-page h1.page-title {
  margin-bottom: 20px;
}

.service-item-template {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.posts-holder {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  padding-bottom: 60px;
}

.service-item-template .service-img {
  width: 100%;
  height: auto;
  max-height: 350px;
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  position: relative;
}

.service-item-template .service-img img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  transition: 0.5s;
  aspect-ratio: 1/1;
}

.service-item-template:hover .service-img img {
  transform: scale(1.05);
}

.service-item-template .service-info {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  margin-top: 15px;
}

.service-item-template .service-name {
  font-weight: 600;
  font-size: 20px;
  line-height: 125%;
}

.service-item-template .service-price {
  font-weight: 600;
  font-size: 16px;
  line-height: 125%;
  text-align: right;
  min-width: fit-content;
}

.service-item-template .service-icon {
  position: absolute;
  bottom: 10px;
  right: 10px;
  border-radius: 40px;
  width: 40px;
  height: 40px;
  transition: 0.5s;
  backdrop-filter: blur(30px);
  background: rgba(112, 112, 112, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-item-template:hover .service-icon {
  background: var(--hover);
}

.service-item-template .service-icon svg {
  transition: 0.5s;
}

.service-item-template:hover .service-icon svg {
  transform: rotate(45deg);
}

.seo-block {
  display: flex;
  gap: 30px;
}

.seo-block .seo-right-side {
  display: flex;
  flex-direction: column;
  width: 50%;
  padding: 40px 50px;
  border: 1px solid var(--stroke);
  border-radius: 10px;
  background: var(--background-secondary);
  height: 460px;
}

.seo-block .seo-title {
  font-weight: 600;
  font-size: 36px;
  line-height: 125%;
  margin-bottom: 20px;
}

.seo-block .seo-text {
  padding-right: 18px;
  height: 315px;
  overflow: auto;
}

.seo-block .seo-img {
  width: 50%;
  height: 460px;
  border-radius: 10px;
  overflow: hidden;
}

.seo-block .seo-img img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

/* ============== Services End ============= */










/* ============== Partner Start ============= */
.single-page .banner-wrapper {
  display: flex;
  gap: 30px;
  background: var(--background-secondary);
  border: 1px solid var(--stroke);
  border-radius: 10px;
  min-height: 530px;
  padding: 50px;
  margin-bottom: 60px;
  justify-content: space-between;
}

.single-page .banner-left-side {
  display: flex;
  flex-direction: column;
  width: 49%;
}

.single-page .banner-left-side .btn {
  margin-top: auto;
}

.single-page .banner-img {
  width: 40%;
  display: flex;
  height: auto;
  max-height: 480px;
  border-radius: 10px;
  overflow: hidden;
}

.single-page.partner .banner-img {
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
}

.single-page .banner-img img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.single-page.partner .banner-img {
  background: var(--background);
}

.single-page.partner .banner-img img {
  width: auto;
  height: auto;
  margin: auto;
  max-width: 100%;
  max-height: 100%;
}

.single-page h1.page-title {
  margin-bottom: 20px;
}

/* ============== Partner End ============= */













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

  #header .nav-menu-element a {
    padding: 10px;
  }

  #header .socs-desc {
    display: none;
  }

  .soc {
    width: 40px;
    height: 40px;
  }

  #header .phone-value {
    font-size: 14px;
  }

  .btn {
    padding: 15px 20px;
  }

  #archive-reviews .reviews {
    gap: 10px;
  }

  .review-item-template {
    width: calc((100% - 30px) / 4);
    max-width: calc((100% - 10px) / 2);
    ;
  }

  .review-item-template.text-review {
    width: calc((100% - 10px) / 2);
  }

  .review-item-template.text-review {
    padding: 15px;
  }
}

@media (max-width: 1400px) {
  #footer .footer-phone {
    font-size: 20px;
  }

  h1.page-title {
    font-size: 42px;
  }

  .review-item-template.text-review {
    padding: 15px;
  }

  .review-item-template .review-gallery {
    margin-top: 10px;
  }

  .review-item-template .review-name {
    font-size: 16px;
  }

  .review-item-template .review-date {
    font-size: 12px;
  }

  #archive-works .works {
    gap: 10px;
  }
}

@media (max-width: 1200px) {
  #footer .footer-wrapper {
    padding: 20px 0px;
    flex-wrap: wrap;
  }

  #header .header-top {
    gap: 20px;
  }

  #header .info-item {
    gap: 5px;
  }

  #header .info-value,
  #header .info-value p {
    font-size: 12px;
  }

  #header .socs {
    display: none;
  }

  .btn {
    padding: 10px 15px;
    font-size: 14px;
  }

  #header .nav-menu-element a {
    font-size: 14px;
    padding: 5px;
    border-radius: 5px;
  }

  #header .nav-menu-element.has-childs>a {
    padding-right: 20px;
  }

  #header .nav-menu-element.has-childs>a::before {
    width: 10px;
    right: 6px;
    top: 11px;
  }

  .error-wrapper {
    padding-bottom: 120px;
  }

  h1.page-title {
    font-size: 36px;
    margin-bottom: 30px;
  }

  .nav-holder .swiper-button-prev,
  .nav-holder .swiper-button-next {
    width: 48px;
    height: 48px;
    min-width: 48px;
  }

  .review-item-template .gal-img {
    height: 80px;
  }

  .review-item-template .video-holder,
  .review-item-template .review-img {
    max-height: 350px;
    flex-grow: 1;
  }

  .review-item-template {
    width: 100%;
    max-width: unset;
    min-height: unset;
  }

  .review-item-template.text-review {
    width: 100%;
    min-height: unset;
    grid-column: 1 / span 2;
  }

  .review-item-template .gal-img {
    width: calc((100% - 70px) / 8);
  }

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

  #archive-reviews .reviews-holder,
  #archive-works .works-holder {
    padding-bottom: 80px;
  }

  .prev.page-numbers,
  .next.page-numbers {
    width: 48px;
    height: 48px;
  }

  .page-numbers {
    font-size: 16px;
    padding: 3px 5px;
  }

  .main-title {
    margin-bottom: 30px;
    font-size: 38px;
  }

  .block-container {
    padding: 40px 0px;
  }

  .cat-item-template .cat-name {
    font-size: 16px;
  }

  .service-item-template .service-name {
    font-size: 16px;
  }

  #archive-services .cats-holder,
  .posts-holder {
    padding-bottom: 40px;
  }

  .category-page .banner-wrapper,
  .single-page .banner-wrapper {
    padding: 15px;
    gap: 20px;
    margin-bottom: 40px;
    min-height: 450px;
  }

  .category-page .banner-img,
  .single-page .banner-img {
    width: 48%;
  }

  .seo-block .seo-right-side {
    padding: 15px;
  }

  .seo-block {
    gap: 10px;
  }

  .seo-block .seo-right-side {
    height: 400px;
  }

  .seo-block .seo-img {
    height: 400px;
  }

  .seo-block .seo-title {
    font-size: 24px;
    margin-bottom: 10px;
  }

  .seo-block .seo-text {
    height: 320px;
  }
}

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

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

  #header .phones {
    margin-left: auto;
  }

  #header .header-top {
    display: none;
  }

  #header .header-bot {
    padding-top: unset;
  }

  #header {
    padding: 10px 0px;
  }

  #footer .footer-wrapper {
    flex-direction: column;
  }

  #footer .phones-holder {
    margin-bottom: 10px;
  }

  #footer .footer-phone {
    font-size: 16px;
  }

  #footer .logo {
    margin-bottom: 10px;
  }

  #footer .footer-info {
    align-items: flex-start;
  }

  #footer .reqs p {
    font-size: 14px;
    text-align: left;
  }

  #footer .reqs {
    margin-top: 10px;
  }

  #footer .footer-menu-holder {
    gap: 20px;
  }

  #footer .menu-item.second .foot-menu-nav {
    gap: 10px 20px;
  }

  #footer .menu-title {
    margin-bottom: 10px;
  }

  #footer .footer-menu-holder {
    flex-direction: column;
  }

  #footer .foot-menu-nav {
    flex-direction: row;
    flex-wrap: wrap;
  }

  #footer .menu-item {
    flex-direction: column;
  }

  .error-wrapper .error-left-side {
    padding-top: unset;
  }

  .error-wrapper {
    padding-top: unset;
    padding-bottom: 60px;
  }

  .error-wrapper .error-desc {
    font-size: 14px;
    margin-bottom: 10px;
  }

  .form-bot {
    margin-top: unset;
  }

  .theme-modal .subtitle {
    font-size: 14px;
    margin-bottom: 10px;
  }

  .theme-modal .title {
    font-size: 20px;
    margin-bottom: 5px;
  }

  .form input,
  .form textarea,
  .form select {
    padding: 12px 15px;
    font-size: 14px;
  }

  .form input::placeholder,
  .form textarea::placeholder {
    font-size: 14px;
  }

  .form-top {
    gap: 10px;
  }

  h1.page-title,
  .main-title {
    font-size: 32px;
    margin-bottom: 20px;
  }

  .nav-holder .swiper-button-prev,
  .nav-holder .swiper-button-next {
    width: 38px;
    height: 38px;
    min-width: 38px;
  }

  .text-holder p,
  .text-holder li {
    font-size: 14px;
    line-height: 130%;
  }

  .text-holder {
    gap: 10px;
  }

  #archive-reviews .reviews-holder,
  #archive-works .works-holder {
    padding-bottom: 60px;
  }

  .pagination {
    margin-top: 20px;
  }

  .prev.page-numbers,
  .next.page-numbers {
    width: 38px;
    height: 38px;
  }

  .block-container {
    padding: 30px 0px;
  }

  .nav-holder .nav {
    margin-top: 20px;
  }

  .cat-item-template .cat-icon,
  .service-item-template .service-icon {
    width: 30px;
    height: 30px;
  }

  .cat-item-template .cat-price,
  .service-item-template .service-icon {
    font-size: 14px;
  }

  #archive-services .cats-holder,
  .posts-holder {
    gap: 10px;
    padding-bottom: 30px;
  }

  .category-page h1.page-title,
  .single-page h1.page-title {
    margin-bottom: 10px;
  }

  .category-page .banner-wrapper,
  .single-page .banner-wrapper {
    min-height: 350px;
    margin-bottom: 30px;
  }

  .text-holder ul li {
    padding-left: 15px;
  }

  .text-holder ul li:before {
    top: 7px;
    width: 8px;
    height: 3px;
  }
}

@media (max-width: 768px) {
  #footer .footer-default {
    padding: 10px 0px;
    flex-direction: column;
    gap: 5px;
  }

  #footer .privacy-holder {
    font-size: 12px;
  }

  #footer .dev {
    font-size: 12px;
    gap: 5px;
  }

  #footer .rights {
    font-size: 12px;
  }

  .error-wrapper .error-img {
    width: 50%;
  }

  .form textarea {
    height: 100px;
  }

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

  h1.page-title,
  .main-title {
    font-size: 28px;
  }

  .review-item-template .gal-img {
    width: calc((100% - 60px) / 7);
  }

  #archive-services .cats-holder,
  .posts-holder {
    grid-template-columns: repeat(2, 1fr);
  }

  .category-page .banner-wrapper,
  .single-page .banner-wrapper {
    flex-direction: column;
  }

  .category-page .banner-left-side,
  .single-page .banner-left-side {
    width: 100%;
  }

  .category-page .banner-img,
  .single-page .banner-img {
    width: 100%;
  }

  .seo-block {
    flex-direction: column;
  }

  .seo-block .seo-right-side {
    height: 300px;
    width: 100%;
  }

  .seo-block .seo-text {
    height: 260px;
  }

  .seo-block .seo-img {
    height: auto;
    max-height: 400px;
    width: 100%;
  }

  .banner-desc.text-holder {
    margin-bottom: 10px;
  }
}

@media (max-width: 600px) {
  #footer .menu-item.second .foot-menu-nav {
    height: fit-content;
    gap: 5px;
  }

  #footer .nav-menu-element a {
    font-size: 14px;
  }

  #footer .menu-title {
    margin-bottom: 5px;
  }

  #footer .menu-item.second .foot-menu-nav a {
    font-size: 14px;
  }

  #header .container {
    padding: 0px 5px;
  }

  .error-wrapper {
    flex-direction: column;
    gap: 20px;
    align-items: center;
  }

  .error-wrapper .error-left-side {
    width: 100%;
  }

  .error-wrapper .error-img {
    width: 60%;
    margin-right: auto;
  }

  .breadcrumbs {
    padding: 10px 0px;
    font-size: 12px;
  }

  .theme-modal.fancybox__content {
    padding: 40px 15px 15px 15px;
  }

  h1.page-title,
  .main-title {
    font-size: 24px;
  }

  .review-item-template .video-holder,
  .review-item-template .review-img {
    margin-bottom: 10px;
  }

  .review-item-template #play-pause-button {
    width: 40px;
    height: 40px;
  }

  .review-item-template .gal-img {
    width: calc((100% - 50px) / 6);
  }

  .pagination {
    width: 100%;
    max-width: unset;
  }

  .next.page-numbers {
    margin-left: auto;
  }

  .prev.page-numbers {
    margin-right: auto;
  }
}

@media (max-width: 498px) {
  /* #header .header-bot {
    flex-wrap: wrap;
    gap: 5px;
  }

  #header .header-bot .logo {
    max-width: unset;
    width: fit-content;
    order: 1;
    margin-right: auto;
  }

  #header .header-bot .burger.open_menu {
    order: 2;
    margin-left: 60px;
  }

  #header .header-bot .phones {
    width: 45%;
    order: 3;
    margin-left: unset;
    gap: 0px;
  }

  #header .header-bot .btn {
    order: 4;
    width: fit-content;
    min-width: 150px;
  } */

  .btn {
    padding: 7px 10px;
  }

  #footer .menu-item.second .foot-menu-nav {
    display: flex;
    flex-direction: column;
  }

  .form .privacy-policy {
    font-size: 12px;
    text-align: center;
  }

  .file-wrapper p {
    font-size: 12px;
  }

  .nav-holder .swiper-pagination-bullet {
    width: 15px;
  }

  .review-item-template .gal-img {
    width: calc((100% - 30px) / 4);
  }

  .review-item-template.img-item {
    padding: 5px;
  }

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

  .cat-item-template .cat-info,
  .service-item-template .service-info {
    flex-direction: column;
    gap: 5px;
    align-items: flex-start;
    margin-top: 5px;
  }
}

@media (max-width: 400px) {
  .error-wrapper .error-img {
    width: 100%;
  }

  #modal-callback.theme-modal .form-top {
    flex-direction: column;
  }

  #archive-reviews .reviews {
    display: flex;
    flex-direction: column;
  }

  .review-item-template .gal-img {
    width: calc((100% - 20px) / 3);
  }
}

@media (max-width: 370px) {

  #archive-services .cats-holder,
  .posts-holder {
    display: flex;
    flex-direction: column;
  }
}

.grampus-cookie-notice {
  display: none;
  position: sticky;
  bottom: 0;
  margin: 0 auto;
  width: 80%;
  height: fit-content;
  padding: 10px 0;
  z-index: 2000;
  background-color: var(--cookie-bg, #fff);
  padding: 30px;
  border-radius: 20px;
}

.cookie-notice-container {
  flex-direction: row;
}

.grampus-cookie-notice p {
  text-align: center;
}

.grampus-cookie-accept-button {
  background-color: var(--primary);
  border: 1px solid var(--primary);
  border-radius: 10px;
}

@media (max-width: 600px) {
  .grampus-cookie-accept-button {
    width: 100%;
  }

  .cookie-notice-container {
    flex-direction: column;
  }

  #footer .logo img {
    max-width: 120px;
  }
}


.policy-checkbox input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;

  border: 1px solid #ccc;
  border-radius: 2px;
  outline: none;
  cursor: pointer;
  position: relative;
  vertical-align: middle;
  border: 1px solid #000000;
  padding: 0;
}

/* Стиль для отмеченного чекбокса */
.policy-checkbox input[type="checkbox"]:checked {
  background-color: #007bff;
  border-color: #007bff;
}

/* Галочка внутри чекбокса */
.policy-checkbox input[type="checkbox"]:checked::after {
  content: "✓";
  position: absolute;
  color: white;
  font-size: 12px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* Стиль для ошибки (только чекбокс) */
.policy-checkbox input[type="checkbox"].error {
  border-color: red;
  box-shadow: 0 0 0 2px rgba(255, 0, 0, 0.2);
}

.policy-checkbox {
  width: 100%;
  display: flex;
  flex-direction: row;
  gap: 15px;
  padding-top: 20px;
  align-items: center;
}

#consent-checkbox {
  width: 20px !important;
  height: 20px !important;
  border: 1px solid #000000 !important;
}

.policy-checkbox label {
  width: 90% !important;
}

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

@media(max-width: 500px) {
  #header .btn.second {
    display: none;
  }
}

@media(max-width: 480px) {
  .btn {
    width: 100% !important;
  }

  .controls {
    flex-direction: column;
  }
}

#header #menu-glavnoe-menyu .nav-menu-element.has-childs:first-child>a:first-child {
  border: solid 1px var(--primary);
  /* padding: 8px; */
}

/* Основные стили слайдера */
.banner-slider-container {
    position: relative;
    width: 100%;
    overflow: hidden !important;
}

.banner-slider {
    display: flex;
    height: 100%;
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    touch-action: pan-y;
    will-change: transform;
}

.banner-slider .wrapper {
    min-width: 100%;
    flex-shrink: 0 !important;
    margin: 0 !important;
    height: 100%;
	width: 100%;
    display: flex;
    align-items: center;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
}


/* Мобильные стили */
@media (max-width: 768px) {
    .banner-slider-container {
        height: auto;
    }
    
    .banner-slider .wrapper {
        min-height: 500px;
        padding: 40px 20px;
        box-sizing: border-box;
        justify-content: space-between;
    }
    
    .banner-slider .wrapper .left-side {
       /* max-width: 55%;*/
        padding-right: 0;
    }
    
    .banner-slider .wrapper .banner-img {
        position: absolute;
        right: 20px;
        top: 50%;
        transform: translateY(-50%);
        max-width: 40%;
        height: auto;
    }
    
    .banner-slider .wrapper .banner-img img {
        width: 100%;
        height: auto;
        object-fit: contain;
    }
    
    /* Шрифты и размеры */
    .main-title {
        font-size: 28px !important;
        line-height: 1.2 !important;
        margin-bottom: 15px;
    }
    
    .mb-text {
        font-size: 16px;
        margin-bottom: 20px;
        line-height: 1.4;
    }
    
    .banner-list {
        margin-bottom: 25px;
    }
    
    .banner-list .list-el {
        font-size: 16px;
        margin-bottom: 8px;
        line-height: 1.3;
    }
    
    .btn-holder {
        display: flex;
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
    }
    
    .btn {
        padding: 15px 25px;
        font-size: 16px;
        min-width: 220px;
    }
    
    .stock-holder {
        display: flex;
        align-items: center;
        gap: 10px;
        font-size: 14px;
        font-weight: 600;
    }
    
    .stock-icon img {
        width: 24px;
        height: 24px;
        flex-shrink: 0;
    }
}

/* Маленькие экраны */
@media (max-width: 480px) {
    /*.banner-slider-container {
        height: 450px;
    }*/
    
    .banner-slider .wrapper {
        padding: 30px 15px;
        min-height: 450px;
    }
    
    /*.banner-slider .wrapper .left-side {
        max-width: 60%;
    }*/
    
    .banner-slider .wrapper .banner-img {
        right: 10px;
        max-width: 35%;
    }
    
    .main-title {
        font-size: 24px !important;
        margin-bottom: 12px;
    }
    
    .mb-text {
        font-size: 15px;
        margin-bottom: 18px;
    }
    
    .banner-list .list-el {
        font-size: 15px;
    }
    
    .btn {
        padding: 14px 20px;
        font-size: 15px;
        min-width: 200px;
    }
    
    .stock-holder {
        font-size: 13px;
    }
}

/* Супер маленькие экраны */
@media (max-width: 360px) {
    /*.banner-slider-container {
        height: 420px;
    }*/
    
    .banner-slider .wrapper {
        padding: 25px 12px;
    }
    
    .main-title {
        font-size: 22px !important;
    }
    
    .banner-slider .wrapper .banner-img {
        right: 8px;
        max-width: 32%;
    }
}

/* Улучшения для всех экранов */
.banner-slider .wrapper .left-side {
    z-index: 2;
    position: relative;
}

.banner-slider .wrapper .banner-img {
    z-index: 1;
}

.stock-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.banner-slider-container {
    width: 100vw; /* Полная ширина viewport */
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    overflow: hidden;
}

.banner-slider {
    display: flex;
    width: 100%; /* Или calc(100% * [кол-во слайдов]) */
    height: 100%; /* Фиксированная высота или aspect-ratio */
    transition: transform 0.4s ease;
}

.wrapper, .wrapper-mobile {
    flex: 0 0 100%; /* Критично: не сжимается, ровно 100% */
    /*width: 100vw;*/
    min-height: 400px; /* Или ваша высота */
    position: relative;
    display: flex;
    background-size: cover !important;
    background-position: center;
}

@media (max-width: 768px) {
    .wrapper { display: none !important; }
    .wrapper-mobile { display: flex !important; }
}

.mainbanner-block .add-wrapper {
	margin-top: 35px !important;
}

.mainbanner-block .wrapper {
	object-fit: contain !important;
}

.mainbanner-block .wrapper:before {
	display: none;
}

.banner-slider-container {
	padding-top: 20px;
}

.mainbanner-block .wrapper {
	padding-top: 20px;
}

@media(min-width: 768px) {
	.wrapper-mobile {
		display: none;
	}
}

@media(max-width: 767px) {
	.mainbanner-block .wrapper {
		display: none !important;
	}
	.wrapper-mobile {
		display: block;
	}
}

/*для мобильного баннера*/

@media (max-width: 996px) {
    .mainbanner-block .list-el {
        font-size: 10px !important;
    }
	
	.mainbanner-block .banner-list {
		gap: 0px !important;
	}
	
	.mainbanner-block .mb-text {
        font-size: 12px !important;
    }
	.main-title {
        font-size: 18px !important;
    }
	.wrapper, .wrapper-mobile {
		min-height: 885px !important; 
	}
	.banner-list .list-el {
		margin-bottom: 5px !important;
	}
}