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

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

* {
  margin: 0;
  padding: 0;
  font-family: 'Gilroy', sans-serif;
  font-weight: 500;
  box-sizing: inherit;
}

body {
  background: var(--bgLight);
  max-width: 1920px;
  overflow-x: hidden;
  margin: 0 auto;
  width: auto;
  -webkit-box-shadow: 0 0 20px 5px #747474;
  box-shadow: 0 0 20px 5px #747474;
}

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

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

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

}

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

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

p {
  margin-bottom: 15px;
  color: var(--text);
  font-size: 18px;
  line-height: 26px;
}

h1.page-title {
  font-weight: 600;
  font-size: 60px;
  line-height: 100%;
  color: var(--head);
  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;
}

strong {
  font-weight: 700;
  color: var(--head);
}

.breadcrumbs {
  padding: 30px 0;
  font-weight: 300;
  font-size: 18px;
  line-height: 120%;
  color: var(--text);
}

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


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

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

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

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

.btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 225px;
  width: 100%;
  height: 50px;
  background: var(--primary);
  border: 1px solid var(--primary);
  outline: none;
  color: var(--wh);
  font-weight: 500;
  font-size: 16px;
  line-height: 120%;
  cursor: pointer;
  transition: all 0.3s ease-in;
  padding: 15px 30px;
  white-space: nowrap;
}

.btn svg {
  transition: all 0.3s ease-in;
  margin-right: 10px;
}

.btn svg path {
  transition: all 0.3s ease-in;
}

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

.btn:hover svg path {
  fill: rgba(18, 223, 236, 0.5);
}

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

.btn.invert {
  background-color: #f6c4df;
  color: #fff;
}

.title {
  font-weight: 600;
  font-size: 60px;
  line-height: 100%;
  color: var(--head);
}

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

.privacy-policy #primary {
  max-width: 1170px;
  width: 100%;
  margin: 0 auto;
  padding: 0 15px;
}

::selection {
  background: var(--primary);
  /* Safari */
}

::-moz-selection {
  background: var(--primary);
  /* Firefox */
}

/*============ HEADER =================*/
#header.site-header {
  background: #fff;
  width: 100%;
  padding: 20px 0;
  z-index: 9999;
  position: sticky;
  top: 0;
}

#header .header-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 calc((100% - 1530px) / 2);
}

#header .header-wrap .header-left {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 30px;
}

#header .header-wrap .header-left .logo-holder {
  width: 180px;
}

#header .header-wrap .header-left .logo-holder img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

#header .header-wrap .header-left .menuTop {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 20px;
}

#header .header-wrap .header-left .menuTop li:nth-of-type(1) a {
  background: var(--primary);
  border: 1px solid var(--primary);
  padding: 10px 20px;
  color: var(--wh);
  display: flex;
  align-items: center;
  gap: 5px;
  transition: .6s;
  padding-left: 20px;
  position: relative;
}

#header .header-wrap .header-left .menuTop li:nth-of-type(1) a:hover {
  background-color: transparent;
  color: var(--primary);
  transition: .6s;
}

#header .header-wrap .header-left .menuTop .nav-menu-element.has-childs {
  position: relative;
  transition: .6s;
}

#header .header-wrap .header-left .menuTop .nav-menu-element.has-childs .sub-menu {
  display: flex;
  position: absolute;
  top: 75px;
  left: 0;
  width: 100%;
  height: 100%;
  list-style: none;
  opacity: 0;
  transition: .6s;
}

#header .header-wrap .header-left .menuTop .nav-menu-element.has-childs.active .sub-menu {
  opacity: 1;
}

#header .header-wrap .header-left .menuTop .nav-menu-element.has-childs .sub-menu .nav-menu-element {
  white-space: nowrap;
}

#header .header-wrap .header-left .menuTop li:nth-of-type(1) a .item__icon {
  transition: .6s;
}

#header .header-wrap .header-left .menuTop li:nth-of-type(1) a:hover .item__icon {
  transition: .6s;
  filter: invert(1);
}

#header .header-wrap .header-left .menuTop .nav-menu-element {
  margin: 0;
  font-weight: 500;
  font-size: 16px;
  line-height: 120%;
  color: var(--text);
}

#header .header-wrap .header-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 30px;
}

#header .header-wrap .header-right .contacts-block {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 5px;
}

#header .header-wrap .header-right .contacts-block .phones__holder .phone__item {
  color: var(--head);
  font-weight: 600;
  font-size: 24px;
  line-height: 120%;
  transition: .6s;
}

