/*============= 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,
.block-text-holder::-webkit-scrollbar {
  width: 3px;
  border: 1px solid var(--background);
	background: var(--stroke);
}
.seo-text:has(.text-holder)::-webkit-scrollbar-thumb,
.block-text-holder::-webkit-scrollbar-thumb {
  background-color: var(--primary-hover);
	border-radius: 100px;
}
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: 18px;
  line-height: 130%;
  list-style-type: none;
}
ol li {
  list-style-position: inside;
  font-size: 18px;
  line-height: 130%;
}
p {
  font-size: 18px;
  line-height: 130%;
}
h1.page-title {
  font-weight: 600;
  font-size: 64px;
  line-height: 110%;
  margin-bottom: 30px;
}
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;
  font-weight: 500;
  font-size: 18px;
  line-height: 100%;
  color: var(--main-text-primary);
  display: flex;
  flex-wrap: wrap;
}
.breadcrumbs span {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  color: var(--gray);
  transition: 0.3s;
  position: relative;
  white-space: nowrap;
  display: block;
  width: fit-content;
}
.breadcrumbs span a {
  position: relative;
  display: block;
  margin-right: 38px;
}
.breadcrumbs span a:before {
  content: "";
  width: 5px;
  height: 1px;
  background: var(--main-text-secondary);
  position: absolute;
  top: 50%;
  right: -25px;
  transform: translate(-50%,-50%);
}
.breadcrumbs span:last-child a:before {
  display: none;
}
.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;
}
.breadcrumbs .current-item span:before {
  display: none;
}
.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: 100px;
  padding: 20px 30px;
  outline: none;
  font-weight: 600;
  font-size: 18px;
  line-height: 100%;
  color: var(--head-primary);
  background: var(--primary);
  border: 1px solid var(--primary);
  cursor: pointer;
  overflow: hidden;
  transition: 0.5s;
}
.btn.second {
  background: transparent;
  border: 1px solid var(--background-fifthly);
  color: var(--head-primary);
}
.btn:hover {
  background: transparent;
  border-color: var(--background-fifthly);
  color: var(--head-primary);
}
.btn.second:hover {
  background: var(--primary);
  border-color: var(--primary);
}
#main,
#primary {
  min-height: 64vh;
}
.main-title {
  font-family: var(--second-family);
  font-weight: 400;
  font-size: 48px;
  line-height: 110%;
  margin-bottom: 40px;
}
.text-holder {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.text-holder p,
.text-holder li {
  font-weight: 400;
  font-size: 18px;
  line-height: 130%;
  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: 20px;
  line-height: 125%;
}
.text-holder ul li {
  padding-left: 20px;
  position: relative;
}
.text-holder ul li:before {
  content: "";
  width: 7px;
  height: 7px;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 50%;
  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-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: 30px;
}
.nav-holder {
  position: relative;
}
.nav-holder .nav {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 30px;
  max-width: 230px;
  margin-left: auto;
}
.nav-wrapper .nav {
  margin-top: unset;
}
.nav-holder .nav-btns {
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav-holder .swiper-button-prev {
  margin-right: auto;
}
.nav-holder .swiper-button-next {
  margin-left: auto;
}
.nav-holder .swiper-button-prev,
.nav-holder .swiper-button-next {
  border: 1px solid var(--background-fifthly);
  border-radius: 100%;
  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(--primary);
  border-color: var(--primary);
}
.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 {
  fill: var(--head-primary);
}
.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: 8px;
  top: unset !important;
  flex-wrap: wrap;
  justify-content: center;
  width: calc(100% - 130px) !important;
  min-width: 100px;
}
.nav-holder .swiper-pagination-bullet {
  width: 5px;
  height: 5px;
  border-radius: 100px;
  transition: 0.3s;
  background: var(--background-fifthly);
  opacity: 1;
  margin: unset !important;
}
.nav-holder .swiper-pagination-bullet-active {
  background: var(--primary);
  width: 20px;
}
.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: 29px;
  width: 58px;
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--head-primary);
}
.soc img,
.soc svg {
  width: auto;
  height: auto;
  display: block;
  object-fit: contain;
  max-width: 70%;
  max-height: 70%;
  transition: 0.5s;
}
.soc:hover {
  background: var(--primary);
}
.soc:hover img,
.soc:hover svg {
  filter: brightness(0) invert(1);
}
.pagination {
  max-width: 405px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 30px;
  display: flex;
  justify-content: space-between;
  gap: 30px;
  align-items: center;
  width: 100%;
}
.prev.page-numbers {
  margin-right: auto;
}
.next.page-numbers {
  margin-left: auto;
}
.page-numbers {
  font-weight: 600;
  font-size: 18px;
  line-height: 110%;
  color: var(--background-thirdly);
}
.page-numbers:hover {
  color: var(--primary);
}
.page-numbers.current {
  color: var(--head-primary);
}
.prev.page-numbers,
.next.page-numbers {
  width: 56px;
  height: 56px;
  border-radius: 100%;
  background: transparent;
  transition: 0.5s;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--head-primary);
}
.prev.page-numbers:hover,
.next.page-numbers:hover {
  background: var(--primary);
  border-color: var(--primary);
}
.prev.page-numbers path,
.next.page-numbers path {
  transition: 0.5s;
}
span.prev.page-numbers,
span.next.page-numbers {
  cursor: unset;
  background: transparent;
  pointer-events: none;
}
span.prev.page-numbers path,
span.next.page-numbers path {
  stroke: var(--head-primary);
}
.block-container {
  padding: 60px 0px;
}





/*============ HEADER =================*/
#header {
  position: sticky;
  top: 0px;
  max-width: 1531px;
  margin: 0 auto;
  background: var(--background-fourthly);
  border-radius: 30px;
  z-index: 123;
  padding: 15px 0px;
}
#header .header-top {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: space-between;
  border-bottom: 1px solid var(--background-thirdly);
  padding-bottom: 15px;
}
#header .site-title {
  padding: 10px 25px;
  border: 1px solid var(--background-thirdly);
  font-weight: 600;
  font-size: 18px;
  line-height: 110%;
  text-align: center;
  max-width: 200px;
  border-radius: 100px;
}
#header .infos {
  display: flex;
  align-items: center;
  gap: 40px;
}
#header .time-wrapper,
#header .header-phone-item {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
#header .time-title,
#header .header-phone-name {
  font-weight: 400;
  font-size: 16px;
  line-height: 130%;
  color: var(--main-text-secondary);
}
#header .time,
#header .phone-value {
  font-weight: 500;
  font-size: 18px;
  line-height: 100%;
}
#header a.phone-value:hover {
  color: var(--primary);
}
#header .search {
  display: flex;
  gap: 15px;
  align-items: center;
  border-radius: 100px;
  border: 1px solid var(--background-fifthly);
  padding: 19px 30px;
}
#header .search button {
  background: transparent;
  border: unset;
  cursor: pointer;
}
#header .search path {
  transition: 0.5s;
}
#header .search button:hover path {
  stroke: var(--primary);
}
#header .search input {
  font-weight: 400;
  font-size: 16px;
  line-height: 130%;
  color: var(--main-text-secondary);
  width: fit-content;
  max-width: 120px;
  background: transparent;
  border: unset;
  outline: none;
  cursor: pointer;
}
#header .search input::placeholder {
  font-weight: 400;
  font-size: 16px;
  line-height: 130%;
  color: var(--main-text-secondary);
}
#header .header-menu {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 15px;
}
#header .nav-menu-element a {
  font-weight: 500;
  font-size: 18px;
  line-height: 100%;
  color: var(--main-text-primary);
}
#header .nav-menu-element a:hover {
  color: var(--primary);
}
#header .nav-menu-element.has-childs {
  margin-right: 15px;
  position: relative;
  cursor: pointer;
}
#header .nav-menu-element.has-childs>a {
  position: relative;
}
#header .nav-menu-element.has-childs>a::before {
  content: "";
  width: 13px;
  height: 8px;
  position: absolute;
  right: -20px;
  top: 8px;
  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: 810px;
  padding: 30px;
  left: -45px;
  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: 30px;
  background: var(--background-fourthly);
  align-items: flex-start;
}
#header .nav-menu-element.has-childs:last-child .sub-menu {
  max-width: 300px;
} 
#header .header-menu .nav-menu-element:nth-child(4) .sub-menu {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 10px 30px;
}
#header .header-menu>.nav-menu-element.has-childs:hover .sub-menu {
  opacity: 1;
  visibility: visible;
  z-index: 100;
}
#header .header-menu .sub-menu .nav-menu-element {
  width: 100%;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--background-thirdly);
}
#header .header-menu .sub-menu .nav-menu-element:last-child,
#header .header-menu .nav-menu-element:nth-child(4) .sub-menu .nav-menu-element:has(+.nav-menu-element:last-child) {
  border-bottom: unset;
  padding-bottom: unset;
}

