/*!*****************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./node_modules/swiper/swiper-bundle.css ***!
  \*****************************************************************************************/
/**
 * Swiper 12.0.3
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * https://swiperjs.com
 *
 * Copyright 2014-2025 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: October 21, 2025
 */

:root {
  --swiper-theme-color: #007aff;
  /*
  --swiper-preloader-color: var(--swiper-theme-color);
  --swiper-wrapper-transition-timing-function: initial;
  */
}
:host {
  position: relative;
  display: block;
  margin-left: auto;
  margin-right: auto;
  z-index: 1;
}
.swiper {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  /* Fix of Webkit flickering */
  z-index: 1;
  display: block;
}
.swiper-vertical > .swiper-wrapper {
  flex-direction: column;
}
.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  transition-property: transform;
  transition-timing-function: var(--swiper-wrapper-transition-timing-function, initial);
  box-sizing: content-box;
}
.swiper-android .swiper-slide,
.swiper-ios .swiper-slide,
.swiper-wrapper {
  transform: translate3d(0px, 0, 0);
}
.swiper-horizontal {
  touch-action: pan-y;
}
.swiper-vertical {
  touch-action: pan-x;
}
.swiper-slide {
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  transition-property: transform;
  display: block;
}
.swiper-slide-invisible-blank {
  visibility: hidden;
}
/* Auto Height */
.swiper-autoheight,
.swiper-autoheight .swiper-slide {
  height: auto;
}
.swiper-autoheight .swiper-wrapper {
  align-items: flex-start;
  transition-property: transform, height;
}
.swiper-backface-hidden .swiper-slide {
  transform: translateZ(0);
  backface-visibility: hidden;
}
/* 3D Effects */
.swiper-3d.swiper-css-mode .swiper-wrapper {
  perspective: 1200px;
}
.swiper-3d .swiper-wrapper {
  transform-style: preserve-3d;
}
.swiper-3d {
  perspective: 1200px;
  .swiper-slide,
  .swiper-cube-shadow {
    transform-style: preserve-3d;
  }
}

/* CSS Mode */
.swiper-css-mode {
  > .swiper-wrapper {
    overflow: auto;
    scrollbar-width: none; /* For Firefox */
    -ms-overflow-style: none; /* For Internet Explorer and Edge */
    &::-webkit-scrollbar {
      display: none;
    }
  }
  > .swiper-wrapper > .swiper-slide {
    scroll-snap-align: start start;
  }
  &.swiper-horizontal {
    > .swiper-wrapper {
      scroll-snap-type: x mandatory;
    }
  }
  &.swiper-vertical {
    > .swiper-wrapper {
      scroll-snap-type: y mandatory;
    }
  }
  &.swiper-free-mode {
    > .swiper-wrapper {
      scroll-snap-type: none;
    }
    > .swiper-wrapper > .swiper-slide {
      scroll-snap-align: none;
    }
  }
  &.swiper-centered {
    > .swiper-wrapper::before {
      content: '';
      flex-shrink: 0;
      order: 9999;
    }
    > .swiper-wrapper > .swiper-slide {
      scroll-snap-align: center center;
      scroll-snap-stop: always;
    }
  }
  &.swiper-centered.swiper-horizontal {
    > .swiper-wrapper > .swiper-slide:first-child {
      margin-inline-start: var(--swiper-centered-offset-before);
    }
    > .swiper-wrapper::before {
      height: 100%;
      min-height: 1px;
      width: var(--swiper-centered-offset-after);
    }
  }
  &.swiper-centered.swiper-vertical {
    > .swiper-wrapper > .swiper-slide:first-child {
      margin-block-start: var(--swiper-centered-offset-before);
    }
    > .swiper-wrapper::before {
      width: 100%;
      min-width: 1px;
      height: var(--swiper-centered-offset-after);
    }
  }
}

/* Slide styles start */
/* 3D Shadows */
.swiper-3d {
  .swiper-slide-shadow,
  .swiper-slide-shadow-left,
  .swiper-slide-shadow-right,
  .swiper-slide-shadow-top,
  .swiper-slide-shadow-bottom,
  .swiper-slide-shadow,
  .swiper-slide-shadow-left,
  .swiper-slide-shadow-right,
  .swiper-slide-shadow-top,
  .swiper-slide-shadow-bottom {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 10;
  }
  .swiper-slide-shadow {
    background: rgba(0, 0, 0, 0.15);
  }
  .swiper-slide-shadow-left {
    background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  }
  .swiper-slide-shadow-right {
    background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  }
  .swiper-slide-shadow-top {
    background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  }
  .swiper-slide-shadow-bottom {
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  }
}
.swiper-lazy-preloader {
  width: 42px;
  height: 42px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -21px;
  margin-top: -21px;
  z-index: 10;
  transform-origin: 50%;
  box-sizing: border-box;
  border: 4px solid var(--swiper-preloader-color, var(--swiper-theme-color));
  border-radius: 50%;
  border-top-color: transparent;
}
.swiper:not(.swiper-watch-progress),
.swiper-watch-progress .swiper-slide-visible {
  .swiper-lazy-preloader {
    animation: swiper-preloader-spin 1s infinite linear;
  }
}
.swiper-lazy-preloader-white {
  --swiper-preloader-color: #fff;
}
.swiper-lazy-preloader-black {
  --swiper-preloader-color: #000;
}
@keyframes swiper-preloader-spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/* Slide styles end */

.swiper-virtual .swiper-slide {
  -webkit-backface-visibility: hidden;
  transform: translateZ(0);
}
.swiper-virtual.swiper-css-mode {
  .swiper-wrapper::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    pointer-events: none;
  }
}
.swiper-virtual.swiper-css-mode.swiper-horizontal {
  .swiper-wrapper::after {
    height: 1px;
    width: var(--swiper-virtual-size);
  }
}

.swiper-virtual.swiper-css-mode.swiper-vertical {
  .swiper-wrapper::after {
    width: 1px;
    height: var(--swiper-virtual-size);
  }
}



:root {
  --swiper-navigation-size: 44px;
  /*
  --swiper-navigation-top-offset: 50%;
  --swiper-navigation-sides-offset: 4px;
  --swiper-navigation-color: var(--swiper-theme-color);
  */
}
.swiper-button-prev,
.swiper-button-next {
  position: absolute;

  width: var(--swiper-navigation-size);
  height: var(--swiper-navigation-size);

  z-index: 10;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--swiper-navigation-color, var(--swiper-theme-color));
  &.swiper-button-disabled {
    opacity: 0.35;
    cursor: auto;
    pointer-events: none;
  }
  &.swiper-button-hidden {
    opacity: 0;
    cursor: auto;
    pointer-events: none;
  }
  .swiper-navigation-disabled & {
    display: none !important;
  }
  svg {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transform-origin: center;
    fill: currentColor;
    pointer-events: none;
  }
}

.swiper-button-lock {
  display: none;
}

.swiper-button-prev,
.swiper-button-next {
  top: var(--swiper-navigation-top-offset, 50%);
  margin-top: calc(0px - (var(--swiper-navigation-size) / 2));
}
.swiper-button-prev {
  left: var(--swiper-navigation-sides-offset, 4px);
  right: auto;
  .swiper-navigation-icon {
    transform: rotate(180deg);
  }
}
.swiper-button-next {
  right: var(--swiper-navigation-sides-offset, 4px);
  left: auto;
}
.swiper-horizontal {
  .swiper-button-prev,
  .swiper-button-next,
  ~ .swiper-button-prev,
  ~ .swiper-button-next {
    top: var(--swiper-navigation-top-offset, 50%);
    margin-top: calc(0px - (var(--swiper-navigation-size) / 2));
    margin-left: 0;
  }
  .swiper-button-prev,
  & ~ .swiper-button-prev,
  &.swiper-rtl .swiper-button-next,
  &.swiper-rtl ~ .swiper-button-next {
    left: var(--swiper-navigation-sides-offset, 4px);
    right: auto;
  }
  .swiper-button-next,
  & ~ .swiper-button-next,
  &.swiper-rtl .swiper-button-prev,
  &.swiper-rtl ~ .swiper-button-prev {
    right: var(--swiper-navigation-sides-offset, 4px);
    left: auto;
  }
  .swiper-button-prev,
  & ~ .swiper-button-prev,
  &.swiper-rtl .swiper-button-next,
  &.swiper-rtl ~ .swiper-button-next {
    .swiper-navigation-icon {
      transform: rotate(180deg);
    }
  }
  &.swiper-rtl .swiper-button-prev,
  &.swiper-rtl ~ .swiper-button-prev {
    .swiper-navigation-icon {
      transform: rotate(0deg);
    }
  }
}
.swiper-vertical {
  .swiper-button-prev,
  .swiper-button-next,
  ~ .swiper-button-prev,
  ~ .swiper-button-next {
    left: var(--swiper-navigation-top-offset, 50%);
    right: auto;
    margin-left: calc(0px - (var(--swiper-navigation-size) / 2));
    margin-top: 0;
  }
  .swiper-button-prev,
  ~ .swiper-button-prev {
    top: var(--swiper-navigation-sides-offset, 4px);
    bottom: auto;
    .swiper-navigation-icon {
      transform: rotate(-90deg);
    }
  }
  .swiper-button-next,
  ~ .swiper-button-next {
    bottom: var(--swiper-navigation-sides-offset, 4px);
    top: auto;
    .swiper-navigation-icon {
      transform: rotate(90deg);
    }
  }
}

:root {
  /*
  --swiper-pagination-color: var(--swiper-theme-color);
  --swiper-pagination-left: auto;
  --swiper-pagination-right: 8px;
  --swiper-pagination-bottom: 8px;
  --swiper-pagination-top: auto;
  --swiper-pagination-fraction-color: inherit;
  --swiper-pagination-progressbar-bg-color: rgba(0,0,0,0.25);
  --swiper-pagination-progressbar-size: 4px;
  --swiper-pagination-bullet-size: 8px;
  --swiper-pagination-bullet-width: 8px;
  --swiper-pagination-bullet-height: 8px;
  --swiper-pagination-bullet-border-radius: 50%;
  --swiper-pagination-bullet-inactive-color: #000;
  --swiper-pagination-bullet-inactive-opacity: 0.2;
  --swiper-pagination-bullet-opacity: 1;
  --swiper-pagination-bullet-horizontal-gap: 4px;
  --swiper-pagination-bullet-vertical-gap: 6px;
  */
}
.swiper-pagination {
  position: absolute;
  text-align: center;
  transition: 300ms opacity;
  transform: translate3d(0, 0, 0);
  z-index: 10;
  &.swiper-pagination-hidden {
    opacity: 0;
  }
  .swiper-pagination-disabled > &,
  &.swiper-pagination-disabled {
    display: none !important;
  }
}
/* Common Styles */
.swiper-pagination-fraction,
.swiper-pagination-custom,
.swiper-horizontal > .swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal {
  bottom: var(--swiper-pagination-bottom, 8px);
  top: var(--swiper-pagination-top, auto);
  left: 0;
  width: 100%;
}
/* Bullets */
.swiper-pagination-bullets-dynamic {
  overflow: hidden;
  font-size: 0;
  .swiper-pagination-bullet {
    transform: scale(0.33);
    position: relative;
  }
  .swiper-pagination-bullet-active {
    transform: scale(1);
  }
  .swiper-pagination-bullet-active-main {
    transform: scale(1);
  }
  .swiper-pagination-bullet-active-prev {
    transform: scale(0.66);
  }
  .swiper-pagination-bullet-active-prev-prev {
    transform: scale(0.33);
  }
  .swiper-pagination-bullet-active-next {
    transform: scale(0.66);
  }
  .swiper-pagination-bullet-active-next-next {
    transform: scale(0.33);
  }
}
.swiper-pagination-bullet {
  width: var(--swiper-pagination-bullet-width, var(--swiper-pagination-bullet-size, 8px));
  height: var(--swiper-pagination-bullet-height, var(--swiper-pagination-bullet-size, 8px));
  display: inline-block;
  border-radius: var(--swiper-pagination-bullet-border-radius, 50%);
  background: var(--swiper-pagination-bullet-inactive-color, #000);
  opacity: var(--swiper-pagination-bullet-inactive-opacity, 0.2);
  button& {
    border: none;
    margin: 0;
    padding: 0;
    box-shadow: none;
    appearance: none;
  }
  .swiper-pagination-clickable & {
    cursor: pointer;
  }

  &:only-child {
    display: none !important;
  }
}
.swiper-pagination-bullet-active {
  opacity: var(--swiper-pagination-bullet-opacity, 1);
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
}

.swiper-vertical > .swiper-pagination-bullets,
.swiper-pagination-vertical.swiper-pagination-bullets {
  right: var(--swiper-pagination-right, 8px);
  left: var(--swiper-pagination-left, auto);
  top: 50%;
  transform: translate3d(0px, -50%, 0);
  .swiper-pagination-bullet {
    margin: var(--swiper-pagination-bullet-vertical-gap, 6px) 0;
    display: block;
  }
  &.swiper-pagination-bullets-dynamic {
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    .swiper-pagination-bullet {
      display: inline-block;
      transition:
        200ms transform,
        200ms top;
    }
  }
}
.swiper-horizontal > .swiper-pagination-bullets,
.swiper-pagination-horizontal.swiper-pagination-bullets {
  .swiper-pagination-bullet {
    margin: 0 var(--swiper-pagination-bullet-horizontal-gap, 4px);
  }
  &.swiper-pagination-bullets-dynamic {
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
    .swiper-pagination-bullet {
      transition:
        200ms transform,
        200ms left;
    }
  }
}
.swiper-horizontal.swiper-rtl > .swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transition:
    200ms transform,
    200ms right;
}
/* Fraction */
.swiper-pagination-fraction {
  color: var(--swiper-pagination-fraction-color, inherit);
}
/* Progress */
.swiper-pagination-progressbar {
  background: var(--swiper-pagination-progressbar-bg-color, rgba(0, 0, 0, 0.25));
  position: absolute;
  .swiper-pagination-progressbar-fill {
    background: var(--swiper-pagination-color, var(--swiper-theme-color));
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    transform: scale(0);
    transform-origin: left top;
  }
  .swiper-rtl & .swiper-pagination-progressbar-fill {
    transform-origin: right top;
  }
  .swiper-horizontal > &,
  &.swiper-pagination-horizontal,
  .swiper-vertical > &.swiper-pagination-progressbar-opposite,
  &.swiper-pagination-vertical.swiper-pagination-progressbar-opposite {
    width: 100%;
    height: var(--swiper-pagination-progressbar-size, 4px);
    left: 0;
    top: 0;
  }
  .swiper-vertical > &,
  &.swiper-pagination-vertical,
  .swiper-horizontal > &.swiper-pagination-progressbar-opposite,
  &.swiper-pagination-horizontal.swiper-pagination-progressbar-opposite {
    width: var(--swiper-pagination-progressbar-size, 4px);
    height: 100%;
    left: 0;
    top: 0;
  }
}
.swiper-pagination-lock {
  display: none;
}

:root {
  /*
  --swiper-scrollbar-border-radius: 10px;
  --swiper-scrollbar-top: auto;
  --swiper-scrollbar-bottom: 4px;
  --swiper-scrollbar-left: auto;
  --swiper-scrollbar-right: 4px;
  --swiper-scrollbar-sides-offset: 1%;
  --swiper-scrollbar-bg-color: rgba(0, 0, 0, 0.1);
  --swiper-scrollbar-drag-bg-color: rgba(0, 0, 0, 0.5);
  --swiper-scrollbar-size: 4px;
  */
}
.swiper-scrollbar {
  border-radius: var(--swiper-scrollbar-border-radius, 10px);
  position: relative;
  touch-action: none;
  background: var(--swiper-scrollbar-bg-color, rgba(0, 0, 0, 0.1));
  .swiper-scrollbar-disabled > &,
  &.swiper-scrollbar-disabled {
    display: none !important;
  }
  .swiper-horizontal > &,
  &.swiper-scrollbar-horizontal {
    position: absolute;
    left: var(--swiper-scrollbar-sides-offset, 1%);
    bottom: var(--swiper-scrollbar-bottom, 4px);
    top: var(--swiper-scrollbar-top, auto);
    z-index: 50;
    height: var(--swiper-scrollbar-size, 4px);
    width: calc(100% - 2 * var(--swiper-scrollbar-sides-offset, 1%));
  }
  .swiper-vertical > &,
  &.swiper-scrollbar-vertical {
    position: absolute;
    left: var(--swiper-scrollbar-left, auto);
    right: var(--swiper-scrollbar-right, 4px);
    top: var(--swiper-scrollbar-sides-offset, 1%);
    z-index: 50;
    width: var(--swiper-scrollbar-size, 4px);
    height: calc(100% - 2 * var(--swiper-scrollbar-sides-offset, 1%));
  }
}
.swiper-scrollbar-drag {
  height: 100%;
  width: 100%;
  position: relative;
  background: var(--swiper-scrollbar-drag-bg-color, rgba(0, 0, 0, 0.5));
  border-radius: var(--swiper-scrollbar-border-radius, 10px);
  left: 0;
  top: 0;
}
.swiper-scrollbar-cursor-drag {
  cursor: move;
}
.swiper-scrollbar-lock {
  display: none;
}


/* Zoom container styles start */
.swiper-zoom-container {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;

  > img,
  > svg,
  > canvas {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
  }
}
/* Zoom container styles end */

.swiper-slide-zoomed {
  cursor: move;
  touch-action: none;
}


/* a11y */
.swiper .swiper-notification {
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
  opacity: 0;
  z-index: -1000;
}




.swiper-thumbs {
  .swiper-slide-thumb-active {
    /* Styles for active thumb slide */
  }
}

.swiper-free-mode > .swiper-wrapper {
  transition-timing-function: ease-out;
  margin: 0 auto;
}

.swiper-grid > .swiper-wrapper {
  flex-wrap: wrap;
}
.swiper-grid-column > .swiper-wrapper {
  flex-wrap: wrap;
  flex-direction: column;
}


.swiper-fade {
  &.swiper-free-mode {
    .swiper-slide {
      transition-timing-function: ease-out;
    }
  }
  .swiper-slide {
    pointer-events: none;
    transition-property: opacity;
    .swiper-slide {
      pointer-events: none;
    }
  }
  .swiper-slide-active {
    pointer-events: auto;
    & .swiper-slide-active {
      pointer-events: auto;
    }
  }
}

.swiper.swiper-cube {
  overflow: visible;
}
.swiper-cube {
  .swiper-slide {
    pointer-events: none;
    backface-visibility: hidden;
    z-index: 1;
    visibility: hidden;
    transform-origin: 0 0;
    width: 100%;
    height: 100%;
    .swiper-slide {
      pointer-events: none;
    }
  }
  &.swiper-rtl .swiper-slide {
    transform-origin: 100% 0;
  }
  .swiper-slide-active {
    &,
    & .swiper-slide-active {
      pointer-events: auto;
    }
  }
  .swiper-slide-active,
  .swiper-slide-next,
  .swiper-slide-prev {
    pointer-events: auto;
    visibility: visible;
  }

  .swiper-cube-shadow {
    position: absolute;
    left: 0;
    bottom: 0px;
    width: 100%;
    height: 100%;
    opacity: 0.6;
    z-index: 0;

    &:before {
      content: '';
      background: #000;
      position: absolute;
      left: 0;
      top: 0;
      bottom: 0;
      right: 0;
      filter: blur(50px);
    }
  }
}
.swiper-cube {
  .swiper-slide-next + .swiper-slide {
    pointer-events: auto;
    visibility: visible;
  }
}
/* Cube slide shadows start */
.swiper-cube {
  .swiper-slide-shadow-cube.swiper-slide-shadow-top,
  .swiper-slide-shadow-cube.swiper-slide-shadow-bottom,
  .swiper-slide-shadow-cube.swiper-slide-shadow-left,
  .swiper-slide-shadow-cube.swiper-slide-shadow-right {
    z-index: 0;
    backface-visibility: hidden;
  }
}
/* Cube slide shadows end */

.swiper.swiper-flip {
  overflow: visible;
}
.swiper-flip {
  .swiper-slide {
    pointer-events: none;
    backface-visibility: hidden;
    z-index: 1;
    .swiper-slide {
      pointer-events: none;
    }
  }
  .swiper-slide-active {
    &,
    & .swiper-slide-active {
      pointer-events: auto;
    }
  }
}
/* Flip slide shadows start */
.swiper-flip {
  .swiper-slide-shadow-flip.swiper-slide-shadow-top,
  .swiper-slide-shadow-flip.swiper-slide-shadow-bottom,
  .swiper-slide-shadow-flip.swiper-slide-shadow-left,
  .swiper-slide-shadow-flip.swiper-slide-shadow-right {
    z-index: 0;
    backface-visibility: hidden;
  }
}
/* Flip slide shadows end */

.swiper-coverflow {
}

.swiper-creative {
  .swiper-slide {
    backface-visibility: hidden;
    overflow: hidden;
    transition-property: transform, opacity, height;
  }
}

.swiper.swiper-cards {
  overflow: visible;
}
.swiper-cards {
  .swiper-slide {
    transform-origin: center bottom;
    backface-visibility: hidden;
    overflow: hidden;
  }
}

/*!*********************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./node_modules/sass-loader/dist/cjs.js!./css/style.scss ***!
  \*********************************************************************************************************/
@charset "UTF-8";
footer {
  position: relative;
  padding: 2.625rem 0;
  background-color: #2D2D2D;
}
footer.show-footer-cards {
  padding: 17.875rem 0 2.625rem 0;
}
footer .site-footer__inner {
  position: relative;
}
footer .site-footer__inner-cards {
  position: absolute;
  left: 0;
  right: 0;
  top: -55%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}