#header .header-wrap .header-right .contacts-block .phones__holder .phone__item:hover {
  color: var(--primary);
  transition: .6s;
}

#header .header-wrap .header-right .contacts-block .email__holder .email__item {
  font-weight: 400;
  font-size: 14px;
  line-height: 135%;
  color: var(--text);
  transition: .6s;
}

#header .header-wrap .header-right .contacts-block .email__holder .email__item:hover {
  color: var(--primary);
  transition: .6s;
}

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

#header .header-wrap .header-right .buttons .btn.to-call {
  background: var(--bgDark);
  font-weight: 500;
  font-size: 16px;
  line-height: 120%;
  color: var(--text);
  border: none;
  transition: .6s;
}

#header .header-wrap .header-right .buttons .btn.to-call:hover {
  background: var(--primary);
  color: var(--wh);
  transition: .6s;
}

#header .header-wrap .header-right .buttons .to-page {
  font-weight: 500;
  font-size: 16px;
  line-height: 120%;
}

#header .header-bottom {
  display: none;
  padding: 30px calc((100% - 1530px) / 2);
}

#header .header-bottom .submenu {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
}

#header .header-bottom .submenu .nav-menu-element {
  display: flex;
  /* align-items: flex-start; */
  justify-content: flex-start;
  gap: 10px;
  transition: .6s;
}

#header .header-bottom .submenu .nav-menu-element:hover .text-menu .name-serv,
#header .header-bottom .submenu .nav-menu-element:hover .text-menu .desc-serv p {
  color: var(--primary);
}

#header .header-bottom .submenu .nav-menu-element .text-menu .name-serv {
  font-size: 16px;
  color: var(--head);
  font-weight: 500;
  line-height: 120%;
  transition: .6s;
  margin-bottom: 5px;
}

#header .header-bottom .submenu .nav-menu-element .text-menu .desc-serv p {
  font-size: 14px;
  color: var(--text);
  line-height: 135%;
  margin: 0;
  -webkit-line-clamp: 2;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  width: fit-content;
  transition: .6s;
}

#header .header-bottom .submenu .nav-menu-element .icon svg path {
  transition: .6s;
  transform: rotate(0deg);
}

#header .header-bottom .submenu .nav-menu-element .icon svg {
  transition: .6s;

}

#header .header-bottom .submenu .nav-menu-element:hover .icon svg {
  transform: rotate(90deg);
}

#header .header-bottom .submenu .nav-menu-element:hover .icon svg path {
  stroke: var(--primary);
}


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

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

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

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

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

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

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

#header #mobile-mnu a:hover {
  color: #D12D26;
}

#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;
  margin-bottom: 10px;
}

#header #mobile-mnu .menuTop li {
  width: fit-content;
}

#header #mobile-mnu .menuTop li:nth-child(1) a {
  width: fit-content;
  padding: 15px 30px;
  display: flex;
  background: var(--primary);
	border: 1px solid var(--primary);
  align-items: center;
  color: var(--wh);
  gap: 5px;
  transition: .6s;
}

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

#header #mobile-mnu .menuTop li:nth-child(1) a:hover .item__icon {
  filter: invert(1);
}

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

#header #mobile-mnu .menuTop li a:hover {
  color: #D12D26;
}

/* 
#header #mobile-mnu .menuTop li.active a {
  color: #D12D26;
} */

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

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

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

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

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

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

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

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

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

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

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

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

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

#header #mobile-mnu .soc__holder .soc__item svg {
  filter: brightness(0) invert(1);
}

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

#header #mobile-mnu.opened {
  transform: translateX(0);
}
/*============ ARCHIVE SERVICES ===============*/
.archive .article-pagination {
  margin-bottom: 60px;
}

.archive .article-pagination .pagination-container {
  display: flex;
  align-items: center;
  gap: 20px;
  justify-content: center;
  margin-top: 30px;
}

.archive .article-pagination .pagination-container .pagination-links {
  display: flex;
  list-style: none;
  align-items: center;
  gap: 10px;
}

.archive .article-pagination .pagination-container .pagination-links li {}

/* .archive .article-pagination .pagination-container .pagination-links li:hover {
  background: var(--primary);
} */

.archive .article-pagination .pagination-container .pagination-links li .page-numbers {
  font-weight: 500;
  font-size: 16px;
  line-height: 120%;
  color: var(--text);
  transition: .6s;
  width: 40px;
  height: 40px;
  background: var(--bgDark);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  transition: .6s;
}

.archive .article-pagination .pagination-container .pagination-links li .page-numbers.current {
  cursor: no-drop;
  color: var(--primary);
}