/*================ 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-fourthly);
  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 #close-mnu path {
  fill: var(--head-primary);
}
#header #mobile-mnu a {
  font-size: 16px;
  line-height: 130%;
  font-weight: 450;
}
#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: 10px;
}
#header #mobile-mnu .menuTop li a {
  font-size: 16px;
  line-height: 130%;
  font-weight: 600;
  color: var(--head-primary);
  position: relative;
  width: fit-content;
}
#header #mobile-mnu .menuTop li a:hover {
  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: 130%;
  font-weight: 450;
  color: var(--head-primary);
}
#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;
  color: var(--head-primary);
}
#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;
  color: var(--head-primary);
}
#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 {
  padding-left: 10px;
  position: relative;
  font-weight: 400;
  font-size: 13px;
}
#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: 10px;
}
#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(--head-primary);
  font-weight: 600;
}
/*================ MOBILE MNU End =============*/






/*============ FOOTER Start ===============*/
#footer {
  background: var(--background-fourthly);
  padding: 30px 15px;
  border-radius: 30px;
  max-width: 1530px;
  margin-left: auto;
  margin-right: auto;
}
#footer .footer-top {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 30px;
  border-bottom: 1px solid var(--background-thirdly);
}
#footer .footer-left-side {
  display: flex;
  flex-direction: column;
  gap: 30px;
  max-width: 345px;
}
#footer .footer-site-title {
  padding: 10px 25px;
  border: 1px solid var(--background-thirdly);
  font-weight: 600;
  font-size: 18px;
  line-height: 110%;
  text-align: center;
  max-width: 200px;
  border-radius: 100px;
}
#footer .footer-phone {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
#footer .footer-phone-name {
  font-weight: 400;
  font-size: 16px;
  line-height: 130%;
  color: var(--main-text-secondary);
}
#footer .phone-value {
  font-weight: 500;
  font-size: 18px;
  line-height: 100%;
  color: var(--main-text-primary);
}
#footer .phone-value:hover {
  color: var(--primary);
}
#footer .footer-menu-holder {
  display: flex;
  gap: 30px;
  width: 730px;
}
#footer .menu-left-side,
#footer .menu-right-side {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
#footer .menu-item {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
#footer .foot-menu-nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
#footer .menu-title {
  font-weight: 400;
  font-size: 16px;
  line-height: 130%;
  color: var(--main-text-secondary);
}
#footer .nav-menu-element a {
  font-weight: 500;
  font-size: 18px;
  line-height: 100%;
  color: var(--main-text-primary);
}
#footer .nav-menu-element a:hover {
  color: var(--primary);
}
#footer .footer-info {
  display: flex;
  flex-direction: column;
  gap: 30px;
  min-width: 345px;
}
#footer .emails-holder,
#footer .soc-holder {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
#footer .values {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
#footer .footer-default {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  align-items: center;
  padding-top: 30px;
}
#footer .privacy-holder {
  font-weight: 400;
  font-size: 18px;
  line-height: 130%;
  text-decoration: underline;
  text-decoration-skip-ink: none;
  text-align: center;
  color: var(--main-text-secondary);
}
#footer .privacy-holder:hover {
  color: var(--primary);
}
#footer .rights {
  font-weight: 400;
  font-size: 18px;
  line-height: 130%;
  text-align: center;
  color: var(--main-text-secondary);
}
.example-holder a {
  display: flex;
  gap: 10px;
  align-items: center;
  font-weight: 400;
  font-size: 18px;
  line-height: 130%;
  text-align: center;
  color: var(--main-text-secondary);
}
.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(--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: 36px;
  line-height: 110%;
  color: var(--head-secondary);
  text-align: center;
  margin-bottom: 10px;
}
#modal-success.theme-modal .title {
  margin-bottom: 10px;
  font-size: 32px;
  padding-left: 35px;
  position: relative;
  margin-left: auto;
  margin-right: auto;
  text-align: unset;
}
#modal-success.theme-modal .title:before {
  content: "";
  width: 22px;
  height: 22px;
  top: 6px;
  left: 0;
  position: absolute;
  background-image: url(../images/modal.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
.theme-modal .subtitle {
  font-weight: 400;
  font-size: 18px;
  line-height: 130%;
  text-align: center;
  color: var(--secondary-text);
  margin-bottom: 20px;
}
#modal-success.theme-modal .subtitle {
  margin-bottom: unset;
}
#modal-error.theme-modal .subtitle {
  margin-bottom: unset;
}
.fancybox__content>.f-button.is-close-btn {
  top: 20px !important;
  right: 20px !important;
  --f-button-width: 13px !important;
  --f-button-height: 13px !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;
}
.f-button svg {
  stroke: transparent !important;
}
.fancybox__content>.f-button.is-close-btn:hover path {
  fill: var(--head-secondary) !important;
  transition: 0.3s !important;
}
.theme-modal.fancybox__content {
  width: 620px;
  display: flex;
  flex-direction: column;
  padding: 30px;
  background: var(--second);
  border-radius: 30px;
  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: 10px;
}
.form-top {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.form-bot {
  margin-top: 10px;
}
button {
  border: unset;
}
button, input {
  outline: none;
}
.form input {
  border: unset;
  border-radius: 100px;
  padding: 18px 30px;
  transition: 0.3s;
  outline: none;
  cursor: pointer;
  width: 100%;
  background: var(--background-fifthly);
  border: 1px solid var(--second);
}
.form textarea {
  height: 120px;
  width: 100%;
  border: unset;
  outline: none;
  border-radius: 30px;
  background: var(--background-fifthly);
  border: 1px solid var(--second);
  padding: 30px;
  cursor: pointer;
  transition: 0.3s;
  resize: none;
}
.form input,
.form textarea {
  font-weight: 400;
  font-size: 16px;
  line-height: 130%;
  color: var(--main-text-secondary);
  cursor: pointer;
}
.form input.error,
.form textarea.error {
  border-color: red !important;
}
.form input::placeholder,
.form textarea::placeholder {
  font-weight: 400;
  font-size: 16px;
  line-height: 130%;
  color: var(--main-text-secondary);
  transition: 0.3s;
}
.theme-modal .btn {
  width: 100%;
}
.form .privacy-policy {
  width: 100%;
  font-weight: 400;
  font-size: 16px;
  line-height: 130%;
  color: var(--secondary-text);
  margin-top: 15px;
  display: block;
  text-align: center;
}
.form .privacy-policy a {
  color: var(--secondary-text);
  text-decoration: underline;
  text-decoration-skip-ink: none;
}
.form .privacy-policy a:hover {
  color: var(--primary);
} 
#file {
  display: none;
}
.file span {
  font-weight: 600;
  font-size: 20px;
  line-height: 120%;
  letter-spacing: -0.02em;
  color: var(--head-primary);
  margin-bottom: 10px;
  position: relative;
  display: block;
  transition: 0.3s;
  cursor: pointer;
}
.file span:hover {
  color: var(--hover);
}
.fancybox__container {
  --fancybox-bg: rgba(0, 0, 0, 0.4) !important;
  backdrop-filter: blur(7px);
}
/* ============== MODAL End ============= */







/* ============== Pages Start ============= */
.error-wrapper {
  display: flex;
  border-radius: 10px;
  position: relative;
  margin-bottom: 120px;
  min-height: 600px;
  gap: 30px;
}
.error-wrapper .error-left-side {
  display: flex;
  flex-direction: column;
  border-radius: 30px;
  width: 50%;
  background: var(--background-fourthly);
  padding: 60px;
}
.error-wrapper .error-subtitle {
  font-weight: 600;
  font-size: 64px;
  line-height: 110%;
  margin-bottom: 10px;
}
.error-wrapper .error-desc {
  font-weight: 400;
  font-size: 22px;
  line-height: 130%;
  color: var(--main-text-primary);
  margin-bottom: 30px;
}
.error-wrapper .error-img {
  width: 50%;
  height: auto;
  border-radius: 30px;
  overflow: hidden;
  display: flex;
}
.error-wrapper .error-img img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
#main.error-page {
  min-height: 50vh;
}
/* ============== Pages End ============= */