footer .site-footer__inner-cards .footer-card {
  position: relative;
  background: #FF5000;
  border-radius: 10px;
  padding: 1.75rem;
  align-items: start;
  min-height: 350px;
}
footer .site-footer__inner-cards .footer-card .footer-card__inner {
  display: grid;
  grid-template-columns: clamp(180px, 10.42vw + 30px, 230px) 1fr;
  gap: 2rem;
  position: relative;
  height: 100%;
}
footer .site-footer__inner-cards .footer-card .footer-card__media {
  border-radius: 0.5rem;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.12);
}
footer .site-footer__inner-cards .footer-card .footer-card__media .footer-card__img {
  display: block;
  width: 100%;
  height: 100%;
  object-position: top;
  object-fit: cover;
}
footer .site-footer__inner-cards .footer-card .footer-card__content {
  color: #ffffff;
}
footer .site-footer__inner-cards .footer-card .footer-card__content .footer-card__city {
  margin: 1rem 0 2.25rem 0;
  font-size: clamp(18px, 1.56vw, 30px);
  font-weight: 700;
}
footer .site-footer__inner-cards .footer-card .footer-card__content .footer-card__name {
  margin: 0 0 1rem;
  font-size: clamp(18px, 1.35vw, 26px);
  font-weight: 700;
}
footer .site-footer__inner-cards .footer-card .footer-card__content .footer-card__role {
  margin: 0 0 2rem;
  font-size: 18px;
  font-weight: 400;
}
footer .site-footer__inner-cards .footer-card .footer-card__content .footer-card__details {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
footer .site-footer__inner-cards .footer-card .footer-card__content .footer-card__details div {
  font-size: 16px;
  font-weight: 400;
}
footer .site-footer__inner-cards .footer-card .footer-card__call {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 62px;
  height: 62px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  color: #111;
  text-decoration: none;
  font-size: 18px;
  transition: 0.3s all;
}
footer .site-footer__inner-cards .footer-card .footer-card__call img,
footer .site-footer__inner-cards .footer-card .footer-card__call svg {
  width: 30px;
}
footer .site-footer__inner-cards .footer-card .footer-card__call:hover {
  transform: rotate(15deg);
  scale: 1.2;
}
footer .site-footer__inner-cards .footer-card .footer-card__call:hover svg path {
  fill: #17ce01;
}
footer .site-footer__inner-top {
  padding-bottom: 3.875rem;
  border-bottom: 1px solid #646464;
}
footer .site-footer__inner-main, footer .site-footer__inner-bottom {
  display: flex;
  justify-content: space-between;
}
footer .site-footer__inner-main {
  padding: 5.5rem 0;
  border-bottom: 1px solid #646464;
  color: #B2B2B2;
}
footer .site-footer__inner-main .site-footer__title-wrap {
  display: flex;
  flex-direction: column;
  gap: 1.625rem;
  margin-bottom: 3rem;
}
footer .site-footer__inner-main .site-footer__title-wrap .site-footer__title {
  font-size: clamp(28px, 2.08vw, 40px);
  font-weight: 400;
}
footer .site-footer__inner-main .site-footer__title-wrap .site-footer__title,
footer .site-footer__inner-main .site-footer__title-wrap .site-footer__subtitle {
  margin: 0;
}
footer .site-footer__inner-main .site-footer__title,
footer .site-footer__inner-main b,
footer .site-footer__inner-main .site-footer__social a {
  color: #ffffff;
}
footer .site-footer__inner-main .site-footer__social a {
  transition: 0.3s all;
}
footer .site-footer__inner-main .site-footer__social a:hover {
  color: #e04600;
  transform: translateX(3%);
}
footer .site-footer__inner-main .site-footer__contact-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 4.5rem;
}
footer .site-footer__inner-main .site-footer__contact-list a {
  width: fit-content;
  transition: 0.3s all;
}
footer .site-footer__inner-main .site-footer__contact-list a:hover span {
  color: #e04600;
  text-decoration: underline;
}
footer .site-footer__inner-main .site-footer__contact-list a:hover b {
  color: #e04600;
}
footer .site-footer__inner-main .site-footer__social {
  display: inline-flex;
  gap: 2.625rem;
}
footer .site-footer__inner-main .site-footer__links {
  display: inherit;
  gap: 8rem;
  align-self: end;
}
footer .site-footer__inner-main .site-footer__links ul {
  display: flex;
  flex-direction: column;
  gap: 2.375rem;
  margin: 0;
  padding: 0;
  list-style: none;
  text-transform: uppercase;
  transition: 0.3s all;
}
footer .site-footer__inner-main .site-footer__links ul li {
  transition: 0.3s all;
}
footer .site-footer__inner-main .site-footer__links ul li:hover {
  color: #e04600;
  transform: translateX(3%);
}
footer .site-footer__inner-bottom {
  flex-direction: column;
  gap: 1rem;
  padding-top: 2rem;
  color: #B2B2B2;
}
footer .site-footer__inner-bottom p {
  margin: 0;
}
footer .site-footer__inner-bottom .site-footer__bottom-wrap {
  display: inherit;
  justify-content: inherit;
}
footer .site-footer__inner-bottom .site-footer__bottom-wrap .site-footer_provider {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
footer .site-footer__inner-bottom .site-footer__bottom-wrap .site-footer_provider img {
  max-width: 9rem;
}
footer .site-footer__inner-bottom .site-footer__bottom-wrap .site-footer__muted-link,
footer .site-footer__inner-bottom .site-footer__bottom-wrap .site-footer__privacy {
  text-decoration: underline;
}
footer .site-footer__inner-bottom .site-footer__bottom-wrap .site-footer__privacy {
  color: #FF5000;
}
footer .site-footer__brand {
  display: block;
  width: fit-content;
  margin: 0 0 2rem 0;
}
footer .site-footer__about {
  margin: 0;
  font-size: 16px;
  font-weight: 400;
  color: #D0D0D0;
}

@media (max-width: 1300px) {
  footer .footer-card__inner {
    grid-template-columns: 1fr !important;
  }
  footer .footer-card__media {
    display: none;
  }
}
@media (max-width: 1024px) {
  footer.show-footer-cards {
    padding-top: 54rem;
  }
  footer .site-footer__inner-cards {
    grid-template-columns: 1fr;
    top: -37%;
    margin-top: 8rem;
  }
  footer .site-footer__inner {
    margin-top: 10rem;
  }
  footer .site-footer__inner-main {
    flex-direction: column;
    gap: 5rem;
    padding: 3.5rem 0;
  }
  footer .site-footer__contacts {
    order: 2;
  }
  footer .site-footer__links {
    order: 1;
    align-self: start !important;
  }
  footer .site-footer__brand {
    max-width: clamp(220px, 6.7vw + 151.4px, 280px);
  }
}
@media (max-width: 400px) {
  footer .site-footer__links,
  footer .site-footer__social {
    gap: 0 !important;
    justify-content: space-between;
    width: 100%;
  }
  footer .site-footer__bottom-wrap {
    flex-wrap: wrap;
    gap: 0.5rem;
  }
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: #1B1B1B;
  will-change: transform, opacity;
  transition: transform 0.25s ease, opacity 0.2s ease;
}
.site-header.is-header-hidden {
  transform: translateY(-110%);
  opacity: 0;
  pointer-events: none;
}
.site-header.is-header-visible {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}
.site-header .header-inner {
  height: 100%;
  transition: 0.3s all;
}
.site-header .header-inner__wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2rem 0;
  border-bottom: 1px solid #414141;
}
.site-header .header-inner__wrap-left {
  flex: 0 0 auto;
}
.site-header .header-inner__wrap-left .logo {
  display: inline-flex;
  align-items: center;
}
.site-header .header-inner__wrap-left .logo__img {
  display: block;
}
.site-header .header-inner__wrap-right {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  gap: 4rem;
  font-size: clamp(10px, 0.8vw, 15px);
}
@media (max-width: 1024px) {
  .site-header .header-inner__wrap-right {
    gap: 2rem;
  }
}
.site-header .header-inner__wrap-right .socials {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  color: #ffffff;
  white-space: nowrap;
}
.site-header .header-inner__wrap-right .socials a {
  font-weight: 400;
}
.site-header .header-inner__wrap-right .additionals {
  display: inline-flex;
  gap: 3rem;
  align-items: center;
}
@media (max-width: 1024px) {
  .site-header .header-inner__wrap-right .additionals {
    gap: 1rem;
  }
}
.site-header .header-inner__wrap-right .additionals .header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem 1.875rem;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.site-header .header-inner__wrap-right .additionals .btn--primary {
  background-color: #FF5000;
  color: #ffffff;
}
.site-header .header-inner__wrap-right .additionals .lang-switcher {
  position: relative;
  display: inline-flex;
  align-items: center;
}
.site-header .header-inner__wrap-right .additionals .lang-switcher__btn {
  background: transparent;
  border: 0;
  padding: 0;
  cursor: pointer;
}
.site-header .header-inner__wrap-right .additionals .lang-switcher__flag {
  width: 25px;
  height: 25px;
  border-radius: 999px;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.25);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.site-header .header-inner__wrap-right .additionals .lang-switcher__flag img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.site-header .header-inner__wrap-right .additionals .lang-switcher__fallback-label {
  color: #fff;
  font-weight: 700;
  font-size: 12px;
}
.site-header .header-inner__wrap-right .additionals .lang-switcher__menu {
  position: absolute;
  top: calc(100% + 10px);
  right: -50%;
  padding: 10px;
  border-radius: 16px;
  background: rgba(0, 0, 0, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  display: grid;
  gap: 10px;
  z-index: 1000;
}
.site-header .header-inner__wrap-right .additionals .lang-switcher__menu[hidden] {
  display: none !important;
}
.site-header .header-inner__wrap-right .additionals .lang-switcher__item {
  display: inline-flex;
  text-decoration: none;
}
.site-header .header-inner__wrap-right .additionals .burger {
  display: none;
  position: relative;
  width: fit-content;
  height: fit-content;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  z-index: 60;
}
.site-header .header-inner__wrap-right .additionals .burger .burger__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.site-header .header-inner__wrap-right .additionals .burger .burger__icon--close {
  display: none;
}
.site-header .header-nav-wrap {
  max-height: 0;
  min-height: 0;
  opacity: 0;
  align-content: center;
  pointer-events: none;
  transform: translateY(-8px);
  transition: max-height 0.25s ease, min-height 0.25s ease, opacity 0.25s ease, transform 0.25s ease;
  font-size: clamp(10px, 0.8vw, 15px);
  font-weight: 400;
}
.site-header .header-nav-wrap.is-visible {
  max-height: 78px;
  min-height: 78px;
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.mobile-menu {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  height: calc(100dvh - 72px);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
  background: #2D2D2D;
  z-index: 40;
  transform: translateY(-12px);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.25s ease, opacity 0.2s ease;
}
.mobile-menu[aria-hidden=true] {
  pointer-events: none;
}
.mobile-menu__top {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 10px 0 18px;
  border-bottom: 1px solid #414141;
  margin-bottom: 6px;
}
.mobile-menu__list {
  list-style: none;
  margin: 0 0 2rem 0;
  padding: 0;
}
.mobile-menu__list > li {
  position: relative;
  padding-inline: 36px;
}
.mobile-menu__list > li::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 0;
  background: #FF5000;
  z-index: 0;
  transition: height 260ms cubic-bezier(0.2, 0.9, 0.2, 1);
}
.mobile-menu__list > li > a,
.mobile-menu__list > li > .sub-menu-wrap {
  position: relative;
  z-index: 1;
}
.mobile-menu .mobile-menu__list > li.is-open::before {
  transform: scaleX(1);
}
.mobile-menu__list > li.is-open {
  background-color: #FF5000;
}
.mobile-menu__list > li > a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 1.875rem 0;
  color: #ffffff;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 500;
}
.mobile-menu__list > li:not(:last-child) > a {
  border-bottom: 1px solid #414141;
}
.mobile-menu__list > li.is-open > a {
  border-bottom: 1px solid #ffffff;
}
.mobile-menu .menu-item-has-children > a::after {
  content: "›";
  color: #8d8d8d;
  font-size: 22px;
  transform: translateY(-1px) rotate(0deg);
  transform-origin: center;
  transition: transform 220ms cubic-bezier(0.2, 0.9, 0.2, 1), color 180ms ease-out;
}
.mobile-menu .sub-menu {
  list-style: none;
  margin: 0;
  padding: 0 0 1rem 0;
  max-height: 0;
  overflow: hidden;
  display: grid;
  grid-template-rows: 0fr;
  counter-reset: submenu;
  opacity: 0;
  transform: translateY(-6px);
  transition: max-height 260ms cubic-bezier(0.2, 0.9, 0.2, 1), opacity 180ms ease-out, transform 220ms ease-out;
}
.mobile-menu .is-open > .sub-menu {
  max-height: 800px;
  opacity: 1;
  transform: translateY(0);
}
.mobile-menu .sub-menu li {
  padding: 0 32px 0 0;
  counter-increment: submenu;
}
.mobile-menu .sub-menu li:not(:last-child) {
  border-bottom: 1px solid #FF8C57;
}
.mobile-menu .sub-menu a {
  display: grid;
  grid-template-columns: 10px 1fr;
  gap: 2.5rem;
  align-items: center;
  padding: 1.5rem 0;
  color: #fff;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 12px;
}
.mobile-menu .sub-menu > li > a .hero__submenu-num::before {
  content: counter(submenu, decimal-leading-zero);
}
.mobile-menu .is-open > a::after {
  color: #fff;
  transform: translateY(-1px) rotate(90deg);
}

body.is-menu-open {
  overflow: hidden;
}
body.is-menu-open .site-header {
  transform: translateY(0) !important;
  opacity: 1 !important;
  pointer-events: auto !important;
}
body.is-menu-open .mobile-menu {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
body.is-menu-open .header-inner {
  background: #2D2D2D;
}
body.is-menu-open .header-inner__wrap-left {
  display: none;
}
body.is-menu-open .header-inner__wrap-right {
  width: 100%;
}
body.is-menu-open .header-inner__wrap-right .additionals {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 0;
}
body.is-menu-open .header-inner__wrap-right .additionals .lang-switcher {
  display: inline-flex !important;
  order: 1;
}
body.is-menu-open .header-inner__wrap-right .additionals .header-cta {
  display: inline-flex !important;
  order: 2;
  margin: 0 auto;
  padding: 1.2rem 3.5rem !important;
}
body.is-menu-open .header-inner__wrap-right .additionals .burger {
  display: inline-flex !important;
  order: 3;
  z-index: 60;
}
body.is-menu-open .header-inner__wrap-right .additionals .burger .burger__icon--open {
  display: none !important;
}
body.is-menu-open .header-inner__wrap-right .additionals .burger .burger__icon--close {
  display: inline-flex !important;
}

@media (max-width: 1024px) {
  .header-inner {
    height: 72px;
    padding-inline: 16px;
  }
  .header-inner__wrap-left {
    max-width: clamp(220px, 6.7vw + 151.4px, 280px);
  }
}
@media (max-width: 768px) {
  .site-header .header-nav-wrap {
    display: none;
  }
  .site-header .header-inner__wrap-right .socials,
  .site-header .header-inner__wrap-right .header-cta,
  .site-header .header-inner__wrap-right .lang-switcher {
    display: none !important;
  }
  .site-header .header-inner__wrap-right .additionals .burger {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
}
@media (max-width: 400px) {
  body.is-menu-open .header-inner__wrap-right .additionals .header-cta {
    padding: 1rem !important;
  }
}
*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Hubot Sans", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  background-color: #1B1B1B;
  color: #ffffff;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  max-width: 1800px;
  margin: 0 auto;
  padding-right: 2rem;
  padding-left: 2rem;
}
@media (max-width: 1024px) {
  .container {
    padding-inline: 36px;
  }
}

.posts-container {
  max-width: 1550px;
  padding-right: 2rem;
  padding-left: 2rem;
  margin: 0 auto;
}

.cta-container {
  max-width: 1300px;
  padding-right: 2rem;
  padding-left: 2rem;
  margin: 0 auto;
}

.slider-footer-container {
  max-width: 1600px;
  padding-right: 10rem;
  padding-left: 10rem;
}
@media (max-width: 1024px) {
  .slider-footer-container {
    padding-right: 5rem;
    padding-left: 5rem;
  }
}
@media (max-width: 768px) {
  .slider-footer-container {
    padding-right: 2rem;
    padding-left: 2rem;
  }
}

.site-main {
  position: relative;
  min-height: 100vh;
}

.site-main[data-page=susisiekite] {
  min-height: 100%;
}

.site-main[data-page=privatumo-politika] {
  max-width: 1550px;
  margin: 0 auto;
  padding: 4rem 2rem;
}

h1, h2, h3, h4, h5, h6 {
  word-spacing: 8px;
}

p, li, td, th, label, a {
  word-spacing: 4px;
}

@font-face {
  font-family: "Hubot Sans";
  src: url(../fonts/HubotSans-Regular.woff2) format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Hubot Sans";
  src: url(../fonts/HubotSans-Bold.woff2) format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
.site-main[data-page=single-karjera] .hero__content {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.site-main[data-page=single-karjera] .hero__title {
  width: 50%;
  font-size: clamp(28px, 3.125vw, 60px);
}
.site-main[data-page=single-karjera] .career-content {
  margin: 9rem 0;
}
.site-main[data-page=single-karjera] .career-content__inner {
  max-width: 1520px;
  padding-bottom: 10rem;
  margin: 0 auto;
  border-bottom: 1px solid #414141;
}
.site-main[data-page=single-karjera] .career-content__inner .container {
  max-width: 1330px;
}
.site-main[data-page=single-karjera] .career-content p, .site-main[data-page=single-karjera] .career-content ul {
  color: #B2B2B2;
}
.site-main[data-page=single-karjera] .career-content .paragraph-container {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.site-main[data-page=single-karjera] .career-content .paragraph-container p {
  margin: 0;
}
.site-main[data-page=single-karjera] .career-content .cta-button {
  padding: 0 2rem;
}
.site-main[data-page=single-karjera] .posts-archive[data-post-type=karjera] {
  margin-bottom: 12rem;
}
.site-main[data-page=single-karjera] .posts-archive[data-post-type=karjera] .posts-archive__header {
  margin-bottom: 3rem;
}
.site-main[data-page=single-karjera] .posts-archive[data-post-type=karjera] .posts-archive__header .posts-archive__title {
  margin: 0 0 2rem 0;
  font-size: clamp(32px, 3.65vw, 70px);
  font-weight: 700;
}
.site-main[data-page=single-karjera] .posts-archive[data-post-type=karjera] .posts-archive__header .posts-archive__subtitle {
  width: 38%;
  margin: 0;
  font-size: 18px;
  color: #B2B2B2;
}
.site-main[data-page=single-karjera] .posts-archive[data-post-type=karjera] .posts-archive__grid {
  border: 0;
}
@media (max-width: 1024px) {
  .site-main[data-page=single-karjera] .hero__title {
    width: 70%;
  }
  .site-main[data-page=single-karjera] .posts-archive[data-post-type=karjera] .posts-archive__header .posts-archive__subtitle {
    width: 70%;
  }
}
@media (max-width: 768px) {
  .site-main[data-page=single-karjera] .hero__title {
    width: 100%;
  }
  .site-main[data-page=single-karjera] .career-content {
    margin: 3rem 0;
  }
  .site-main[data-page=single-karjera] .career-content__inner {
    padding-bottom: 4rem;
  }
}

.site-main[data-page=single-paslaugos] .hero__slide {
  background-size: auto;
}
@media (max-width: 1700px) {
  .site-main[data-page=single-paslaugos] .hero__slide:after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(27, 27, 27, 0.75) 0%, rgba(27, 27, 27, 0.75) 40%, rgba(27, 27, 27, 0.5) 70%);
  }
}
.site-main[data-page=single-paslaugos] .hero__content {
  padding: 9.5rem 0 !important;
}
.site-main[data-page=single-paslaugos] .hero__content-wrap {
  max-width: 910px;
  padding-left: 6.25rem;
}
.site-main[data-page=single-paslaugos] .hero__title {
  font-size: clamp(28px, 3.125vw, 60px);
  font-weight: 400;
  text-transform: inherit;
}
.site-main[data-page=single-paslaugos] .hero__excerpt {
  margin: 0 0 2.5rem;
  color: #D0D0D0;
  font-size: 18px;
}
.site-main[data-page=single-paslaugos] .list.container {
  max-width: 1360px;
}
.site-main[data-page=single-paslaugos] .list p {
  color: #D0D0D0;
  font-size: 18px;
}

.site-main[data-page=single-post] .post-hero {
  overflow-x: clip;
}
.site-main[data-page=single-post] .post-hero .hero__inner-nav.container {
  margin: 2rem auto;
}
.site-main[data-page=single-post] .post-hero .hero__content.container {
  padding: 4rem 2rem 8rem 2rem;
}
.site-main[data-page=single-post] .post-hero .hero__content-wrap {
  display: grid;
  grid-template-columns: 1.45fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  overflow: visible;
}
.site-main[data-page=single-post] .post-hero__meta {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  margin-bottom: 1.5rem;
  padding: 0;
  color: #B2B2B2;
}
.site-main[data-page=single-post] .post-hero__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #FEDC01;
  display: inline-block;
}
.site-main[data-page=single-post] .post-hero__date {
  font-size: 16px;
  letter-spacing: 0.02em;
}
.site-main[data-page=single-post] .post-hero__title {
  margin: 0 0 1.75rem;
  font-size: clamp(28px, 3.125vw, 60px);
  font-weight: 700;
}
.site-main[data-page=single-post] .post-hero__excerpt {
  margin: 0;
  max-width: 70ch;
  color: #D0D0D0;
  font-size: 18px;
}
.site-main[data-page=single-post] .post-hero__image {
  width: 100%;
  border-radius: 0.625rem;
  overflow: hidden;
}
.site-main[data-page=single-post] .post-hero__image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  border-radius: inherit;
}
@media (max-width: 1024px) {
  .site-main[data-page=single-post] .post-hero .hero__content-wrap {
    grid-template-columns: 1fr 1fr;
  }
  .site-main[data-page=single-post] .post-hero__inner {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 768px) {
  .site-main[data-page=single-post] .post-hero .hero__content {
    padding: 0 2rem 2rem 2rem !important;
    transform: translateY(0);
  }
  .site-main[data-page=single-post] .post-hero .hero__content-wrap {
    grid-template-columns: 1fr;
  }
  .site-main[data-page=single-post] .post-hero__right {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
    transform: unset;
  }
  .site-main[data-page=single-post] .post-hero__image {
    border-radius: 0.5rem;
  }
}
.site-main[data-page=single-post] .post-content {
  font-size: 18px;
}
.site-main[data-page=single-post] .post-content__inner {
  border-bottom: 1px solid #414141;
}
.site-main[data-page=single-post] .post-content .container {
  max-width: 1590px;
}
.site-main[data-page=single-post] .post-content .container p {
  margin: 0;
  color: #B2B2B2;
}
.site-main[data-page=single-post] .posts-archive[data-post-type=post] {
  margin: 6rem 0 44.5rem 0;
}
.site-main[data-page=single-post] .posts-archive[data-post-type=post] .posts-archive__inner.container {
  max-width: 1800px;
}
.site-main[data-page=single-post] .posts-archive[data-post-type=post] .posts-archive__header {
  margin-bottom: 3rem;
}
.site-main[data-page=single-post] .posts-archive[data-post-type=post] .posts-archive__header .posts-archive__title {
  margin: 0 0 2rem 0;
  font-size: clamp(32px, 3.65vw, 70px);
  font-weight: 700;
}
.site-main[data-page=single-post] .posts-archive[data-post-type=post] .posts-archive__header .posts-archive__subtitle {
  width: 60%;
  margin: 0;
  font-size: 18px;
  color: #B2B2B2;
}
.site-main[data-page=single-post] .posts-archive[data-post-type=post] .posts-archive__grid {
  grid-template-columns: repeat(3, 1fr);
  padding-bottom: 5rem;
  border: 0;
}
.site-main[data-page=single-post] .posts-archive[data-post-type=post] .posts-archive__grid .posts-archive__card {
  max-width: 100%;
}
@media (max-width: 1440px) {
  .site-main[data-page=single-post] .posts-archive[data-post-type=post] .posts-archive__grid .posts-archive__card {
    max-width: 484px;
  }
}
@media (max-width: 1200px) {
  .site-main[data-page=single-post] .posts-archive[data-post-type=post] .posts-archive__grid {
    grid-template-columns: repeat(2, 1fr);
    width: fit-content;
    margin: 0 auto;
  }
}
@media (max-width: 1024px) {
  .site-main[data-page=single-post] .posts-archive[data-post-type=post] {
    margin: 4rem 0 45.5rem 0;
  }
}
@media (max-width: 768px) {
  .site-main[data-page=single-post] .posts-archive[data-post-type=post] .posts-archive__grid {
    grid-template-columns: 1fr;
  }
}

.site-main[data-page=single-produktai] {
  min-height: auto;
}
.site-main[data-page=single-produktai] .post-hero .hero__inner-nav.container {
  margin: 2rem auto;
}
.site-main[data-page=single-produktai] .post-hero .hero__content.container {
  padding: 4rem 2rem 8rem 2rem;
}
.site-main[data-page=single-produktai] .post-hero .hero__content-wrap {
  display: grid;
  grid-template-columns: 1.45fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  overflow: visible;
}
.site-main[data-page=single-produktai] .post-hero__right {
  min-width: 0;
  width: 100%;
  justify-self: end;
  align-self: center;
}
.site-main[data-page=single-produktai] .post-hero__right .product-gallery {
  width: 100%;
  height: 100%;
}
.site-main[data-page=single-produktai] .post-hero__right .product-gallery .product-gallery__main {
  width: 100%;
  height: inherit;
  position: relative;
  background: #fff;
  border-radius: 0.625rem;
  overflow: hidden;
}
.site-main[data-page=single-produktai] .post-hero__right .product-gallery .product-gallery__main .product-gallery__img {
  width: 100%;
  height: inherit;
  object-fit: cover;
  display: block;
}
.site-main[data-page=single-produktai] .post-hero__right .product-gallery .product-gallery__main .product-gallery__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 0;
  cursor: pointer;
  display: grid;
  place-items: center;
  background: #ff6a00;
  color: #fff;
  font-size: 24px;
  line-height: 1;
  z-index: 1;
}
.site-main[data-page=single-produktai] .post-hero__right .product-gallery .product-gallery__main .product-gallery__prev {
  left: 14px;
}
.site-main[data-page=single-produktai] .post-hero__right .product-gallery .product-gallery__main .product-gallery__next {
  right: 14px;
}
.site-main[data-page=single-produktai] .post-hero__right .product-gallery .product-gallery__thumbs {
  margin-top: 14px;
}
.site-main[data-page=single-produktai] .post-hero__right .product-gallery .product-gallery__thumbs .swiper-slide {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  opacity: 0.65;
  cursor: pointer;
}
.site-main[data-page=single-produktai] .post-hero__right .product-gallery .product-gallery__thumbs .swiper-slide-thumb-active {
  opacity: 1;
  outline: 2px solid rgba(255, 255, 255, 0.35);
}
.site-main[data-page=single-produktai] .post-hero__right .product-gallery .product-gallery__thumb-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
.site-main[data-page=single-produktai] .post-hero__meta {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  margin-bottom: 1.5rem;
  padding: 0;
  color: #B2B2B2;
}
.site-main[data-page=single-produktai] .post-hero__title {
  width: 80%;
  margin: 0 0 1.75rem;
  font-size: clamp(28px, 3.125vw, 60px);
  font-weight: 700;
}
.site-main[data-page=single-produktai] .post-hero__excerpt {
  margin: 0 0 4rem 0;
  max-width: 70ch;
  color: #D0D0D0;
  font-size: 18px;
}
.site-main[data-page=single-produktai] .post-hero__list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  list-style: none;
  padding: 0;
  margin: 0 0 4rem 0;
  color: #B2B2B2;
  font-size: 18px;
}
.site-main[data-page=single-produktai] .post-hero__list-item {
  position: relative;
  padding-left: 1.2em;
}
.site-main[data-page=single-produktai] .post-hero__list-item::before {
  content: "–";
  position: absolute;
  left: 0;
}
.site-main[data-page=single-produktai] .post-hero__image {
  width: 100%;
  border-radius: 0.5rem 0 0 0.5rem;
  overflow: hidden;
}
.site-main[data-page=single-produktai] .post-hero__image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  border-radius: inherit;
}
@media (max-width: 1024px) {
  .site-main[data-page=single-produktai] .post-hero .hero__content-wrap {
    grid-template-columns: 1fr 1fr;
  }
  .site-main[data-page=single-produktai] .post-hero__inner {
    grid-template-columns: 1fr;
  }
  .site-main[data-page=single-produktai] .post-hero__image {
    border-radius: 0 0.5rem 0.5rem 0;
  }
}
@media (max-width: 768px) {
  .site-main[data-page=single-produktai] .post-hero .hero__content {
    padding: 0 2rem 2rem 2rem !important;
    transform: translateY(0);
  }
  .site-main[data-page=single-produktai] .post-hero .hero__content-wrap {
    grid-template-columns: 1fr;
  }
  .site-main[data-page=single-produktai] .post-hero__excerpt, .site-main[data-page=single-produktai] .post-hero__list {
    margin: 0 0 2rem 0;
  }
  .site-main[data-page=single-produktai] .post-hero__left {
    order: 2;
  }
  .site-main[data-page=single-produktai] .post-hero__image {
    border-radius: 0.5rem;
  }
}
.site-main[data-page=single-produktai] .post-content {
  margin-bottom: 6rem;
}
.site-main[data-page=single-produktai] .post-content.container {
  max-width: 1550px;
}
.site-main[data-page=single-produktai] .post-content p {
  color: #B2B2B2;
}
.site-main[data-page=single-produktai] .post-content .list:first-of-type, .site-main[data-page=single-produktai] .post-content .list:last-of-type {
  border-bottom: 1px solid #414141;
}
.site-main[data-page=single-produktai] .post-content .paragraph-container:last-of-type {
  border-bottom: 1px solid #414141;
}
.site-main[data-page=single-produktai] .post-content .paragraph-container__paragraph * {
  margin: 0;
}
.site-main[data-page=single-produktai] .post-content .paragraph-container__paragraph h3 {
  font-size: clamp(18px, 1.56vw, 30px);
  font-weight: 400;
}
.site-main[data-page=single-produktai] .post-content .paragraph-container__image {
  justify-self: end;
}
@media (max-width: 768px) {
  .site-main[data-page=single-produktai] .post-content .paragraph-container__inner {
    grid-template-columns: 1fr;
  }
  .site-main[data-page=single-produktai] .post-content .paragraph-container__image {
    justify-self: unset;
  }
}
.site-main[data-page=single-produktai] .product-details {
  padding: 4rem 0 10rem 0;
}
.site-main[data-page=single-produktai] .product-details p {
  margin: 0;
  color: #B2B2B2;
  font-size: 18px;
}
.site-main[data-page=single-produktai] .product-details__inner.container {
  max-width: 1590px;
}
.site-main[data-page=single-produktai] .product-details__top .product-details__title {
  margin: 0 0 2rem 0;
  font-size: clamp(28px, 2.08vw, 40px);
}
.site-main[data-page=single-produktai] .product-details__top .product-details__subtitle {
  width: 50%;
  margin: 0;
}
.site-main[data-page=single-produktai] .product-details__body {
  padding: 3rem 0;
}
.site-main[data-page=single-produktai] .product-details__row {
  display: inline-flex;
  justify-content: space-between;
  position: relative;
  width: 100%;
  padding: 1rem 0;
}
.site-main[data-page=single-produktai] .product-details__row:not(:last-of-type)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  display: block;
  width: 100%;
  height: 1px;
  background-image: repeating-linear-gradient(to right, #414141 0, #414141 10px, transparent 10px, transparent 20px);
}
.site-main[data-page=single-produktai] .product-details__value {
  max-width: 30%;
  width: 100%;
  text-align: center;
}
@media (max-width: 1024px) {
  .site-main[data-page=single-produktai] .product-details .product-details__subtitle {
    width: 80%;
  }
  .site-main[data-page=single-produktai] .product-details__value {
    text-align: right;
  }
}
@media (max-width: 768px) {
  .site-main[data-page=single-produktai] .product-details {
    padding: 4rem 0 3rem 0;
  }
}