.archive .article-pagination .pagination-container .pagination-links li .page-numbers:hover {
  background: var(--primary);
  color: var(--wh);
}

.archive .article-pagination .pagination-container .pagination-prev {
  transition: .6s;
}

.article-pagination .pagination-container .pagination-prev .inactive,
.article-pagination .pagination-container .pagination-next .inactive {
  cursor: no-drop;

}

.archive .article-pagination .pagination-container .pagination-prev .prev svg {
  transform: scaleX(-1);
}

.archive .article-pagination .pagination-container .pagination-prev:hover .page-numbers svg path,
.archive .article-pagination .pagination-container .pagination-next:hover .page-numbers svg path {
  stroke: var(--primary);
  transition: .6s;
}


.archive .services__holder {
  display: grid;
  grid-template-columns: repeat(3, auto);
  gap: 30px;
  padding-bottom: 40px;
}

.archive .services__holder .services__item {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.archive .services__holder .services__item img {
  max-width: 370px;
  max-height: 264px;
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 1 /1;
}

.archive .services__holder .services__item .text-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.archive .services__holder .services__item .text-bottom svg {
  transform: rotate(0);
  transition: .6s;
}

.archive .services__holder .services__item:hover .text-bottom svg {
  transform: rotate(90deg);
  transition: .6s;
}

.archive .services__holder .services__item:hover .text-bottom svg path {
  stroke: var(--hover);
  transition: .6s;
}


/*============ SINGLE-SERVICES ===============*/

.single-services .site-wrap {
  position: relative;
  padding-bottom: 140px;
  height: 600px;
}

.single-services .site-wrap .breadcrumbs {
  font-weight: 400;
  font-size: 16px;
  line-height: 135%;
  color: var(--disable);
}

.single-services .site-wrap .breadcrumbs span.current-item {
  color: var(--wh);
}

.single-services .site-wrap .background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.single-services .site-wrap .background::before {
  position: absolute;
  background: linear-gradient(180deg, rgba(39, 35, 32, 0.8) 16.92%, rgba(39, 35, 32, 0) 100%);
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.single-services .site-wrap .background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.single-services .site-wrap .single-wrap {
  width: 65%;
  padding-top: 60px;
}

.single-services .site-wrap .single-wrap .title {
  color: var(--wh);
}

.single-services .site-wrap .single-wrap .desc p {
  font-weight: 400;
  font-size: 16px;
  line-height: 135%;
  color: var(--disable);
  margin: 20px 0 40px;
}

.single-services #more_services {
  padding: 60px 0;
}

.single-services #more_services .title {
  margin-bottom: 40px;
}
.single-services #more_services .swiper-slide {
  height: auto;
}
.single-services #more_services .services__item {
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: .6s;
}

.single-services #more_services .services__item img {
  max-width: 370px;
  max-height: 264px;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: .6s;
}

.single-services #more_services .services__item .text-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 20px;
  font-weight: 400;
  color: var(--head);
  line-height: 135%;
  transition: .6s;
}

.single-services #more_services .services__item:hover .text-bottom {
  color: var(--primary);
  transition: .6s;
}

.single-services #more_services .services__item .text-bottom svg {
  transform: rotate(0);
  transition: .6s;
}

.single-services #more_services .services__item:hover .text-bottom svg {
  transform: rotate(90deg);
  transition: .6s;
}

.single-services #more_services .services__item:hover .text-bottom svg path {
  stroke: var(--hover);
  transition: .6s;
}

.single-services #more_services .slider-theme {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 40px;
}

.single-services #more_services .slider-theme .sw-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
}

.single-services #more_services .slider-theme .sw-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: var(--primary);
}

.single-services #more_services .slider-theme .buttons {
  display: flex;
  align-items: center;
  gap: 10px;
}

.single-services #more_services .slider-theme .buttons .swiper-btn-prev,
.single-services #more_services .slider-theme .buttons .swiper-btn-next {
  background: var(--primary);
  border: 1px solid var(--primary);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: .6s;
  cursor: pointer;
}

.single-services #more_services .slider-theme .buttons .swiper-btn-prev:hover,
.single-services #more_services .slider-theme .buttons .swiper-btn-next:hover {
  background: transparent;
  transition: .6s;
}

.single-services #more_services .slider-theme .buttons .swiper-btn-prev svg path,
.single-services #more_services .slider-theme .buttons .swiper-btn-next svg path {
  transition: .6s;
}

.single-services #more_services .slider-theme .buttons .swiper-btn-prev:hover svg path,
.single-services #more_services .slider-theme .buttons .swiper-btn-next:hover svg path {
  transition: .6s;
  stroke: var(--primary);
}

