body {
  background-color: #f4f5f8;
  font-family: "Poppins", sans-serif;
}
.overlay_banner {
  background: #000000;
  background: -webkit-linear-gradient(0deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.38) 100%);
  background: -moz-linear-gradient(0deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.38) 100%);
  background: linear-gradient(0deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.38) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#000000", endColorstr="#000000", GradientType=0);
}
.pr_card_top::after {
  transition: all 0.3s ease-in-out;
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #000000;
  background: -webkit-linear-gradient(0deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.38) 100%);
  background: -moz-linear-gradient(0deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.38) 100%);
  background: linear-gradient(0deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.38) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#000000", endColorstr="#000000", GradientType=0);
}
.header_menu_desctop a:hover {
  color: #754be9 !important;
}

.products-swiper-pagination span {
  height: 2px !important;
  flex-wrap: nowrap;
  width: 13%;
  border-radius: 0px;
}
.products-swiper-pagination span.swiper-pagination-bullet-active {
  background-color: #000;
}

.banner_slider_nav_buttons {
  left: 16px;
}
.adv_icon {
  position: relative;
  padding-block: 1.5rem;
}
.adv_svg {
  width: 5.438rem;
  background-color: #801e00;
  padding-inline: 1rem;
}
.adv_svg::before {
  top: 0;
  border-bottom: 1.569rem solid #801e00;
  content: "";
  position: absolute;
  border-left: 2.719rem solid transparent;
  border-right: 2.719rem solid transparent;
  left: 0;
  right: 0;
}
.adv_svg::after {
  content: "";
  position: absolute;
  border-left: 2.719rem solid transparent;
  border-right: 2.719rem solid transparent;
  left: 0;
  right: 0;
  bottom: 0;
    border-top: 1.569rem solid #801e00;
}
.adv_card svg {
  width: 3rem;
  color: #fff;
  fill: #fff;
  height: auto;
}
.adv_icon_wrapper {
  text-align: center;
  width: 100%;
  height: 100%;
}
@media (min-width: 576px) {
  .banner_slider_nav_buttons {
    left: calc((100vw - 540px) / 2 + 16px);
  }
}

@media (min-width: 768px) {
  .banner_slider_nav_buttons {
    left: calc((100vw - 720px) / 2 + 16px);
  }
}

@media (min-width: 992px) {
  .banner_slider_nav_buttons {
    left: calc((100vw - 960px) / 2 + 16px);
  }
}

@media (min-width: 1200px) {
  .banner_slider_nav_buttons {
    left: calc((100vw - 1140px) / 2 + 16px);
  }
}

@media (min-width: 1440px) {
  .banner_slider_nav_buttons {
    left: calc((100vw - 1360px) / 2 + 16px);
  }
}

@media (min-width: 1600px) {
  .banner_slider_nav_buttons {
    left: calc((100vw - 1440px) / 2 + 16px);
  }
}

#left_big_card {
  overflow: hidden;
  position: relative;
}

#first_slide_img.fade-change {
  animation: firstSlideImgFade 0.65s ease both;
}

@keyframes firstSlideImgFade {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

#projects_wrapper {
  border-radius: 1.5rem 1.5rem 0px 0px;
}