/* ============== Archive-news Start ============= */
#archive-news .news {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 30px;
}
#archive-news .hidden-holder {
  padding-bottom: 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.news-item-template {
  display: flex;
  flex-direction: column;
  width: 100%;
  background: var(--background-fourthly);
  border-radius: 30px;
  overflow: hidden;
  position: relative;
}
.news-item-template:hover {
  background: var(--primary);
}
.news-item-template .news-img {
  width: 100%;
  display: flex;
  height: auto;
  max-height: 195px;
}
.news-item-template .news-img img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  aspect-ratio: 1/1;
}
.news-item-template .news-info {
  display: flex;
  flex-direction: column;
  height: auto;
  flex-grow: 1;
  padding: 20px;
}
.news-item-template .tag {
  position: absolute;
  padding: 10px 15px;
  top: 20px;
  left: 20px;
  border-radius: 100px;
  font-weight: 400;
  font-size: 16px;
  line-height: 130%;
  color: var(--main-text-primary);
  width: fit-content;
  background: var(--primary);
}
.news-item-template .news-name {
  font-weight: 600;
  font-size: 22px;
  line-height: 110%;
  color: var(--head-primary);
  margin-bottom: 30px;
}
.news-item-template .news-group {
  font-weight: 400;
  font-size: 18px;
  line-height: 130%;
  color: var(--main-text-primary);
  margin-bottom: 10px;
  margin-top: auto;
}
.news-item-template .news-date {
  font-weight: 400;
  font-size: 16px;
  line-height: 130%;
  color: var(--main-text-primary);
}
/* ============== Archive-news End ============= */








/* ============== Single-news Start ============= */
.single-page.news h1.page-title {
  max-width: 60%;
  margin-bottom: 40px;
}
.single-page.news .page-wrapper {
  display: flex;
  gap: 30px;
  align-items: flex-start;
  padding-bottom: 60px;
}
.single-page.news .page-content {
  width: 66%;
  display: flex;
  flex-direction: column;
}
.single-page.news .page-right-side {
  position: sticky;
  top: 160px;
  height: fit-content;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.single-page.news .similars-holder {
  border-radius: 30px;
  background: var(--background-fourthly);
  padding: 30px;
}
.single-page.news .similars-title {
  font-weight: 600;
  font-size: 22px;
  line-height: 110%;
  margin-bottom: 20px;
}
.single-page.news .similars {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.single-page.news .similar-item {
  display: flex;
  flex-direction: column;
  padding-top: 20px;
  border-top: 1px solid var(--background-thirdly);
  width: 100%;
}
.single-page.news .similar-date {
  font-weight: 400;
  font-size: 16px;
  line-height: 130%;
  color: var(--main-text-secondary);
  margin-bottom: 15px;
  transition: 0.5s;
}
.single-page.news .similar-item:hover .similar-date {
  color: var(--primary);
}
.single-page.news .similar-name {
  font-weight: 600;
  font-size: 18px;
  line-height: 110%;
  transition: 0.5s;
}
.single-page.news .similar-item:hover .similar-name {
  color: var(--primary);
}
.single-page.news .main-info {
  display: flex;
  gap: 40px;
  margin-bottom: 40px;
  align-items: center;
}
.single-page.news .single-date {
  font-weight: 400;
  font-size: 18px;
  line-height: 130%;
  color: var(--main-text-primary);
}
.single-page.news .duration {
  font-weight: 400;
  font-size: 18px;
  line-height: 130%;
  color: var(--main-text-primary);
}
.single-page.news .page-img {
  display: flex;
  height: auto;
  border-radius: 30px;
  overflow: hidden;
  max-height: 450px;
  width: 100%;
  margin-bottom: 40px;
}
.single-page.news .page-img img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}
/* ============== Single-news End ============= */








/* ============== Archive-reviews Start ============= */
#archive-reviews .page-wrapper {
  padding-bottom: 60px;
}
#archive-reviews .reviews {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 30px;
}
.reviews-img-item-template {
  width: 100%;
  display: flex;
  height: auto;
  border-radius: 30px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  max-height: 500px;
}
.reviews-img-item-template:before {
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  position: absolute;
  background-image: url(../images/plus.png);
  background-position: center;
  background-repeat: no-repeat;
  background-color: rgba(0, 0, 0, 0.3);
  transition: 0.5s;
  opacity: 0;
}
.reviews-img-item-template:hover:before {
  opacity: 1;
}
.reviews-img-item-template img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  aspect-ratio: 1/1;
}
.reviews-item-template {
  background: var(--head-primary);
  border-radius: 30px;
  overflow: hidden;
  height: fit-content;
  min-height: 500px;
  padding: 20px;
}
.reviews-item-template .review-top {
  display: flex;
  justify-content: space-between;
  gap: 5px;
  margin-bottom: 10px;
}
.reviews-item-template .review-photo {
  width: 50px;
  height: 50px;
  min-width: 50px;
  border-radius: 100px;
  overflow: hidden;
  display: flex;
}
.reviews-item-template .review-photo img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}
.reviews-item-template .review-date {
  font-weight: 400;
  font-size: 16px;
  line-height: 130%;
  color: var(--background-thirdly);
}
.reviews-item-template .review-name {
  font-weight: 600;
  font-size: 18px;
  line-height: 110%;
  color: #1f1f1f;
}
.reviews-item-template .review-company {
  font-weight: 400;
  font-size: 16px;
  line-height: 130%;
  color: var(--background-thirdly);
  margin: 5px 0px 20px 0px;
}
.reviews-item-template .review-text {
  font-weight: 400;
  font-size: 18px;
  line-height: 130%;
  color: var(--secondary-text);
}
.reviews-item-template .short-text,
.reviews-item-template .full-text {
  color: inherit;
}
.text-all,
.text-all-again {
  font-weight: 600;
  font-size: 18px;
  line-height: 110%;
  color: var(--head-secondary);
  cursor: pointer;
  transition: 0.5s;
  width: fit-content;
  margin-top: 5px;
  margin-bottom: auto;
}
.text-all:hover,
.text-all-again:hover {
  color: var(--primary);
}
.reviews-item-template .review-gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}
.reviews-item-template .gallery-img {
  width: calc((100% - 30px) / 4);
  border-radius: 15px;
  overflow: hidden;
  height: 55px;
  display: flex;
  position: relative;
  cursor: pointer;
}
.reviews-item-template .gallery-img:before {
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  position: absolute;
  background-image: url(../images/miniPlus.png);
  background-position: center;
  background-repeat: no-repeat;
  background-color: rgba(0, 0, 0, 0.3);
  transition: 0.5s;
  opacity: 0;
}
.reviews-item-template .gallery-img:hover:before {
  opacity: 1;
}
.reviews-item-template .gallery-img img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  aspect-ratio: 1/1;
}
/* ============== Archive-reviews End ============= */









/* ============== Archive-services Start ============= */
#archive-services .page-banner {
  margin-bottom: 60px;
  display: flex;
  gap: 20px;
  justify-content: space-between;
  border-radius: 30px;
  overflow: hidden;
  background: var(--background-fourthly);
  padding: 60px;
  position: relative;
  min-height: 350px;
}
#archive-services .banner-img {
  width: auto;
  max-width: 40%;
  height: 100%;
  bottom: 0;
  right: 100px;
  position: absolute;
  display: flex;
}
#archive-services .banner-img img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  object-position: bottom center;
}
#archive-services .cats-holder {
  display: flex;
  flex-direction: column;
  gap: 120px;
  padding: 60px 0px;
}
#archive-services .cat-item {
  display: flex;
  flex-direction: column;
}
#archive-services .posts-holder {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 30px;
}
.service-template-item {
  display: flex;
  flex-direction: column;
  background: var(--second);
  border-radius: 30px;
  overflow: hidden;
  min-height: 195px;
}
.service-template-item .post-name {
  padding: 30px 30px 0px 30px;
  font-weight: 600;
  font-size: 22px;
  line-height: 110%;
  color: var(--head-secondary);
  margin-bottom: 10px;
}
.service-template-item .post-bottom {
  display: flex;
  gap: 10px;
  align-items: center;
  position: relative;
  flex-grow: 1;
  padding: 0px 20px 20px 20px;
}
.service-template-item .post-img {
  position: absolute;
  bottom: 0;
  left: 20px;
  width: calc(100% - 90px);
  height: 100%;
  display: flex;
}
.service-template-item .post-img img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  object-position: bottom left;
}
.service-template-item .icon {
  margin-left: auto;
  margin-top: auto;
  width: 58px;
  height: 58px;
  border: 1px solid var(--primary);
  background: var(--head-primary);
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.5s;
}
.service-template-item .icon path {
  transition: 0.5s;
}
.service-template-item:hover .icon {
  background: var(--primary);
}
.service-template-item:hover .icon path {
  stroke: var(--head-primary);
}
/* ============== Archive-services End ============= */