.single-services #more_services .slider-theme .buttons .swiper-btn-prev.swiper-button-disabled,
.single-services #more_services .slider-theme .buttons .swiper-btn-next.swiper-button-disabled {
  background: var(--bgDark);
  border: none;
  cursor: no-drop;
}

.single-services #more_services .slider-theme .buttons .swiper-btn-prev.swiper-button-disabled svg path,
.single-services #more_services .slider-theme .buttons .swiper-btn-next.swiper-button-disabled svg path {
  stroke: var(--disable);
}

/*============ ARCHIVE PROJECTS ===============*/
.archive .projects__holder {
  padding-bottom: 40px
}

.archive .projects-tax {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: flex-start;
  margin-bottom: 40px;
}

.archive .projects-tax .btn {
  background: var(--bgDark);
  color: var(--text);
  border: 1px solid var(--bgDark);
}

.archive .projects-tax .btn:hover {
  border: 1px solid var(--primary);
  color: var(--primary);

}

.archive .projects-tax .btn.active {
  background: var(--primary);
  color: var(--wh);
}

.archive .projects__holder .project-cats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  row-gap: 40px;
  column-gap: 30px;
}

.archive .projects__holder .project-cats .project-item {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
}

.archive .projects__holder .project-cats .project-item img {
  max-width: 570px;
  width: 100%;
  max-height: 370px;
  height: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  cursor: pointer;
}

.archive .projects__holder .project-cats .project-item .text-block .name-project {
  font-size: 24px;
  color: var(--head);
  font-weight: 600;
  line-height: 120%;
  margin: 0 0 10px;
}

.archive .projects__holder .project-cats .project-item .text-block .desc-project {
  font-size: 16px;
  color: var(--text);
  line-height: 135%;
}


/*============ ARCHIVE REVIEWS ===============*/
.archive .reviews__holder {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  position: relative;
}

.archive .reviews__holder .left-side {
  position: sticky;
  top: 120px;
  height: fit-content;
}

.archive .reviews__holder .left-side .desc {
  font-size: 16px;
  color: var(--text);
  line-height: 135%;
  margin: 30px 0 20px;
}

.archive .reviews__holder .right-side {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.archive .reviews__holder .right-side .review-item {
  padding: 30px;
  border: 1px solid var(--stroke);
  transition: .6s;
  cursor: pointer;
}

.archive .reviews__holder .right-side .review-item:hover {
  background: var(--wh);
  box-shadow: 0px 32px 64px -12px rgba(51, 51, 51, 0.14);
}

.archive .reviews__holder .right-side .review-item .up-block {
  display: flex;
  gap: 10px;
  align-items: center;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--stroke);
  margin: 0;
}

.archive .reviews__holder .right-side .review-item .up-block .text-block {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.archive .reviews__holder .right-side .review-item .up-block .text-block .name-review {
  font-weight: 600;
  font-size: 20px;
  line-height: 120%;
  color: var(--head);
}

.archive .reviews__holder .right-side .review-item .up-block .text-block .serv-review {
  font-weight: 500;
  font-size: 14px;
  line-height: 120%;
  color: var(--primary);
}

.archive .reviews__holder .right-side .review-item .up-block .icon {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--bgDark);
}

.archive .reviews__holder .right-side .review-item .up-block .icon img,
.archive .reviews__holder .right-side .review-item .up-block .icon svg {
  width: 24px;
  height: 24px;
  border-radius: 50%;

}

.archive .reviews__holder .right-side .review-item .txt-block p {
  font-weight: 400;
  font-size: 16px;
  line-height: 135%;
  color: var(--text);
  padding-top: 10px;
  transition: .6s;
  margin: 0;
}

.archive .reviews__holder .right-side .review-item .txt-block p.hidden {
  max-height: 95px;
  overflow: hidden;
  margin: 0;
  /* Убираем внешний отступ */
  -webkit-line-clamp: 4;
  /* Число отображаемых строк */
  display: -webkit-box;
  /* Включаем флексбоксы */
  -webkit-box-orient: vertical;
  /* Вертикальная ориентация */
  overflow: hidden;
  transition: .6s;
}

.archive .reviews__holder .right-side .review-item .show-more {
  font-weight: 500;
  font-size: 16px;
  line-height: 120%;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 5px;
  margin: 12px 0 22px;
  transition: .6s;
}
.archive .reviews__holder .right-side .review-item .show-more.hidden {
  display: none;
}

.archive .reviews__holder .right-side .review-item .show-more.added {
  transition: .6s;
}