.pr_button {
  position: relative;
  width: 3.5rem;
  height: 3.5rem;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  justify-content: center;
  border-radius: 100px;
  border: 2px solid var(--lines-borders, #e2e3e4);
  cursor: pointer;
  transition: 0.5s cubic-bezier(0.33, 1, 0.68, 1);
}
.pr_button:hover {
  background-color: #e12917;
  border-color: #e12917;
}
.pr_button svg {
  width: 1.5rem;
  height: 1.5rem;
}
.prSwiper::before {
  content: "";
  position: absolute;
  width: 30.8125rem;
  left: 0;
  top: 0;
  bottom: 0;
  background: -webkit-gradient(linear, left top, right top, from(#474e5a), to(rgba(71, 78, 90, 0)));
  background: linear-gradient(90deg, #474e5a 0%, rgba(71, 78, 90, 0) 100%);
  pointer-events: none;
  z-index: 2;
}
.partnor_card {
  border-radius: 16px;
  background-color: #f5f6fa;
  height: 130px;
  position: relative;
  width: 100%;
  overflow: hidden;
  will-change: transform;
  padding: 20px 30px;
}
.partnor_card span {
  background-color: #dee2ed;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  border-radius: 50%;
  color: #fff;
  display: block;
  height: 0;
  position: absolute;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-transition:
    height 1s,
    width 1s;
  -moz-transition:
    height 1s,
    width 1s;
  -ms-transition:
    height 1s,
    width 1s;
  -o-transition:
    height 1s,
    width 1s;
  transition:
    height 1s,
    width 1s;
  width: 0;
}
.partnor_card:hover > span {
  height: 700px;
  width: 700px;
}
.container {
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  padding-left: 16px;
  padding-right: 16px;
}
.media_buttons button {
  color: #bab8b8;
  font-size: 17px;
  text-transform: uppercase;
  cursor: pointer;
  transition: 0.3s;
}
.media_buttons button:hover {
  color: #000;
  text-decoration: underline;
  text-underline-offset: 4px;
}
.media_all_button::after {
  content: "";
  position: absolute;
  width: 100%;
  bottom: 0;
  left: 0;
  border-bottom: 1px solid #000;
}
.media_buttons button.active {
  color: #000;
  text-decoration: underline;
  text-underline-offset: 4px;
}
.about_main {
  background: url("../photos/maurer_bg.jpg") center/cover no-repeat;
}

/* section map */
.section-map__text h2 {
  font-size: 5rem;
  letter-spacing: 8px;
  font-weight: 500;
  margin-bottom: 20px;
  text-align: center;
  text-transform: uppercase;
}
.section-map__text p {
  color: #414141;
  margin-bottom: 20px;
  text-align: center;
  max-width: 850px;
  margin: auto;
  font-size: 16px;
}
.section-map__img,
.section-map__boxes {
  margin: auto;
}
.works-map_f {
  position: relative;
}
.section-map__img img {
  width: 100%;
}
.work-point-box {
  z-index: 1;
  display: none;
  align-items: center;
  justify-content: center;
  position: absolute;
  transition: all 0.3s;
}
.work-point-box.active {
  display: flex;
}
.work-point_h {
  position: relative;
}
.work-points {
  cursor: pointer;
  position: relative;
  display: grid;
  grid-auto-flow: column;
  justify-content: center;
  color: #0068ff;
  font-size: 1rem;
}
.work-points::before {
  z-index: -2;
  content: "";
  width: 100%;
  height: 100%;
  left: -5px;
  top: -5px;
  position: absolute;
  padding: 5px;
  box-sizing: content-box;
}
:is(.work-out-circle, .work-inner-circle) {
  content: "";
  display: inline-block;
  box-sizing: content-box;
  border-radius: 50%;
}
.work-out-circle {
  animation: workCircleAnim 2s infinite;
  width: 8px;
  background-color: #ff000087;
  padding: 8px;
  height: 8px;
}
@keyframes workCircleAnim {
  0% {
    transform: scale(0.5);
    opacity: 1;
  }
  100% {
    transform: scale(1.5);
    opacity: 0;
  }
}

.work-inner-circle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #ff000087;
  padding: calc(8px / 2);
}
:is(.work-out-circle, .work-inner-circle) {
  content: "";
  display: inline-block;
  box-sizing: content-box;
  border-radius: 50%;
}
.work-point-alt {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  left: 100%;
  visibility: hidden;
  top: 50%;
  transform: translateY(-50%);
  height: fit-content;
  opacity: 0;
  padding: 0.938rem;
  background-color: #ff000087;
  transition: all 0.5s;
  box-shadow: 6px 14px 25px -3px rgb(0 0 0 / 0.5);
}
.work-point-alt > span {
  display: inline-block;
  word-spacing: 0;
  line-height: 1;
  color: silver;
  font-size: 1.375rem;
  letter-spacing: 1.2px;
  font-weight: 700;
  text-transform: uppercase;
}
.work-point-box:hover {
  z-index: 9;
}
.work-point-box:hover .work-point-alt {
  visibility: visible;
  opacity: 1;
}

/* Small tablets */
@media (min-width: 576px) {
  .container {
    max-width: 540px;
  }
}

/* Tablets */
@media (min-width: 768px) {
  .container {
    max-width: 720px;
  }
}

/* Laptops */
@media (min-width: 992px) {
  .container {
    max-width: 960px;
  }
}

/* Desktops */
@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
}

/* Large screens */
@media (min-width: 1440px) {
  .container {
    max-width: 1360px;
  }
}

/* Extra large screens */
@media (min-width: 1600px) {
  .container {
    max-width: 1440px;
  }
}

.header_menu_list.active {
  left: -20%;
  opacity: 0;
}
.header_menu_list a {
  transition: all 0.3s ease-in-out;
}
.header_menu_list a.active {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #000;
  height: 36px;
  padding: 0px 20px;
  border-radius: 4px;
}
.header_menu_list a:hover:not(.active) {
  color: #da6c4e;
}
.header_menu_item {
  position: relative;
}
.header_submenu {
  background: #fff;
  color: #111;
  border-radius: 6px;
  box-shadow:
    rgba(0, 0, 0, 0.12) 0px 8px 18px,
    rgba(0, 0, 0, 0.08) 0px 2px 6px;
  left: 50%;
  min-width: 100%;
  opacity: 0;
  padding: 5px 10px;
  pointer-events: none;
  position: absolute;
  top: calc(100% + 16px);
  transform: translate(-50%, 8px);
  transition:
    opacity 0.25s ease,
    transform 0.25s ease,
    visibility 0.25s ease;
  visibility: hidden;
  z-index: 20;
}
.header_submenu::before {
  content: "";
  height: 16px;
  left: 0;
  position: absolute;
  right: 0;
  top: -16px;
}
.header_submenu a {
  display: block;
  padding: 8px 12px;
  white-space: nowrap;
}

@media (min-width: 1024px) {
  .has-submenu:hover .header_submenu,
  .has-submenu:focus-within .header_submenu {
    opacity: 1;
    pointer-events: auto;
    transform: translate(-50%, 0);
    visibility: visible;
  }
}
.hamburger.active .hamburger__line {
  background-color: #da6c4e;
}
.hamburger.active {
  border-color: #da6c4e;
}
#wide_menu_wrapper {
  background: linear-gradient(180deg, #22517d, #7995b5);
  opacity: 0;
  visibility: hidden;
}
#wide_menu_wrapper.active {
  opacity: 1;
  visibility: visible;
}
#wide_socials_wrapper a:hover {
  transform: scale(1.1);
  background: #da6c4e;
}
#wide_socials_wrapper svg path {
  transition: all 0.3s ease-in-out;
}
#wide_socials_wrapper a:hover svg path {
  fill: #fff;
  opacity: 1;
}
.banner_thumbs_slider .swiper-slide {
  width: 25px !important;
  height: 25px;
  border-radius: 50%;
  overflow: hidden;
  opacity: 0.5;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}