.site-main[data-page=single-projektai] .post-hero {
  overflow-x: clip;
}
.site-main[data-page=single-projektai] .post-hero .hero__inner-nav.container {
  margin: 2rem auto;
}
.site-main[data-page=single-projektai] .post-hero .hero__content.container {
  padding: 4rem 2rem 8rem 2rem;
}
.site-main[data-page=single-projektai] .post-hero .hero__content-wrap {
  display: grid;
  grid-template-columns: 1.45fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  overflow: visible;
}
.site-main[data-page=single-projektai] .post-hero__right {
  justify-self: end;
}
.site-main[data-page=single-projektai] .post-hero__meta {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  margin-bottom: 1.5rem;
  padding: 0;
  color: #B2B2B2;
}
.site-main[data-page=single-projektai] .post-hero__meta img {
  width: 130px;
}
.site-main[data-page=single-projektai] .post-hero__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #FEDC01;
  display: inline-block;
}
.site-main[data-page=single-projektai] .post-hero__title {
  margin: 0 0 1.75rem;
  font-size: clamp(28px, 3.125vw, 60px);
  font-weight: 700;
}
.site-main[data-page=single-projektai] .post-hero__atliktas-projektas, .site-main[data-page=single-projektai] .post-hero__excerpt {
  color: #D0D0D0;
  font-size: 18px;
}
.site-main[data-page=single-projektai] .post-hero__atliktas-projektas {
  margin: 0;
}
.site-main[data-page=single-projektai] .post-hero__excerpt {
  margin: 0 0 6rem;
  max-width: 70ch;
}
.site-main[data-page=single-projektai] .post-hero__image {
  width: 100%;
  height: 100%;
  border-radius: 0.625rem;
  overflow: hidden;
}
.site-main[data-page=single-projektai] .post-hero__image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  border-radius: inherit;
}
@media (max-width: 1024px) {
  .site-main[data-page=single-projektai] .post-hero .hero__content-wrap {
    grid-template-columns: 1fr 1fr;
  }
  .site-main[data-page=single-projektai] .post-hero__inner {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 768px) {
  .site-main[data-page=single-projektai] .post-hero .hero__content {
    padding: 0 2rem 2rem 2rem !important;
    transform: translateY(0);
  }
  .site-main[data-page=single-projektai] .post-hero .hero__content-wrap {
    grid-template-columns: 1fr;
  }
  .site-main[data-page=single-projektai] .post-hero__right {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
    transform: unset;
  }
  .site-main[data-page=single-projektai] .post-hero__image {
    border-radius: 0.5rem;
  }
}
.site-main[data-page=single-projektai] .post-content {
  font-size: 18px;
}
.site-main[data-page=single-projektai] .post-content .container p:not(.testimonials__card-text) {
  margin: 0;
  color: #B2B2B2;
}
.site-main[data-page=single-projektai] .posts-slider__inner-body {
  gap: 5.625rem;
}
.site-main[data-page=single-projektai] .posts-slider__inner-body.container {
  max-width: 1800px;
}
@media (max-width: 1024px) {
  .site-main[data-page=single-projektai] .posts-slider__inner-body {
    padding: 0 !important;
  }
  .site-main[data-page=single-projektai] .posts-slider__footer {
    padding-right: 2rem !important;
    padding-left: 2rem !important;
  }
}

.archive .hero__title br {
  display: none;
}

.taxonomy-archive {
  position: relative;
  transform: translateY(-14rem);
  z-index: 1;
}
.taxonomy-archive__inner.container {
  max-width: 1590px;
}
.taxonomy-archive__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, 746px);
  gap: 1.875rem;
}
.taxonomy-archive__card {
  position: relative;
  padding: 3.2rem 3rem;
  border-radius: 0.625rem;
  background-size: 100% 100%;
  background-repeat: no-repeat;
  box-shadow: 0 18px 45px rgba(27, 27, 27, 0.65);
}
.taxonomy-archive__card:nth-of-type(even) {
  background-image: url("https://preneta.lt/wp-content/uploads/2026/01/bg-md-horizontal1.webp");
}
.taxonomy-archive__card:nth-of-type(odd) {
  background-image: url("https://preneta.lt/wp-content/uploads/2026/01/bg-md-horizontal2.webp");
}
.taxonomy-archive__card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background-image: radial-gradient(circle, #1B1B1B 0px, #1B1B1B 7px, transparent 7.5px), radial-gradient(circle, #1B1B1B 0px, #1B1B1B 7px, transparent 7.5px), radial-gradient(circle, #1B1B1B 0px, #1B1B1B 7px, transparent 7.5px), radial-gradient(circle, #1B1B1B 0px, #1B1B1B 7px, transparent 7.5px);
  background-size: 14px 14px, 14px 14px, 14px 14px, 14px 14px;
  background-position: 14px 14px, calc(100% - 14px) 14px, 14px calc(100% - 14px), calc(100% - 14px) calc(100% - 14px);
  background-repeat: no-repeat;
}
.taxonomy-archive__card .taxonomy-archive__title, .taxonomy-archive__card taxonomy-archive__excerpt {
  transition: 0.3s all;
}
.taxonomy-archive__card:hover .taxonomy-archive__title {
  transform: translateX(5%);
  color: #FF5000;
}
.taxonomy-archive__card:hover .taxonomy-archive__excerpt {
  color: #ffffff;
}
.taxonomy-archive__content.align-bottom {
  margin: auto;
  padding-top: 0.5rem;
}
.taxonomy-archive__image {
  margin-bottom: 4.75rem;
}
.taxonomy-archive__title, .taxonomy-archive__excerpt {
  font-weight: 400;
}
.taxonomy-archive__title {
  margin-bottom: 2.25rem;
  font-size: clamp(18px, 1.56vw, 30px);
  text-transform: uppercase;
}
.taxonomy-archive__excerpt {
  color: #B2B2B2;
  font-size: 18px;
}
@media (max-width: 1600px) {
  .taxonomy-archive__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 1024px) {
  .taxonomy-archive {
    transform: translateY(0);
  }
  .taxonomy-archive__inner {
    margin-bottom: 11.875rem;
  }
  .taxonomy-archive__grid {
    grid-template-columns: 1fr;
  }
  .taxonomy-archive__card {
    max-width: 746px;
    width: 100%;
    margin: 0 auto;
  }
}
@media (max-width: 768px) {
  .taxonomy-archive__inner {
    margin-bottom: 3rem;
  }
}

html.u-modal-open {
  overflow: hidden;
}

.u-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: block;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.25s ease, visibility 0s linear 0.25s;
}

.u-modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition: opacity 0.25s ease, visibility 0s;
}

.u-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.u-modal__dialog {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(1100px, 100% - 48px);
  max-height: min(780px, 100vh - 80px);
  background: #2a2a2a;
  border-radius: 12px;
  overflow: hidden;
  opacity: 0;
  transform: translate(-50%, -50%) translateY(18px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.u-modal.is-open .u-modal__dialog {
  opacity: 1;
  transform: translate(-50%, -50%) translateY(0);
}

.u-modal__close {
  position: absolute;
  top: 24px;
  right: 24px;
  z-index: 10;
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 999px;
  background: #ff5a00;
  cursor: pointer;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.35);
  transition: transform 0.18s ease, filter 0.18s ease, opacity 0.18s ease;
}

.u-modal__close-icon {
  display: inline-flex;
  width: 21px;
  height: 21px;
}
.u-modal__close-icon svg {
  display: block;
  width: 21px;
  height: 21px;
}

.u-modal__close:hover {
  filter: brightness(1.06);
  transform: translateY(-1px);
}

.u-modal__close:active {
  transform: translateY(0) scale(0.98);
}

.u-modal__close:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.75);
  outline-offset: 3px;
}

.u-modal__body {
  position: relative;
  padding: 56px 56px 48px;
  overflow: auto;
  max-height: min(780px, 100vh - 80px);
}

.u-modal__loader {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  background: rgba(0, 0, 0, 0.15);
  z-index: 4;
}

.u-modal__loader[hidden] {
  display: none !important;
}

.u-modal__spinner {
  width: 18px;
  height: 18px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-top-color: rgba(255, 255, 255, 0.9);
  border-radius: 999px;
  animation: spin 0.8s linear infinite;
}

.u-modal__content hr {
  margin: 0 0 3rem;
}

.u-modal__header .u-modal-title {
  margin-bottom: 1.5rem;
  font-size: clamp(28px, 2.08vw, 40px);
}
.u-modal__header p {
  margin: 0 0 2rem;
  color: #D0D0D0;
  font-size: 18px;
}

.u-modal__frame {
  background: #262626;
}
.u-modal__frame p {
  max-width: 270px;
  text-align: center;
}

.u-modal-form {
  min-height: 420px;
}
.u-modal-form .u-modal-form__label {
  display: block;
  margin-bottom: 10px;
  font-size: 16px;
  line-height: 1.2;
  color: rgba(255, 255, 255, 0.92);
}
.u-modal-form .u-modal-form__control {
  position: relative;
}
.u-modal-form .u-modal-form__control input,
.u-modal-form .u-modal-form__control select,
.u-modal-form .u-modal-form__control textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.02);
  color: rgba(255, 255, 255, 0.9);
  border-radius: 6px;
  padding: 16px 18px;
  font-size: 16px;
  outline: none;
  transition: border-color 0.18s ease, background-color 0.18s ease;
}
.u-modal-form .u-modal-form__control input::placeholder,
.u-modal-form .u-modal-form__control select::placeholder,
.u-modal-form .u-modal-form__control textarea::placeholder {
  color: rgba(255, 255, 255, 0.55);
}
.u-modal-form .u-modal-form__control input:focus,
.u-modal-form .u-modal-form__control select:focus,
.u-modal-form .u-modal-form__control textarea:focus {
  border-color: rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.03);
}
.u-modal-form .u-modal-form__control input.is-error,
.u-modal-form .u-modal-form__control select.is-error,
.u-modal-form .u-modal-form__control textarea.is-error {
  border-color: rgba(255, 80, 80, 0.85);
}
.u-modal-form .u-modal-form__control textarea {
  min-height: 220px;
  resize: none;
  padding: 18px 18px 44px;
}
.u-modal-form .u-modal-form__control select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  width: 100%;
  height: 56px;
  padding: 0 64px 0 18px;
  font-size: 16px;
  line-height: 1;
  background-color: #2f2f2f;
  background-image: url("data:image/svg+xml,%3Csvg width=%2724%27 height=%2714%27 viewBox=%270 0 24 14%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath d=%27M2 2L12 12L22 2%27 stroke=%27white%27 stroke-width=%272.8%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 22px center;
  background-size: 22px 12px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 6px;
  color: #B2B2B2;
  cursor: pointer;
}
.u-modal-form .u-modal-form__control select:focus {
  outline: none;
  border-color: #ff5a00;
}
.u-modal-form .u-modal-form__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px 28px;
  align-items: start;
}
.u-modal-form .u-modal-form__field--full {
  grid-column: 1/-1;
}
.u-modal-form .u-form-section .u-form-section__title {
  margin: 2.5rem 0 1.5rem;
  font-size: clamp(28px, 2.08vw, 40px);
  font-weight: 400;
}
.u-modal-form .u-form-section .u-form-section__desc {
  margin-bottom: 3rem;
  color: #B2B2B2;
}
.u-modal-form .u-form-section .u-upload {
  position: relative;
}
.u-modal-form .u-form-section .u-upload__input {
  position: absolute;
  inset: 0;
  opacity: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
  z-index: 0;
}
.u-modal-form .u-form-section .u-upload__drop {
  width: 100%;
  min-height: 180px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.5rem;
  place-items: center;
  text-align: center;
  padding: 18px 16px;
  border-radius: 10px;
  border: 2px dashed rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.02);
  cursor: pointer;
  transition: border-color 0.18s ease, background-color 0.18s ease, transform 0.18s ease;
}
.u-modal-form .u-form-section .u-upload__drop-title {
  display: inline-flex;
  align-items: baseline;
  justify-content: center;
  gap: 6px;
  font-size: 16px;
  line-height: 1.35;
  color: rgba(255, 255, 255, 0.65);
}
.u-modal-form .u-form-section .u-upload__link {
  color: #FF5000;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.u-modal-form .u-form-section .u-upload__hint {
  margin-top: 8px;
  font-size: 13px;
  line-height: 1.2;
  color: rgba(255, 255, 255, 0.45);
}
.u-modal-form .u-form-section .u-upload__drop:hover {
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.03);
}
.u-modal-form .u-form-section .u-upload.is-drag .u-modal-form .u-form-section .u-upload__drop {
  border-color: rgba(255, 90, 0, 0.95);
  background: rgba(255, 90, 0, 0.06);
  transform: translateY(-1px);
}
.u-modal-form .u-form-section .u-upload.has-file .u-modal-form .u-form-section .u-upload__drop {
  border-style: solid;
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.03);
}
.u-modal-form .u-form-section .u-upload__meta {
  position: relative;
  z-index: 1;
  margin-top: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.u-modal-form .u-form-section .u-upload__filename {
  font-size: 14px;
  line-height: 1.3;
  color: rgba(255, 255, 255, 0.75);
  word-break: break-word;
}
.u-modal-form .u-form-section .u-upload__remove {
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.6);
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.u-modal-form .u-form-section .u-upload__remove:hover {
  color: rgba(255, 255, 255, 0.9);
}
.u-modal-form .u-form-section .u-upload .u-field-error {
  margin-top: 10px;
}
.u-modal-form .u-modal-form__control--textarea .u-modal-form__counter {
  position: absolute;
  right: 16px;
  bottom: 14px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
  letter-spacing: 0.04em;
  user-select: none;
}
.u-modal-form .u-modal-form__divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.12);
  margin: 26px 0 22px;
}
.u-modal-form .u-modal-form__bottom {
  display: flex;
  gap: 24px;
  align-items: center;
  justify-content: space-between;
}
.u-modal-form .u-modal-form__agree {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  max-width: 620px;
}
.u-modal-form .u-modal-form__agree input[type=checkbox] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.u-modal-form .u-modal-form__agree span {
  position: relative;
  padding-left: 30px;
  font-size: 14px;
  line-height: 1.5;
  color: #D0D0D0;
}
.u-modal-form .u-modal-form__agree span::before, .u-modal-form .u-modal-form__agree span::after {
  cursor: pointer;
}
.u-modal-form .u-modal-form__agree span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 3px;
  width: 18px;
  height: 18px;
  border-radius: 4px;
  border: 1px solid #ffffff;
  background: transparent;
  transition: background 0.15s ease, border-color 0.15s ease;
}
.u-modal-form .u-modal-form__agree span::after {
  content: "";
  position: absolute;
  left: 3px;
  top: 5px;
  width: 12px;
  height: 12px;
  background: #fff;
  opacity: 0;
  transform: scale(0.8);
  transition: opacity 0.15s ease, transform 0.15s ease;
  clip-path: polygon(14% 44%, 0 59%, 40% 100%, 100% 24%, 84% 8%, 40% 66%);
}
.u-modal-form .u-modal-form__agree input[type=checkbox]:checked + span::before {
  background: #ff5a00;
  border-color: #ff5a00;
}
.u-modal-form .u-modal-form__agree input[type=checkbox]:checked + span::after {
  opacity: 1;
  transform: scale(1);
}
.u-modal-form .u-modal-form__agree input[type=checkbox].is-error + span::before {
  border-color: rgba(255, 80, 80, 0.85);
}
.u-modal-form .u-modal-form__agree input[type=checkbox]:focus-visible + span::before {
  outline: 2px solid rgba(255, 90, 0, 0.6);
  outline-offset: 3px;
}
.u-modal-form .u-modal-form__agree a {
  color: #ff5a00;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.u-modal-form .u-modal-form__agree a:hover {
  filter: brightness(1.08);
}
.u-modal-form .u-modal-form__actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex: 0 0 auto;
}
.u-modal-form .u-btn.u-btn--primary {
  min-width: 340px;
  height: 58px;
  padding: 0 26px;
  border: 0;
  border-radius: 6px;
  background: #ff5a00;
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 0.18s ease, filter 0.18s ease;
  position: relative;
}
.u-modal-form .u-btn.u-btn--primary:hover {
  filter: brightness(1.06);
  transform: translateY(-1px);
}
.u-modal-form .u-btn.u-btn--primary:active {
  transform: translateY(0) scale(0.99);
}
.u-modal-form .u-btn.u-btn--primary:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}
.u-modal-form .u-btn.u-btn--primary.is-loading {
  color: transparent;
  pointer-events: none;
}
.u-modal-form .u-btn.u-btn--primary.is-loading::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 18px;
  height: 18px;
  margin: -9px 0 0 -9px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-top-color: rgba(255, 255, 255, 0.9);
  border-radius: 999px;
  animation: spin 0.8s linear infinite;
}
.u-modal-form .u-modal-form__submit-loader {
  display: none;
}
.u-modal-form .u-modal-form__notices {
  margin-top: 16px;
}
.u-modal-form .u-notice {
  padding: 12px 14px;
  border-radius: 8px;
  font-size: 14px;
}
.u-modal-form .u-notice--success {
  background: rgba(46, 204, 113, 0.12);
  border: 1px solid rgba(46, 204, 113, 0.35);
  color: rgba(255, 255, 255, 0.92);
}
.u-modal-form .u-notice--error {
  background: rgba(231, 76, 60, 0.1);
  border: 1px solid rgba(231, 76, 60, 0.35);
  color: rgba(255, 255, 255, 0.92);
}
.u-modal-form .u-field-error {
  margin-top: 8px;
  font-size: 13px;
  color: rgba(255, 120, 120, 0.95);
}