.archive .reviews__holder .right-side .review-item .show-more:hover {
  color: var(--primary);
}

.archive .reviews__holder .right-side .review-item .show-more svg rect {
  transition: .6s;
}

.archive .reviews__holder .right-side .review-item .show-more:hover svg rect {
  stroke: var(--primary);
}

.archive .reviews__holder .right-side .review-item .gallery-block {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: flex-start;
  margin-top: auto;
}

.archive .reviews__holder .right-side .review-item .gallery-block .gallery-item {
  width: 70px;
  height: 70px;
  cursor: pointer;
  transition: .6s;
  position: relative;
}

.archive .reviews__holder .right-side .review-item .gallery-block .gallery-item::before {
  width: 100%;
  height: 100%;
  top: 0;
  content: "";
  position: absolute;
  left: 0;
  background: var(--primary);
  opacity: 0;
  transition: .6s;
  pointer-events: none;
}

.archive .reviews__holder .right-side .review-item .gallery-block .gallery-item::after {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  content: url(../images/magnifier.svg);
  opacity: 0;
  transition: .6s;
  pointer-events: none;
}

.archive .reviews__holder .right-side .review-item .gallery-block .gallery-item:hover::before {
  opacity: .4;
}

.archive .reviews__holder .right-side .review-item .gallery-block .gallery-item:hover::after {
  opacity: 1;
}

.archive .reviews__holder .right-side .review-item .gallery-block .gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}


/*============ FOOTER ===============*/
#footer {
  padding: 40px 0 20px;
  background: var(--head);
}

#footer .footer-wrap .top-line {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 40px;
}

#footer .footer-wrap .top-line .column-footer {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

#footer .footer-wrap .top-line .column-footer .logo-holder {
  display: flex;
  width: 180px;
  height: 60px;
  margin-bottom: 10px;
  filter: brightness(0) invert(1);
}

#footer .footer-wrap .top-line .column-footer .logo-holder img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

#footer .footer-wrap .top-line .column-footer .email__holder .email__item,
#footer .footer-wrap .top-line .column-footer .adresses__holder,
#footer .footer-wrap .top-line .column-footer .requisites-OGRN,
#footer .footer-wrap .top-line .column-footer .requisites-IP,
#footer .footer-wrap .top-line .column-footer .requisites-inn {
  display: flex;
  gap: 13px;
  align-items: center;
  transition: .6s;
}

#footer .footer-wrap .top-line .column-footer .email__holder .email__item:hover {
  opacity: .7;
}

#footer .footer-wrap .top-line .column-footer .email__holder .email__item svg,
#footer .footer-wrap .top-line .column-footer .adresses__holder svg,
#footer .footer-wrap .top-line .column-footer .requisites-OGRN .icon,
#footer .footer-wrap .top-line .column-footer .requisites-IP .icon,
#footer .footer-wrap .top-line .column-footer .requisites-inn .icon {
  filter: brightness(0) invert(1);
}

#footer .footer-wrap .top-line .column-footer .email__holder .email__item .text-block .name,
#footer .footer-wrap .top-line .column-footer .adresses__holder .text-block .name,
#footer .footer-wrap .top-line .column-footer .requisites-OGRN .text-block .name,
#footer .footer-wrap .top-line .column-footer .requisites-IP .text-block .name,
#footer .footer-wrap .top-line .column-footer .requisites-inn .text-block .name {
  font-weight: 400;
  font-size: 12px;
  line-height: 135%;
  color: var(--disable);
}

#footer .footer-wrap .top-line .column-footer .email__holder .email__item .text-block .value,
#footer .footer-wrap .top-line .column-footer .adresses__holder .text-block .value p,
#footer .footer-wrap .top-line .column-footer .requisites-OGRN .text-block .value,
#footer .footer-wrap .top-line .column-footer .requisites-IP .text-block .value,
#footer .footer-wrap .top-line .column-footer .requisites-inn .text-block .value {
  font-weight: 500;
  font-size: 16px;
  line-height: 120%;
  color: var(--wh);
}

#footer .footer-wrap .top-line .footer-menu {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
}

#footer .footer-wrap .top-line .footer-menu .name-menu {
  color: var(--wh);
  font-weight: 500;
  font-size: 16px;
  line-height: 120%;
}

#footer .footer-wrap .top-line .footer-menu .menuFooter {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

#footer .footer-wrap .top-line .footer-menu .menuFooter .nav-menu-element {
  margin: 0;
  line-height: 0;
}

#footer .footer-wrap .top-line .footer-menu .menuFooter .nav-menu-element a {
  font-weight: 400;
  font-size: 14px;
  line-height: 135%;
  color: var(--disable);
  transition: .6s;
}