.banner_thumbs_slider .swiper-slide.swiper-slide-thumb-active {
  opacity: 1;
  width: 35px !important;
  height: 35px;
  border: 1px solid #fff;
}
.banner_thumbs_slider .swiper-slide img,
.banner_main_slider img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.banner_main_slider .swiper-slide img {
  transform: scale(1.05);
  transition:
    transform 1.2s ease,
    opacity 0.9s ease;
}
.banner_main_slider .swiper-slide-active img {
  transform: scale(1);
}
.contents_slider {
  width: 50%;
  height: 150px;
  overflow: hidden;
  margin: 0px;
}

.contents_slider .swiper-slide {
  transition: all 0.2s ease-in-out;
}
.content_slide_button:hover {
  background-color: #DF2719;
  color: #fff;
  border-color: #DF2719;
  margin-left: 20px;
}
.content_slider_top:hover {
  color: #DF2719;
  margin-left: 20px;
}
.banner_content_slider .swiper-slide a,
.banner_content_slider .swiper-slide a button {
  transition: all 0.3s ease-in-out;
}
.banner_content_slider .swiper-slide a:hover {
  background: #da6c4e;
}
.banner_content_slider .swiper-slide a:hover button {
  transform: scale(1.2);
  background: #fff;
  color: #da6c4e;
}

#banner_overlay {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  background: #000000;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.58) 0%, rgba(0, 0, 0, 0) 41%);
}
.header_menu {
  box-shadow:
    rgba(0, 0, 0, 0.07) 0px 1px 1px,
    rgba(0, 0, 0, 0.07) 0px 2px 2px,
    rgba(0, 0, 0, 0.07) 0px 4px 4px,
    rgba(0, 0, 0, 0.07) 0px 8px 8px,
    rgba(0, 0, 0, 0.07) 0px 16px 16px;
}