@media (max-width: 900px) {
  .u-modal-form .u-modal-form__grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .u-modal-form .u-modal-form__bottom {
    flex-direction: column;
    align-items: stretch;
  }
  .u-modal-form .u-btn.u-btn--primary {
    width: 100%;
    min-width: 0;
  }
  .u-modal-form .u-modal-form__agree {
    max-width: none;
  }
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
.site-main[data-page=single-paslaugos] .cards.container {
  max-width: 1360px;
}
.site-main[data-page=single-paslaugos] .cards__heading {
  display: flex;
  flex-direction: column;
  width: 100%;
  padding-bottom: 2rem;
}
.site-main[data-page=single-paslaugos] .cards__heading-title {
  width: 50%;
}
.site-main[data-page=single-paslaugos] .cards__grid {
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}
@media (max-width: 768px) {
  .site-main[data-page=single-paslaugos] .cards__heading-title {
    width: 70%;
  }
  .site-main[data-page=single-paslaugos] .cards__grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 560px) {
  .site-main[data-page=single-paslaugos] .cards__heading-title {
    width: 100%;
  }
}

.cards {
  padding-top: var(--list-pt, 0);
  padding-bottom: var(--list-pb, 0);
  padding-left: var(--list-pl, 0);
  padding-right: var(--list-pr, 0);
}
.cards__heading-title {
  margin: 0;
  font-size: clamp(28px, 2.08vw, 40px);
}
.cards__heading-subtitle {
  width: 50%;
  color: #D0D0D0;
}
@media (max-width: 768px) {
  .cards__heading-subtitle {
    width: 100%;
  }
}
.cards__grid {
  display: grid;
}
.cards__item {
  display: flex;
  flex-direction: column;
  gap: 5rem;
  position: relative;
  padding: 3.2rem 3rem;
  border-radius: 0.625rem;
  background-color: #292929;
  color: #B2B2B2;
  box-shadow: 0 18px 45px rgba(27, 27, 27, 0.65);
  font-size: clamp(16px, 1.2vw, 22px);
}
.cards__item::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background-image: radial-gradient(circle, #1B1B1B 0px, #1B1B1B 7px, transparent 7.5px), radial-gradient(circle, #1B1B1B 0px, #1B1B1B 7px, transparent 7.5px), radial-gradient(circle, #1B1B1B 0px, #1B1B1B 7px, transparent 7.5px), radial-gradient(circle, #1B1B1B 0px, #1B1B1B 7px, transparent 7.5px);
  background-size: 14px 14px, 14px 14px, 14px 14px, 14px 14px;
  background-position: 14px 14px, calc(100% - 14px) 14px, 14px calc(100% - 14px), calc(100% - 14px) calc(100% - 14px);
  background-repeat: no-repeat;
}
.cards__item p {
  margin: 0;
}
.cards__item p strong {
  color: #ffffff;
}
.cards__bottom-text {
  margin-top: 2rem;
  color: #D0D0D0;
}

.cta-button {
  text-align: center;
}
.cta-button a {
  width: auto !important;
}

.carousel-gallery {
  margin: 0 0 10rem 0;
  padding-top: var(--list-pt, 0);
  padding-bottom: var(--list-pb, 0);
  padding-left: var(--list-pl, 0);
  padding-right: var(--list-pr, 0);
}
.carousel-gallery.container {
  max-width: 1590px;
  margin-bottom: 10rem;
}
.carousel-gallery .carousel {
  position: relative;
  display: grid;
  grid-template-columns: 48px 1fr 48px;
  align-items: center;
  gap: 1.5rem;
}
.carousel-gallery .carousel .swiper {
  width: 100%;
  overflow: hidden;
}
.carousel-gallery .carousel .swiper .swiper-slide {
  height: auto;
}
.carousel-gallery .carousel .slider-btn-prev,
.carousel-gallery .carousel .slider-btn-next {
  flex: 0 0 auto;
  border-radius: 999px;
  border: none;
  background: transparent;
  color: #818181;
  font-size: 40px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: color 0.2s ease, transform 0.15s ease;
}
.carousel-gallery .carousel .slider-btn-prev:hover,
.carousel-gallery .carousel .slider-btn-next:hover {
  color: #ffffff;
}
.carousel-gallery .carousel__card {
  border-radius: 0.625rem;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
}
.carousel-gallery .carousel__img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  display: block;
  border-radius: inherit;
}
@media (max-width: 1024px) {
  .carousel-gallery__carousel {
    gap: 0;
  }
}

.certificates {
  margin: 0 0 10rem 0;
}
.certificates .container {
  max-width: 1590px;
  margin-bottom: 10rem;
}
.certificates__inner-wrap {
  margin: 0 0 3rem 0;
}
.certificates__title {
  margin: 0 0 2.5rem 0;
  font-size: clamp(28px, 3.125vw, 60px);
}
.certificates__subtitle {
  margin: 0;
  font-size: 18px;
  color: #B2B2B2;
}
.certificates__list {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  gap: 3rem;
  padding: 0;
  margin: 0 0 10rem 0;
  list-style: none;
}
.certificates__carousel {
  position: relative;
  display: grid;
  grid-template-columns: 48px 1fr 48px;
  align-items: center;
  gap: 1.5rem;
}
.certificates__carousel .swiper {
  width: 100%;
  overflow: hidden;
}
.certificates__carousel .swiper .swiper-slide {
  height: auto;
}
.certificates__carousel .slider-btn-prev,
.certificates__carousel .slider-btn-next {
  flex: 0 0 auto;
  border-radius: 999px;
  border: none;
  background: transparent;
  color: #818181;
  font-size: 40px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: color 0.2s ease, transform 0.15s ease;
}
.certificates__carousel .slider-btn-prev:hover,
.certificates__carousel .slider-btn-next:hover {
  color: #ffffff;
}
.certificates__carousel__card {
  border-radius: 0.625rem;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
}
.certificates__carousel__img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  display: block;
  border-radius: inherit;
}
@media (max-width: 1440px) {
  .certificates__list {
    justify-content: center;
    flex-wrap: wrap;
  }
}
@media (max-width: 1024px) {
  .certificates__carousel {
    gap: 0;
  }
}
@media (max-width: 768px) {
  .certificates {
    margin: 0 0 5rem 0;
  }
  .certificates__list {
    margin: 0 0 5rem 0;
  }
}

.site-main[data-page=susisiekite] .contacts__content {
  gap: 0;
}

.contacts__inner {
  position: relative;
  margin-top: -16rem;
  padding-bottom: 10rem;
  z-index: 2;
}
.contacts__inner.container {
  max-width: 1590px;
}
.contacts__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
}
.contacts__card {
  position: relative;
  padding: 3.2rem 3rem;
  border-radius: 0.625rem;
  background-size: 100% 100%;
  background-repeat: no-repeat;
  box-shadow: 0 18px 45px rgba(27, 27, 27, 0.65);
}
.contacts__card:nth-of-type(even) {
  background-image: url("https://preneta.lt/wp-content/uploads/2025/12/bg2.webp");
}
.contacts__card:nth-of-type(odd) {
  background-image: url("https://preneta.lt/wp-content/uploads/2025/12/bg1.webp");
}
.contacts__card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background-image: radial-gradient(circle, #1B1B1B 0px, #1B1B1B 7px, transparent 7.5px), radial-gradient(circle, #1B1B1B 0px, #1B1B1B 7px, transparent 7.5px), radial-gradient(circle, #1B1B1B 0px, #1B1B1B 7px, transparent 7.5px), radial-gradient(circle, #1B1B1B 0px, #1B1B1B 7px, transparent 7.5px);
  background-size: 14px 14px, 14px 14px, 14px 14px, 14px 14px;
  background-position: 14px 14px, calc(100% - 14px) 14px, 14px calc(100% - 14px), calc(100% - 14px) calc(100% - 14px);
  background-repeat: no-repeat;
}
.contacts__content {
  display: flex;
  flex-direction: column;
  gap: 4rem;
  margin-bottom: 1.5rem;
}
.contacts__content-title {
  width: 50%;
  margin: 0 0 4rem;
}
.contacts__content-subtitle {
  margin: 0;
  color: #D0D0D0;
}
.contacts__content-city, .contacts__content-title {
  margin: 0;
  font-size: clamp(28px, 2.08vw, 40px);
  font-weight: 400;
  text-transform: uppercase;
}
.contacts__content-list {
  display: inherit;
  flex-direction: inherit;
  gap: 1rem;
  margin: 0;
  padding: 0;
  list-style: none;
}
.contacts__content-list__row {
  display: block;
}
.contacts__content-list__row p {
  margin: 0;
  color: #B2B2B2;
}
.contacts__content-list__row p b {
  color: #ffffff;
}
.contacts__team {
  padding-top: 1.5rem;
  margin-bottom: 4rem;
  border-top: 1px solid #B2B2B2;
}
.contacts__team-title {
  margin: 0 0 1.5rem;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #ffffff;
}
.contacts__team-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin: 0;
  padding: 0;
  list-style: none;
}
.contacts__team-member {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
}
@media (max-width: 430px) {
  .contacts__team-member {
    flex-direction: column;
  }
}
.contacts__team-avatar {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1;
}
.contacts__team-info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.contacts__team-info__top, .contacts__team-info__bottom {
  display: inherit;
  flex-direction: column;
}
.contacts__team-name {
  font-size: clamp(14px, 1.1vw, 20px);
  font-weight: 600;
  color: #ffffff;
}
.contacts__team-position {
  font-size: 16px;
  color: #B2B2B2;
}
.contacts__team-email {
  font-size: 16px;
  color: #ffffff;
  text-decoration: none;
  transition: 0.3s all;
}
.contacts__team-email:hover {
  color: #e04600;
}
.contacts__team-phone {
  font-size: 16px;
  color: #ffffff;
  text-decoration: none;
  transition: 0.3s all;
}
.contacts__team-phone:hover {
  color: #e04600;
}
.contacts__map iframe {
  width: 100%;
}
.contacts__image img {
  width: 100%;
  border-radius: 0.375rem;
}
@media (max-width: 1024px) {
  .contacts__inner {
    margin-top: -10rem;
  }
  .contacts__grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 768px) {
  .contacts__inner {
    padding-bottom: 3rem;
  }
  .contacts__content {
    gap: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 530px) {
  .contacts__card {
    padding: 2.2rem 2rem;
  }
  .contacts__content-list__row p {
    display: flex;
    flex-direction: column;
  }
}

.content-column-slider {
  position: relative;
  margin: 12.875rem 0 0 0;
  padding: 0 0 clamp(18rem, 28.7vw, 34.5rem);
  background-color: #1B1B1B;
  color: #ffffff;
}
.content-column-slider__background {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
}
.content-column-slider__background img {
  width: 100%;
}
.content-column-slider__inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.content-column-slider__title {
  margin: 0 0 3rem;
  text-align: center;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  line-height: 1.1;
  font-size: clamp(32px, 3.65vw, 70px);
}
.content-column-slider__title-line {
  display: block;
}
.content-column-slider__title-line--accent {
  color: #FEDC01;
}
.content-column-slider__subtitle {
  max-width: 720px;
  margin: 0 0 4.5rem;
  text-align: center;
  font-size: 18px;
  line-height: 1.7;
  color: #c0c2c5;
}
.content-column-slider__body {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 5.625rem;
  margin-bottom: 3.75rem;
  overflow: hidden;
}
.content-column-slider__arrow {
  flex: 0 0 auto;
  border-radius: 999px;
  border: none;
  background: transparent;
  color: #818181;
  font-size: 40px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: color 0.2s ease, transform 0.15s ease;
}
.content-column-slider__arrow:hover {
  color: #ffffff;
}
.content-column-slider__viewport {
  position: relative;
  flex: 1 1 auto;
  min-height: 800px;
  overflow: hidden;
}
.content-column-slider__track {
  min-height: inherit;
  max-height: inherit;
}
.content-column-slider .card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex: 0 0 auto;
  width: 100%;
  min-width: 0;
  max-width: none;
  min-height: inherit;
  max-height: 670px;
  padding: 3.2rem 3rem;
  border-radius: 0.625rem;
  background-size: 100% 100%;
  background-repeat: no-repeat;
  box-shadow: 0 18px 45px rgba(27, 27, 27, 0.65);
}
.content-column-slider .card:nth-of-type(even) {
  background-image: url("https://preneta.lt/wp-content/uploads/2025/12/bg2.webp");
}
.content-column-slider .card:nth-of-type(odd) {
  background-image: url("https://preneta.lt/wp-content/uploads/2025/12/bg1.webp");
}
.content-column-slider .card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background-image: radial-gradient(circle, #1B1B1B 0px, #1B1B1B 7px, transparent 7.5px), radial-gradient(circle, #1B1B1B 0px, #1B1B1B 7px, transparent 7.5px), radial-gradient(circle, #1B1B1B 0px, #1B1B1B 7px, transparent 7.5px), radial-gradient(circle, #1B1B1B 0px, #1B1B1B 7px, transparent 7.5px);
  background-size: 14px 14px, 14px 14px, 14px 14px, 14px 14px;
  background-position: 14px 14px, calc(100% - 14px) 14px, 14px calc(100% - 14px), calc(100% - 14px) calc(100% - 14px);
  background-repeat: no-repeat;
}
.content-column-slider .card__image img {
  border-radius: 0.375rem;
}
.content-column-slider .card__icon {
  margin: 0;
}
.content-column-slider .card__icon img {
  display: block;
  width: auto;
  height: auto;
}
.content-column-slider .card__inner-wrapper {
  margin: 2.5rem 0 auto 0;
}
.content-column-slider .card__inner-wrapper .title {
  width: 100%;
  margin: 0 0 0.875rem;
  font-size: 30px;
  font-weight: 500;
  text-transform: uppercase;
  line-height: 1.5;
}
.content-column-slider .card__inner-wrapper .text {
  margin: 0;
  padding-bottom: 3.75rem;
  font-size: 18px;
  line-height: 1.6;
  color: #d0d2d5;
}
.content-column-slider .card__inner-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.content-column-slider .card__inner-actions button, .content-column-slider .card__inner-actions a {
  width: 100%;
  font-family: inherit;
  font-size: 16px;
}
@media (max-width: 1100px) {
  .content-column-slider .card__inner-actions button, .content-column-slider .card__inner-actions a {
    font-size: 14px;
  }
}
@media (max-width: 1024px) {
  .content-column-slider .card__inner-actions button, .content-column-slider .card__inner-actions a {
    font-size: 16px;
  }
}
.content-column-slider .card__inner-actions button {
  font-weight: 600;
}
.content-column-slider .card__inner-actions a {
  color: #B2B2B2;
}
.content-column-slider .card__inner-actions .card__btn--inquiry {
  color: #ffffff;
}
@media (max-width: 1600px) {
  .content-column-slider .card__inner-actions {
    flex-wrap: wrap;
  }
}
.content-column-slider__footer {
  display: flex;
  justify-content: space-between;
  width: 100%;
}
.content-column-slider__dots {
  display: flex;
  gap: 1rem;
  align-items: center;
  width: auto !important;
}
.content-column-slider__dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #525252;
  border: 1px solid #525252;
  padding: 0;
  cursor: pointer;
  transition: background-color 0.2s ease, border-color 0.2s ease, transform 0.15s ease;
}
.content-column-slider__dot.is-active {
  background: #FF5000;
  border-color: #FF5000;
  transform: scale(1.1);
}
.content-column-slider .btn {
  padding: 1.25rem 2.375rem;
}
@media (max-width: 1024px) {
  .content-column-slider {
    padding: 4.5rem 0 16rem;
    margin: 5rem 0 0 0;
  }
  .content-column-slider__body {
    gap: 1rem;
    padding: 0;
  }
  .content-column-slider__track {
    gap: 0;
  }
  .content-column-slider__arrow {
    display: none;
  }
  .content-column-slider__card {
    min-width: 480px !important;
    max-width: 480px !important;
  }
  .content-column-slider__card .card__inner-wrapper .title {
    font-size: 24px;
  }
  .content-column-slider__card .card__inner-actions {
    gap: 1.5rem;
  }
  .content-column-slider__card .card__inner-actions button, .content-column-slider__card .card__inner-actions a {
    max-width: 100%;
    min-width: 100%;
  }
}
@media (max-width: 768px) {
  .content-column-slider {
    padding: 0 0 26rem;
  }
  .content-column-slider__body {
    padding: 0;
  }
  .content-column-slider__viewport {
    min-height: auto;
    overflow: hidden;
  }
  .content-column-slider__card {
    justify-content: unset !important;
  }
  .content-column-slider__card .title {
    font-size: 18px !important;
  }
  .content-column-slider__card .text {
    font-size: 14px !important;
  }
  .content-column-slider__card .card__inner-actions button, .content-column-slider__card .card__inner-actions a {
    padding: 1rem;
  }
  .content-column-slider__footer {
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 2.5rem;
  }
  .content-column-slider__background img {
    min-height: 770px;
    object-fit: cover;
    object-position: 60% 100%;
  }
}
@media (max-width: 630px) {
  .content-column-slider__card {
    max-width: 400px !important;
    min-width: 400px !important;
    height: 670px;
    padding: 2.5rem !important;
  }
  .content-column-slider__card .card__image {
    height: 200px;
  }
  .content-column-slider__card .card__image img {
    height: inherit;
  }
  .content-column-slider__card .card__inner-wrapper {
    margin: 1rem 0 1.5rem;
  }
  .content-column-slider__card .card__inner-actions {
    margin-top: auto;
  }
  .content-column-slider__card .title {
    width: 100% !important;
  }
  .content-column-slider__card .card__inner-actions {
    gap: 0.5rem;
  }
  .content-column-slider__card .card__inner-actions a {
    font-size: 14px;
  }
}

.content-column-slider {
  overflow-x: hidden;
}

@media (max-width: 1023px) {
  .content-column-slider {
    overflow-x: visible;
  }
  .content-column-slider .swiper-slide {
    width: clamp(320px, 86vw, 730px);
  }
  .content-column-slider .swiper-slide .card__inner-actions {
    flex-direction: row;
  }
}
.site-main[data-page=projektai] .content-column-slider {
  margin: 0;
}

@media (max-width: 1024px) {
  .site-main[data-page=projektai] .content-column-slider {
    margin-bottom: 30rem;
  }
}
@media (max-width: 768px) {
  .site-main[data-page=projektai] .content-column-slider {
    margin-top: 4.5rem !important;
  }
}
.content-row-split {
  margin: 0 auto 0 auto;
}
.content-row-split__inner {
  display: flex;
  justify-content: space-between;
}
.content-row-split__inner-left {
  max-width: clamp(320px, 44vw, 848px);
}
.content-row-split__inner-left .title-text-wrapper {
  padding-left: clamp(10rem, 12vw, 18.5rem);
}
.content-row-split__inner-left .title-text-wrapper .title {
  margin: 0 0 3rem 0;
  color: #ffffff;
  font-size: clamp(32px, 3.65vw, 70px);
  font-weight: 700;
}
.content-row-split__inner-left .title-text-wrapper .title-accent {
  display: block;
  width: 100%;
  color: #FEDC01;
}
.content-row-split__inner-left .title-text-wrapper .text {
  margin: 0 0 5rem 0;
  color: #B2B2B2;
  font-size: 18px;
  font-weight: 400;
  line-height: 2rem;
}
.content-row-split__inner-left img {
  border-radius: 0.625rem;
}
.content-row-split__inner-right {
  max-width: 455px;
  min-width: 455px;
  align-self: center;
}
.content-row-split__inner-right .text {
  max-width: 324px;
  margin: 0 0 4rem 0;
  color: #ffffff;
  font-size: clamp(18px, 1.35vw, 26px);
  font-weight: 400;
  line-height: 2rem;
}
.content-row-split__inner-right .list {
  position: relative;
  margin: 0 0 3.75rem 0;
  padding: 3.875rem 3.75rem;
  background-image: url("https://preneta.lt/wp-content/uploads/2025/12/bg-3.webp");
  background-size: 100% 100%;
  background-repeat: no-repeat;
  border-radius: 0.625rem;
}
.content-row-split__inner-right .list::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background-image: radial-gradient(circle, #1B1B1B 0px, #1B1B1B 7px, transparent 7.5px), radial-gradient(circle, #1B1B1B 0px, #1B1B1B 7px, transparent 7.5px), radial-gradient(circle, #1B1B1B 0px, #1B1B1B 7px, transparent 7.5px), radial-gradient(circle, #1B1B1B 0px, #1B1B1B 7px, transparent 7.5px);
  background-size: 14px 14px, 14px 14px, 14px 14px, 14px 14px;
  background-position: 14px 14px, calc(100% - 14px) 14px, 14px calc(100% - 14px), calc(100% - 14px) calc(100% - 14px);
  background-repeat: no-repeat;
}
.content-row-split__inner-right .list .list-section {
  display: inline-flex;
  gap: 3.25rem;
  align-items: baseline;
  padding: 3.25rem 0;
  border-bottom: 1px solid #3B3A3A;
}
.content-row-split__inner-right .list .list-section:first-child {
  padding: 0 0 3.25rem 0;
}
.content-row-split__inner-right .list .list-section:last-child {
  padding: 3.25rem 0 0 0;
  border-bottom: none;
}
.content-row-split__inner-right .list .list-section__number {
  color: #FEDC01;
  font-size: clamp(14px, 1.1vw, 20px);
  font-weight: 700;
}
.content-row-split__inner-right .list .list-section__text {
  margin: 0;
  color: #B2B2B2;
  font-size: 18px;
  font-weight: 400;
  line-height: 2rem;
}
.content-row-split__inner-right .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem 4rem;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