#footer .footer-wrap .top-line .footer-menu .menuFooter .nav-menu-element a:hover {
  color: var(--wh);
  transition: .6s;
}

#footer .footer-wrap .top-line .form-footer {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 270px;
}

#footer .footer-wrap .top-line .form-footer .name-form {
  font-weight: 500;
  font-size: 16px;
  line-height: 120%;
  color: var(--wh);
}

#footer .footer-wrap .top-line .form-footer input {
  padding: 14px 0;
  background: transparent;
  border: none;
  color: var(--disable);
  border-bottom: 1px solid var(--text);
  width: 100%;
}

#footer .footer-wrap .top-line .form-footer input::placeholder {
  font-weight: 400;
  font-size: 16px;
  line-height: 135%;
  color: var(--text);
}

#footer .footer-wrap .top-line .form-footer .btn {
  max-width: 100%;
  margin: 16px 0 10px;
}

#footer .footer-wrap .top-line .form-footer .privacy-agree {
  font-weight: 400;
  font-size: 12px;
  line-height: 135%;
  color: var(--text);
}

#footer .footer-wrap .top-line .form-footer .privacy-agree a {
  color: var(--primary);
  transition: .6s;
}

#footer .footer-wrap .top-line .form-footer .privacy-agree a:hover {
  opacity: .7;
  transition: .6s;
}

#footer .footer-wrap .bottom-line {
  padding-top: 20px;
  border-top: 1px solid var(--text);
}

#footer .footer-wrap .bottom-line .bottom-wrap {
  display: flex;
  justify-content: space-between;
  align-self: flex-end;
}

#footer .footer-wrap .bottom-line .bottom-wrap .privacy_link,
#footer .footer-wrap .bottom-line .bottom-wrap .dev,
#footer .footer-wrap .bottom-line .bottom-wrap .copy-write {
  font-weight: 400;
  font-size: 16px;
  line-height: 135%;
  color: var(--text);
  transition: .6s;
}

#footer .footer-wrap .bottom-line .bottom-wrap .privacy_link:hover,
#footer .footer-wrap .bottom-line .bottom-wrap .dev:hover {
  color: var(--wh);
}

#footer .footer-wrap .bottom-line .bottom-wrap .dev:hover svg path {
  transition: .6s;
}

#footer .footer-wrap .bottom-line .bottom-wrap .dev:hover svg path {
  fill: var(--wh);
}

/* ============== ERROR PAGE ============= */
.error-404 .page-content {
  width: 50%;
  padding: 226px 0;
}

.error-404 .page-content .error-wrap .error-content .title {
  color: var(--wh);
  font-size: 70px;
  font-weight: 700;
  line-height: 100%;
}

.error-404 .page-content .error-wrap .error-content .error-desc {
  color: var(--wh);
  font-size: 20px;
  line-height: 135%;
  margin: 20px 0 40px;
}




/* ============== PRIVACY POLICY ============= */
.privacy-policy #primary {
  max-width: 1170px;
  width: 100%;
  margin: 0 auto;
  padding: 0 15px;
  margin-bottom: 50px;
}

.privacy-policy h2 {
  margin-bottom: 0.6em;
}
.privacy-policy h3 {
  margin-bottom: 0.5em;
  font-size: 1.3em;
}
.privacy-policy table {
  margin-bottom: 0.6em;
}


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

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

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

input.error {
  border-bottom: 1px solid red !important;
}


.theme-modal {
  /* height: 590px; */
  height: fit-content;
  width: 540px;
  max-height: 90vh;
  max-width: 90vw;
  background-color: var(--wh);
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) scale(0);
  pointer-events: none;
  transition: transform .3s ease-in;
  z-index: 9999;
  overflow-y: auto;
  padding: 50px;
}


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

.theme-modal .close-modal {
  position: absolute;
  right: 20px;
  top: 20px;
  font-size: 40px;
  font-weight: 750;
  color: var(--head);
  cursor: pointer;
}

#modal-callback .form__holder .form .name-form {
  font-weight: 700;
  font-size: 32px;
  line-height: 100%;
  color: var(--head);
}

#modal-callback .form__holder .form .desc-form {
  font-weight: 400;
  font-size: 16px;
  line-height: 135%;
  color: var(--text);
  margin: 10px 0 30px;
}

#modal-callback .form__holder .form .inputs {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  margin-bottom: 30px;
}

#modal-callback .form__holder .form .inputs input {
  width: 100%;
  padding: 14px 0;
  border: none;
  border-bottom: 1px solid var(--stroke);
}