.fancybox__slide {
        padding: 20px;
      }
      .docs-page__tabs-list {
        display: flex;
        border-bottom: 1px solid #e3e3e3;
      }

      .docs-page__tabs-item {
        margin-bottom: -1px;
        padding-bottom: 12.8px;
        font-weight: 700;
        text-transform: uppercase;
        font-size: 22.4px;
        line-height: 1.2;
        letter-spacing: -0.448px;
        border-bottom: 1px solid rgba(0, 0, 0, 0);
        transition: 0.5s cubic-bezier(0.33, 1, 0.68, 1);
        cursor: pointer;
      }
      .docs-page__tabs-item.active {
        color: #104c8a;
        border-color: #104c8a;
      }
      .docs-page__tabs-item:not(:first-child) {
        margin-left: 25.6px;
      }
      .docs-page__blocks {
        margin-top: 25.6px;
      }
      .docs-page__block {
        display: none;
      }
      .docs-page__block.active {
        display: block;
      }

      .docs-page__grid {
        display: grid;
        grid-template-columns: repeat(6, 1fr);
        gap: 16px;
      }
      .docs-page__card {
        display: flex;
        flex-direction: column;
        cursor: pointer;
      }
      .docs-page__card-container {
        padding: 18.4px 17.6px;
        flex-shrink: 0;
        height: 305.6px;
        display: flex;
        align-items: center;
        justify-content: center;
        border: 1px solid #e3e3e3;
      }
      .picture {
        display: flex;
        align-items: center;
      }
      .docs-page__card-img {
        width: 100%;
        height: 100%;
      }
      .docs-page__card-content {
        margin-top: 19.2px;
        height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
      }
      .docs-page__card-text {
        margin-bottom: 12.8px;
        font-weight: 500;
        font-size: 12.8px;
        line-height: 1.3;
        display: -moz-box;
        display: -webkit-box;
        overflow: hidden;
        text-overflow: ellipsis;
        -moz-box-orient: vertical;
        -webkit-box-orient: vertical;
        box-orient: vertical;
        -webkit-line-clamp: 3;
        line-clamp: 3;
      }
      .docs-page__card-btn {
        display: flex;
        align-items: center;
      }
      .docs-page__card-icon {
        margin-right: 12.8px;
        display: flex;
        align-items: center;
      }
      .docs-page__card-svg {
        --size: 22.4px;
        width: var(--size);
        height: var(--size);
        overflow: visible;
      }
      .docs-page__card-caption {
        font-size: 12.8px;
        line-height: 1.3;
        font-weight: 500;
      }
      
      
      .docs-page__tabs-list {
    display: flex;
    border-bottom: 1px solid #e3e3e3;
}
.docs-page__tabs-item {
    margin-bottom: -1px;
    padding-bottom: 12.8px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 22.4px;
    line-height: 1.2;
    letter-spacing: -0.448px;
    border-bottom: 1px solid rgba(0, 0, 0, 0);
    transition: 0.5s cubic-bezier(0.33, 1, 0.68, 1);
    cursor: pointer;
}
.docs-page__tabs-item.active {
    color: #104c8a;
    border-color: #104c8a;
}
.docs-page__tabs-item:not(:first-child) {
    margin-left: 25.6px;
}
.docs-page__blocks {
    margin-top: 25.6px;
}
.docs-page__block.active {
    display: block;
}
.static .boxFull {
    background: white;
    border-radius: 10px;
    -webkit-box-shadow: #0000001f 0px 1px 2px 0px;
    box-shadow: #0000001f 0px 1px 2px 0px;
    padding-top: 44px;
    padding-right: 44px;
    padding-bottom: 48px;
    padding-left: 44px;
}
.static .boxFull h2 {
    font-size: 28px;
    margin-bottom: 30px;
}
.staticImg img {
    max-width: 100%;
}


.docs-page__block {
  display: none;
}

.docs-page__block.active {
  display: block;
}

.docs-page__tabs-item {
  cursor: pointer;
}

.docs-page__tabs-item.active {
  color: #104c8a;
}