/* ============== Single-services Start ============= */
.single-page.services .banner-wrapper {
  display: flex;
  gap: 20px;
  background: var(--background-fourthly);
  border-radius: 30px;
  overflow: hidden;
  min-height: 350px;
  padding: 60px;
  position: relative;
  margin-bottom: 50px;
}
.single-page.services .banner-left-side {
  display: flex;
  flex-direction: column;
  height: auto;
  justify-content: space-between;
  gap: 20px;
}
.single-page.services .banner-img {
  position: absolute;
  width: auto;
  max-width: 40%;
  bottom: 0;
  right: 0;
  display: flex;
}
.single-page.services .banner-img img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  object-position: bottom right;
}
.single-page.services .service-info {
  display: flex;
  gap: 160px;
  align-items: flex-start;
  padding-bottom: 60px;
}
.single-page.services .desc-holder {
  display: flex;
  width: 55%;
  flex-direction: column;
  flex-grow: 1;
}
.single-page.services .desc-holder .main-title {
  margin-bottom: 15px;
}
.single-page.services .license-holder {
  display: flex;
  flex-direction: column;
  background: var(--head-primary);
  border-bottom: 30px;
  overflow: hidden;
  flex-grow: 1;
  max-width: 490px;
  margin-left: auto;
  border-radius: 30px;
}
.single-page.services .lic-top {
  display: flex;
  flex-direction: column;
  padding: 30px 30px 20px 30px;
}
.single-page.services .lic-name {
  font-weight: 600;
  font-size: 22px;
  line-height: 110%;
  color: var(--head-secondary);
  margin-bottom: 10px;
}
.single-page.services .lic-desc {
  font-weight: 400;
  font-size: 18px;
  line-height: 130%;
  color: var(--secondary-text);
  margin-bottom: 20px;
}
.single-page.services .lic-format {
  margin-left: auto;
  font-weight: 400;
  font-size: 16px;
  line-height: 130%;
  text-align: center;
  width: 60px;
  height: 60px;
  border-radius: 10px;
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
}
.single-page.services .lic-chars {
  padding: 20px 30px;
  display: flex;
  gap: 5px;
  flex-direction: column;
  border-top: 1px solid var(--background-fifthly);
}
.single-page.services .lic-char {
  font-weight: 400;
  font-size: 18px;
  line-height: 130%;
  color: var(--secondary-text);
}
.single-page.services .table {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.single-page.services .string {
  display: flex;
  gap: 30px;
  padding-bottom: 30px;
  position: relative;
}
.single-page.services .string:before {
  content: "";
  width: calc(100% - 60px);
  height: 1px;
  background: var(--background-thirdly);
  bottom: 0;
  left: 30px;
  position: absolute;
}
.single-page.services .string:nth-child(1):before {
  border-bottom: unset;
  display: none;
  padding-bottom: unset;
}
.single-page.services .string-el {
  width: calc((100% - 60px) / 3);
  padding-left: 30px;
  padding-right: 10px;
  font-weight: 600;
  font-size: 22px;
  line-height: 110%;
}
.single-page.services .string.four .string-el {
  font-size: 18px;
}
.single-page.services .string.five .string-el {
  font-size: 16px;
}
.single-page.services .string.four .string-el {
  width: calc((100% - 90px) / 4);
}
.single-page.services .string.five .string-el {
  width: calc((100% - 120px) / 5);
}
.single-page.services .string:nth-child(1) .string-el {
  background: var(--background-fourthly);
  border-radius: 100px;
  display: flex;
  align-items: center;
  padding: 17px 30px;
}
.single-page.services .string-el:nth-child(1) {
  flex-grow: 1;
  width: 50%;
  min-width: 50%;
}
.single-page.services .string.four .string-el:nth-child(1) {
  width: 40%;
  min-width: 40%;
}
.single-page.services .string.five .string-el:nth-child(1) {
  width: 30%;
  min-width: 30%;
}
/* ============== Single-services End ============= */












/* ============== Archive-objects Start ============= */
#archive-objects .banner-wrapper {
  background: var(--background-fourthly);
  border-radius: 30px;
  padding: 60px 50px;
  position: relative;
  display: flex;
  gap: 20px;
  min-height: 350px;
  overflow: hidden;
  margin-bottom: 60px;
}
#archive-objects .banner-left-side {
  display: flex;
  flex-direction: column;
}
#archive-objects h1.page-title {
  margin-bottom: 10px;
}
#archive-objects .banner-desc {
  font-weight: 400;
  font-size: 22px;
  line-height: 130%;
  margin-bottom: 35px;
  max-width: 340px;
}
#archive-objects .banner-img {
  position: absolute;
  width: auto;
  max-width: 50%;
  bottom: 0;
  right: 0;
  display: flex;
}
#archive-objects .banner-img img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  object-position: bottom right;
}
#archive-objects .object-cats {
  display: flex;
  flex-direction: column;
  gap: 120px;
}
#archive-objects .table {
  margin: 20px 0px;
  display: flex;
  flex-direction: column;
  border-radius: 15px;
  background: var(--head-primary);
  border: 1px solid var(--head-primary);
  overflow: hidden;
}
#archive-objects .string {
  display: flex;
  border-bottom: 1px solid var(--stroke);
}
#archive-objects .string:first-child {
  background: var(--background-fourthly);
  /* border-radius: 15px 15px 0px 0px; */
}
#archive-objects .string:last-child {
  border-bottom: unset;
}
#archive-objects .main-title:has(+.table){
  margin-bottom: 10px;
}
#archive-objects .element {
  color: var(--head-secondary);
  padding: 15px;
  border-right: 1px solid var(--main-text-primary);
  flex-grow: 1;
  width: 50%;
  font-size: 16px;
  line-height: 130%;
  font-weight: 400;
}
#archive-objects .string.four .element {
  width: 40%;
  font-size: 15px;
  line-height: 120%;
  font-weight: 400;
}
#archive-objects .string.five .element {
  width: 30%;
  font-size: 14px;
  line-height: 120%;
  font-weight: 400;
}
#archive-objects .element:last-child {
  border-right: unset;
}
#archive-objects .element:nth-child(2) {
  width: 30%;
}
#archive-objects .string.four .element:nth-child(2) {
  width: 25%;
}
#archive-objects .string.five .element:nth-child(2) {
  width: 20%;
}
#archive-objects .element:nth-child(3) {
  width: 20%;
}
#archive-objects .string.four .element:nth-child(3){
  width: 20%;
}
#archive-objects .string.five .element:nth-child(3) {
  width: 20%;
}
#archive-objects .string.four .element:nth-child(4) {
  width: 15%;
}
#archive-objects .string.five .element:nth-child(4) {
  width: 15%;
}
#archive-objects .string.five .element:nth-child(5) {
  width: 15%;
}
#archive-objects .string:first-child .element {
  color: var(--head-primary);
}
.object-template-item {
  display: flex;
  flex-direction: column;
}
.object-template-item .post-img {
  width: 100%;
  height: auto;
  max-height: 350px;
  border-radius: 30px;
  overflow: hidden;
  margin-bottom: 20px;
  display: flex;
  position: relative;
}
.object-template-item .post-img:before {
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  position: absolute;
  background: linear-gradient(180deg, rgba(69, 117, 191, 0) 0%, rgba(69, 117, 191, 0.6) 100%);
  opacity: 0;
  transition: 0.5s;
}
.object-template-item:hover .post-img:before {
  opacity: 1;
}
.object-template-item .post-img img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  aspect-ratio: 1/1;
}
.object-template-item .post-bottom {
  display: flex;
  justify-content: space-between;
  gap: 10px;
}
.object-template-item .bottom-left {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.object-template-item .post-name {
  font-weight: 600;
  font-size: 32px;
  line-height: 110%;
}
.object-template-item .post-adress {
  font-weight: 400;
  font-size: 18px;
  line-height: 130%;
  color: var(--main-text-primary);
}
.object-template-item .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  border: 1px solid var(--background-fifthly);
  width: 58px;
  height: 58px;
  min-width: 58px;
  background: transparent;
  transition: 0.5s;
}
.object-template-item .icon path {
  transition: 0.5s;
}
.object-template-item:hover .icon {
  background: var(--primary);
  border-color: var(--primary);
}
.object-template-item:hover .icon path {
  stroke: var(--head-primary);
}
/* ============== Archive-objects End ============= */











/* ============== Single-objects Start ============= */
.single-page.objects .banner {
  display: flex;
  flex-direction: column;
  position: relative;
  margin-bottom: 60px;
  gap: 30px;
}
.single-page.objects .adr-wrapper {
  display: flex;
  flex-direction: column;
  background: var(--second);
  border-radius: 30px;
  overflow: hidden;
  padding: 30px;
  height: 240px;
  width: calc((100% - 60px) / 3);
}
.single-page.objects .adr-top {
  display: flex;
  gap: 15px;
  margin-bottom: 10px;
}
.single-page.objects .adr-icon {
  height: 24px;
  width: 18px;
  display: flex;
  background-image: url(../images/objectAdr.png);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}