#modal-callback .form__holder .form .inputs textarea {
  width: 100%;
  padding: 14px 0;
  border: none;
  border-bottom: 1px solid var(--stroke);
  resize: vertical;
}

#modal-callback .form__holder .form .inputs input:focus,
#modal-callback .form__holder .form .inputs textarea:focus {
  outline: none;
}

#modal-callback .form__holder .form .inputs input::placeholder,
#modal-callback .form__holder .form .inputs textarea::placeholder {
  font-weight: 400;
  font-size: 16px;
  line-height: 135%;
  color: var(--disable);
}

#modal-callback .form__holder .form .bottom-form {
  display: flex;
  gap: 10px;
  align-items: center;
}

#modal-callback .form__holder .form .bottom-form .privacy-agree {
  font-weight: 400;
  font-size: 12px;
  line-height: 135%;
  color: var(--text);
}

#modal-callback .form__holder .form .bottom-form .privacy-agree a {
  color: var(--primary);
  transition: .6s;
}

#modal-callback .form__holder .form .bottom-form .privacy-agree a:hover {
  opacity: .7;
  transition: .6s;
}

#modal-review .form__holder .form .name-form {
  font-weight: 700;
  font-size: 32px;
  line-height: 100%;
  color: var(--head);
  margin-bottom: 30px;
}

#modal-review .form__holder .form .inputs {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  margin-bottom: 30px;
}

#modal-review .form__holder .form .inputs input {
  width: 100%;
  padding: 14px 0;
  border: none;
  border-bottom: 1px solid var(--stroke);
}

#modal-review .form__holder .form .inputs textarea {
  width: 100%;
  padding: 14px 0;
  border: none;
  border-bottom: 1px solid var(--stroke);
  resize: vertical;
}

#modal-review .form__holder .form .inputs input:focus,
#modal-review .form__holder .form .inputs textarea:focus {
  outline: none;
}

#modal-review .form__holder .form .inputs input::placeholder,
#modal-review .form__holder .form .inputs textarea::placeholder {
  font-weight: 400;
  font-size: 16px;
  line-height: 135%;
  color: var(--disable);
}

#modal-review .form__holder .form .inputs .input-file {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: .6s;
  cursor: pointer;
}

#modal-review .form__holder .form .inputs .input-file input[type=file] {
  position: absolute;
  z-index: -1;
  opacity: 0;
  display: block;
  width: 0;
  height: 0;
}

#modal-review .form__holder .form .inputs .input-file .input-file-btn {
  position: relative;
  display: inline-block;
  cursor: pointer;
  outline: none;
  text-decoration: none;
  vertical-align: middle;
  color: var(--head);
  text-align: center;
  border-radius: 4px;
  background-color: none;
  padding: 10px 20px;
  box-sizing: border-box;
  border: none;
  margin: 0;
  transition: background-color 0.2s;
  font-weight: 600;
  font-size: 16px;
  line-height: 150%;
}

#modal-review .form__holder .form .inputs .input-file:hover .input-file-btn {
  color: var(--primary);
}

#modal-review .form__holder .form .inputs .input-file .input-file-text {
  max-width: 225px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

#modal-review .form__holder .form .bottom-form {
  display: flex;
  gap: 10px;
  align-items: center;
}

#modal-review .form__holder .form .bottom-form .privacy-agree {
  font-weight: 400;
  font-size: 12px;
  line-height: 135%;
  color: var(--text);
}

#modal-review .form__holder .form .bottom-form .privacy-agree a {
  color: var(--primary);
  transition: .6s;
}

#modal-review .form__holder .form .bottom-form .privacy-agree a:hover {
  opacity: .7;
  transition: .6s;
}

#modal-question .form__holder .form .name-form {
  font-weight: 700;
  font-size: 32px;
  line-height: 100%;
  color: var(--head);
  margin-bottom: 30px;
}

#modal-question .form__holder .form .desc-form {
  font-weight: 400;
  font-size: 16px;
  line-height: 135%;
  color: var(--text);
  margin: 10px 0 30px;
}

#modal-question .form__holder .form .inputs {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  margin-bottom: 30px;
}

#modal-question .form__holder .form .inputs input {
  width: 100%;
  padding: 14px 0;
  border: none;
  border-bottom: 1px solid var(--stroke);
}

#modal-question .form__holder .form .inputs textarea {
  width: 100%;
  padding: 14px 0;
  border: none;
  border-bottom: 1px solid var(--stroke);
  resize: vertical;
}

#modal-question .form__holder .form .inputs input:focus,
#modal-question .form__holder .form .inputs textarea:focus {
  outline: none;
}