.partnor {
    display: inline-block;
    height: 180px;
    width: 45%;
    padding: 30px;
    border-radius: 15px;
    border-radius: 15px;
    box-shadow: -10px -10px 30px #fff, 10px 10px 30px #aeaec040;
    position: relative;
    overflow: hidden;
}
.partnor::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #cddcdc;
    background-image: radial-gradient(at 50% 100%, rgba(255, 255, 255, 0.5) 0%, rgba(0, 0, 0, 0.5) 100%), linear-gradient(to bottom, rgba(255, 255, 255, 0.25) 0%, rgba(0, 0, 0, 0.25) 100%);
    background-blend-mode: screen, overlay;
    border-radius: 50%;
    left: 0;
    bottom: -80%;
    transition: all 0.3s ease-in-out;
}
.partnor img {
    position: relative;
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: all 0.3s ease-in-out;
}
.partnor:hover::before {
    bottom: 0;
    border-radius: 0;
    transition: all 0.3s ease-in-out;
}
.fancy_gallery_card {
    display: inline-block;
    height: 300px;
    overflow:hidden;
}
.fancy_gallery_card img {
    width: 100%;
    height: 100%;
    object-fit:cover;
}
.speedbar .over {
    color: #0005;
    font-size: 18px;
}
.speedbar .over a {
    color: #0000009e;
    transition: all .3s ease-in-out;
}
.speedbar .over a:hover {
    color: #000;
}
.modal_search_wrapper::before {
    content: "";
    width: 100%;
    height: 100%;
    background: #0005;
    left: 0;
    top: 0;
    position: absolute;
}

body.search-modal-open {
    overflow: hidden;
}


.search-page {
    padding: 8px 0 64px;
}

.search-page__header {
    max-width: 760px;
}

.search-page__title {
    color: #1b1922;
    font-size: clamp(32px, 5vw, 64px);
    font-weight: 500;
    line-height: 1.05;
    text-transform: uppercase;
}

.search-page__form {
    display: flex;
    gap: 8px;
    margin-top: 32px;
}

.search-page__form input {
    min-width: 0;
    flex: 1;
    min-height: 48px;
    border: 1px solid rgba(0, 0, 0, 0.28);
    border-radius: 8px;
    padding: 10px 16px;
}

.search-page__form button {
    min-height: 48px;
    border: 1px solid #000;
    border-radius: 8px;
    background: #000;
    color: #fff;
    cursor: pointer;
    padding: 10px 24px;
    transition: background-color .2s ease, color .2s ease;
}

.search-page__form button:hover {
    background: #fff;
    color: #000;
}

.search-page__summary {
    margin-top: 24px;
    color: rgba(27, 25, 34, 0.65);
}

.search-results-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    margin-top: 32px;
}

.search-result-card {
    height: 100%;
    border: 1px solid rgba(0, 0, 0, 0.12);
    background: #fff;
}

.search-result-card__link {
    display: flex;
    height: 100%;
    min-height: 240px;
    flex-direction: column;
    padding: 24px;
}

.search-result-card__meta {
    color: rgba(27, 25, 34, 0.55);
    font-size: 13px;
}

.search-result-card__title {
    margin-top: 24px;
    color: #1b1922;
    font-size: 22px;
    font-weight: 600;
    line-height: 1.25;
}

.search-result-card__text {
    margin-top: 12px;
    color: rgba(27, 25, 34, 0.72);
    line-height: 1.55;
}

.search-result-card__more {
    margin-top: auto;
    padding-top: 24px;
    color: #104c8a;
    font-size: 14px;
    font-weight: 600;
}

.search-page__empty {
    margin-top: 32px;
    border: 1px solid rgba(0, 0, 0, 0.12);
    padding: 32px;
    color: rgba(27, 25, 34, 0.72);
    text-align: center;
}

.search-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 40px;
}

.search-pagination a,
.search-pagination span {
    display: inline-flex;
    min-width: 44px;
    min-height: 44px;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(0, 0, 0, 0.18);
    padding: 8px 12px;
}

.search-pagination span[aria-current="page"] {
    border-color: #104c8a;
    background: #104c8a;
    color: #fff;
}

@media (max-width: 900px) {
    .search-results-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .modal_search_wrapper {
        padding-top: 72px;
    }

    .modal_search_wrapper .container {
        padding-inline: 16px;
    }

    .search_wrapper {
        width: 100%;
        margin-right: 0;
    }

    .search_wrapper input {
        width: calc(100% - 96px);
    }

    .search_wrapper button {
        width: 88px;
    }

    .search-page {
        padding-bottom: 40px;
    }

    .search-page__form {
        align-items: stretch;
        flex-direction: column;
    }

    .search-results-grid {
        grid-template-columns: 1fr;
    }

    .search-result-card__link {
        min-height: 220px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .search-page__form button {
        transition: none;
    }
}