.single-page.objects .adr-wrapper .btn {
  margin-top: auto;
}
.single-page.objects .adr-wrapper .btn:hover {
  background: transparent;
  border-color: var(--primary);
  color: var(--primary);
}
.single-page.objects .adr-wrapper .adr {
  font-weight: 400;
  font-size: 22px;
  line-height: 130%;
  color: var(--secondary-text);
}
.single-page.objects .banner-img {
  width: calc((100% - 33%) - 17px);
  position: absolute;
  height: auto;
  max-height: 400px;
  display: flex;
  border-radius: 30px;
  overflow: hidden;
  right: 0;
  top: 0;
  z-index: 1;
}
.single-page.objects .banner-img img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}
.single-page.objects .gal-cont {
  display: flex;
  gap: 30px;
  position: relative;
  z-index: 2;
}
.single-page.objects .gal-item {
  flex-grow: 1;
  width: calc((100% - 60px) / 3);
  border-radius: 30px;
  background: var(--background-fourthly);
  padding: 30px;
  min-height: 240px;
  display: flex;
  flex-direction: column;
}
.single-page.objects .gal-desc {
  margin-top: auto;
  font-weight: 600;
  font-size: 22px;
  line-height: 110%;
  color: var(--main-text-primary);
}
.single-page.objects .gal-img {
  margin-bottom: 30px;
  display: flex;
  height: auto;
  max-height: 100px;
  width: auto;
  max-width: 100%;
}
.single-page.objects .gal-img img {
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 100%;
  display: block;
  object-fit: contain;
  object-position: left top;
}
/* ============== Single-objects End ============= */







/* ============== Archive-works Start ============= */
.more-btn {
  margin-top: 40px;
}
#archive-works .hidden-holder {
  padding-bottom: 60px;
}
#archive-works .works {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.works-item-template {
  display: flex;
  gap: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid var(--background-thirdly);
}
.works-item-template.hidden {
  display: none;
}
.works-item-template .work-chars {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 30px;
  background: var(--background-fourthly);
  border-radius: 30px;
  width: 41%;
  height: fit-content;
}
.works-item-template .char-item {
  display: flex;
  gap: 30px;
}
.works-item-template .char-name {
  font-weight: 600;
  font-size: 18px;
  line-height: 110%;
  min-width: 144px;
}
.works-item-template .char-value {
  font-weight: 400;
  font-size: 18px;
  line-height: 130%;
  color: var(--main-text-primary);
}
.works-item-template .works-gallery img {
  opacity: 0;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: block;
  object-fit: cover;
  transition: 0.1s;
}
.works-item-template .works-gallery img:nth-child(1) {
  opacity: 1;
}
.works-item-template .gallery-holder {
  display: flex;
  border-radius: 30px;
  overflow: hidden;
  height: 400px;
  position: relative;
  width: 57.5%;
}
.works-item-template .works-gallery {
  width: 100%;
  height: 100%;
  display: flex;
  position: relative;
}
.works-item-template .gallery-controls {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: flex;
  transition: 0.5s;
}
.works-item-template .gallery-control {
  height: 100%;
  width: auto;
  flex-grow: 1;
  padding: 0px 3px 15px 3px;
  position: relative;
}
.works-item-template .gallery-control:before {
  content: "";
  width: calc(100% - 15px);
  height: 5px;
  border-radius: 100px;
  background: var(--head-primary);
  bottom: 30px;
  left: 7px;
  position: absolute;
  transition: 0.1s;
}
.works-item-template .gallery-control.active:before {
  background: var(--primary);
}
.works-item-template .gallery-control:first-child {
  padding-left: 25px;
}
.works-item-template .gallery-control:first-child:before {
  right: 10px;
  left: unset;
}
.works-item-template .gallery-control:first-child:before,
.works-item-template .gallery-control:last-child:before {
  width: calc(100% - 28px);
}
.works-item-template .gallery-control:last-child {
  padding-right: 25px;
}
/* ============== Archive-works End ============= */











/* ============== Archive-companys Start ============= */
#archive-companys .companys {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 30px;
  padding-bottom: 60px;
}
#archive-companys .hidden-holder {
  display: flex;
  flex-direction: column;
}
#archive-companys .comp-title {
  font-weight: 400;
  font-size: 22px;
  line-height: 130%;
  margin-bottom: 30px;
}
.companys-item-template {
  border-radius: 30px;
  overflow: hidden;
  min-height: 195px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--head-primary)
}
.companys-item-template .companys-img {
  width: calc(100% - 40px);
  height: calc(100% - 40px);
  display: flex;
}
.companys-item-template .companys-img img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}
/* ============== Archive-companys End ============= */













/* ============== Single-companys Start ============= */
.single-page.companys .banner {
  display: flex;
  position: relative;
  min-height: 610px;
  gap: 20px;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 60px;
}
.single-page.companys .banner-img {
  width: 100%;
  height: auto;
  max-height: 400px;
  display: flex;
  position: absolute;
  border-radius: 30px;
  overflow: hidden;
  top: 0;
  left: 0;
}
.single-page.companys .banner-img img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
.single-page.companys .banner-desc-holder {
  display: flex;
  flex-direction: column;
  padding: 60px 45px;
  background: var(--second);
  border-radius: 30px;
  overflow: hidden;
  max-height: 410px;
  max-width: 750px;
  position: relative;
}
.single-page.companys .banner-desc-title {
  font-weight: 600;
  font-size: 36px;
  line-height: 110%;
  text-align: center;
  color: var(--head-secondary);
  margin-bottom: 15px;
}
.single-page.companys .banner-desc {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding-right: 15px;
  max-height: 235px;
  overflow: auto;
}
.single-page.companys .banner-desc p,
.single-page.companys .banner-desc li{
  font-weight: 400;
  font-size: 18px;
  line-height: 130%;
  color: var(--secondary-text);
}
.single-page.companys .banner-desc::-webkit-scrollbar {
  width: 5px;
  border: 1px solid var(--primary);
	background: var(--second);
  border-radius: 100px;
}
.single-page.companys .banner-desc::-webkit-scrollbar-thumb {
  background-color: var(--primary);
	border-radius: 100px;
}
.single-page.companys .banner-chars {
  margin-top: auto;
  margin-left: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  max-width: 50%;
  flex-grow: 1;
  justify-content: flex-end;
}
.single-page.companys .banner .char-item {
  display: flex;
  flex-direction: column;
  position: relative;
  padding-top: 15px;
  width: fit-content;
  max-width: calc((100% - 30px) / 2);
}
.single-page.companys .banner .char-item:before {
  content: "";
  width: 100%;
  max-width: 170px;
  height: 1px;
  background: var(--background-thirdly);
  top: 0;
  left: 0;
  position: absolute;
}
.single-page.companys .banner .char-name {
  font-weight: 400;
  font-size: 16px;
  line-height: 130%;
  color: var(--main-text-primary);
  margin-top: 5px;
}
.single-page.companys .banner .char-value {
  font-weight: 600;
  font-size: 48px;
  line-height: 120%;
}
.single-page.companys .teams {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 30px;
}
.single-page.companys .team-item {
  display: flex;
  flex-direction: column;
  background: var(--background-fourthly);
  border-radius: 30px;
  padding: 30px;
  min-height: 220px;
}
.single-page.companys .team-name {
  font-weight: 600;
  font-size: 22px;
  line-height: 110%;
  margin-bottom: 5px;
}
.single-page.companys .team-post {
  font-weight: 400;
  font-size: 16px;
  line-height: 130%;
  color: var(--main-text-primary);
  margin-bottom: 10px;
}
.single-page.companys .team-contacts {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: auto;
}
.single-page.companys .contact-item {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.single-page.companys .contact-name {
  font-weight: 400;
  font-size: 16px;
  line-height: 130%;
  color: var(--main-text-secondary);
}
.single-page.companys .contact {
  font-weight: 500;
  font-size: 18px;
  line-height: 100%;
  color: var(--main-text-primary);
}
.single-page.companys a.contact:hover {
  color: var(--primary);
}
/* ============== Single-companys End ============= */












/* ============== Archive-vacancys Start ============= */
#archive-vacancys .cats-holder {
  display: flex;
  flex-direction: column;
  gap: 120px;
  padding-bottom: 60px;
}
#archive-vacancys .page-menu {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}
#archive-vacancys .page-menu-item {
  font-weight: 600;
  font-size: 18px;
  line-height: 100%;
  padding: 20px 30px;
  border-radius: 100px;
  border: 1px solid var(--background-fifthly);
  transition: 0.5s;
  cursor: pointer;
}
#archive-vacancys .page-menu-item:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--head-primary);
}
#archive-vacancys .group-item {
  display: flex;
  flex-direction: column;
}
#archive-vacancys .posts-holder {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 30px;
}
.vacancys-item-template {
  display: flex;
  flex-direction: column;
  background: var(--background-fourthly);
  border-radius: 30px;
  padding: 30px;
}
.vacancys-item-template .vacancys-name {
  font-weight: 600;
  font-size: 32px;
  line-height: 110%;
  margin-bottom: 30px;
}
.vacancys-item-template .vac-top {
  display: flex;
  gap: 30px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}