@media (max-width: 1440px) {
  .content-row-split__inner {
    padding-right: 0;
  }
  .content-row-split__inner-left {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
}
@media (max-width: 1024px) {
  .content-row-split__inner {
    flex-direction: column;
    gap: 3.875rem;
  }
  .content-row-split__inner-left {
    max-width: 100%;
  }
  .content-row-split__inner-left .title-text-wrapper {
    padding-left: 2rem;
  }
  .content-row-split__inner-left .title-text-wrapper .title {
    font-size: clamp(40px, 3.65vw, 70px);
  }
  .content-row-split__inner-left img {
    max-height: 37.5rem;
    object-fit: cover;
  }
  .content-row-split__inner-right {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .content-row-split__inner-right .text {
    align-self: start;
  }
}
@media (max-width: 768px) {
  .content-row-split {
    margin: 0 auto;
  }
  .content-row-split__inner-right .list {
    padding: 3rem;
  }
  .content-row-split__inner-right .list .list-section {
    padding: 2.5rem 0;
  }
  .content-row-split__inner-right .list .list-section:first-child {
    padding: 0 0 2.5rem 0;
  }
  .content-row-split__inner-right .list .list-section:last-child {
    padding: 2.5rem 0 0 0;
  }
}
@media (max-width: 460px) {
  .content-row-split__inner-right {
    max-width: 100%;
    min-width: 100%;
  }
  .content-row-split .title-text-wrapper {
    padding: 0;
  }
}
@media (max-width: 360px) {
  .content-row-split__inner-right .list-section__number,
  .content-row-split__inner-right .list-section__text {
    font-size: 14px !important;
  }
}
.site-main[data-page=single-paslaugos] .cta-button {
  max-width: 1360px;
}

.cta-button a {
  width: 100%;
}

.cta-hero {
  position: relative;
  min-height: 1100px;
  display: flex;
  align-items: end;
  overflow: hidden;
  background: var(--cta-hero-bg) center/cover no-repeat;
}
.cta-hero__inner {
  position: relative;
  z-index: 2;
  width: 100%;
  padding-block: 10rem;
}
.cta-hero__content {
  max-width: 720px;
}
.cta-hero__title {
  color: #ffffff;
  font-weight: 700;
  text-transform: uppercase;
  font-size: clamp(32px, 3.65vw, 70px);
  margin: 0 0 2.4rem 0;
}
.cta-hero__title-accent {
  color: #FEDC01;
}
.cta-hero__subtitle {
  color: #D0D0D0;
  font-size: 18px;
  margin: 0 0 3.875rem 0;
}
@media (max-width: 1024px) {
  .cta-hero__inner {
    padding: 10rem 2rem;
  }
}
@media (max-width: 768px) {
  .cta-hero {
    min-height: 620px;
  }
  .cta-hero:after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(27, 27, 27, 0.75) 0%, rgba(27, 27, 27, 0.75) 40%, rgba(27, 27, 27, 0.5) 70%);
  }
}

@media (max-width: 768px) {
  .site-main[data-page=apie-mus] .cta-hero__inner,
  .site-main[data-page=karjera] .cta-hero__inner {
    padding: 10rem 2rem 4rem;
  }
}
.site-main[data-page=atsiliepimai] .cta-hero__inner {
  padding: 10rem 2rem;
}

.site-main[data-page=single-paslaugos] .cta-hero__inner {
  max-width: 1500px;
}
.site-main[data-page=single-paslaugos] .cta-hero__content {
  max-width: 100%;
}
.site-main[data-page=single-paslaugos] .cta-hero__title {
  width: 80%;
}
.site-main[data-page=single-paslaugos] .cta-hero__subtitle {
  width: 65%;
}

.faq {
  padding-top: var(--list-pt, 0);
  padding-bottom: var(--list-pb, 0);
  padding-left: var(--list-pl, 0);
  padding-right: var(--list-pr, 0);
}
.faq__title {
  margin: 0 0 3rem 0;
  color: #fff;
  text-transform: uppercase;
  font-size: clamp(28px, 2.08vw, 40px);
  font-weight: 700;
}
.faq__list {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}
.faq__item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
.faq__summary {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 1.75rem 0;
  cursor: pointer;
  color: rgba(255, 255, 255, 0.7);
}
.faq__summary::-webkit-details-marker {
  display: none;
}
.faq__question {
  font-size: 1.125rem;
  line-height: 1.4;
}
.faq__icon {
  width: 36px;
  height: 36px;
  position: relative;
  flex: 0 0 auto;
  opacity: 0.9;
}
.faq__icon::before, .faq__icon::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 18px;
  height: 2px;
  background: rgba(255, 255, 255, 0.85);
  transform: translate(-50%, -50%);
  transition: transform 0.25s ease;
}
.faq__icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}
.faq__item[open] .faq__item__icon::after {
  transform: translate(-50%, -50%) rotate(0deg);
}
.faq__content {
  height: 0;
  overflow: hidden;
}
.faq__content-inner {
  padding: 0 0 1.75rem 0;
  color: rgba(255, 255, 255, 0.6);
  max-width: 100%;
}
.faq__content-inner p {
  margin: 0;
}

.site-main[data-page=single-paslaugos] .faq.container {
  max-width: 1360px;
}
.site-main[data-page=single-paslaugos] .faq__title {
  width: 60%;
}
@media (max-width: 1024px) {
  .site-main[data-page=single-paslaugos] .faq__title {
    width: 80%;
  }
}
@media (max-width: 560px) {
  .site-main[data-page=single-paslaugos] .faq__title {
    width: 100%;
  }
}

.hero {
  position: relative;
  min-height: 850px;
  max-height: 850px;
  color: #ffffff;
}
.hero.scroll {
  min-height: 962px;
  max-height: 962px;
}
.hero.scroll .hero__content {
  padding: 12.5rem 0;
}
.hero__slides {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__slide {
  position: absolute;
  inset: 0;
  background-size: contain;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
}
.hero__slide.is-active {
  opacity: 1;
}
.hero__slide.center {
  background-position: top center;
}
.hero__slide.top-right {
  background-position: top right;
}
.hero__inner {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: inherit;
}
.hero__inner-nav {
  position: relative;
  z-index: 5;
  margin: 2rem 0;
  font-size: clamp(10px, 0.8vw, 15px);
  font-weight: 400;
}
.hero__inner-nav-list {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 3rem;
  padding: 0;
  margin: 0;
  list-style: none;
  text-transform: uppercase;
}
.hero__inner-nav-list .menu-item a {
  transition: 0.3s all;
}
.hero__inner-nav-list .menu-item a:hover {
  color: #e04600;
  transform: translateX(3%);
}
.hero__inner-nav-item {
  position: relative;
}
.hero__inner-nav-item.has-children:hover > .hero__submenu, .hero__inner-nav-item.has-children:focus-within > .hero__submenu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0s;
}
.hero__inner-nav-link {
  background: transparent;
  border: 0;
  color: #fff;
  font: inherit;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  cursor: pointer;
  padding: 10px 0;
  transition: 0.3s all;
}
.hero__inner-nav-link:hover {
  color: #e04600;
}
.hero__inner-nav-link--trigger::after {
  content: "▾";
  margin-left: 8px;
  font-size: 0.9em;
}
.hero__inner .scroll-indicator {
  position: absolute;
  left: 50%;
  bottom: 10%;
  transform: translateX(-50%);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #F36A2C;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
}
.hero__submenu {
  position: absolute;
  top: calc(100% + 1rem);
  left: 0;
  width: 600px;
  background: #ff5a00;
  border-radius: 1rem;
  padding: 1rem 0;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0s linear 0.25s;
}
.hero__submenu::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -1rem;
  height: 1rem;
}
.hero__submenu-list {
  list-style: none;
  margin: 0;
  padding: 0;
  counter-reset: heroItem;
}
.hero__submenu-item {
  padding: 0 3.5rem;
  transition: 0.3s all;
}
.hero__submenu-item:first-child a {
  border-top: 0;
}
.hero__submenu-item:hover {
  background: #e04600;
}
.hero__submenu-link {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 1rem;
  align-items: center;
  padding: 1.5rem 0;
  color: #fff;
  border-top: 1px solid #FC986B;
  text-decoration: none;
  text-transform: uppercase;
}
.hero__submenu-num::before {
  counter-increment: heroItem;
  content: counter(heroItem, decimal-leading-zero);
  opacity: 0.95;
}
.hero__submenu-text {
  font-weight: 400;
  letter-spacing: 0.02em;
}
.hero__content {
  padding: 80px 0 12.5rem;
}
.hero__breadcrumbs, .hero__title {
  margin: 0 0 2.5rem;
}
.hero__breadcrumbs {
  font-size: clamp(10px, 0.8vw, 15px);
}
.hero__breadcrumbs-current {
  color: #FEDC01;
}
.hero__title {
  font-weight: 800;
  font-size: clamp(40px, 5.3vw, 100px);
  text-transform: uppercase;
  letter-spacing: 0;
  line-height: 120%;
}
.hero__title.center {
  text-align: center;
}
.hero__title-highlight {
  color: #FEDC01;
}
.hero__text {
  font-size: 18px;
  line-height: 1.8;
  color: #ffffff;
}
.hero__text.center {
  text-align: center;
}
.hero__dots {
  display: flex;
  gap: 10px;
  margin-top: 40px;
}
.hero__dot {
  width: 10px;
  height: 10px;
  padding: 0;
  border-radius: 999px;
  background: #525252;
  border: 1px solid #525252;
  cursor: pointer;
}
.hero__dot.is-active {
  background: #FF5000;
  border-color: #FF5000;
}
@media (max-width: 1440px) {
  .hero__slide {
    background-size: cover;
  }
}
@media (max-width: 1024px) {
  .hero {
    min-height: 620px;
    margin-bottom: 4.5rem;
  }
  .hero.scroll .hero__inner {
    justify-content: unset;
  }
  .hero.scroll .hero__inner .hero__title {
    max-width: 100%;
  }
  .hero__inner {
    justify-content: space-between;
  }
  .hero__inner-nav-list {
    gap: 1rem;
  }
  .hero__content {
    padding: 0;
  }
  .hero__title {
    max-width: 400px;
  }
  .hero__title br {
    display: none;
  }
  .hero__title.center {
    max-width: 100%;
  }
}
@media (max-width: 870px) {
  .hero__title {
    max-width: 350px;
  }
}
@media (max-width: 768px) {
  .hero.scroll {
    min-height: 600px;
  }
  .hero.scroll .hero__content {
    padding: 8.5rem 0 !important;
  }
  .hero {
    min-height: 650px;
    margin-bottom: 0;
  }
  .hero__slides {
    max-height: 520px;
  }
  .hero__slide {
    background-size: cover;
  }
  .hero.scroll .hero__inner {
    justify-content: space-between;
  }
  .hero__inner-nav-list {
    display: none;
  }
  .hero__content {
    transform: translateY(-20%);
  }
  .hero__title {
    max-width: 400px;
    width: 100%;
    font-size: clamp(40px, 8vw, 60px);
  }
  .hero__text {
    font-size: 16px;
  }
}
@media (max-width: 580px) {
  .hero__title {
    max-width: 300px;
  }
}
@media (max-width: 430px) {
  .hero__slide {
    background-position: 85% 100% !important;
  }
  .hero__title {
    max-width: 100%;
  }
  .hero__text br {
    display: none;
  }
}

@media (max-width: 768px) {
  .site-main[data-page=projektai] .hero__title {
    font-size: clamp(30px, 8vw, 60px);
  }
}

.site-main[data-page=karjera] .hero__slide,
.site-main[data-page=susisiekite] .hero__slide {
  background-position: top center !important;
}

@media (max-width: 1024px) {
  .site-main[data-page=single-paslaugos] .hero__content-wrap {
    padding-left: 0;
  }
}
@media (max-width: 768px) {
  .site-main[data-page=single-paslaugos] .hero__slides {
    max-height: 850px;
  }
  .site-main[data-page=single-paslaugos] .hero__slide {
    background-position: 80% 0;
    background-size: cover;
  }
}
@media (max-width: 430px) {
  .site-main[data-page=single-paslaugos] .hero__slide {
    background-position: 80% 0 !important;
  }
}

.site-main[data-page=taxonomy-paslaugos_kategorija][data-tax=metalo-konstrukciju-projektavimas] .hero__title {
  width: 100%;
}
.site-main[data-page=taxonomy-paslaugos_kategorija] .hero__title {
  width: 70%;
}
@media (max-width: 768px) {
  .site-main[data-page=taxonomy-paslaugos_kategorija] .hero__title {
    max-width: 100%;
    width: 100%;
    font-size: clamp(20px, 8vw, 60px);
  }
}

.site-main[data-page=atsiliepimai] .hero__content, .site-main[data-page=kontaktai] .hero__content, .site-main[data-page=susisiekite] .hero__content {
  padding: 11rem 0 12.5rem;
}

.site-main[data-page=apie-mus] .hero__title.center br {
  display: none;
}

@property --dot-r {
  syntax: "<length>";
  inherits: true;
  initial-value: 0px;
}
.hero-cards {
  position: relative;
  margin-top: -150px;
}
.hero-cards__inner {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero-cards__inner-body {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 5.625rem;
}
.hero-cards__inner-body .hero-cards__card {
  --dot-r: 0px;
  position: relative;
  overflow: hidden;
  transform: translateZ(0);
  max-width: 310px;
  min-height: 440px;
  max-height: 440px;
  border-radius: 0.625rem;
  background-size: 100% 100%;
  background-repeat: no-repeat;
}
.hero-cards__inner-body .hero-cards__card:nth-of-type(even) {
  background-image: url("https://preneta.lt/wp-content/uploads/2025/12/bg2.webp");
}
.hero-cards__inner-body .hero-cards__card:nth-of-type(odd) {
  background-image: url("https://preneta.lt/wp-content/uploads/2025/12/bg1.webp");
}
@media (max-width: 630px) {
  .hero-cards__inner-body .hero-cards__card {
    max-width: 320px;
    min-height: 340px;
  }
}
.hero-cards__inner-body .hero-cards__card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  z-index: 4;
  pointer-events: none;
  background-image: radial-gradient(circle, #FEDC01 0 var(--dot-r), transparent calc(var(--dot-r) + 0.5px)), radial-gradient(circle, #FEDC01 0 var(--dot-r), transparent calc(var(--dot-r) + 0.5px)), radial-gradient(circle, #FEDC01 0 var(--dot-r), transparent calc(var(--dot-r) + 0.5px)), radial-gradient(circle, #FEDC01 0 var(--dot-r), transparent calc(var(--dot-r) + 0.5px));
  background-size: 14px 14px, 14px 14px, 14px 14px, 14px 14px;
  background-position: 14px 14px, calc(100% - 14px) 14px, 14px calc(100% - 14px), calc(100% - 14px) calc(100% - 14px);
  background-repeat: no-repeat;
  opacity: 0;
  transition: --dot-r 0.22s ease, opacity 0.22s ease;
}
.hero-cards__inner-body .hero-cards__card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  z-index: 3;
  pointer-events: none;
  background-image: radial-gradient(circle, #1B1B1B 0px, #1B1B1B 7px, transparent 7.5px), radial-gradient(circle, #1B1B1B 0px, #1B1B1B 7px, transparent 7.5px), radial-gradient(circle, #1B1B1B 0px, #1B1B1B 7px, transparent 7.5px), radial-gradient(circle, #1B1B1B 0px, #1B1B1B 7px, transparent 7.5px);
  background-size: 14px 14px, 14px 14px, 14px 14px, 14px 14px;
  background-position: 14px 14px, calc(100% - 14px) 14px, 14px calc(100% - 14px), calc(100% - 14px) calc(100% - 14px);
  background-repeat: no-repeat;
}
.hero-cards__inner-body .hero-cards__card:hover, .hero-cards__inner-body .hero-cards__card:focus-within {
  --dot-r: 4px;
}
.hero-cards__inner-body .hero-cards__card:hover::before, .hero-cards__inner-body .hero-cards__card:focus-within::before {
  opacity: 1;
}
.hero-cards__inner-body .hero-cards__card .card {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-width: 310px;
  max-width: 310px;
  min-height: inherit;
  max-height: inherit;
  padding: 2.55rem;
}
.hero-cards__inner-body .hero-cards__card .card img {
  position: relative;
  z-index: 2;
  width: fit-content;
}
.hero-cards__inner-body .hero-cards__card .card h2 {
  position: relative;
  z-index: 2;
  max-width: 163px;
  margin: 0;
  font-size: clamp(14px, 1.1vw, 20px);
  font-weight: 400;
  line-height: 2rem;
  text-transform: uppercase;
}
.hero-cards__inner-body .hero-cards__card .card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background-image: var(--hover-img);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  opacity: 0;
  transition: opacity 0.25s ease, transform 0.35s ease;
  z-index: 1;
  pointer-events: none;
}
.hero-cards__inner-body .hero-cards__card:hover .card::before {
  opacity: 1;
  transform: scale(1.1);
}
.hero-cards__inner__arrow {
  flex: 0 0 auto;
  border-radius: 999px;
  border: none;
  background: transparent;
  color: #818181;
  font-size: 40px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: color 0.2s ease, transform 0.15s ease;
}
.hero-cards__inner__arrow:hover {
  color: #ffffff;
}
.hero-cards__viewport {
  overflow: hidden;
  position: relative;
  flex: 1 1 auto;
  min-height: 640px;
}
.hero-cards__track {
  min-height: inherit;
  align-items: stretch;
  transition-timing-function: linear !important;
}
@media (max-width: 630px) {
  .hero-cards__track {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.75rem;
  }
}
.hero-cards__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2.5rem;
}
@media (max-width: 1440px) {
  .hero-cards {
    margin-top: -120px;
    transform: translateY(-120px);
  }
}
@media (max-width: 1024px) {
  .hero-cards {
    margin: 0;
    transform: translateY(0);
  }
}
@media (max-width: 768px) {
  .hero-cards__inner-body {
    margin-bottom: 0;
  }
}
@media (max-width: 630px) {
  .hero-cards__inner-body {
    margin-bottom: 3.75rem;
  }
}

.hero-slides {
  height: 63px;
  margin-top: -150px;
  margin-bottom: 12rem;
}
.hero-slides__inner, .hero-slides__viewport, .hero-slides__track {
  height: inherit;
}
.hero-slides__inner {
  position: relative;
  overflow: hidden;
}
.hero-slides__inner::before, .hero-slides__inner::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 140px;
  z-index: 3;
  pointer-events: none;
}
.hero-slides__inner::before {
  left: 0;
  background: linear-gradient(to right, rgba(27, 27, 27, 0.85), rgba(27, 27, 27, 0));
}
.hero-slides__inner::after {
  right: 0;
  background: linear-gradient(to left, rgba(27, 27, 27, 0.85), rgba(27, 27, 27, 0));
}
.hero-slides__track {
  align-items: center;
}
.hero-slides__slide {
  height: inherit;
  display: flex;
  justify-content: center;
}
@media (max-width: 1024px) {
  .hero-slides {
    margin-top: 0;
  }
}
@media (max-width: 768px) {
  .hero-slides {
    margin-bottom: 6rem;
  }
}

.site-main[data-page=single-paslaugos] .images-grid.container {
  max-width: 1360px;
}
@media (max-width: 768px) {
  .site-main[data-page=single-paslaugos] .images-grid__inner {
    grid-template-columns: 1fr !important;
  }
}

.images-grid {
  padding-top: var(--list-pt, 0);
  padding-bottom: var(--list-pb, 0);
  padding-left: var(--list-pl, 0);
  padding-right: var(--list-pr, 0);
}
.images-grid__inner:not(.gallery):not(.full-image) {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}
.images-grid__item {
  border-radius: 0.625rem;
}
.images-grid__item img {
  width: 100%;
  border-radius: inherit;
}
.images-grid__carousel {
  position: relative;
  display: grid;
  grid-template-columns: 48px 1fr 48px;
  align-items: center;
  gap: 1.5rem;
}
.images-grid__carousel .swiper {
  width: 100%;
  overflow: hidden;
}
.images-grid__carousel .swiper .swiper-slide {
  height: auto;
}
.images-grid__carousel .slider-btn-prev,
.images-grid__carousel .slider-btn-next {
  flex: 0 0 auto;
  border-radius: 999px;
  border: none;
  background: transparent;
  color: #818181;
  font-size: 40px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: color 0.2s ease, transform 0.15s ease;
}
.images-grid__carousel .slider-btn-prev:hover,
.images-grid__carousel .slider-btn-next:hover {
  color: #ffffff;
}
.images-grid__carousel-card {
  border-radius: 0.5rem;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
}
.images-grid__carousel-img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  display: block;
  border-radius: inherit;
}
@media (max-width: 768px) {
  .images-grid__inner {
    grid-template-columns: 1fr;
  }
  .images-grid__carousel {
    grid-template-columns: 10px 1fr 10px;
  }
}