#modal-question .form__holder .form .inputs input::placeholder,
#modal-question .form__holder .form .inputs textarea::placeholder {
  font-weight: 400;
  font-size: 16px;
  line-height: 135%;
  color: var(--disable);
}

#modal-question .form__holder .form .bottom-form {
  display: flex;
  gap: 10px;
  align-items: center;
}

#modal-question .form__holder .form .bottom-form .privacy-agree {
  font-weight: 400;
  font-size: 12px;
  line-height: 135%;
  color: var(--text);
}

#modal-question .form__holder .form .bottom-form .privacy-agree a {
  color: var(--primary);
  transition: .6s;
}

#modal-question .form__holder .form .bottom-form .privacy-agree a:hover {
  opacity: .7;
  transition: .6s;
}


/* ============= MEDIA QUERIES =========== */
@media (max-width: 1560px) {
  #header .header-wrap {
    padding: 0 15px;
  }
}

@media (max-width: 1400px) {
  #header .header-wrap .header-left .menuTop {
    display: none;
  }

  #header .burger.open_menu {
    display: flex;
    margin-left: 10px;
  }

  #header .header-wrap .header-right {
    margin-left: auto;
  }
}

@media (max-width: 1200px) {
  .archive .projects-tax {
    flex-wrap: wrap;
  }

  .error-404 .page-content {
    width: 100%;
  }
}

@media (max-width: 992px) {
  .title {
    font-size: 35px;
  }

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

  .archive .reviews__holder .left-side {
    position: relative;
    top: 0;
  }

  #footer .footer-wrap .top-line {
    flex-wrap: wrap;
    gap: 50px;
  }

  #footer .footer-wrap .top-line .column-footer {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    gap: 25px;
  }

  .single-services .site-wrap .single-wrap {
    width: 100%;
  }

  .single-services #more_services {
    padding: 40px 0;
  }
}

@media (max-width: 845px) {
  #header .header-wrap .header-right .buttons {
    display: none;
  }

  .archive .services__holder {
    grid-template-columns: repeat(2, auto);
  }

  .archive .projects__holder .project-cats {
    grid-template-columns: repeat(1, auto);
  }

  .archive .projects__holder .project-cats .project-item img {
    max-height: 250px;
    max-width: 100%;
  }
}

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

  .error-404 .page-content .error-wrap .error-content .title {
    text-align: center;
    font-size: 25px;
  }

  .error-404 .page-content .error-wrap .error-content .error-desc {
    text-align: center;
    font-size: 16px;
  }

  .error-404 .page-content .error-wrap .error-content .btn {
    margin: 0 auto;
  }

  #footer .footer-wrap .bottom-line .bottom-wrap {
    flex-direction: column;
    gap: 10px;
    align-items: center;
  }

  #modal-callback .form__holder .form .bottom-form {
    flex-direction: column-reverse;
    align-items: center;
  }

  #modal-callback .form__holder .form .bottom-form .privacy-agree {
    text-align: center;
  }

  #modal-review .form__holder .form .inputs .input-file {
    flex-direction: column;
    align-items: center;
    gap: 0px;
  }

  #modal-review .form__holder .form .bottom-form {
    flex-direction: column-reverse;
    gap: 10px;
    align-items: center;
  }

  #modal-review .form__holder .form .bottom-form .privacy-agree {
    text-align: center;
  }

  #modal-question .form__holder .form .bottom-form {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

  #modal-question .form__holder .form .bottom-form .privacy-agree {
    text-align: center;
  }

  .archive .services__holder {
    padding: 0;
  }

  .archive .article-pagination {
    margin: 40px 0;
  }

  .archive .article-pagination .pagination-container {
    margin-top: 0px;
  }
}

@media (max-width: 470px) {
  .archive .projects__holder .project-cats .tab-item {
    grid-template-columns: repeat(1, 1fr);
    row-gap: 20px;
  }

  .archive .projects-tax .btn {
    max-width: 100%;
  }

  #header .header-wrap .header-left .logo-holder {
    width: 100px;
  }

  #header .header-wrap .header-right .contacts-block .email__holder {
    display: none;
  }

  #header .header-wrap .header-right .contacts-block .phones__holder .phone__item {
    font-size: 16px;
  }

  .archive .services__holder {
    grid-template-columns: repeat(1, auto);
  }

  .archive .services__holder .services__item img {
    max-width: 100%;
  }

  #footer .footer-wrap .top-line {
    gap: 40px;
  }

  #footer .footer-wrap .top-line .form-footer {
    width: 100%;
  }
}

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