.vacancys-item-template .vac-exp,
.vacancys-item-template .vac-graf {
  font-weight: 600;
  font-size: 22px;
  line-height: 110%;
}
.vacancys-item-template .vac-list {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.vacancys-item-template .list-item {
  font-weight: 400;
  font-size: 18px;
  line-height: 130%;
  color: var(--main-text-primary);
  position: relative;
  padding-left: 22px;
}
.vacancys-item-template .list-item:before {
  content: "";
  width: 6px;
  height: 6px;
  top: 8px;
  left: 5px;
  position: absolute;
  background: var(--main-text-primary);
  border-radius: 100%; 
}
.vacancys-item-template .vac-bot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: 30px;
}
.vacancys-item-template .vac-mark {
  font-weight: 400;
  font-size: 18px;
  line-height: 130%;
  color: var(--main-text-primary);
  margin-top: 5px;
}
.vacancys-item-template .vac-mark a {
  white-space: nowrap;
}
.vacancys-item-template .vac-price {
  font-weight: 600;
  font-size: 32px;
  line-height: 110%;
}
/* ============== Archive-vacancys End ============= */











/* ============== Pages Start ============= */
.page-id-129 h1.page-title,
.page-id-482 h1.page-title {
  display: none;
}
.undefault-template .page-banner {
  display: flex;
  margin-bottom: 60px;
  position: relative;
  border-radius: 30px;
  background: var(--background-fourthly);
  padding: 60px;
  min-height: 350px;
}
.undefault-template .page-banner h1.page-title {
  max-width: 50%;
}
.undefault-template .page-img {
  position: absolute;
  right: 125px;
  bottom: 0;
  height: 100%;
  width: auto;
  max-width: 40%;
  display: flex;
}
.undefault-template .page-img img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  object-position: bottom center;
}
/* ============== pages End ============= */




@media (max-width: 1700px) {
  #header .nav-menu-element.has-childs:last-child .sub-menu {
    left: -200px;
  } 
  #header .infos {
    gap: 20px;
  }
}

@media (max-width: 1600px) {
  .reviews-img-item-template {
    max-height: unset;
  }
}

@media (max-width: 1400px) {
  #header .site-title {
    font-size: 14px;
    padding: 10px;
    max-width: 120px;
  }
  #header .search {
    padding: 10px;
    gap: 5px;
  }
  .btn {
    padding: 10px;
  }
  .socs {
    gap: 5px;
  }
  .soc {
    width: 40px;
    height: 40px;
  }
  #header .time-wrapper, #header .header-phone-item {
    gap: unset;
  }
  #header .nav-menu-element.has-childs:last-child .sub-menu {
    left: -200px;
  }
  #header .nav-menu-element.has-childs .sub-menu {
    padding: 10px;
    border-radius: 15px;
  }
  #footer .footer-left-side {
    gap: 10px;
  }
  #footer .footer-phone {
    gap: 5px;
  }
  #footer .footer-phone-name {
    font-size: 12px;
  }
  #footer .phone-value {
    font-size: 14px;
  }
  #footer .footer-info {
    min-width: 250px;
  }
  #footer .foot-menu-nav {
    gap: 5px;
  }
  #footer .menu-item {
    gap: 5px;
  }
  #footer .footer-info,
  #footer .menu-left-side, #footer .menu-right-side {
    gap: 10px;
  }
  #footer .nav-menu-element a {
    font-size: 14px;
  }
  #footer .footer-default {
    padding-top: 10px;
  }
  #footer {
    padding: 15px 0px;
  }
  #footer .privacy-holder,
  #footer .rights,
  #footer .example-holder a {
    font-size: 14px;
  }
  #footer .footer-menu-holder {
    width: fit-content;
  }
  #header .header-menu .sub-menu {
    left: 0px;
    min-width: 250px;
  }
  .error-wrapper .error-left-side {
    padding: 15px;
  }
  .error-wrapper .error-subtitle {
    font-size: 42px;
  }
  .error-wrapper {
    min-height: unset;
    margin-bottom: 60px;
  }
  .error-wrapper .error-desc {
    font-size: 16px;
  }
  h1.page-title {
    font-size: 52px;
  }
  .single-page.news .page-right-side {
    top: 150px;
    gap: 10px;
  }
  .single-page.news .similars-holder {
    padding: 10px;
    border-radius: 20px;
  }
  .single-page.news .similar-item {
    padding-top: 5px;
  }
  .single-page.news .similars {
    gap: 10px;
  }
  .single-page.news .similar-date {
    font-size: 12px;
    margin-bottom: 5px;
  }
  #archive-reviews .reviews {
    grid-template-columns: repeat(3,1fr);
    gap: 10px;
  }
  .reviews-item-template {
    min-height: unset;
  }
  #archive-services .posts-holder {
    grid-template-columns: repeat(3,1fr);
    gap: 10px;
  }
  .single-page.services .service-info {
    gap: 20px;
  }
  .single-page.services .desc-holder {
    width: auto;
  }
  .single-page.services .lic-top,
  .single-page.services .lic-chars {
    padding: 10px;
  }
  .single-page.services .lic-desc {
    font-size: 14px;
    margin-bottom: 10px;
  }
  .single-page.services .lic-format {
    width: 40px;
    height: 40px;
    font-size: 12px;
  }
  .single-page.services .lic-char {
    font-size: 14px;
  }
  .single-page.services .lic-chars {
    gap: 0px;
  }
  .single-page.services .lic-name {
    font-size: 18px;
  }
  .single-page.services .string:nth-child(1) .string-el {
    padding: 7px 10px;
  }
  .single-page.services .string {
    gap: 10px;
    padding-bottom: 10px;
  }
  .single-page.services .table {
    gap: 10px;
  }
  .single-page.services .string .string-el {
    padding-left: 10px;
    padding-right: 5px;
  }
  .single-page.services .string .string-el {
    font-size: 18px;
  }
  .single-page.services .string.four .string-el {
    font-size: 14px;
  }
  .single-page.services .string.five .string-el {
    font-size: 12px;
  }
  .single-page.companys .banner-desc-holder {
    width: 50%;
    padding: 15px;
  }
  .single-page.services .string:before {
    width: 100%;
    left: 0;
  }
}