.introduction.container {
  max-width: 1590px;
  margin: 9rem auto;
}
.introduction__inner {
  gap: 5rem;
}
.introduction__inner, .introduction__header, .introduction__text {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}
.introduction__title, .introduction__text p {
  margin: 0;
}
.introduction__title {
  font-size: clamp(28px, 3.125vw, 60px);
  font-weight: 700;
}
.introduction__text {
  gap: 2.5rem;
  color: #B2B2B2;
  font-size: 18px;
  font-weight: 400;
}
.introduction__media {
  width: 100%;
  border-radius: 0.625rem;
  overflow: hidden;
  position: relative;
  height: clamp(360px, 42vw, 800px);
  background: rgba(0, 0, 0, 0.25);
}
.introduction__media-play {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
  width: clamp(54px, 5vw, 72px);
  height: clamp(54px, 5vw, 72px);
  border-radius: 999px;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #FF5000;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.45);
  transition: transform 0.2s ease, filter 0.2s ease;
}
.introduction__media-play:hover {
  transform: translate(-50%, -50%) scale(1.05);
  filter: brightness(1.05);
}
.introduction__media-play:active {
  transform: translate(-50%, -50%) scale(0.98);
}
.introduction__media-play-icon {
  width: 0;
  height: 0;
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
  border-left: 10px solid #fff;
}
.introduction__media-overlay {
  position: absolute;
  inset: 0;
}
.introduction__media-overlay img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  display: block;
}
.introduction__media-overlay::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.35) 0%, rgba(0, 0, 0, 0.2) 40%, rgba(0, 0, 0, 0.35) 100%);
  pointer-events: none;
}
.introduction__modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  background: rgba(0, 0, 0, 0.75);
}
.introduction__modal[hidden] {
  display: none;
}
.introduction__modal-inner {
  width: min(1920px, 100%);
  border-radius: 1rem;
  overflow: hidden;
}
.introduction__modal-close {
  position: absolute;
  right: 10px;
  top: 10px;
  z-index: 9999;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  background: #FF5000;
  color: #fff;
  font-size: 26px;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.introduction__iframe-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
}
.introduction__iframe-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}
.introduction__actions {
  text-align: center;
}
@media (max-width: 768px) {
  .introduction {
    margin: 0 auto 5rem auto !important;
  }
}

.manuals__posts {
  display: flex;
  flex-direction: column;
  width: 100%;
  margin: 0 0 5rem 0;
}
.manuals__post {
  display: grid;
  grid-template-columns: 1fr clamp(350px, 263.4px + 20.13vw, 650px);
  gap: 14.5rem;
  align-items: center;
  padding: 5rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  overflow: clip;
}
.manuals__post-content {
  position: relative;
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.manuals__post-content::before {
  content: attr(data-index);
  position: absolute;
  top: 75%;
  transform: translateY(-28%);
  font-size: clamp(360px, 22.82vw + 261.88px, 700px);
  font-weight: 800;
  line-height: 1;
  color: rgba(255, 255, 255, 0.04);
  pointer-events: none;
  user-select: none;
}
.manuals__post-content__title, .manuals__post-content__text, .manuals__post-content__list {
  margin: 0;
}
.manuals__post-content__title {
  margin-bottom: 4rem;
  font-size: clamp(28px, 3.125vw, 60px);
  font-weight: 700;
}
.manuals__post-content__wrap, .manuals__post-content__list {
  display: flex;
  flex-direction: column;
  gap: 4rem;
}
.manuals__post-content__wrap {
  margin-bottom: 5rem;
}
.manuals__post-content__text, .manuals__post-content__list {
  font-size: 18px;
  color: #B2B2B2;
}
.manuals__post-content__list {
  gap: 1.5rem;
  list-style: none;
  padding-left: 0;
}
.manuals__post-content__list-item {
  position: relative;
  padding-left: 1.2rem;
}
.manuals__post-content__list-item::before {
  content: "–";
  position: absolute;
  left: 0;
}
.manuals__post-content__button {
  width: fit-content;
}
.manuals__post-thumb {
  border-radius: 0.625rem;
}
.manuals__post-thumb img {
  border-radius: inherit;
}
@media (max-width: 1440px) {
  .manuals__post {
    gap: 2rem;
  }
}
@media (max-width: 1024px) {
  .manuals__post {
    grid-template-columns: 1fr;
  }
  .manuals__post-content {
    order: 2;
  }
  .manuals__post-thumb {
    order: 1;
  }
  .manuals__post-thumb img {
    height: 400px;
    width: 100%;
    object-fit: cover;
    object-position: 100% 70%;
  }
}

.site-main[data-page=informatyvu] .manuals.container {
  max-width: 1590px;
}

.latest-solutions__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.latest-solutions__heading {
  display: inherit;
  flex-direction: inherit;
  align-items: inherit;
  text-align: inherit;
  gap: 3rem;
  margin: 0 0 4.5rem;
}
.latest-solutions__heading-title {
  margin: 0;
  max-width: 550px;
  min-width: 900px;
  text-transform: uppercase;
  font-size: clamp(32px, 3.65vw, 70px);
  font-weight: 700;
  color: #ffffff;
}
.latest-solutions__heading-title__accent {
  color: #FEDC01;
}
.latest-solutions__heading-subtitle {
  margin: 18px 0 0;
  max-width: 760px;
  font-size: 18px;
  line-height: 1.6;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.55);
}
.latest-solutions__posts {
  display: flex;
  flex-direction: column;
  width: 100%;
  margin: 0 0 5rem 0;
}
.latest-solutions__post {
  padding: 5rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  overflow: clip;
}
.latest-solutions__post:first-child {
  padding-top: 0;
}
.latest-solutions__post-link {
  display: grid;
  grid-template-columns: clamp(350px, 20.13vw + 263.4px, 650px) 1fr;
  gap: 5.5rem;
  align-items: center;
  text-decoration: none;
  color: inherit;
}
.latest-solutions__post-thumb {
  position: relative;
  border-radius: 0.625rem;
  overflow: hidden;
}
.latest-solutions__post-thumb .latest-solutions__img, .latest-solutions__post-thumbimg {
  width: 100%;
  display: block;
  aspect-ratio: 16/10;
  object-fit: cover;
  transition: 0.3s all;
}
.latest-solutions__post-thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background: rgba(255, 80, 0, 0.4);
  opacity: 0;
  transform: scale(0);
  transform-origin: center;
  will-change: transform, opacity;
  transition: 0.3s all;
}
.latest-solutions__post-arrow {
  position: absolute;
  left: 0;
  top: 50%;
  z-index: 3;
  pointer-events: none;
  opacity: 0;
  transform: translate(-50%, -50%) translateX(0);
  transform-origin: center;
  will-change: transform, opacity;
  color: #ffffff;
  transition: 0.3s all;
}
.latest-solutions__post-arrow svg {
  display: block;
}
.latest-solutions__post-content {
  position: relative;
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  height: 100%;
}
.latest-solutions__post-content::before {
  content: attr(data-index);
  position: absolute;
  right: 15%;
  top: 50%;
  transform: translateY(-28%);
  font-size: clamp(360px, 22.82vw + 261.88px, 700px);
  font-weight: 800;
  line-height: 1;
  color: rgba(255, 255, 255, 0.04);
  pointer-events: none;
  user-select: none;
}
.latest-solutions__post-content__meta {
  display: inline-flex;
  align-items: center;
  font-size: 16px;
  text-transform: uppercase;
  color: #B2B2B2;
}
.latest-solutions__post-content__meta .dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #FEDC01;
}
.latest-solutions__post-content__meta .meta-label {
  display: inline-flex;
  align-items: center;
  gap: 1.25rem;
  margin: 0 0.5rem 0 0;
  max-width: 520px;
}
.latest-solutions__post-content__title {
  margin: 0;
  max-width: 670px;
  font-size: clamp(18px, 1.56vw, 30px);
  font-weight: 400;
  line-height: 1.4;
  color: #ffffff;
  transition: transform 0.28s ease, color 0.28s ease;
  will-change: transform, color;
}
.latest-solutions__post-content__footer {
  margin-top: 1.6rem;
  font-size: 18px;
  color: #B2B2B2;
}
.latest-solutions__post:hover .latest-solutions__post-thumb img, .latest-solutions__post:focus-within .latest-solutions__post-thumb img {
  transform: scale(1.1);
}
.latest-solutions__post:hover .latest-solutions__post-thumb::after, .latest-solutions__post:focus-within .latest-solutions__post-thumb::after {
  opacity: 1;
  transform: scale(1);
}
.latest-solutions__post:hover .latest-solutions__post-arrow, .latest-solutions__post:focus-within .latest-solutions__post-arrow {
  opacity: 1;
  left: 50%;
}
.latest-solutions__post:hover .latest-solutions__post-content__title, .latest-solutions__post:focus-within .latest-solutions__post-content__title {
  transform: translateX(18px);
  color: #ff7a2a;
}

@media (max-width: 1024px) {
  .latest-solutions__heading {
    gap: 1rem;
  }
  .latest-solutions__heading-title {
    max-width: 300px;
    min-width: 450px;
  }
  .latest-solutions__heading-subtitle {
    max-width: 400px;
  }
  .latest-solutions__post-link {
    grid-template-columns: clamp(350px, 13.13vw + 263.4px, 650px) 1fr;
  }
  .latest-solutions__post-link {
    gap: 2rem;
  }
}
@media (max-width: 768px) {
  .latest-solutions__post-link {
    grid-template-columns: 1fr;
  }
  .latest-solutions__post-thumb {
    max-width: 400px;
  }
  .latest-solutions__post-content:before {
    right: 0;
    width: 100%;
  }
  .latest-solutions__post-content__meta {
    margin-bottom: 2rem;
  }
  .latest-solutions__post-content__title {
    margin-bottom: 2.5rem;
  }
}
@media (max-width: 460px) {
  .latest-solutions__heading-title {
    max-width: 100%;
    min-width: 100%;
  }
  .latest-solutions__heading-subtitle {
    max-width: 100%;
  }
}
.list {
  padding-top: var(--list-pt, 0);
  padding-bottom: var(--list-pb, 0);
  padding-left: var(--list-pl, 0);
  padding-right: var(--list-pr, 0);
}
.list.disable-separator {
  border-bottom: 0 !important;
}
.list__title {
  margin: 0 0 2rem 0;
  font-size: clamp(28px, 2.08vw, 40px);
}
.list ul {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 18px;
}
.list table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
}
.list table tbody {
  width: 100%;
}
.list table tr {
  border-bottom: 1px dashed rgba(255, 255, 255, 0.14);
}
.list table tr:last-child {
  border-bottom: 0;
}
.list table td {
  padding: 1.75rem 0;
  font-size: 18px;
  font-weight: 400;
  color: #ffffff;
  vertical-align: top;
}
.list table td:first-child {
  width: 38%;
  padding-right: 2rem;
  color: #ffffff;
  text-align: left;
}
.list table td:last-child {
  width: 62%;
  text-align: right;
  color: #d7d7d7;
}
.list table tr:first-child td {
  padding-top: 0;
  padding-bottom: 1.25rem;
  font-weight: 600;
  color: #ffffff;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.22);
}
.list table b,
.list table strong {
  font-weight: 600;
}
.list table span {
  font-weight: inherit !important;
}
.list__item {
  position: relative;
  padding-left: 1.2em;
}
.list__item::before {
  content: "–";
  position: absolute;
  left: 0;
}
.list a {
  color: #ffffff;
  transition: 0.3s all;
}
.list a:hover {
  color: #e04600;
}
@media (max-width: 768px) {
  .list table tr:first-child td {
    padding-bottom: 1rem;
  }
  .list table td {
    display: block;
    width: 100% !important;
    padding: 0.875rem 0;
  }
  .list table td:first-child {
    padding-right: 0;
    padding-bottom: 0.5rem;
  }
  .list table td:last-child {
    text-align: left;
    padding-top: 0;
    padding-bottom: 1.25rem;
  }
}

.site-main[data-page=single-paslaugos] .list ul {
  gap: 0;
  list-style: disc;
  padding-left: 2rem;
}

.site-main[data-page=single-produktai] .list ul {
  padding-left: 1.5rem;
  list-style: circle;
}
.site-main[data-page=single-produktai] .list ul br {
  display: none;
}

.site-main[data-page=atsiliepimai] .paragraph-container,
.site-main[data-page=informatyvu] .paragraph-container {
  max-width: 1590px;
  font-size: 18px;
  color: #B2B2B2;
}
.site-main[data-page=atsiliepimai] .paragraph-container p,
.site-main[data-page=informatyvu] .paragraph-container p {
  margin: 0;
}
.site-main[data-page=atsiliepimai] .paragraph-container p:nth-of-type(odd),
.site-main[data-page=informatyvu] .paragraph-container p:nth-of-type(odd) {
  margin: 8.875rem 0 2.75rem;
}
.site-main[data-page=atsiliepimai] .paragraph-container p:last-of-type,
.site-main[data-page=informatyvu] .paragraph-container p:last-of-type {
  margin-bottom: 6.375rem;
}
@media (max-width: 768px) {
  .site-main[data-page=atsiliepimai] .paragraph-container p:first-of-type,
  .site-main[data-page=informatyvu] .paragraph-container p:first-of-type {
    margin: 0 0 2.75rem;
  }
}

.site-main[data-page=single-post] .paragraph-container__inner .paragraph-container__paragraph {
  max-width: 700px;
}

.site-main[data-page=single-produktai] .paragraph-container__inner .paragraph-container__image img {
  max-width: 424px;
}
@media (max-width: 768px) {
  .site-main[data-page=single-produktai] .paragraph-container__inner .paragraph-container__image img {
    max-width: 100%;
  }
}

.paragraph-container {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding-top: var(--list-pt, 0);
  padding-bottom: var(--list-pb, 0);
  padding-left: var(--list-pl, 0);
  padding-right: var(--list-pr, 0);
}
.paragraph-container__inner {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  justify-content: space-between;
  gap: 2rem;
}
.paragraph-container__inner.reverse .paragraph-container__paragraph {
  order: 2;
}
@media (max-width: 768px) {
  .paragraph-container__inner.reverse {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 768px) {
  .paragraph-container__inner {
    grid-template-columns: 1fr;
  }
  .paragraph-container__inner .paragraph-container__paragraph {
    order: 2;
  }
}
.paragraph-container__paragraph {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.paragraph-container__image {
  border-radius: 0.625rem;
}
.paragraph-container__image img {
  width: 100%;
  border-radius: inherit;
}

.post-taxonomies-archive {
  position: relative;
  transform: translateY(-14rem);
  z-index: 1;
}
.post-taxonomies-archive__inner.container {
  max-width: 1590px;
}
.post-taxonomies-archive__inner-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.625rem;
}
.post-taxonomies-archive__card {
  position: relative;
  min-height: 400px;
  padding: 1.875rem 1.875rem 1.875rem 3.125rem;
  border-radius: 0.625rem;
  background-size: 100% 100%;
  background-repeat: no-repeat;
  box-shadow: 0 18px 45px rgba(27, 27, 27, 0.65);
  background-image: url("https://preneta.lt/wp-content/uploads/2026/01/bg-horizontal.webp");
}
.post-taxonomies-archive__card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background-image: radial-gradient(circle, #1B1B1B 0px, #1B1B1B 7px, transparent 7.5px), radial-gradient(circle, #1B1B1B 0px, #1B1B1B 7px, transparent 7.5px), radial-gradient(circle, #1B1B1B 0px, #1B1B1B 7px, transparent 7.5px), radial-gradient(circle, #1B1B1B 0px, #1B1B1B 7px, transparent 7.5px);
  background-size: 14px 14px, 14px 14px, 14px 14px, 14px 14px;
  background-position: 14px 14px, calc(100% - 14px) 14px, 14px calc(100% - 14px), calc(100% - 14px) calc(100% - 14px);
  background-repeat: no-repeat;
}
.post-taxonomies-archive__card:hover .post-taxonomies-archive__title {
  transform: translateX(5%);
  color: #FF5000;
}
.post-taxonomies-archive__card:hover .post-taxonomies-archive__meta {
  color: #ffffff;
}
.post-taxonomies-archive__card:hover .post-taxonomies-archive__image img {
  transform: scale(1.1);
}
.post-taxonomies-archive__card-inner {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  height: 100%;
}
.post-taxonomies-archive__content {
  display: inherit;
  flex-direction: column;
  justify-content: space-between;
  flex: 1 1 746px;
  max-width: 746px;
  min-width: 746px;
}
.post-taxonomies-archive__title {
  font-size: clamp(28px, 2.08vw, 40px);
  font-weight: 400;
  text-transform: uppercase;
  color: #ffffff;
  transition: 0.3s all;
}
.post-taxonomies-archive__meta {
  color: #B2B2B2;
}
.post-taxonomies-archive__postlink {
  cursor: pointer;
  transition: 0.3s all;
}
.post-taxonomies-archive__postlink:hover {
  color: #FF5000;
}
.post-taxonomies-archive__image {
  display: inline-flex;
  justify-content: end;
  overflow: hidden;
  border-radius: 0.375rem;
}
.post-taxonomies-archive__image img {
  height: 100%;
  object-fit: cover;
  transition: 0.3s all;
}
@media (max-width: 1440px) {
  .post-taxonomies-archive__content {
    flex: 1 1 450px;
    max-width: 450px;
    min-width: 450px;
  }
}
@media (max-width: 1024px) {
  .post-taxonomies-archive {
    transform: translateY(0);
  }
  .post-taxonomies-archive__inner {
    margin-bottom: 11.875rem;
  }
  .post-taxonomies-archive__card {
    max-width: 740px;
    width: 100%;
    padding: 2.5rem;
    margin: 0 auto;
  }
  .post-taxonomies-archive__card-inner {
    flex-direction: column;
  }
  .post-taxonomies-archive__content {
    flex: 1;
    max-width: 100%;
    min-width: 100%;
  }
  .post-taxonomies-archive__title {
    margin: 0;
  }
  .post-taxonomies-archive__image img {
    width: 100%;
  }
}
@media (max-width: 768px) {
  .post-taxonomies-archive__inner {
    margin-bottom: 3rem;
  }
  .post-taxonomies-archive__image {
    max-height: 300px;
    min-height: 300px;
  }
}
@media (max-width: 540px) {
  .post-taxonomies-archive__title {
    font-size: clamp(18px, 1.35vw, 26px);
  }
  .post-taxonomies-archive__meta {
    font-size: 18px;
  }
  .post-taxonomies-archive__image {
    max-height: 200px;
    min-height: 200px;
  }
}

.site-main[data-page=apie-mus] .posts-archive__subtitle {
  width: 90% !important;
}
.site-main[data-page=apie-mus] .posts-archive__cta {
  margin-top: 5rem;
}

.posts-archive[data-post-type=produktai] .posts-archive__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2.625rem;
}
@media (max-width: 1140px) {
  .posts-archive[data-post-type=produktai] .posts-archive__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 768px) {
  .posts-archive[data-post-type=produktai] .posts-archive__grid {
    grid-template-columns: 1fr;
  }
}

.posts-archive[data-post-type=karjera] .posts-archive__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, 740px);
  gap: 2.625rem;
}
@media (max-width: 1600px) {
  .posts-archive[data-post-type=karjera] .posts-archive__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 1140px) {
  .posts-archive[data-post-type=karjera] .posts-archive__grid {
    grid-template-columns: 1fr;
  }
}

.posts-archive[data-post-type=projektai] {
  margin-bottom: 5rem;
}
.posts-archive[data-post-type=projektai] .posts-archive__inner {
  margin-bottom: 0;
}
.posts-archive[data-post-type=projektai] .posts-archive__header {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  margin-bottom: 3.75rem;
}
.posts-archive[data-post-type=projektai] .posts-archive__title, .posts-archive[data-post-type=projektai] .posts-archive__subtitle {
  margin: 0;
}
.posts-archive[data-post-type=projektai] .posts-archive__title {
  width: 30%;
  font-size: clamp(28px, 3.125vw, 60px);
  font-weight: 700;
}
.posts-archive[data-post-type=projektai] .posts-archive__subtitle {
  width: 50%;
  font-size: 18px;
}

.posts-archive[data-post-type=post] .posts-archive__row {
  gap: 2rem;
  grid-template-columns: repeat(3, 1fr);
}
.posts-archive[data-post-type=post] .posts-archive__card {
  max-width: 484px;
  margin: 0 auto;
}
.posts-archive[data-post-type=post] .posts-archive__title, .posts-archive[data-post-type=post] .posts-archive__text {
  margin: 0;
}
.posts-archive[data-post-type=post] .posts-archive__title {
  width: 90%;
  margin-bottom: 2.75rem;
  font-size: clamp(14px, 1.1vw, 20px);
}
.posts-archive[data-post-type=post] .posts-archive__text {
  color: #B2B2B2;
}
@media (max-width: 1200px) {
  .posts-archive[data-post-type=post] .posts-archive__row {
    grid-template-columns: repeat(2, 1fr);
    width: fit-content;
    margin: 0 auto;
  }
}
@media (max-width: 768px) {
  .posts-archive[data-post-type=post] .posts-archive__row {
    grid-template-columns: 1fr;
  }
}

.posts-archive[data-post-type=karjera] .posts-archive__inner {
  margin-bottom: 0;
}
.posts-archive[data-post-type=karjera] .posts-archive__grid {
  padding-bottom: 5rem;
  border-bottom: 1px solid #414141;
}
.posts-archive[data-post-type=karjera] .posts-archive__card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.posts-archive[data-post-type=karjera] .posts-archive__card .posts-archive__content {
  margin-bottom: 4rem;
}
.posts-archive[data-post-type=karjera] .posts-archive__card .posts-archive__content-top {
  margin-bottom: 10rem;
}
.posts-archive[data-post-type=karjera] .posts-archive__card .posts-archive__title {
  width: 80%;
  margin-bottom: 2rem;
  transition: 0.3s all;
}
.posts-archive[data-post-type=karjera] .posts-archive__card .posts-archive__description {
  margin: 0;
  font-size: 18px;
  color: #B2B2B2;
}
.posts-archive[data-post-type=karjera] .posts-archive__card .posts-archive__list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  list-style: none;
  padding: 0;
  margin: 0;
  color: #B2B2B2;
}
.posts-archive[data-post-type=karjera] .posts-archive__card .posts-archive__list .posts-archive__list-item {
  position: relative;
  padding-left: 1.2em;
  font-size: 18px;
}
.posts-archive[data-post-type=karjera] .posts-archive__card .posts-archive__list .posts-archive__list-item::before {
  content: "–";
  position: absolute;
  left: 0;
}
.posts-archive[data-post-type=karjera] .posts-archive__card .posts-archive__actions a {
  transform: translateX(0) !important;
  color: #ffffff;
  background-color: #FF5000;
  transition: 0.3s all;
}
.posts-archive[data-post-type=karjera] .posts-archive__card:hover .posts-archive__content .posts-archive__title {
  transform: translateX(5%);
  color: #FF5000;
}
.posts-archive[data-post-type=karjera] .posts-archive__card:hover .posts-archive__actions a {
  background-color: #e04600;
}
@media (max-width: 1140px) {
  .posts-archive[data-post-type=karjera] .posts-archive__card {
    max-width: 600px;
    min-width: 600px;
  }
}
@media (max-width: 768px) {
  .posts-archive[data-post-type=karjera] {
    margin-bottom: 3rem !important;
  }
}
@media (max-width: 700px) {
  .posts-archive[data-post-type=karjera] .posts-archive__card {
    max-width: 100%;
    min-width: 100%;
  }
}