@media (max-width: 1200px) {
  #header .time-title, #header .header-phone-name {
    font-size: 12px;
  }
  #header .time, #header .phone-value {
    font-size: 14px;
  }
  #header .header-top {
    padding-bottom: 5px;
  }
  #header .time-wrapper {
    display: none;
  }
  #header .header-menu .sub-menu {
    max-width: 500px;
  }
  #header .nav-menu-element a {
    font-size: 14px;
  }
  #archive-news .news {
    gap: 10px;
    grid-template-columns: repeat(3,1fr);
  }
  h1.page-title,
  .main-title,
  .single-page.news h1.page-title {
    font-size: 42px;
    margin-bottom: 20px;
  }
  .block-container {
    padding: 40px 0px;
  }
  .single-page.services .service-info {
    padding-bottom: 40px;
  }
  .text-holder h2 {
    margin: unset;
    font-size: 32px;
  }
  .text-holder h3 {
    font-size: 26px;
  }
  .text-holder blockquote {
    padding: 45px 15px 15px 15px;
  }
  .text-holder h3,
  .text-holder h4,
  .text-holder h5 {
    margin-top: unset;
  }
  .text-holder blockquote:before {
    width: 20px;
    height: 20px;
    top: 15px;
    left: 15px;
  }
  .single-page.news h1.page-title {
    max-width: unset;
  }
  #archive-services .page-banner {
    margin-bottom: 40px;
    padding: 15px;
    min-height: 300px;
  }
  .single-page.services .banner-wrapper {
    min-height: 300px;
  }
  #archive-services .banner-img {
    right: 20px;
  }
  #archive-services .cats-holder {
    gap: 80px;
    padding: 40px 0px;
  }
  #archive-objects .object-cats {
    gap: 80px;
  }
  #archive-objects .banner-wrapper {
    padding: 15px;
    min-height: 300px;
  }
  .single-page.objects .gal-item {
    padding: 10px;
    min-height: 150px;
    width: calc((100% - 20px) / 3);
  }
  .single-page.objects .adr-wrapper {
    width: calc((100% - 20px) / 3);
  }
  .single-page.objects .banner-img {
    width: calc((100% - 33%) - 8px);
  }
  .single-page.objects .gal-img {
    max-height: 70px;
  }
  .single-page.objects .gal-desc,
  .single-page.objects .adr-wrapper .adr {
    font-size: 16px;
  }
  .single-page.objects .adr-wrapper {
    height: 150px;
    padding: 10px;
  }
  .single-page.objects .banner-img {
    max-height: 100%;
  }
  .single-page.objects .banner,
  .single-page.objects .gal-cont {
    gap: 10px;
  }
  .single-page.objects .banner,
  .single-page.companys .banner,
  .undefault-template .page-banner {
    margin-bottom: 40px;
  }
  #archive-works .hidden-holder,
  #archive-companys .companys {
    padding-bottom: 40px;
  }
  #archive-companys .companys {
    grid-template-columns: repeat(3,1fr);
    gap: 10px;
  }
  .single-page.companys .teams {
    gap: 10px;
  }
  .single-page.companys .team-item {
    padding: 15px;
  }
  #archive-vacancys .page-menu {
    gap: 10px;
    margin-bottom: 20px;
  }
  #archive-vacancys .page-menu-item {
    font-size: 14px;
    padding: 5px 7px;
  }
  .vacancys-item-template {
    padding: 15px;
  }
  #archive-vacancys .posts-holder {
    gap: 10px;
  }
  .vacancys-item-template .vacancys-name {
    font-size: 24px;
    margin-bottom: 10px;
  }
  .vacancys-item-template .vac-top {
    gap: 10px;
    margin-bottom: 10px;
  }
  #archive-vacancys .cats-holder {
    gap: 80px;
    padding-bottom: 40px;
  }
  .undefault-template .page-banner {
    padding: 25px;
    min-height: 300px;
  }
  #archive-objects .element {
    padding: 10px;
    font-size: 15px;
  }
}

@media (max-width: 996px) {
  #footer .footer-top {
    flex-wrap: wrap;
  }
  #header .header-menu {
    display: none;
  }
  #header .header-top {
    border-bottom: unset;
    padding-bottom: unset;
  }
  #header .burger.open_menu {
    display: flex;
  }
  .soc {
    width: 30px;
    height: 30px;
  }
  #header .socs {
    display: none;
  }
  .btn {
    font-size: 14px;
  }
  #header .search {
    padding: 5px;
  }
  #header,
  #footer {
    border-radius: 15px;
  }
  .breadcrumbs {
    padding: 10px 0px;
  }
  .breadcrumbs {
    font-size: 14px;
  }
  .breadcrumbs span a {
    margin-right: 26px;
  }
  .breadcrumbs span a:before {
    right: -20px;
  }
  .error-wrapper {
    gap: 10px;
    margin-bottom: 40px;
  }
  .error-wrapper .error-subtitle {
    font-size: 32px;
  }
  .error-wrapper .error-desc {
    margin-bottom: 10px;
  }
  .news-item-template .news-info {
    padding: 10px;
  }
  .news-item-template .news-name {
    font-size: 18px;
    margin-bottom: 10px;
  }
  .news-item-template .tag {
    top: 7px;
    left: 7px;
    font-size: 12px;
    padding: 5px 10px;
  }
  h1.page-title,
  .main-title,
  .single-page.news h1.page-title {
    font-size: 32px;
  }
  .pagination {
    margin-top: 20px;
    max-width: 320px;
    gap: 5px;
  }
  .prev.page-numbers, .next.page-numbers {
    width: 38px;
    height: 38px;
  }
  .undefault-template .page-banner {
    margin-bottom: 30px;
    padding: 15px;
    min-height: 250px;
  }
  #archive-news .hidden-holder,
  .single-page.news .page-wrapper,
  .single-page.services .service-info {
    padding-bottom: 30px;
  }
  .single-page.objects .banner {
    margin-bottom: 30px;
  }
  .block-container {
    padding: 30px 0px;
  }
  .single-page.news .main-info {
    gap: 15px;
    margin-bottom: 10px;
  }
  .single-page.news .single-date,
  .single-page.news .duration {
    font-size: 12px;
  }
  .single-page.news .page-img {
    border-radius: 20px;
  }
  .text-holder blockquote {
    margin-top: unset;
    border-radius: 20px;
  }
  .text-holder {
    gap: 10px;
  }
  .text-holder p, .text-holder li {
    font-size: 14px !important;
  }
  .text-holder h2 {
    font-size: 22px;
  }
  .text-holder h3 {
    font-size: 18px;
  }
  .text-holder h4 {
    font-size: 16px;
  }
  .text-holder h5 {
    font-size: 14px;
  }
  .single-page.news .page-right-side {
    top: 100px;
  }
  .single-page.news .similar-name {
    font-size: 14px;
  }
  .reviews-item-template .review-text {
    font-size: 14px;
  }
  .reviews-item-template {
    padding: 10px;
  }
  .reviews-item-template .review-gallery {
    margin-top: 10px;
  }
  .reviews-item-template .review-company {
    margin: 0px 0px 10px 0px;
  }
  .reviews-item-template .gallery-img {
    width: calc((100% - 20px) / 3);
  }
  .text-all,
  .text-all-again {
    font-size: 14px;
  }
  #archive-services .page-banner,
  .single-page.services .banner-wrapper,
  #archive-objects .banner-wrapper {
    margin-bottom: 30px;
    min-height: 200px;
  }
  .single-page.services .banner-wrapper {
    padding: 15px;
  }
  #archive-services .cats-holder {
    gap: 60px;
    padding: 30px 0px;
  }
  .service-template-item .post-name {
    padding: 15px 15px 0px 15px;
    font-size: 16px;
  }
  .service-template-item .post-bottom {
    padding: 0px 10px 10px 10px;
  }
  .service-template-item .icon {
    width: 38px;
    height: 38px;
  }
  .object-template-item .post-img {
    max-height: 270px;
  }
  .object-template-item .post-name {
    font-size: 24px;
  }
  .nav-holder .swiper-button-next,
  .nav-holder .swiper-button-prev {
    width: 40px;
    height: 40px;
    min-width: 40px;
  }
  #archive-objects .object-cats {
    gap: 60px;
  }
  #archive-objects .banner-desc {
    font-size: 16px;
    margin-bottom: 10px;
  }
  .nav-holder .nav,
  .nav-wrapper {
    margin-top: 20px;
  }
  .nav-wrapper .nav {
    margin-top: unset;
  }
  #archive-works .hidden-holder,
  #archive-companys .companys {
    padding-bottom: 30px;
  }
  .works-item-template .work-chars {
    padding: 10px;
  }
  .works-item-template .gallery-holder {
    height: 350px;
  }
  .works-item-template .gallery-control:before {
    height: 3px;
    bottom: 15px;
  }
  .works-item-template .char-item {
    gap: 10px;
  }
  .works-item-template .char-name,
  .works-item-template .char-value {
    font-size: 14px;
  }
  .works-item-template .char-name {
    width: 50%;
  }
  .works-item-template .char-value {
    max-width: 50%;
    width: 50%;
    text-align: left;
  }
  .works-item-template {
    gap: 10px;
  }
  .more-btn {
    margin-top: 20px;
  }
  .single-page.companys .banner-img {
    position: static;
    width: 100%;
  }
  .single-page.companys .banner-img img {
    object-fit: cover;
  }
  .single-page.companys .banner {
    flex-wrap: wrap;
    min-height: unset;
    gap: 20px;
  }
  .single-page.companys .banner-chars {
    gap: 10px;
    width: 100%;
    justify-content: flex-start;
    margin-left: unset;
    max-width: unset;
  }
  .single-page.companys .char-item {
    padding-top: 5px;
  }
  .single-page.companys .banner-desc p, .single-page.companys .banner-desc li {
    font-size: 14px;
  }
  .single-page.companys .char-value {
    font-size: 24px;
  }
  .single-page.companys .char-name {
    font-size: 14px;
  }
  .single-page.companys .banner-desc-holder {
    width: 100%;
    max-width: unset;
  }
  .single-page.companys .banner {
    margin-bottom: 30px;
  }
  .single-page.companys .team-item {
    min-height: 150px;
  }
  .single-page.companys .team-name {
    font-size: 16px;
  }
  .single-page.companys .team-post {
    font-size: 14px;
  }
  .single-page.companys .contact-item {
    gap: 3px;
  }
  .single-page.companys .contact-name {
    font-size: 12px;
  }
  .single-page.companys .contact {
    font-size: 16px;
  }
  #archive-vacancys .cats-holder {
    gap: 60px;
    padding-bottom: 30px;
  }
  #archive-vacancys .posts-holder {
    display: flex;
    flex-direction: column;
  }
  .vacancys-item-template .list-item, .vacancys-item-template .vac-mark,
  .vacancys-item-template .vac-exp, .vacancys-item-template .vac-graf {
    font-size: 14px;
  }
  .vacancys-item-template .vac-price {
    font-size: 24px;
  }
  .vacancys-item-template .vac-bot {
    margin-top: 20px;
  }
  .vacancys-item-template .list-item {
    padding-left: 15px;
  }
  .vacancys-item-template .list-item:before {
    top: 5px;
    left: 0px;
  }
  .undefault-template .page-img {
    right: 10px;
  }
  #archive-objects .element {
    font-size: 14px;
  }
}