.posts-archive__inner {
  margin-bottom: 11.875rem;
}
.posts-archive__inner.container {
  max-width: 1590px;
}
.posts-archive__tabs-wrap {
  margin-bottom: 5rem;
}
.posts-archive__tabs-label {
  display: none;
}
.posts-archive__tabs-mobile-trigger {
  display: none;
}
.posts-archive__tabs-toggle {
  display: none;
}
.posts-archive__tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.posts-archive__tab {
  display: inline-flex;
  align-items: center;
  padding: 0.75rem 1.375rem;
  border: 1px solid #ffffff;
  border-radius: 4px;
  color: #ffffff;
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
  transition: 0.3s all;
}
.posts-archive__tab.is-active {
  background-color: #FF5000;
  border-color: #FF5000;
}
.posts-archive__tab:hover:not(.is-active) {
  border-color: #FF5000;
  color: #FF5000;
}
@media (max-width: 768px) {
  .posts-archive__tabs-wrap {
    margin-bottom: 3rem;
  }
  .posts-archive__tabs-label {
    display: block;
    margin: 0 0 1.25rem;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.06em;
    color: #ffffff;
  }
  .posts-archive__tabs-mobile-trigger {
    display: flex;
    gap: 0.625rem;
    align-items: stretch;
  }
  .posts-archive__tabs-mobile-trigger .posts-archive__tab {
    flex: 1;
    justify-content: center;
    padding: 1.25rem 1.5rem;
    font-size: 14px;
  }
  .posts-archive__tabs-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    flex-shrink: 0;
    background: #ffffff;
    border: none;
    border-radius: 4px;
    color: #FF5000;
    cursor: pointer;
    transition: 0.3s all;
  }
  .posts-archive__tabs-toggle:hover {
    background: #f0f0f0;
  }
  .posts-archive__tabs-toggle svg {
    transition: 0.3s all;
  }
  .posts-archive__tabs-toggle[aria-expanded=true] svg {
    transform: rotate(180deg);
  }
  .posts-archive__tabs {
    display: flex;
    flex-direction: column;
    margin-top: 0.625rem;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transform: translateY(-6px);
    transition: max-height 0.35s ease, opacity 0.25s ease, transform 0.25s ease;
  }
  .posts-archive__tabs.is-open {
    max-height: 1200px;
    opacity: 1;
    transform: translateY(0);
  }
}
.posts-archive__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 6.5rem;
}
.posts-archive[data-pagination=false] .posts-archive__row:last-child::after {
  display: none;
}
.posts-archive__row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.875rem;
  position: relative;
  padding: 0 0 6.5rem;
}
.posts-archive__row::after {
  content: "";
  position: absolute;
  left: 6rem;
  right: 6rem;
  bottom: 0;
  height: 1px;
  background: #414141;
}
.posts-archive__row:last-child::after {
  left: 0;
  right: 0;
}
.posts-archive__card {
  position: relative;
  padding: 3.2rem 3rem;
  border-radius: 0.625rem;
  background-size: 100% 100%;
  background-repeat: no-repeat;
  box-shadow: 0 18px 45px rgba(27, 27, 27, 0.65);
  overflow: hidden;
}
.posts-archive__card:nth-of-type(even) {
  background-image: url("https://preneta.lt/wp-content/uploads/2025/12/bg2.webp");
}
.posts-archive__card:nth-of-type(odd) {
  background-image: url("https://preneta.lt/wp-content/uploads/2025/12/bg1.webp");
}
.posts-archive__card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background-image: radial-gradient(circle, #1B1B1B 0px, #1B1B1B 7px, transparent 7.5px), radial-gradient(circle, #1B1B1B 0px, #1B1B1B 7px, transparent 7.5px), radial-gradient(circle, #1B1B1B 0px, #1B1B1B 7px, transparent 7.5px), radial-gradient(circle, #1B1B1B 0px, #1B1B1B 7px, transparent 7.5px);
  background-size: 14px 14px, 14px 14px, 14px 14px, 14px 14px;
  background-position: 14px 14px, calc(100% - 14px) 14px, 14px calc(100% - 14px), calc(100% - 14px) calc(100% - 14px);
  background-repeat: no-repeat;
}
.posts-archive__image {
  margin-bottom: 2.625rem;
}
.posts-archive__image img {
  border-radius: 0.375rem;
}
.posts-archive__title {
  width: 70%;
  margin-bottom: 1.5rem;
  font-size: clamp(18px, 1.56vw, 30px);
}
.posts-archive__text {
  margin-bottom: 4rem;
  font-size: 18px;
}
.posts-archive__title, .posts-archive__text {
  font-weight: 400;
}
.posts-archive__actions, .posts-archive .btn {
  width: 100%;
}
.posts-archive__actions {
  display: inline-flex;
  gap: 1rem;
}
.posts-archive__actions .btn {
  letter-spacing: 0;
}
.posts-archive__pagination {
  margin-top: 2rem;
}
.posts-archive__pagination-inner {
  display: inline-flex;
  gap: 1.25rem;
}
.posts-archive__pagination-inner .page-numbers, .posts-archive__pagination-inner .pagination-dots {
  color: #838383;
}
.posts-archive__pagination-inner .page-numbers {
  transition: 0.3s all;
}
.posts-archive__pagination-inner .page-numbers.current, .posts-archive__pagination-inner .page-numbers:hover {
  color: #FF5000;
  text-decoration: underline;
}
.posts-archive__cta {
  text-align: center;
}
.posts-archive__cta a {
  width: fit-content !important;
}
@media (max-width: 1600px) {
  .posts-archive__actions {
    flex-wrap: wrap;
  }
}
@media (max-width: 1440px) {
  .posts-archive__actions .btn {
    padding: 1.25rem 2rem;
  }
}
@media (max-width: 1140px) {
  .posts-archive__card {
    max-width: 740px;
    margin: 0 auto;
  }
}
@media (max-width: 1024px) {
  .posts-archive__row {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 768px) {
  .posts-archive__inner {
    margin-bottom: 3rem;
  }
  .posts-archive__grid {
    gap: 2.875rem;
  }
  .posts-archive__row {
    padding: 0;
  }
  .posts-archive__row::after {
    display: none;
  }
  .posts-archive__card {
    max-width: 100%;
  }
  .posts-archive__actions {
    display: grid;
    grid-template-columns: 1fr;
  }
}
@media (max-width: 540px) {
  .posts-archive__card {
    padding: 2.5rem;
  }
  .posts-archive__title {
    width: 100%;
  }
  .posts-archive__actions {
    flex-wrap: wrap;
  }
}

.posts-archive[data-post-type=produktai] .posts-archive__card {
  display: flex;
  flex-direction: column;
}
.posts-archive[data-post-type=produktai] .posts-archive__content {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.posts-archive[data-post-type=produktai] .posts-archive__actions {
  margin-top: auto;
  display: flex;
  flex-wrap: nowrap;
}
.posts-archive[data-post-type=produktai] .posts-archive__actions .btn {
  flex: 1;
  min-width: 0;
  text-align: center;
  font-size: 13px;
  padding: 1.1rem 1.5rem;
  white-space: nowrap;
}
.posts-archive[data-post-type=produktai] .posts-archive__title {
  width: 100%;
}
@media (max-width: 1440px) {
  .posts-archive[data-post-type=produktai] .posts-archive__actions {
    flex-direction: column;
  }
  .posts-archive[data-post-type=produktai] .posts-archive__actions .btn {
    flex: none;
    width: 100%;
  }
}
@media (max-width: 768px) {
  .posts-archive[data-post-type=produktai] .posts-archive__actions .btn {
    font-size: 16px;
    padding: 1.25rem 4rem;
  }
}

.posts-archive-projektai__top {
  margin: 0 0 1.75rem;
}
.posts-archive-projektai__dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-right: 1.25rem;
  background: #FEDC01;
  border-radius: 50%;
}
.posts-archive-projektai__meta, .posts-archive-projektai__footer-item {
  font-size: 18px;
  color: #B2B2B2;
}
.posts-archive-projektai__card:hover .posts-archive-projektai__image img, .posts-archive-projektai__card:focus-within .posts-archive-projektai__image img {
  transform: scale(1.1);
}
.posts-archive-projektai__card:hover .posts-archive-projektai__image::after, .posts-archive-projektai__card:focus-within .posts-archive-projektai__image::after {
  opacity: 1;
  transform: scale(1);
}
.posts-archive-projektai__card:hover .posts-archive-projektai__arrow, .posts-archive-projektai__card:focus-within .posts-archive-projektai__arrow {
  opacity: 1;
  left: 50%;
}
.posts-archive-projektai__card:hover .posts-archive-projektai__title, .posts-archive-projektai__card:focus-within .posts-archive-projektai__title {
  transform: translateX(18px);
  color: #ff7a2a;
}
.posts-archive-projektai__arrow {
  position: absolute;
  left: 0;
  top: 50%;
  z-index: 3;
  pointer-events: none;
  opacity: 0;
  transform: translate(-50%, -50%) translateX(0);
  transform-origin: center;
  will-change: transform, opacity;
  color: #ffffff;
  transition: 0.3s all;
}
.posts-archive-projektai__arrow svg {
  display: block;
}
.posts-archive-projektai__image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/11;
  border-radius: 0.625rem;
}
.posts-archive-projektai__image::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background: rgba(255, 80, 0, 0.4);
  opacity: 0;
  transform: scale(0);
  transform-origin: center;
  will-change: transform, opacity;
  transition: 0.3s all;
}
.posts-archive-projektai__image img {
  width: 100%;
  height: 100%;
  border-radius: inherit;
  transition: 0.3s all;
}
.posts-archive-projektai__content {
  margin: 2rem 0;
}
.posts-archive-projektai__title {
  margin: 0;
  font-size: clamp(18px, 1.35vw, 26px);
  font-weight: 400;
  transition: transform 0.28s ease, color 0.28s ease;
  will-change: transform, color;
}
@media (max-width: 1024px) {
  .posts-archive-projektai__card {
    max-width: 740px;
    margin: 0 auto;
  }
}

.posts-slider {
  position: relative;
  margin: 12.5rem 0 44.5rem 0;
}
.posts-slider[data-background=true] {
  padding: 0 0 clamp(18rem, 28.7vw, 34.5rem);
}
.posts-slider .swiper-slide {
  width: auto;
}
.posts-slider__inner {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 2;
}
.posts-slider__inner-heading {
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
  width: 100%;
  margin-bottom: 3.875rem;
}
.posts-slider__inner-heading .posts-slider__title {
  max-width: 920px;
  margin: 0;
  font-size: clamp(32px, 3.65vw, 70px);
  font-weight: 700;
  text-transform: uppercase;
}
.posts-slider__inner-heading .posts-slider__title-line {
  color: #ffffff;
}
.posts-slider__inner-heading .posts-slider__title-line--accent {
  color: #FEDC01;
}
.posts-slider__inner-heading .posts-slider__subtitle {
  font-size: 18px;
  color: #B2B2B2;
}
.posts-slider__inner-body {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 5.625rem;
  margin-bottom: 3.75rem;
  overflow: hidden;
}
.posts-slider__inner .card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex: 0 0 auto;
  width: 480px;
  min-width: 480px;
  max-width: 480px;
  min-height: -webkit-fill-available;
  max-height: -webkit-fill-available;
  padding: 3.2rem 3rem;
  border-radius: 0.625rem;
  background-image: url("https://preneta.lt/wp-content/uploads/2025/12/bg2.webp");
  background-size: 100% 100%;
  background-repeat: no-repeat;
  box-shadow: 0 18px 45px rgba(27, 27, 27, 0.65);
}
.posts-slider__inner .card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background-image: radial-gradient(circle, #1B1B1B 0px, #1B1B1B 7px, transparent 7.5px), radial-gradient(circle, #1B1B1B 0px, #1B1B1B 7px, transparent 7.5px), radial-gradient(circle, #1B1B1B 0px, #1B1B1B 7px, transparent 7.5px), radial-gradient(circle, #1B1B1B 0px, #1B1B1B 7px, transparent 7.5px);
  background-size: 14px 14px, 14px 14px, 14px 14px, 14px 14px;
  background-position: 14px 14px, calc(100% - 14px) 14px, 14px calc(100% - 14px), calc(100% - 14px) calc(100% - 14px);
  background-repeat: no-repeat;
}
.posts-slider__inner .card .card__image {
  min-height: 340px;
  max-height: 340px;
}
.posts-slider__inner .card .card__image img {
  height: inherit;
  border-radius: 0.375rem;
}
.posts-slider__inner .card .posts-slider__card-inner-content-wrap {
  display: inherit;
  flex-direction: inherit;
  gap: 1rem;
}
.posts-slider__inner .card .card__inner-wrapper {
  flex: 1;
  display: flex;
  flex-direction: column;
  font-size: 18px;
  font-weight: 400;
}
.posts-slider__inner .card .card__inner-wrapper .title {
  margin: 0;
  color: #DEDEDE;
  font-weight: inherit;
  text-transform: uppercase;
}
.posts-slider__inner .card .card__inner-wrapper .text {
  margin-top: auto;
  padding-top: 2.75rem;
  color: #B2B2B2;
}
.posts-slider__background {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
}
.posts-slider__background img {
  width: 100%;
}
.posts-slider__viewport {
  position: relative;
  flex: 1 1 auto;
  min-height: 400px;
  overflow: hidden;
}
.posts-slider__track {
  min-height: inherit;
}
.posts-slider__arrow {
  flex: 0 0 auto;
  border-radius: 999px;
  border: none;
  background: transparent;
  color: #818181;
  font-size: 40px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: color 0.2s ease, transform 0.15s ease;
}
.posts-slider__arrow:hover {
  color: #ffffff;
}
.posts-slider__footer {
  display: flex;
  justify-content: space-between;
  width: 100%;
}
.posts-slider__dots {
  display: flex;
  gap: 1rem;
  align-items: center;
  width: auto !important;
}
.posts-slider__dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #525252;
  border: 1px solid #525252;
  padding: 0;
  cursor: pointer;
  transition: background-color 0.2s ease, border-color 0.2s ease, transform 0.15s ease;
}
.posts-slider__dot.is-active {
  background: #FF5000;
  border-color: #FF5000;
  transform: scale(1.1);
}
.posts-slider .btn {
  padding: 1.25rem 2.375rem;
}

@media (max-width: 1024px) {
  .posts-slider {
    margin: 12.5rem 0 45.5rem 0;
  }
  .posts-slider__inner-body {
    gap: 1rem;
    padding: 0;
  }
  .posts-slider__arrow {
    display: none;
  }
}
@media (max-width: 768px) {
  .posts-slider {
    margin: 4rem 0 45.5rem 0;
  }
  .posts-slider[data-background=true] {
    padding: 0 0 26rem;
  }
  .posts-slider__viewport {
    overflow: hidden;
  }
  .posts-slider__card {
    min-width: 320px !important;
    max-width: 320px !important;
    padding: 2.5rem 1.85rem !important;
  }
  .posts-slider__card .card__inner-wrapper .title,
  .posts-slider__card .card__inner-wrapper .text {
    font-size: 16px;
  }
  .posts-slider__card .card__image {
    min-height: 240px !important;
    max-height: 240px !important;
  }
  .posts-slider__viewport, .posts-slider__card {
    min-height: 480px !important;
  }
  .posts-slider__footer {
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 2.5rem;
  }
  .posts-slider__background img {
    min-height: 770px;
    object-fit: cover;
    object-position: 60% 100%;
  }
}
.site-main[data-page=single-paslaugos] .posts-slider {
  margin: 6.5rem 0 10rem;
}
.site-main[data-page=single-paslaugos] .posts-slider__inner-heading {
  margin-bottom: 0;
}
.site-main[data-page=single-paslaugos] .posts-slider__title {
  max-width: 100%;
}
.site-main[data-page=single-paslaugos] .posts-slider__subtitle {
  margin: 0;
}
.site-main[data-page=single-paslaugos] .posts-slider__track {
  align-items: stretch;
}
.site-main[data-page=single-paslaugos] .posts-slider__card {
  display: flex;
  flex-direction: column;
  justify-content: stretch;
  flex: 0 0 auto;
  width: 100%;
  min-width: 100%;
  max-width: 100%;
  min-height: 400px;
  height: auto;
  padding: 3.2rem 3rem;
  background-image: url("https://preneta.lt/wp-content/uploads/2026/01/bg-horizontal.webp");
}
.site-main[data-page=single-paslaugos] .posts-slider__card-inner {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: stretch;
  gap: 2rem;
  width: 100%;
  height: 100%;
  min-height: 100%;
}
.site-main[data-page=single-paslaugos] .posts-slider__card-inner-image {
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 0.5rem;
}
.site-main[data-page=single-paslaugos] .posts-slider__card-inner-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
  transition: 0.3s all;
}
.site-main[data-page=single-paslaugos] .posts-slider__card-inner-content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 45%;
  min-width: 45%;
  gap: 1.25rem;
}
.site-main[data-page=single-paslaugos] .posts-slider__card-inner-content-wrap {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.site-main[data-page=single-paslaugos] .posts-slider__card-inner-title, .site-main[data-page=single-paslaugos] .posts-slider__card-inner-meta {
  margin: 0;
  transition: 0.3s all;
}
.site-main[data-page=single-paslaugos] .posts-slider__card-inner-title {
  width: 100%;
  font-size: clamp(28px, 2.08vw, 40px);
  font-weight: 400;
  text-transform: uppercase;
  line-height: 1.1;
}
.site-main[data-page=single-paslaugos] .posts-slider__card-inner-meta {
  color: #B2B2B2;
  font-size: 18px;
}
.site-main[data-page=single-paslaugos] .posts-slider .text {
  margin-top: auto;
  color: #ffffff;
}
.site-main[data-page=single-paslaugos] .posts-slider__card:hover .posts-slider__card-inner-title {
  transform: translateX(5%);
  color: #FF5000;
}
.site-main[data-page=single-paslaugos] .posts-slider__card:hover .posts-slider__card-inner-meta {
  color: #ffffff;
}
.site-main[data-page=single-paslaugos] .posts-slider__card:hover .posts-slider__card-inner-image img {
  transform: scale(1.05);
}
.site-main[data-page=single-paslaugos] .posts-slider__footer {
  justify-content: center;
}
@media (max-width: 1440px) {
  .site-main[data-page=single-paslaugos] .posts-slider__card-inner-title {
    font-size: clamp(28px, 2.08vw, 40px);
  }
}
@media (max-width: 1024px) {
  .site-main[data-page=single-paslaugos] .posts-slider__card-inner-content {
    gap: 1rem;
  }
}
@media (max-width: 768px) {
  .site-main[data-page=single-paslaugos] .posts-slider {
    margin: 2rem 0 3rem;
  }
  .site-main[data-page=single-paslaugos] .posts-slider__inner-body {
    padding: 0 2rem;
  }
  .site-main[data-page=single-paslaugos] .posts-slider__card {
    min-width: 100% !important;
    max-width: 100% !important;
    width: 100% !important;
  }
  .site-main[data-page=single-paslaugos] .posts-slider .posts-slider__viewport, .site-main[data-page=single-paslaugos] .posts-slider .posts-slider__card {
    min-height: 100% !important;
  }
  .site-main[data-page=single-paslaugos] .posts-slider .posts-slider__card-inner-content {
    width: 100%;
  }
  .site-main[data-page=single-paslaugos] .posts-slider .posts-slider__card-inner {
    flex-direction: column-reverse;
    justify-content: start;
  }
}
@media (max-width: 560px) {
  .site-main[data-page=single-paslaugos] .posts-slider__card-inner-title {
    font-size: 20px;
  }
}

.site-main[data-page=apie-mus] .posts-slider {
  margin: 12.5rem 0 0 0;
}
.site-main[data-page=apie-mus] .posts-slider__inner-heading {
  align-items: center;
}
.site-main[data-page=apie-mus] .posts-slider__title, .site-main[data-page=apie-mus] .posts-slider__subtitle {
  text-align: center;
}
.site-main[data-page=apie-mus] .posts-slider .card__image {
  max-height: 100% !important;
  min-height: 100% !important;
}
.site-main[data-page=apie-mus] .posts-slider .card__inner-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  max-height: 220px;
  min-height: 220px;
}
.site-main[data-page=apie-mus] .posts-slider .card__inner-wrapper .title {
  width: 70%;
}
@media (max-width: 768px) {
  .site-main[data-page=apie-mus] .posts-slider .card__inner-wrapper {
    max-height: 270px;
    min-height: 270px;
  }
}

.site-main[data-page=pagrindinis] .posts-slider[data-post-type=post] .card,
.site-main[data-page=single-projektai] .posts-slider[data-post-type=post] .card {
  min-width: 0;
  max-width: none;
  width: 100%;
}
.site-main[data-page=pagrindinis] .posts-slider[data-post-type=post] .card__image,
.site-main[data-page=single-projektai] .posts-slider[data-post-type=post] .card__image {
  min-height: auto !important;
  max-height: 100% !important;
  margin-bottom: 2rem;
}
@media (max-width: 1024px) {
  .site-main[data-page=pagrindinis] .posts-slider[data-post-type=post] .card,
  .site-main[data-page=single-projektai] .posts-slider[data-post-type=post] .card {
    max-width: 480px;
  }
}
@media (max-width: 1024px) {
  .site-main[data-page=pagrindinis] .posts-slider[data-post-type=post] .posts-slider__track,
  .site-main[data-page=single-projektai] .posts-slider[data-post-type=post] .posts-slider__track {
    align-items: stretch;
    min-height: 0;
  }
  .site-main[data-page=pagrindinis] .posts-slider[data-post-type=post] .swiper-slide,
  .site-main[data-page=single-projektai] .posts-slider[data-post-type=post] .swiper-slide {
    height: auto;
  }
}

.posts-archive[data-post-type=post] .posts-archive__row {
  gap: 2rem;
  grid-template-columns: repeat(3, 1fr);
  align-items: stretch;
}
.posts-archive[data-post-type=post] .posts-archive__card {
  max-width: 484px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.posts-archive[data-post-type=post] .posts-archive__image {
  margin-bottom: 2.625rem;
}
.posts-archive[data-post-type=post] .posts-archive__image img {
  width: 100%;
  display: block;
}
.posts-archive[data-post-type=post] .posts-archive__content {
  display: flex;
  flex-direction: column;
  flex: 1;
}
.posts-archive[data-post-type=post] .posts-archive__title,
.posts-archive[data-post-type=post] .posts-archive__text {
  margin: 0;
}
.posts-archive[data-post-type=post] .posts-archive__title {
  width: 90%;
  font-size: clamp(14px, 1.1vw, 20px);
}
.posts-archive[data-post-type=post] .posts-archive__text {
  margin-top: auto;
  padding-top: 2.75rem;
  color: #B2B2B2;
}
@media (max-width: 1200px) {
  .posts-archive[data-post-type=post] .posts-archive__row {
    grid-template-columns: repeat(2, 1fr);
    width: fit-content;
    margin: 0 auto;
  }
}
@media (max-width: 768px) {
  .posts-archive[data-post-type=post] .posts-archive__row {
    grid-template-columns: 1fr;
  }
}

.project-details__list {
  padding: 6rem 0;
}
.project-details__image {
  padding: 4rem 0;
}
.project-details__row {
  display: flex;
  justify-content: space-between;
  padding: 4rem;
}
.project-details__row + .project-details__row {
  border-top: 1px solid #414141;
}
.project-details__image {
  border-radius: 0.625rem;
}
.project-details__image img {
  width: 100%;
  border-radius: inherit;
}
.project-details__col--left {
  display: flex;
  gap: 0.5rem;
  width: 100%;
  font-size: clamp(14px, 1.1vw, 20px);
  font-weight: 400;
}
.project-details__col--right {
  max-width: 775px;
  min-width: 775px;
}
.project-details__index {
  color: #FEDC01;
  font-weight: inherit;
}
.project-details__title {
  margin: 0;
  font-weight: inherit;
}
.project-details__description {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.project-details__description ul {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  list-style: none;
  padding: 0;
  margin: 0 0 4rem 0;
  color: #B2B2B2;
  font-size: 18px;
}
.project-details__description ul li {
  position: relative;
  padding-left: 1.2em;
}
.project-details__description ul li::before {
  content: "–";
  position: absolute;
  left: 0;
}
.project-details__testimonial {
  max-width: 1100px;
  margin: 0 auto;
}
.project-details__testimonial .testimonials__card-media img {
  object-fit: cover;
}
@media (max-width: 1300px) {
  .project-details__row {
    flex-direction: column;
    gap: 2rem;
  }
  .project-details__col--right {
    max-width: 100%;
    min-width: 100%;
  }
}
@media (max-width: 1024px) {
  .project-details__testimonial .testimonials__card-media {
    height: clamp(200px, 64vw, 656px);
  }
}
@media (max-width: 768px) {
  .project-details__list {
    padding: 0;
  }
  .project-details__description ul {
    margin: 0;
  }
  .project-details__image {
    padding: 0 0 4rem 0;
  }
}
@media (max-width: 600px) {
  .project-details__row {
    padding: 2rem;
  }
}

.testimonials.container {
  max-width: 1590px;
}
.testimonials__inner-wrap {
  padding: 5.5rem 0;
  border-bottom: 1px solid #414141;
}
.testimonials__inner-wrap:not(:last-of-type) {
  border-top: 1px solid #414141;
}
.testimonials__cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3.125rem;
  max-width: 1130px;
}
.testimonials__card {
  position: relative;
  display: inline-flex;
  gap: 4.875rem;
  padding: 3.2rem 3rem;
  border-radius: 0.625rem;
  background-image: url("https://preneta.lt/wp-content/uploads/2026/01/bg-lg-horizontal.webp");
  background-size: 100% 100%;
  background-repeat: no-repeat;
  box-shadow: 0 18px 45px rgba(27, 27, 27, 0.65);
}
.testimonials__card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background-image: radial-gradient(circle, #1B1B1B 0px, #1B1B1B 7px, transparent 7.5px), radial-gradient(circle, #1B1B1B 0px, #1B1B1B 7px, transparent 7.5px), radial-gradient(circle, #1B1B1B 0px, #1B1B1B 7px, transparent 7.5px), radial-gradient(circle, #1B1B1B 0px, #1B1B1B 7px, transparent 7.5px);
  background-size: 14px 14px, 14px 14px, 14px 14px, 14px 14px;
  background-position: 14px 14px, calc(100% - 14px) 14px, 14px calc(100% - 14px), calc(100% - 14px) calc(100% - 14px);
  background-repeat: no-repeat;
}
.testimonials__card-text {
  margin: 2.625rem 0 4.875rem 0;
}
.testimonials__card-meta {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}
.testimonials__card-meta p {
  margin: 0;
}
.testimonials__card-media {
  min-width: clamp(180px, 22vw, 260px);
  aspect-ratio: 13/20;
  border-radius: 0.375rem;
}
.testimonials__card-media img {
  height: 100%;
  border-radius: inherit;
}
.testimonials__card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.testimonials__card-content img {
  max-width: 140px;
  width: fit-content;
}
@media (max-width: 1024px) {
  .testimonials__card {
    flex-direction: column;
  }
  .testimonials__card-media {
    height: clamp(434px, 64vw, 656px);
    aspect-ratio: auto;
  }
  .testimonials__card-media img {
    object-fit: cover;
    object-position: top;
    margin: 0 auto;
  }
}
.testimonials .clients__logos {
  display: flex;
  flex-direction: column;
  gap: 5.4rem;
  padding-top: 5.5rem;
}
.testimonials .clients__logos .clients__logo-list {
  display: flex;
  justify-content: space-between;
  margin: 0 auto;
  padding: 0;
  list-style: none;
}
.testimonials .clients__logos .clients__logo-list:nth-of-type(odd) {
  width: clamp(680px, 75vw, 700px);
}
.testimonials .clients__logos .clients__logo-list:nth-of-type(even) {
  width: clamp(720px, 90vw, 800px);
}
.testimonials .clients__logos .clients__logo-list .client__logo {
  flex: 0 1 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 120px;
  max-width: 180px;
}
.testimonials .clients__logos .clients__logo-list .client__logo img {
  display: block;
  width: 100%;
  height: auto;
  opacity: 0.8;
  filter: grayscale(1);
}
@media (max-width: 1024px) {
  .testimonials .clients__logos {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 2.5rem 3rem;
    justify-items: center;
    align-items: center;
  }
  .testimonials .clients__logos .clients__logo-list {
    width: auto !important;
    margin: 0 !important;
    padding: 0 !important;
    list-style: none;
    display: contents;
  }
  .testimonials .clients__logos .clients__logo-list .client__logo {
    min-width: 0;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .testimonials .clients__logos .clients__logo-list .client__logo .client__logo-img {
    width: 100%;
    max-width: 180px;
    height: auto;
  }
}
@media (max-width: 768px) {
  .testimonials .clients__logos {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
.testimonials__list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  max-width: 1130px;
}
.testimonials__list .testimonial {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.testimonials__list .testimonial__heading {
  display: inline-flex;
  justify-content: space-between;
}
@media (max-width: 768px) {
  .testimonials__list .testimonial__heading {
    flex-direction: column;
  }
}
.testimonials__list .testimonial__name, .testimonials__list .testimonial__date, .testimonials__list .testimonial__body {
  margin: 0;
  font-weight: 400;
}
.testimonials__list .testimonial__date, .testimonials__list .testimonial__body {
  color: #B2B2B2;
}
.testimonials__list .testimonial__rating {
  display: inline-flex;
  gap: 0.4rem;
}
.testimonials__list .testimonial__star {
  color: #FEDC01;
}
@media (max-width: 768px) {
  .testimonials__cards {
    padding: 0;
  }
}

.site-main[data-page=single-paslaugos] .video.container {
  max-width: 1360px;
}

.video {
  padding-top: var(--list-pt, 0);
  padding-bottom: var(--list-pb, 0);
  padding-left: var(--list-pl, 0);
  padding-right: var(--list-pr, 0);
}
.video .introduction__media {
  height: clamp(360px, 42vw, 576px);
}

.site-main[data-page=apie-mus] .why-us__inner.container {
  max-width: 1590px;
}

.site-main[data-page=karjera] .why-us {
  margin: 7rem 0;
}
.site-main[data-page=karjera] .why-us__top {
  max-width: 1550px;
  text-align: start;
}
@media (max-width: 768px) {
  .site-main[data-page=karjera] .why-us {
    margin: 7rem 0 2rem;
  }
}

.why-us {
  position: relative;
  background-color: #1B1B1B;
  color: #ffffff;
  margin-bottom: 12.875rem;
}
.why-us__header {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) clamp(20rem, 26vw, 28.25rem) minmax(0, 1fr);
  gap: 0;
  overflow: hidden;
  min-height: 488px;
}
.why-us__top {
  max-width: 1160px;
  margin: 0 auto 5rem;
  text-align: center;
}
.why-us__body {
  position: relative;
  overflow: hidden;
  margin-bottom: 9rem;
}
.why-us__body::before, .why-us__body::after {
  content: "";
  position: absolute;
  top: 0;
  width: clamp(40px, 6vw, 360px);
  height: 100%;
  pointer-events: none;
  z-index: 2;
}
.why-us__body::before {
  left: 0;
  background: linear-gradient(to right, rgb(27, 27, 27) 0%, rgba(27, 27, 27, 0) 100%);
}
.why-us__body::after {
  right: 0;
  background: linear-gradient(to left, rgb(27, 27, 27) 0%, rgba(27, 27, 27, 0) 100%);
}
.why-us__body .why-us__reason {
  justify-content: normal;
  padding: clamp(48px, 6vw, 92px) clamp(1.5rem, 6vw, 86px) clamp(48px, 6vw, 92px) 2rem;
}
.why-us__body .why-us__reason .why-us__top-wrap {
  display: grid;
  grid-template-columns: 1fr;
  gap: 5rem;
  max-width: 279px;
}
.why-us__body .why-us__reason:nth-child(1), .why-us__body .why-us__reason:nth-child(4) {
  align-items: end;
}
.why-us__body .why-us__reason:nth-child(3), .why-us__body .why-us__reason:nth-child(6) {
  align-items: start;
  padding-left: clamp(1.5rem, 6vw, 86px);
  padding-right: 2rem;
}
.why-us__body .why-us__reason:nth-child(2), .why-us__body .why-us__reason:nth-child(5) {
  padding-left: clamp(1.5rem, 6vw, 94px);
  padding-right: clamp(1.5rem, 5vw, 79px);
}
.why-us__body .why-us__reason:nth-child(-n+3) {
  border-top: 1px solid #414141;
  border-bottom: 1px solid #414141;
}
.why-us__body .why-us__reason:nth-last-child(-n+3) {
  border-bottom: 1px solid #414141;
}
.why-us__body .why-us__reason:nth-child(3) {
  border-width: 1px 0 1px 0;
}
.why-us__body .why-us__reason:nth-child(3)::before, .why-us__body .why-us__reason:nth-child(3)::after {
  display: none;
}
.why-us__body .why-us__reason-number {
  width: 80%;
  text-transform: unset;
}
.why-us__content-container:first-child {
  padding: clamp(6rem, 10.73vw, 12.875rem) 0 clamp(3rem, 5.31vw, 6.375rem) clamp(2rem, 6.67vw, 8rem);
}
.why-us__content-container:last-child {
  border-style: solid;
  border-width: 0 0 0 1px;
  border-color: #414141;
  background-image: linear-gradient(to left, #1b1b1b 0%, rgba(27, 27, 27, 0) 100%), url("http://preneta.ccweb.lt/wp-content/uploads/2025/12/pattern.svg");
  background-repeat: no-repeat;
}
.why-us__title, .why-us__top-title {
  display: inline-flex;
  gap: 1rem;
  margin: 0 0 2.4rem;
  font-weight: 800;
  text-transform: uppercase;
  line-height: 1.1;
  font-size: clamp(32px, 3.65vw, 70px);
}
.why-us__title-accent, .why-us__top-title-accent {
  display: block;
  color: #FEDC01;
}
.why-us__title-main {
  display: block;
}
.why-us__subtitle, .why-us__top-subtitle {
  margin: 0;
  font-size: 18px;
  line-height: 1.7;
  color: #c0c2c5;
}
.why-us__reasons, .why-us__body {
  display: grid;
  grid-template-columns: minmax(0, 1fr) clamp(20rem, 26vw, 28.25rem) minmax(0, 1fr);
  gap: 0;
}
.why-us__reasons {
  position: relative;
  min-height: 426px;
  margin-bottom: 8.75rem;
  border-style: solid;
  border-width: 1px 0 1px 0;
  border-color: #414141;
}
.why-us__reason {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: clamp(3rem, 6vw, 7.75rem);
  position: relative;
  height: 100%;
  border-style: solid;
  border-width: 0 1px 0 0;
  border-color: #414141;
}
.why-us__reason:first-of-type {
  padding: 0 clamp(2rem, 4vw, 8.4rem) 0 clamp(2rem, 6vw, 12.5rem);
}
.why-us__reason:nth-of-type(2) {
  padding: 0 clamp(1.5rem, 3vw, 5rem) 0 clamp(1.5rem, 3vw, 5.875rem);
}
.why-us__reason:last-of-type {
  padding: clamp(3rem, 4vw, 5.75rem) 0 clamp(3rem, 4vw, 5.75rem) clamp(2rem, 4vw, 6rem);
  border-style: none;
}
.why-us__reason:not(:last-child)::before, .why-us__reason:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 100%;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #414141;
}
.why-us__reason::before {
  top: 0;
  transform: translate(-40%, -60%);
}
.why-us__reason::after {
  bottom: 0;
  transform: translate(-40%, 60%);
}
.why-us__reason-number {
  display: block;
  margin-bottom: 1rem;
  font-size: clamp(14px, 1.1vw, 20px);
  font-weight: 700;
  text-transform: uppercase;
  color: #FEDC01;
}
.why-us__reason-title {
  margin: 0 0 1.75rem;
  font-size: clamp(14px, 1.1vw, 20px);
  font-weight: 600;
  line-height: 1.4;
}
.why-us__reason-text {
  margin: 0;
  font-size: 18px;
  line-height: 1.7;
  color: #B2B2B2;
}
.why-us__footer {
  margin-top: 6rem;
  text-align: center;
}
.why-us__logos {
  display: flex;
  flex-direction: column;
  gap: 5.4rem;
}
.why-us__logo-list {
  display: flex;
  justify-content: space-between;
  margin: 0 auto;
  padding: 0;
  list-style: none;
}
.why-us__logo-list:nth-of-type(odd) {
  width: clamp(680px, 75vw, 900px);
}
.why-us__logo-list:nth-of-type(even) {
  width: clamp(820px, 90vw, 1100px);
}
.why-us__logo {
  flex: 0 1 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 120px;
  max-width: 180px;
}
.why-us__logo-img {
  display: block;
  width: 100%;
  height: auto;
  opacity: 0.8;
  filter: grayscale(1);
}
.why-us__top-title {
  font-size: clamp(28px, 3.125vw, 60px);
}
.why-us__body .why-us__reason {
  justify-content: normal;
  padding: clamp(48px, 6vw, 92px) clamp(1.5rem, 6vw, 86px) clamp(48px, 6vw, 92px) 2rem;
}
@media (max-width: 1100px) {
  .why-us__body .why-us__reason {
    padding: 3rem 2rem !important;
  }
}
@media (max-width: 830px) {
  .why-us__body {
    grid-template-columns: repeat(2, 1fr);
  }
  .why-us__body .why-us__reason:nth-child(2), .why-us__body .why-us__reason:nth-child(4) {
    border-width: 1px 0 1px 0;
  }
  .why-us__body .why-us__reason:nth-child(2)::before, .why-us__body .why-us__reason:nth-child(2)::after, .why-us__body .why-us__reason:nth-child(4)::before, .why-us__body .why-us__reason:nth-child(4)::after {
    display: none;
  }
  .why-us__body .why-us__reason:nth-child(3) {
    border-width: 1px 1px 1px 0;
  }
  .why-us__body .why-us__reason:nth-child(3), .why-us__body .why-us__reason:nth-child(5) {
    align-items: end;
  }
  .why-us__body .why-us__reason:nth-child(4), .why-us__body .why-us__reason:nth-child(6) {
    align-items: start;
  }
}
@media (max-width: 510px) {
  .why-us__body {
    grid-template-columns: 1fr;
    margin-bottom: 5rem;
  }
  .why-us__body .why-us__reason {
    align-items: center !important;
    border-width: 1px 0 0 0 !important;
    border-style: solid !important;
    border-color: #414141 !important;
  }
  .why-us__body .why-us__reason::before, .why-us__body .why-us__reason::after {
    display: none;
  }
  .why-us__body .why-us__reason {
    border-width: 1px 0 1px 0 !important;
  }
}

@media (max-width: 1100px) {
  .why-us__header, .why-us__reasons {
    grid-template-columns: 1fr 1fr 1fr;
  }
  .why-us__reason {
    border-width: 0 1px 0 0;
  }
  .why-us__reason:first-of-type, .why-us__reason:nth-of-type(2), .why-us__reason:last-of-type {
    padding: 3rem 2rem;
  }
}
@media (max-width: 1024px) {
  .why-us__content-container {
    padding: 6rem 0 !important;
  }
  .why-us__logos {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 2.5rem 3rem;
    justify-items: center;
    align-items: center;
  }
  .why-us__logo-list {
    width: auto !important;
    margin: 0 !important;
    padding: 0 !important;
    list-style: none;
    display: contents;
  }
  .why-us__logo {
    min-width: 0;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .why-us__logo-img {
    width: 100%;
    max-width: 120px;
    height: auto;
  }
}
@media (max-width: 768px) {
  .why-us {
    margin-bottom: 4rem;
  }
  .why-us__body {
    margin-bottom: 4rem;
  }
  .why-us__header {
    grid-template-columns: 1fr;
    min-height: 100%;
  }
  .why-us__content-container:first-child {
    padding: 6rem 0 3rem !important;
  }
  .why-us__content-container:not(:first-child) {
    display: none;
  }
  .why-us__reasons {
    grid-template-columns: 1fr;
    margin-bottom: 4rem;
  }
  .why-us__reasons article {
    flex-direction: row;
    gap: 5.8rem;
    padding: 3rem 0 !important;
    border-width: 0 0 1px 0;
  }
  .why-us__reasons article:before, .why-us__reasons article:after {
    display: none;
  }
  .why-us__reasons article .why-us__reason-text {
    width: 80%;
  }
  .why-us__logos {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
.tabs {
  padding-top: var(--list-pt);
  padding-bottom: var(--list-pb);
  padding-left: var(--list-pl);
  padding-right: var(--list-pr);
}
.tabs__nav {
  display: flex;
  gap: 3rem;
  border-bottom: 1px solid #414141;
  margin-bottom: 3.5rem;
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}
.tabs__nav-btn {
  appearance: none;
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  padding: 0 0 1.25rem;
  font: inherit;
  font-size: 18px;
  color: #B2B2B2;
  cursor: pointer;
  transition: color 0.25s ease, border-color 0.25s ease;
  white-space: nowrap;
}
.tabs__nav-btn:hover {
  color: #ffffff;
}
.tabs__nav-btn.is-active {
  color: #FF5000;
  border-bottom-color: #FF5000;
}
.tabs__panel {
  display: none;
}
.tabs__panel.is-active {
  display: block;
}
.tabs__panel .list {
  margin: 0;
  padding: 0;
  border-bottom: 0 !important;
}
@media (max-width: 768px) {
  .tabs__nav {
    gap: 1.5rem;
    margin-bottom: 1.5rem;
  }
  .tabs__nav::-webkit-scrollbar {
    display: none;
  }
  .tabs__nav-btn {
    font-size: 16px;
    flex-shrink: 0;
  }
  .tabs__panel .list table td {
    display: table-cell !important;
    padding: 1.75rem 0 !important;
    vertical-align: middle;
  }
  .tabs__panel .list table td:first-child {
    padding-bottom: 1.75rem !important;
  }
}

main[data-page=single-produktai] .tabs table tr td,
main[data-page=single-produktai] .tabs ul {
  color: #B2B2B2;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem 4rem;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  text-align: center;
}

.btn--primary {
  background-color: #FF5000;
  color: #ffffff;
  transition: 0.3s all;
}
.btn--primary:hover {
  transform: translateX(3%);
  background-color: #e04600 !important;
}

.btn--outline {
  background: #242323;
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #fff;
  font-weight: 400;
  transition: 0.3s all;
}
.btn--outline:hover {
  transform: translateX(3%);
  color: #FF5000 !important;
  border: 1px solid #ffffff !important;
}

.site-main[data-page="404"] {
  min-height: 100%;
}
.site-main[data-page="404"] .hero {
  min-height: clamp(520px, 70vh, 900px);
  max-height: none;
  margin-bottom: 20rem;
}
.site-main[data-page="404"] .hero__inner {
  justify-content: flex-start;
  gap: clamp(1.5rem, 3vw, 4rem);
}
.site-main[data-page="404"] .hero__content {
  padding: clamp(3rem, 8vw, 12.5rem) 0;
  max-width: 44rem;
}
.site-main[data-page="404"] .hero__title {
  font-size: clamp(2.25rem, 5vw, 4.5rem);
  line-height: 1.02;
  margin: 0 0 1rem;
  word-break: normal;
}
.site-main[data-page="404"] .hero__text, .site-main[data-page="404"] .hero__description {
  font-size: clamp(1rem, 1.1vw, 1.125rem);
  line-height: 1.5;
  max-width: 38rem;
}
.site-main[data-page="404"] .hero__image, .site-main[data-page="404"] .hero__media {
  align-self: center;
  max-width: 560px;
  width: 100%;
}
.site-main[data-page="404"] .hero__image img,
.site-main[data-page="404"] .hero__image svg, .site-main[data-page="404"] .hero__media img,
.site-main[data-page="404"] .hero__media svg {
  width: 100%;
  height: auto;
  display: block;
}

@media (max-width: 1440px) {
  .site-main[data-page="404"] .hero {
    min-height: clamp(520px, 65vh, 820px);
  }
  .site-main[data-page="404"] .hero__content {
    padding: clamp(2.5rem, 6vw, 6rem) 0;
    max-width: 40rem;
  }
}
@media (max-width: 1024px) {
  .header-cta {
    padding: 1rem !important;
  }
  .site-main[data-page="404"] .hero {
    min-height: auto;
    padding-bottom: 8rem;
    margin-bottom: 40rem;
  }
  .site-main[data-page="404"] .hero__inner {
    flex-direction: column;
    align-items: flex-start;
  }
  .site-main[data-page="404"] .hero__inner-nav {
    width: 100%;
  }
  .site-main[data-page="404"] .hero__content {
    padding: 3.5rem 0 2rem;
    max-width: 100%;
  }
}
@media (max-width: 768px) {
  .site-main[data-page="404"] .hero__content {
    padding: 3rem 0 1.5rem;
  }
  .site-main[data-page="404"] .hero__title {
    font-size: clamp(2rem, 8vw, 3rem);
  }
  .btn {
    padding: 1rem 2.25rem;
  }
}
@media (max-width: 550px) {
  .site-main[data-page="404"] .hero__slide.top-right {
    background-position: 82% 0;
  }
}
@media (max-width: 480px) {
  .site-main[data-page="404"] .hero__inner {
    gap: 1.25rem;
  }
  .site-main[data-page="404"] .hero__content {
    padding: 2.25rem 0 1.25rem;
  }
  .btn {
    padding: 0.95rem 1.5rem;
  }
}
@media (max-width: 360px) {
  .btn--primary,
  .btn--outline {
    font-size: 12px !important;
  }
}