@media (max-width: 768px) {
  #header {
    padding: 10px 0px;
  }
  #header .container {
    padding: 0px 10px;
  }
  #footer .footer-default {
    flex-direction: column;
    align-items: center;
    gap: 5px;
  }
  #header .search {
    display: none;
  }
  .error-wrapper {
    flex-direction: column;
  }
  .error-wrapper .error-left-side {
    width: 100%;
  }
  .error-wrapper .error-img {
    width: 100%;
  }
  h1.page-title,
  .main-title,
  .single-page.news h1.page-title {
    font-size: 28px;
  }
  #archive-news .news {
    grid-template-columns: repeat(2,1fr);
  }
  .single-page.news .page-wrapper {
    flex-direction: column;
  }
  .single-page.news .page-content {
    width: 100%;
  }
  .single-page.news .page-right-side {
    width: 100%;
    position: static;
  }
  #archive-reviews .reviews {
    grid-template-columns: repeat(2,1fr);
  }
  .reviews-item-template {
    height: auto;
  }
  #archive-services .posts-holder {
    grid-template-columns: repeat(2,1fr);
  }
  .single-page.services .service-info {
    flex-direction: column;
  }
  .single-page.services .license-holder {
    max-width: unset;
    border-radius: 20px;
  }
  .single-page.services .table-holder {
    overflow: scroll;
  }
  .single-page.services .table-holder::-webkit-scrollbar {
    width: 100%;
    height: 2px;
    border: 1px solid var(--second);
    background: var(--second);
  }
  .single-page.services .table-holder::-webkit-scrollbar-thumb {
    background-color: var(--primary);
    border-radius: 100px;
  }
  .single-page.services .table-holder {
    margin-bottom: 30px;
    padding-bottom: 10px;
  }
  .single-page.services .table {
    min-width: 800px;
  }
  .single-page.services .string .string-el {
    font-size: 14px;
  }
  .object-template-item .post-name {
    font-size: 18px;
  }
  .object-template-item .post-adress {
    font-size: 14px;
  }
  .object-template-item .icon {
    width: 38px;
    height: 38px;
    min-width: 38px;
  }
  #archive-objects .banner-img {
    display: none;
  }
  #archive-objects .banner-desc  {
    max-width: unset;
  }
  #archive-objects .banner-wrapper {
    min-height: unset;
  }
  .single-page.objects .banner-img {
    position: static;
    height: 100%;
  }
  .single-page.objects .adr-wrapper {
    width: 100%;
    height: auto;
  }
  .single-page.objects .banner-img {
    width: 100%;
    order: 3;
  }
  .single-page.objects .gal-cont {
    flex-direction: column;
  }
  .single-page.objects .gal-item {
    width: 100%;
    min-height: unset;
  }
  .single-page.objects .adr-wrapper,
  .single-page.objects .gal-item {
    border-radius: 20px;
  }
  .works-item-template {
    flex-direction: column;
  }
  .works-item-template .gallery-holder {
    width: 100%;
  }
  .works-item-template .work-chars {
    width: 100%;
  }
  #archive-companys .comp-title {
    margin-bottom: 20px;
    font-size: 16px;
  }
  #archive-companys .companys {
    grid-template-columns: repeat(2,1fr);
  }
  .single-page.companys .banner-desc-title {
    font-size: 24px;
    margin-bottom: 10px;
  }
  .single-page.companys .banner-desc-holder {
    border-radius: 20px;
  }
  .single-page.companys .banner-img {
    border-radius: 20px;
  }
  .single-page.companys .teams {
    grid-template-columns: repeat(2,1fr);
  }
  #archive-objects .table {
    border-radius: 10px;
    border: unset;
  }
  #archive-objects .table:has(.four) {
    overflow: auto;
  }
  #archive-objects .table:has(.four) .string {
    width: 770px;
  }
}

@media (max-width: 600px) {
  #header .header-top {
    gap: 10px;
    flex-wrap: wrap;
  }
  #header .infos {
    order: 4;
    width: 100%;
    justify-content: space-between;
  }
  #header .site-title {
    padding: 3px 10px;
  }
  .theme-modal.fancybox__content {
    padding: 30px 10px 10px 10px;
  }
  .theme-modal .title {
    font-size: 24px;
  }
  .theme-modal .subtitle {
    font-size: 14px;
    margin-bottom: 10px;
  }
  .form input {
    border-radius: 20px;
    padding: 10px 15px;
  }
  .form textarea {
    border-radius: 20px;
    padding: 10px;
    height: 80px;
  }
  .form .privacy-policy {
    font-size: 12px;
  }
  .form input, .form textarea,
  .form input::placeholder, .form textarea::placeholder {
    font-size: 14px;
  }
  .fancybox__content>.f-button.is-close-btn {
    top: 15px !important;
    right: 15px !important;
  }
  #modal-success.theme-modal .title {
    text-align: center;
    padding-left: unset;
    font-size: 20px;
  }
  #modal-success.theme-modal .title:before {
    display: none;
  }
  h1.page-title,
  .main-title,
  .single-page.news h1.page-title {
    font-size: 24px;
  }
  .news-item-template .news-group {
    font-size: 14px;
    margin-bottom: 5px;
  }
  .news-item-template .news-date {
    font-size: 14px;
  }
  .breadcrumbs span a {
    margin-right: 15px;
  }
  .breadcrumbs span a:before {
    right: -13px;
  }
  .reviews-item-template .review-date,
  .reviews-item-template .review-company {
    font-size: 14px;
  }
  .works-item-template .gallery-holder {
    height: 300px;
  }
  .vacancys-item-template .vac-bot {
    margin-top: 10px;
  }
  .vacancys-item-template .vac-price {
    font-size: 18px;
  }
  .vacancys-item-template .vacancys-name {
    font-size: 20px;
  }
  .undefault-template .page-img {
    display: none;
  }
  .undefault-template .page-banner {
    min-height: unset;
    padding: unset;
    background: transparent;
    margin-bottom: unset;
  }
  .undefault-template .page-banner h1.page-title {
    max-width: unset;
  }
  #archive-objects .table {
    border-radius: 10px;
    border: unset;
    overflow: auto;
  }
  #archive-objects .table .string {
    width: 650px;
  }
}

@media (max-width: 498px) {
  #footer .footer-site-title {
    max-width: unset;
    width: 100%;
  }
  #footer .footer-left-side {
    max-width: unset;
    width: 100%;
  }
  #archive-news .news {
    display: flex;
    flex-direction: column;
  }
  #archive-reviews .reviews {
    display: flex;
    flex-direction: column;
  }
  .reviews-item-template .gallery-img {
    width: calc((100% - 30px) / 4);
  } 
  .service-template-item {
    min-height: 130px;
  }
  #archive-services .posts-holder {
    display: flex;
    flex-direction: column;
  }
  #archive-services .banner-img {
    max-width: 60%;
    max-height: 70%;
  }
  .works-item-template {
    padding-bottom: 15px;
  }
  #archive-works .works {
    gap: 15px;
  }
  #archive-companys .companys {
    display: flex;
    flex-direction: column;
  }
  .single-page.companys .teams {
    display: flex;
    flex-direction: column;
  }
}

@media (max-width: 400px) {
  #header .header-top {
    gap: 5px;
  }
  .nav-holder .nav {
    max-width: unset;
    width: 100%;
  }
  .nav-wrapper {
    flex-direction: column;
    align-items: center;
  }
  .nav-wrapper .btn {
    width: 100%;
    order: 2;
  }
  .more-btn {
    width: 100%;
  }
  .works-item-template .char-item {
    flex-direction: column;
    gap: 5px;
  }
  .works-item-template .char-name,
  .works-item-template .char-value {
    max-width: unset;
    min-width: unset;
    width: 100%;
  }
  .single-page.companys .banner-chars {
    justify-content: center;
  }
  .single-page.companys .banner .char-value,
  .single-page.companys .banner .char-name {
    text-align: center;
  }
}