html,
body {
  overflow-x: clip;
}
body {
  font-family: var(--main-font);
  font-optical-sizing: auto;
  font-weight: 400;
  font-size: 16px;
  font-style: normal;
  color: var(--color-000000);
  letter-spacing: -0.5px;
}
body a {
  text-decoration: none;
  color: var(--color-000000);
  transition: var(--transition);
}
body p {
  color: var(--color-787878);
  font-size: 16px;
  letter-spacing: 0.5px;
  font-family: var(--main-font) !important;
}
body strong,
body b {
  color: #000;
}
.container {
  max-width: 1320px;
  padding: 0 20px;
}
h1 {
  font-size: 48px;
  font-weight: 500;
  font-family: var(--main-font);
  letter-spacing: 0;
  line-height: 55px;
}
h2 {
  font-size: 48px;
  font-weight: 500;
  line-height: 55px;
  font-family: var(--main-font);
  letter-spacing: 0;
}
h3 {
  font-size: 36px;
  font-weight: 500;
  font-family: var(--main-font);
  letter-spacing: 0;
}
h4 {
  font-size: 24px;
  font-weight: 600;
  font-family: var(--main-font);
  letter-spacing: 0;
}
h5 {
  font-size: 18px;
  font-weight: 600;
  font-family: var(--main-font);
  letter-spacing: 0;
}
ul {
  padding: 0;
  margin: 0;
}
ul li {
  list-style: none;
  letter-spacing: -0.5px;
}
.overflow-hidden {
  overflow: hidden;
}
/* Bredcrums */
div#breadcrumbs {
  margin: 160px 0 25px;
}
.page-template-page-aboutus div#breadcrumbs {
  display: none;
}
div#breadcrumbs span a,
div#breadcrumbs span {
  color: #a2a2a2;
}
div#breadcrumbs span.breadcrumb_last {
  color: var(--color-61c7f2);
}
/* Custom classes */
.main-btn {
  background-color: var(--color-01091b);
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 1px;
  padding: 10px 50px;
  transition: var(--transition);
  border-radius: var(--radius20);
  max-height: 47px;
  border: 2px solid var(--color-01091b);
  letter-spacing: 1px;
}
.main-btn svg {
  width: 21px;
  margin-left: 10px;
  transition: var(--transition);
}
.main-btn:hover {
  background-color: #fff;
  border: 2px solid var(--color-01091b);
  color: var(--color-01091b);
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}
.title-txt {
  color: var(--color-dd215c);
  font-size: 18px;
  font-weight: bold;
  text-transform: uppercase;
}
.relative {
  position: relative;
}
/* Sticky header */
.fixed-menu {
  position: fixed;
  top: 0;
  width: 100%;
  background: #fff;
  z-index: 99;
  transition: all 0.3s ease-in-out;
}
.fixed-menu.fixed-bar {
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}
.fixed-bar .main-btn {
  padding: 5px 20px !important;
  font-size: 11px !important;
}
.fixed-bar .logo a {
  width: 180px;
  display: block;
}
.logo a img,
.logo a {
  transition: all 0.3s ease-in-out;
}
/* Header */
.desktop-menu.container {
  max-width: 1701px;
}
.logo a {
  width: 206px;
  transition: all 0.3s ease-in-out;
  display: block;
}
.logo a img {
  width: 100%;
  height: 100%;
}
ul.top-nav {
  padding: 0;
  margin: 0;
  list-style: none;
  display: flex;
  justify-content: space-between;
  gap: 40px;
}
ul.top-nav li {
  display: inline-block;
  padding: 0;
  margin: 0;
  list-style: none;
}
ul.top-nav li a {
  letter-spacing: 0.5px;
  font-weight: 500;
}
ul.top-nav li.current-menu-item a,
ul.top-nav li.current-menu-parent a {
  color: var(--color-f63997);
}
ul.top-nav li a:hover {
  color: var(--color-61c7f2);
}
.desktop-menu .header-mob {
  position: relative;
  letter-spacing: 1px;
}
.desktop-menu .header-mob::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 95%;
  height: 2px;
  background-color: #7f7f7f;
}
.desktop-menu .main-btn {
  padding: 8px 30px;
  font-size: 14px;
  text-transform: uppercase;
  margin-left: 30px;
}
.mobile-menu .mobile-ins {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 5px 0;
}
/* CLOSED state — panel off-screen to the left */
.mobile-menu .mobile-ins .burger-nav-content {
  position: absolute;
  top: 100%;
  left: 0;
  width: 70%;
  height: 100vh;
  overflow-y: auto;
  background-color: #fff;
  padding: 30px 12px;
  z-index: 100;

  transform: translateX(-100%);
  opacity: 0;
  visibility: hidden;
  transition:
    transform 0.6s cubic-bezier(0.4, 0, 0.2, 1),
    opacity 0.6s ease,
    visibility 0s linear 0.6s; /* delay matches duration */
}

/* OPEN state */
.mobile-menu .mobile-ins .burger-nav-content.active {
  transform: translateX(0);
  opacity: 1;
  visibility: visible;
  transition:
    transform 0.6s cubic-bezier(0.4, 0, 0.2, 1),
    opacity 0.6s ease,
    visibility 0s;
}

main#main-content {
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
main#main-content.open-menu {
  transform: translate(70%, 85px);
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  position: relative;
  z-index: 999;
  background: #fff;
}
.fixed-menu.open-menu {
  box-shadow: none !important;
}
body.open-menu {
  overflow: hidden;
}

/* Also update the backdrop fade if you have it, to stay in sync */
body::after {
  transition:
    opacity 0.6s ease,
    visibility 0s linear 0.6s;
}
body.open-menu::after {
  transition: opacity 0.6s ease;
}

@media (prefers-reduced-motion: reduce) {
  .mobile-menu .mobile-ins .burger-nav-content,
  .mobile-menu .mobile-ins .burger-nav-content::after,
  body::after,
  main#main-content {
    transition: none;
  }
}
.mobile-menu .mobile-ins .burger-nav-content ul#top-nav {
  flex-direction: column;
  gap: 20px;
}
.mobile-menu .mobile-ins .burger-nav-content .mobile-numb {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin: 25px 0 0;
}
.mobile-menu .mobile-ins .burger-nav-content .mobile-numb .main-btn {
  font-size: 14px;
  padding: 7px 35px;
}
.mobile-menu .mobile-ins .burger-nav-content .mobile-numb .header-mob {
  font-size: 14px;
  text-decoration: underline;
}
.mobile-menu {
  display: none;
}
/* button */
.burger-btn {
  width: 60px;
  position: relative;
  height: 48px;
  transform: rotate(180deg);
  z-index: 1000;
  background: none;
  border: none;
}
.web-logo {
  position: relative;
  z-index: 1000;
}
.burger-btn .brg-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 50%;
  cursor: pointer;
}
.burger-btn span {
  display: block;
  width: 100%;
  border-radius: 3px;
  height: 5px;
  background: #000;
  transition: all 0.3s;
  position: relative;
}
.burger-btn .brg-btn.active span:nth-child(3) {
  bottom: 16px !important;
}
.home .burger-btn span {
  background: #000;
}
.home .fixed-desk .burger-btn span {
  background: var(--color-1d1d1d);
}
.burger-btn span + span {
  margin-top: 7px;
}
.burger-btn .brg-btn.active span:nth-child(1) {
  animation: ease 0.7s top forwards;
}

.burger-btn .brg-btn.not-active span:nth-child(1) {
  animation: ease 0.7s top-2 forwards;
}

.burger-btn .brg-btn.active span:nth-child(2) {
  animation: ease 0.7s scaled forwards;
}

.burger-btn .brg-btn.not-active span:nth-child(2) {
  width: 75%;
  animation: ease 0.7s scaled-2 forwards;
}

.burger-btn .brg-btn.active span:nth-child(3) {
  animation: ease 0.7s bottom forwards;
}

.burger-btn .brg-btn.not-active span:nth-child(3) {
  animation: ease 0.7s bottom-2 forwards;
}
@keyframes top {
  0% {
    top: 0;
    transform: rotate(0);
  }
  50% {
    top: 8px;
    transform: rotate(0);
  }
  100% {
    top: 8px;
    transform: rotate(45deg);
  }
}

@keyframes top-2 {
  0% {
    top: 10px;
    transform: rotate(45deg);
  }
  50% {
    top: 10px;
    transform: rotate(0deg);
  }
  100% {
    top: 0;
    transform: rotate(0deg);
  }
}

@keyframes bottom {
  0% {
    bottom: 0;
    transform: rotate(0);
  }
  50% {
    bottom: 10px;
    transform: rotate(0);
  }
  100% {
    bottom: 10px;
    transform: rotate(135deg);
  }
}

@keyframes bottom-2 {
  0% {
    bottom: 10px;
    transform: rotate(135deg);
  }
  50% {
    bottom: 10px;
    transform: rotate(0);
  }
  100% {
    bottom: 0;
    transform: rotate(0);
  }
}

@keyframes scaled {
  50% {
    transform: scale(0);
  }
  100% {
    transform: scale(0);
  }
}

@keyframes scaled-2 {
  0% {
    transform: scale(0);
  }
  50% {
    transform: scale(0);
  }
  100% {
    transform: scale(1);
  }
}

/* Karjiera popup */
.popup-container {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.3s ease,
    visibility 0.3s ease;
  z-index: 9999;
}
.popup-middle {
  position: relative;
  background: #fff;
  padding: 40px;
  max-width: 720px;
  width: 90%;
  border-radius: 12px;
  transform: scale(0.85) translateY(20px);
  opacity: 0;
  transition:
    transform 0.35s ease,
    opacity 0.35s ease;
}
.popup-middle .wpcf7 {
  padding: 30px 46px;
  border-radius: var(--radius30);
  background-color: #b3e3f9;
}
.popup-middle .wpcf7 input,
.popup-middle .wpcf7 textarea,
.popup-middle .wpcf7 select {
  padding: 8px 15px;
  width: 100%;
  border-radius: var(--radius30);
  border: 1px solid #ebe9e9;
}
.popup-middle .wpcf7 input,
.popup-middle .wpcf7 select {
  height: 40px;
}
.popup-middle .wpcf7 textarea {
  height: 90px;
}
.popup-middle .wpcf7 .cf7-extraTxt {
  margin: 10px 0;
}
.popup-middle .wpcf7 .select-price::after {
  top: 25px;
}
.popup-container.active {
  opacity: 1;
  visibility: visible;
}
.popup-container.active .popup-middle {
  transform: scale(1) translateY(0);
  opacity: 1;
}
.popup-close {
  position: absolute;
  top: 15px;
  right: 20px;
  background: none;
  border: none;
  font-size: 22px;
  cursor: pointer;
  line-height: 1;
}
.popup-close:hover {
  opacity: 0.6;
}
/* Header */

/* Home page */
/* Hero Section */
.hero h1 {
  font-size: 50px;
  margin-bottom: 40px;
  font-weight: 400;
}
.hero p {
  font-size: 18px;
  margin-bottom: 20px;
  letter-spacing: 1px;
  color: var(--color-000000);
  font-weight: 500;
}
.hero a.main-btn {
  text-transform: uppercase;
}
.hero .hero-image {
  position: absolute;
  top: 0;
  right: 0;
  aspect-ratio: 1.2 / 1;
  z-index: -1;
}
.hero .hero-image img {
  height: auto;
  width: 100%;
}
.hero .main-btn-block {
  display: flex;
  margin: 60px 0 0;
}
.hero .content {
  width: 50%;
  padding: 100px 0 20px;
  margin: 40px 0 25px;
}
.hero .hero-pratners {
  display: flex;
  align-items: center;
  gap: 45px;
  padding: 35px 0;
  border-top: 1px solid #e8e8e8;
}
.hero .hero-pratners .partners-title {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  width: 14%;
}
.hero .hero-pratners .partners-list {
  width: 86%;
}
.hero .hero-pratners .partners-list .partners-list-child {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 55px;
}
.hero .hero-pratners .partners-list .partners-list-child img {
  height: fit-content;
  filter: grayscale(1);
}
/* Services */
.home-paslaugos .top-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  padding: 90px 0 50px;
}
.home-paslaugos .paslaugos-repeater {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  margin: 0 0 100px;
}
.home-paslaugos .paslaugos-repeater li,
.paslaugos ul#load-posts-container li {
  padding: 50px 30px 30px;
  display: flex;
  flex-direction: column;
  border-radius: var(--radius20);
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  transition: all 0.4s ease-in-out;
}
.home-paslaugos .paslaugos-repeater li:hover,
.paslaugos ul#load-posts-container li:hover {
  transform: translateY(-10px);
}
.paslaugos ul#load-posts-container li p {
  letter-spacing: 0;
}
.home-paslaugos .paslaugos-repeater li:nth-child(1) .icon {
  background-color: #f0f0f0;
}
.home-paslaugos .paslaugos-repeater li:nth-child(1) .icon svg {
  fill: #f6409a;
}
.home-paslaugos .paslaugos-repeater li:nth-child(2) .icon {
  background-color: #edfdff;
}
.home-paslaugos .paslaugos-repeater li:nth-child(2) .icon svg {
  fill: var(--color-61c7f2);
}
.home-paslaugos .paslaugos-repeater li:nth-child(3) .icon {
  background-color: #f9f5fd;
}
.home-paslaugos .paslaugos-repeater li:nth-child(3) .icon svg {
  fill: var(--color-9f69fa);
}
.home-paslaugos .paslaugos-repeater li .icon,
.paslaugos ul#load-posts-container li .icon {
  height: 96px;
  width: 96px;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.home-paslaugos .paslaugos-repeater li .icon svg,
.paslaugos ul#load-posts-container li .icon svg {
  max-width: 40px;
}
.home-paslaugos .paslaugos-repeater li h4,
.paslaugos ul#load-posts-container li h4 {
  margin: 40px 0 15px;
  letter-spacing: 0.5px;
}
.home-paslaugos .paslaugos-repeater li a,
.paslaugos ul#load-posts-container li span {
  font-size: 18px;
  font-weight: 600;
  display: flex;
  align-items: center;
  margin: auto 0 0 0;
}
.home-paslaugos .paslaugos-repeater li a svg,
.paslaugos ul#load-posts-container li span svg {
  width: 21px;
  margin: 0 0 0 10px;
}
/* ===== Procesas snake-path steps ===== */
.proccess-path-wrap {
  max-width: 1025px;
  margin: 0 auto;
  position: relative;
}
.proccess-path-top,
.proccess-path-bottom {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.proccess-path-top {
  top: 11px;
  z-index: 2;
}
.proccess-path-bottom {
  top: -10px;
}
.proccess-path-bottom::after {
  content: "";
  position: absolute;
  width: 160px;
  height: 160px;
  background: #f4f4f4;
  border-radius: 50%;
  left: 0;
  z-index: -1;
  pointer-events: none;
}
.ph-line {
  display: block;
  height: 0;
  /* border-top: 2px dashed #1c1c1c; */
}
/* .ph-line--sm {
  flex: 0.4;
  height: 10px;
}
.ph-line--lg {
  flex: 0.4;
} */
.proccess-arrow-chars {
  color: var(--color-dd215c);
  font-size: 20px;
  letter-spacing: -6px;
  line-height: 1;
  flex-shrink: 0;
  padding: 0 25px;
  background-color: #fff;
  display: inline-block;
  z-index: 1;
}
.last-item-odd .proccess-path-bottom .proccess-arrow-chars {
  transform: rotate(180deg);
}
.proccess-dots-deco {
  position: absolute;
  bottom: -14px;
  left: -14px;
}
.proccess-dots-deco svg {
  width: 90px;
  height: auto;
  display: block;
}
.flexible-content {
  position: relative;
}
.proccess-item {
  position: relative;
  padding: 60px 48px;
  overflow: visible;
}
.proccess-item + .proccess-item {
  margin-top: -2px;
}
/* ===== Curved timeline brackets ===== */
/* CSS fallback borders — hidden when JS SVG snake is active */
.proccess-item::before {
  content: "";
  position: absolute;
  width: 50%;
  border: solid #f4f4f4;
}

/* Odd items: bracket on RIGHT (badge is on the right) */
.proccess-item--odd::before {
  right: 0;
  top: -6.5px;
  bottom: -5.5px;
  border-width: 8px 8px 8px 0;
  border-radius: 0 120px 120px 0;
}

/* Even items: bracket on LEFT (badge is on the left) */
.proccess-item--even::before {
  left: 0;
  top: 0;
  bottom: 0;
  border-width: 8px 0 8px 8px;
  border-radius: 120px 0 0 120px;
}

/* Last even item: no bottom border */
.proccess-item:last-child.proccess-item--even::before {
  border-bottom: 0;
  border-bottom-left-radius: 0;
}

/* When SVG is active, hide the CSS bracket borders */
.svg-snake-active .proccess-item::before {
  display: none;
}

.progress-bottom-line {
  width: 100%;
  height: 3px;
  background: var(--color-01091b);
  position: absolute;
  z-index: 33;
  left: 0;
  bottom: 7px;
}
.progress-bottom-line::after {
  content: "";
  height: 3px;
  width: 6px;
  background: #fff;
  position: absolute;
  right: 15px;
  bottom: 0px;
  display: block;
  z-index: 34;
}
.proccess-num-badge {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 68px;
  height: 68px;
  border: 2px solid #1c1c1c;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  font-size: 20px;
  font-weight: 600;
  color: #1c1c1c;
  transition:
    background 0.3s ease,
    color 0.3s ease,
    border-color 0.3s ease;
}
.proccess-num-badge.active {
  background: #1c1c1c;
  color: #fff;
}
.proccess-item--odd .proccess-num-badge {
  right: -32px;
}
.proccess-item--even .proccess-num-badge {
  left: -32px;
}
.proccess-inner {
  display: grid;
  gap: 30px;
}
.proccess-item--odd .proccess-inner {
  grid-template-columns: 70% 30%;
}
.proccess-item--even .proccess-inner {
  grid-template-columns: 30% 70%;
}
.proccess-item--odd .proccess-text {
  text-align: right;
}
.proccess-item--even .proccess-text {
  text-align: left;
}
.proccess-image {
  display: flex;
  justify-content: center;
  align-items: center;
}
.proccess-text h5 {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 16px;
  color: #1c1c1c;
  font-family: var(--main-font);
}
.proccess-desc p {
  color: var(--color-787878);
  font-size: 15px;
  line-height: 1.65;
  margin: 0;
}
.proccess-image-wrap {
  position: relative;
  flex-shrink: 0;
  width: 120px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.proccess-circle-bg {
  position: absolute;
  inset: 0;
  background: #e8e8e8;
  border-radius: 50%;
  z-index: 0;
  height: 90%;
  width: 90%;
  left: 6px;
  top: 16px;
}
.proccess-image-wrap img {
  position: relative;
  z-index: 1;
  aspect-ratio: 1/1;
  object-fit: cover;
}
/* Pink accent circles */
.proccess-item:nth-child(2)::after {
  content: "";
  position: absolute;
  width: 78px;
  height: 78px;
  background: var(--color-f63997);
  border-radius: 50%;
  top: -17%;
  left: 20%;
  pointer-events: none;
  z-index: 20;
}
.proccess-item:nth-child(5)::after {
  content: "";
  position: absolute;
  width: 78px;
  height: 78px;
  background: var(--color-f63997);
  border-radius: 50%;
  top: -17%;
  right: 20%;
  pointer-events: none;
  z-index: 20;
}
.proccess-item:nth-child(4n)::after {
  content: "";
  position: absolute;
  width: 360px;
  height: 360px;
  background: #f4f4f4;
  border-radius: 50%;
  bottom: -22%;
  right: -6%;
  z-index: -1;
  pointer-events: none;
}
.proccess-item:nth-child(4n) .line-dots::after {
  content: "";
  display: block;
  position: absolute;
  background-image: url(../images/red-dots-row.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  width: 90px;
  height: 7px;
  top: 23%;
  right: -8%;
  z-index: 1;
  pointer-events: none;
}
/* Create */
.home-sukurkime .top-section {
  display: flex;
  flex-direction: column;
  width: 50%;
  padding: 100px 0;
}
.home-sukurkime .top-section h2 {
  margin: 15px 0 30px;
}
.home-sukurkime .top-section h2,
.home-sukurkime .top-section p,
.home-sukurkime .top-section a {
  color: #fff;
}
.home-sukurkime .create-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.home-sukurkime .create-image img {
  height: 100%;
  width: 100%;
}
.home-sukurkime .main-btn-container {
  margin: 20px 0 0;
  display: flex;
}
.home-sukurkime .main-btn {
  background-color: var(--color-dd215c);
}
.home-sukurkime .main-btn:hover {
  background-color: #fff;
  color: var(--color-000000);
  box-shadow: rgba(246, 64, 154, 0.24) 0px 3px 8px;
}
.home-sukurkime .main-btn svg {
  fill: #fff;
}
.home-sukurkime .main-btn:hover svg {
  fill: var(--color-000000);
}
/* About us */
.home-aboutus {
  margin: 95px 0 150px;
}
.done-numbers .devider svg {
  height: 6px;
  width: 81px;
}
.home-aboutus .top-section {
  padding: 45px 25px 25px 90px;
  width: 52%;
  margin-left: auto;
}
.home-aboutus .top-section h2 {
  margin: 15px 0 45px;
}
.price-page .content .left ul li i {
  font-size: 18px;
  color: var(--color-61c7f2);
}
.home-aboutus .aboutus-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  z-index: 1;
}
.home-aboutus .aboutus-image img {
  height: 100%;
  width: 100%;
}
.home-aboutus .top-section ul.done-numbers,
.realizacija ul.done-numbers {
  display: flex;
  gap: 40px;
  padding-top: 50px;
}
.home-aboutus .top-section ul.done-numbers li,
.realizacija ul.done-numbers li {
  flex: 1;
  width: calc(34.3% - 40px);
  max-width: 35%;
  padding: 40px 20px 10px;
  border-radius: 10px;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  transition: all 0.4s ease-in-out;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.home-aboutus .top-section ul.done-numbers li span,
.realizacija ul.done-numbers li span {
  font-size: 30px;
  font-weight: bold;
}
.home-aboutus .top-section ul.done-numbers li p,
.realizacija ul.done-numbers li p {
  text-align: center;
  margin: 0;
}
.home-aboutus .top-section ul.done-numbers li:hover,
.realizacija ul.done-numbers li:hover {
  transform: translateY(-10px);
}
/* Projektai */
.home-projects {
  padding: 60px 0;
  background: var(--color-01091b);
}
.home-projects h2 {
  margin: 15px 0 60px;
}
.home-projects .top-section {
  margin: 15px 0 55px;
}
.home-projects .top-section h2 {
  color: #fff;
}
.home-projects .top-section .main-btn-container {
  display: flex;
  justify-content: center;
  margin: 70px 0 0;
}
.home-projects .top-section .main-btn {
  background-color: #fff;
  color: var(--color-000000);
}
.home-projects .top-section .main-btn svg {
  fill: var(--color-000000);
}
.home-projects .top-section .main-btn:hover {
  background-color: transparent;
  color: #fff;
  border: 2px solid #fff;
}
.home-projects .top-section .main-btn:hover svg {
  fill: #fff;
}
.home-projects .top-section .all-projects {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 13px; /* base row size */
  gap: 30px;
}
.home-projects .top-section .all-projects li {
  border-radius: var(--radius20);
  overflow: hidden;
}
.home-projects .top-section .all-projects li img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}
.home-projects .top-section .all-projects li a,
.home-projects .top-section .all-projects li a .projects-img-container {
  display: flex;
  height: 100%;
  width: 100%;
}
.home-projects .top-section .all-projects li:nth-child(1) {
  grid-row: span 12;
}
.home-projects .top-section .all-projects li:nth-child(2) {
  grid-row: span 9;
}
.home-projects .top-section .all-projects li:nth-child(3) {
  grid-row: span 12;
}
.home-projects .top-section .all-projects li:nth-child(4) {
  grid-row: span 12;
}
.home-projects .top-section .all-projects li:nth-child(5) {
  grid-row: span 9;
}
.home-projects .top-section .all-projects li:nth-child(6) {
  grid-row: span 9;
}
.home-projects .top-section .all-projects li a {
  position: relative;
}
/* Shadow overlay — fades in together with the .text block */
.home-projects .top-section .all-projects li a::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(1, 9, 27, 0.75) 0%,
    rgba(1, 9, 27, 0.35) 45%,
    rgba(1, 9, 27, 0) 100%
  );
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.8s ease-in-out;
  z-index: 1;
}
.home-projects .top-section .all-projects li a:hover::after {
  opacity: 1;
}
.home-projects .top-section .all-projects .text {
  position: absolute;
  bottom: 45px;
  left: 0;
  padding: 15px 30px;
  background: rgba(255, 255, 255, 0.8);
  width: 80%;
  opacity: 0;
  visibility: hidden;
  z-index: 2;
  /* Parked below the card, revealed by sliding up on hover */
  transform: translateY(calc(100% + 45px));
  box-shadow: 0 10px 30px rgba(1, 9, 27, 0.25);
  transition:
    transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    opacity 0.8s ease-in-out,
    visibility 0s linear 0.8s;
}
.home-projects .top-section .all-projects li a:hover .text {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  /* visible right away on enter, hidden only after the slide back out */
  transition-delay: 0s;
}
.home-projects .top-section .all-projects .text h4 {
  margin: 0;
  font-size: 18px;
}
@media (prefers-reduced-motion: reduce) {
  .home-projects .top-section .all-projects .text {
    transform: none;
    transition:
      opacity 0.8s ease-in-out,
      visibility 0s linear 0.8s;
  }
}
/* Home page */
/* Offer Section */
section.offer {
  padding: 110px 0;
}
.offer h2 {
  margin: 15px 0 40px;
  display: flex;
  align-items: center;
}
.offer p {
  font-size: 18px;
  width: 50%;
  color: #000000;
}
.offer a.pas-link {
  height: 80px;
  width: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid;
  border-radius: 100%;
  font-size: 75px;
  margin-left: 40px;
}
.offer .right-image {
  position: absolute;
  right: 0;
  top: 0;
  z-index: -1;
}
.footer-menu .menu {
  padding: 40px 0;
  border-bottom: 1px solid #e8e8e8;
}
.footer-menu ul {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 40px;
}
.footer-menu ul li a {
  font-size: 18px;
  transition: var(--transition);
}
.footer-menu ul li a:hover {
  color: var(--color-61c7f2);
}
.cerdentials {
  display: flex;
  justify-content: space-between;
  padding: 40px 0;
}
.cerdentials .socials ul {
  display: flex;
  gap: 45px;
}
.cerdentials .socials svg {
  height: 20px;
  max-width: 30px;
  fill: var(--color-000000);
}
.cerdentials .socials svg path {
  transition: var(--transition);
}
.cerdentials .socials svg:hover,
.cerdentials .socials svg:hover path {
  fill: var(--color-61c7f2);
}
.footer .left-image {
  position: absolute;
  bottom: -16px;
  left: 0;
  width: 345px;
  height: 230px;
}
.footer .left-image img {
  height: 100%;
  width: 100%;
}
/* Footer */
/* Contact page */
.page-template-page-contact #breadcrumbs {
  display: none;
}
.page-template-page-contact section.offer {
  display: none;
}
.contact-page {
  padding: 180px 0 130px;
  border-bottom: 10px solid var(--color-01091b);
  margin: 0 0 75px;
}
.contact-page .content {
  display: flex;
  gap: 45px;
}
.content .left,
.content .right {
  width: 50%;
}
.contact-page .left .sub-title {
  font-size: 18px;
  font-weight: bold;
  margin: 0 0 20px;
  display: block;
}
.contact-page .left h2 {
  margin: 0 0 30px;
}
.contact-page ul.done-numbers {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin: 0 0 45px;
}
.contact-page ul.done-numbers li {
  display: flex;
  align-items: center;
  position: relative;
  gap: 15px;
}
.contact-page ul.done-numbers li p {
  margin: 0;
  color: var(--color-000000);
}
.contact-page ul.done-numbers li svg {
  height: 20px;
  width: 20px;
  position: relative;
  left: 0;
  top: 2px;
}
.contact-page ul.done-numbers li a {
  display: flex;
  flex-direction: column;
}
.contact-page ul.done-numbers li a span {
  display: block;
}
.contact-page ul.done-numbers li a span.extra {
  color: var(--color-f63997);
}
.contact-from-universal input,
.contact-from-universal textarea,
.contact-from-universal select {
  padding: 10px 15px;
  width: 100%;
  border-radius: var(--radius30);
  border: 1px solid #ebe9e9;
}
.contact-from-universal br {
  display: none;
}
.contact-from-universal div {
  margin: 20px 0 0;
}
.contact-from-universal input,
.contact-from-universal select {
  height: 54px;
}
.contact-from-universal textarea {
  height: 140px;
}
.contact-from-universal input:focus,
.contact-from-universal textarea:focus,
.contact-from-universal select:focus {
  outline: none;
  box-shadow: rgba(179, 227, 249, 0.5) 0px 2px 8px 0px;
}
.contact-from-universal input::placeholder,
.contact-from-universal textarea::placeholder,
.contact-from-universal select option,
.contact-from-universal select {
  color: #6e6e6e;
  font-size: 16px;
}
.contact-from-universal .button p {
  display: flex;
  justify-content: end;
  margin: 35px 0 0;
}
.contact-from-universal .button p .wpcf7-spinner {
  display: none;
}
.contact-from-universal .button input {
  height: unset;
  padding: 12px 40px;
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  letter-spacing: 2px;
  background-color: #02091b;
  width: unset;
  text-transform: uppercase;
  border: none;
  margin-left: auto;
}
.contact-from-universal .cf7-extraTxt {
  color: var(--color-000000);
  font-size: 16px;
  font-weight: 400;
  margin: 25px 0;
  display: block;
}
.contact-page .content .right img.cf7-figure {
  position: absolute;
  bottom: 22px;
  left: -100px;
  z-index: -1;
}
.contact-figure {
  position: absolute;
  right: 0;
  top: 175px;
  width: 355px;
  z-index: -1;
}
/* Kainos page */
.price-page {
  padding: 0 0 160px;
  border-bottom: 59px solid var(--color-01091b);
}
.price-page h2 {
  margin: 0 0 35px;
  font-weight: 400;
}
.price-page .left h4 {
  margin: 35px 0 0;
}
.price-page .content {
  display: flex;
  gap: 75px;
}
.screen-reader-response {
  border: 1px solid #000000;
  margin-bottom: 10px;
  padding: 10px;
  background: #fff;
  color: red;
}
.screen-reader-response p[aria-atomic="true"] {
  color: #000;
  margin: 0;
}
.wpcf7-response-output {
  display: none;
}
.price-page .contact-from-universal {
  padding: 35px 50px;
  border-radius: var(--radius30);
  background-color: #b3e3f9;
}
.price-page .contact-figure {
  position: absolute;
  right: 0;
  top: 250px;
  width: 600px;
  z-index: -1;
}
.wpcf7-select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-color: #fff;
  cursor: pointer;
}
.select-price {
  position: relative;
}
.select-price::after {
  content: "";
  -webkit-mask-image: url("/wp-content/themes/tmp/assets/images/chew-down.svg");
  mask-image: url("/wp-content/themes/tmp/assets/images/chew-down.svg");
  mask-size: contain;
  mask-repeat: no-repeat;
  transform: translateY(-50%);
  height: 16px;
  width: 16px;
  background: #000000;
  display: inline-block;
  position: absolute;
  right: 20px;
  top: 30px;
  pointer-events: none;
}
.wpcf7-select::-ms-expand {
  display: none;
}
/* Kainos page end*/

/* Apie mus page */
/* Hero */
.hero-top {
  padding: 0 0 85px;
  margin: 100px 0 0;
}
.hero.aboutus-page .content {
  width: 47%;
  margin: 210px 0 0 !important;
  padding: 0;
}
.hero.aboutus-page h1 {
  font-size: 48px;
  font-weight: 400;
}
.hero.aboutus-page .hero-image {
  top: -100px;
}
.hero.aboutus-page p {
  font-size: 16px;
  color: #787878;
}
/* Patirtis */
.patirtis .top-container {
  padding: 80px 0;
}
.patirtis .patirtis-image {
  height: 100%;
  width: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
}
.patirtis .patirtis-image img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.patirtis .content {
  display: flex;
  gap: 90px;
}
.patirtis .top-container .left {
  padding: 20px 0;
}
.patirtis .top-container .left h2 {
  margin: 15px 0 25px;
}
.patirtis .top-container .left h2,
.patirtis .top-container .left p {
  color: #fff;
}
.patirtis .top-container .right ul {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px 35px;
}
.patirtis .top-container .right ul li {
  padding: 15px;
  border: 2px solid #fff;
  border-radius: 10px;
  height: 172px;
  transition: all 0.2s ease-in-out;
}
.patirtis .top-container .right ul li:hover {
  background-color: #ffffff;
}
.patirtis .top-container .right ul li:hover p {
  color: #000000;
}
.patirtis .top-container .right ul li a {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}
.patirtis .top-container .right ul li svg {
  height: 35px;
  width: 30px;
}
.patirtis .top-container .right ul li p {
  padding-right: 22px;
  color: #fff;
  margin: 0;
  transition: all 0.2s ease-in-out;
}
.patirtis .top-container .right ul li .devider svg {
  height: 6px;
  width: 80px;
}
.patirtis .top-container .right ul li:nth-child(1) svg path,
.patirtis .top-container .right ul li:nth-child(1) svg rect,
.patirtis .top-container .right ul li:nth-child(1) svg polygon {
  fill: var(--color-ffdc10);
}
.patirtis .top-container .right ul li:nth-child(2) svg path,
.patirtis .top-container .right ul li:nth-child(2) svg rect,
.patirtis .top-container .right ul li:nth-child(2) svg polygon {
  fill: var(--color-61c7f2);
}
.patirtis .top-container .right ul li:nth-child(3) svg path,
.patirtis .top-container .right ul li:nth-child(3) svg rect,
.patirtis .top-container .right ul li:nth-child(3) svg polygon {
  fill: var(--color-dd215c);
}
.patirtis .top-container .right ul li:nth-child(4) svg path,
.patirtis .top-container .right ul li:nth-child(4) svg rect,
.patirtis .top-container .right ul li:nth-child(4) svg polygon {
  fill: var(--color-13726f);
}
.patirtis .top-container .right ul li:nth-child(5) svg path,
.patirtis .top-container .right ul li:nth-child(5) svg rect,
.patirtis .top-container .right ul li:nth-child(5) svg polygon {
  fill: var(--color-ff8400);
}
.patirtis .top-container .right ul li:nth-child(6) svg path,
.patirtis .top-container .right ul li:nth-child(6) svg rect,
.patirtis .top-container .right ul li:nth-child(6) svg polygon {
  fill: var(--color-9f69fa);
}
/* Relizacija */
.realizacija .content {
  display: flex;
  gap: 100px;
  padding: 95px 0 140px;
}
.realizacija .patirtis-image {
  position: absolute;
  top: 100px;
  left: 0;
  max-height: 665px;
  height: 100%;
  width: 50%;
  z-index: -1;
}
.realizacija .content .left {
  display: flex;
  align-items: center;
  position: relative;
  z-index: 10;
}
.realizacija .content .left ul.done-numbers li {
  background-color: #fff;
}
.realizacija .content .right h2 {
  font-weight: 400;
  margin: 15px 0 30px;
}
.realizacija .content .right p {
  margin: 0 0 20px;
}
.realizacija .content .right .hero-gall-title {
  margin: 40px 0 20px;
}
.realizacija .content .right ul {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}
.realizacija .content .right ul li {
  width: calc(26.2% - 30px);
  display: flex;
  align-items: center;
  justify-content: center;
}
.realizacija .content .right ul li img {
  height: auto;
  max-width: 100%;
  filter: grayscale(1);
}
/* Atsiliepimai */
.atsiliepimu-cont .dots-ats {
  position: absolute;
  top: 120px;
  right: 75px;
  height: 8px;
  width: 109px;
}
.atsiliepimu-cont .dots-ats svg {
  transform: rotate(90deg);
}
.rp_atsiliepimu {
  border-radius: var(--radius30);
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  overflow-x: hidden;
  overflow-y: visible;
  background-color: #fff;
}
.rp_atsiliepimu .slick-list {
  overflow: visible;
}
.rp_atsiliepimu li {
  padding: 55px;
  background: #fff;
}
.comment-container .quotes {
  height: 47px;
  width: 57px;
  position: absolute;
  top: -25px;
  left: 49%;
  z-index: 10;
}
.comment-container .quotes svg {
  height: 100%;
  width: 100%;
}
.comment-container .quotes svg path {
  fill: var(--color-ffdc10);
}
.atsiliepimu-cont {
  padding: 0 0 75px;
  position: relative;
}
.atsiliepimu-cont::after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  height: 56%;
  width: 100%;
  background-color: #02091b;
  z-index: -1;
}
img.atsiliepimu-figure {
  position: absolute;
  bottom: 45px;
  left: 20px;
}
.atsiliepimu-cont .content .slick-arrows-container {
  position: absolute;
  top: 27%;
  left: -30px;
  width: 105%;
  display: flex;
  justify-content: space-between;
}
.atsiliepimu-cont .content .slick-arrows-container span svg {
  cursor: pointer;
  height: 17px;
}
.atsiliepimu-cont .content .slick-arrows-container span svg g path {
  fill: #f53997;
}
.atsiliepimu-cont .content .btn-container {
  display: flex;
  justify-content: center;
  margin: 70px 0 0;
}
.rp_atsiliepimu li p {
  font-weight: 500;
  letter-spacing: 0.72px;
  color: #141414;
}
.rp_atsiliepimu li a {
  transition: all 0.1s ease-in-out;
}
.rp_atsiliepimu li a:hover {
  color: #52b7e1;
}
.atsiliepimu-cont .content .btn-container a {
  background: #f53997;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.atsiliepimu-cont .content .text-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0 0 80px;
  gap: 30px;
}
/* Apie mus page end */
/* Blogas */
.extra-fig-blogas {
  position: absolute;
  top: -1%;
  right: 0;
  z-index: -1;
}
.extra-fig-blogas img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.blogas {
  padding: 0 0 50px;
  border-bottom: 59px solid var(--color-01091b);
}
.blogas h1 {
  margin: 0 0 35px;
  font-weight: 400;
}
ul.blogas-posts {
  column-count: 3;
  column-gap: 45px;
}
ul.blogas-posts li.blogas-single {
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  background-color: #fff;
  border-radius: var(--radius30);
  display: inline-block;
  width: 100%;
  margin: 0 0 45px;
  overflow: hidden;
  position: relative;
  z-index: 1;
}
ul.blogas-posts li.blogas-single .blokas-img {
  aspect-ratio: 1.5/1;
  width: 100%;
  overflow: hidden;
}
ul.blogas-posts li.blogas-single .blokas-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-4s);
}
ul.blogas-posts li.blogas-single:hover .blokas-img img {
  transform: scale(1.08);
}
ul.blogas-posts li.blogas-single .text {
  padding: 30px;
}
.go-toPost {
  font-size: 18px;
  font-weight: bold;
  display: flex;
  align-items: center;
  gap: 10px;
  margin: auto 0 0;
}
.go-toPost.back-toPage {
  font-weight: 400;
  margin: 60px 0 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.go-toPost.back-toPage a {
  display: flex;
  align-items: center;
  gap: 10px;
}
.go-toPost svg {
  height: 14px;
  width: 20px;
}
.go-toPost span,
.go-toPost svg,
.go-toPost a,
.feature-posts .post-item h4 {
  transition: var(--transition);
}
.go-toPost:hover a,
.go-toPost:hover span,
.go-toPost:hover svg,
.feature-posts .post-item h4:hover {
  color: var(--color-61c7f2);
  fill: var(--color-61c7f2);
}
ul.blogas-posts li.blogas-single .text span.date {
  font-size: 14px;
  color: var(--color-61c7f2);
}
ul.blogas-posts li.blogas-single .text h4 {
  margin: 15px 0;
  transition: var(--transition);
}
ul.blogas-posts li.blogas-single:hover .text h4 {
  color: var(--color-61c7f2);
}
.load-more-str {
  display: flex;
  justify-content: center;
}
.load-more-str a {
  padding: 10px 40px;
  font-size: 18px;
  font-weight: 600;
  text-transform: uppercase;
  color: #fff;
  background-color: #02091b;
  border-radius: var(--radius30);
  letter-spacing: 1px;
}
/* Blogas end */
/* Single blogas */
.single-blogas {
  padding: 0 0 100px;
  border-bottom: 59px solid var(--color-01091b);
}
.single-blogas .spilt-content {
  display: flex;
  gap: 55px;
}
.single-blogas h1 {
  font-weight: 400;
  letter-spacing: 0.5px;
}
.single-blogas h1,
.single-blogas h2,
.single-blogas h3,
.single-blogas h4,
.single-blogas h5,
.single-blogas h6 {
  margin: 25px 0;
}
.single-blogas .spilt-content .left-side {
  width: 70%;
}
.single-blogas .spilt-content .right-side {
  width: 30%;
}
.single-blogas .spilt-content .right-side .feature-posts-h {
  margin: 0 0 25px;
}
.single-blogas .spilt-content .right-side .feature-posts-scnd {
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  padding: 30px 40px;
  border-radius: var(--radius30);
}
.feature-posts .post-item {
  margin: 0 0 20px;
  padding: 0 0 20px;
  border-bottom: 1px solid #d9d9d9;
}
.feature-posts .post-item:last-child {
  padding: 0;
  margin: 0;
  border-bottom: 0;
}
.feature-posts .post-item h4 {
  margin: 10px 0 20px;
}
.single-blogas .date {
  font-size: 14px;
  color: var(--color-61c7f2);
}
.post-thumbnail.cover-img {
  height: auto;
  width: 100%;
  border-radius: var(--radius30);
  overflow: hidden;
  margin: 0 0 30px;
}
.post-thumbnail.cover-img img {
  height: 100%;
  width: 100%;
}
.single-blogas .gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 25px 0 40px;
}
.single-blogas .gallery div {
  aspect-ratio: 3/2;
  border-radius: var(--radius30);
  overflow: hidden;
}
.single-blogas .gallery div img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.single_post_cont_ext p img {
  width: 100%;
  margin: 30px 0;
}
/* Single blogas end */
/* Projektai page */
.darbai {
  padding: 0 0 100px;
  border-bottom: 59px solid var(--color-01091b);
}
.darbai .load-more-str {
  margin: 50px 0 0;
}
.darbai ul.straipsniai-page {
  column-count: 3;
  column-gap: 30px;
}
.darbai ul.straipsniai-page li {
  margin: 0 0 30px;
}
.darbai ul.straipsniai-page li a {
  height: 100%;
  width: 100%;
  display: block;
  position: relative;
  border-radius: var(--radius30);
  overflow: hidden;
}
/* Shadow overlay — fades in together with the .text block */
.darbai ul.straipsniai-page li a::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(1, 9, 27, 0.75) 0%,
    rgba(1, 9, 27, 0.35) 45%,
    rgba(1, 9, 27, 0) 100%
  );
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.8s ease-in-out;
  z-index: 1;
}
.darbai ul.straipsniai-page li a:hover::after {
  opacity: 1;
}
.darbai ul.straipsniai-page li a img {
  width: 100%;
  height: auto;
}
.darbai ul.straipsniai-page li a p {
  color: var(--color-dd215c);
  font-size: 14px;
  margin: 0;
}
.darbai ul.straipsniai-page li a h4 {
  margin: 0;
  font-size: 18px;
}
.darbai ul.straipsniai-page li .text {
  position: absolute;
  bottom: 45px;
  left: 0;
  padding: 15px 30px;
  background: rgba(255, 255, 255, 0.8);
  width: 80%;
  opacity: 0;
  visibility: hidden;
  z-index: 2;
  /* Parked below the card, revealed by sliding up on hover */
  transform: translateY(calc(100% + 20px));
  box-shadow: 0 10px 30px rgba(1, 9, 27, 0.25);
  transition:
    transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    opacity 0.8s ease-in-out,
    visibility 0s linear 0.8s;
}
.darbai ul.straipsniai-page li a:hover .text {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  /* visible right away on enter, hidden only after the slide back out */
  transition-delay: 0s;
}
@media (prefers-reduced-motion: reduce) {
  .darbai ul.straipsniai-page li .text {
    transform: none;
    transition:
      opacity 0.8s ease-in-out,
      visibility 0s linear 0.8s;
  }
}
.darbai .main-txtCont {
  display: flex;
  flex-direction: column;
  gap: 45px;
  width: 58%;
}
.darbai .main-txtCont h1 {
  font-weight: 400;
}
.darbai .main-txtCont p {
  font-size: 18px;
  color: #000;
}
.category-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin: 90px 0;
}
.category-filters button {
  padding: 7px 17px;
  color: #02091b;
  font-size: 16px;
  font-weight: 500;
  border: 2px solid #02091b;
  border-radius: var(--radius30);
  transition: all 0.1s ease-in-out;
  background-color: #fff;
}
.category-filters button:hover {
  color: #fff;
  background-color: #02091b;
}
.category-filters button.active {
  color: #fff;
  background-color: #02091b;
}
.darbai .fig-left {
  display: flex;
  gap: 35px;
  position: absolute;
  left: 40px;
  top: 235px;
}
.darbai .fig-left img {
  height: 140px;
}
.darbai img.fig-right {
  width: 540px;
  position: absolute;
  right: 0;
  top: -100px;
  z-index: -1;
}
/* Projektai page */
/* Single projektas page */
.single-projetas {
  padding: 0 0 85px;
  border-bottom: 59px solid var(--color-01091b);
}
.projetas-toptxt {
  display: flex;
  align-items: center;
  gap: 115px;
}
.projetas-toptxt h1 {
  font-weight: 400;
  letter-spacing: 1px;
  width: 55%;
}
.projetas-toptxt > div {
  width: 45%;
}
.projetas-container {
  display: grid;
  grid-template-columns: 6fr 4fr;
  gap: 50px;
  margin: 40px 0 125px;
  height: 495px;
}
.projetas-container > div {
  overflow: hidden;
  border-radius: var(--radius30);
  display: flex;
  align-items: center;
  justify-content: center;
}
/* Whole image stays visible: it scales down to fit the box, never crops,
   and never grows past its own natural size */
.projetas-container img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  border-radius: 30px;
}
.single-projetas h2 {
  font-size: 26px;
  margin: 0 0 25px;
}
.single-projetas-text ul li,
.projetas-toptxt p {
  font-weight: 400;
}
.projetas-toptxt p {
  color: #000;
}
.single-projetas-text {
  display: flex;
  gap: 80px;
  margin: 0 0 75px;
}
.single-projetas-text .left {
  width: 60%;
}
.single-projetas-text .right {
  width: 40%;
}
.single-projetas-text ul,
.price-page .content .left ul,
.check-container ul {
  margin: 15px 0 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.price-page .content .left ul,
.check-container ul {
  margin: 30px 0 0;
}
.single-projetas-text ul li,
.check-container ul li,
.price-page .content .left ul li {
  position: relative;
  padding-left: 30px;
}
.single-projetas-text ul li::before,
.price-page .content .left ul li:before,
.check-container ul li::before {
  position: absolute;
  left: 0;
  top: -2px;
  display: block;
  content: "✔";
  color: #61c7f2;
  font-size: 21px;
}
ul li i.fa-check {
  display: block;
  font-size: 21px;
  width: 20px;
  height: 20px;
}
ul li i.fa-check::before {
  content: "✔";
  color: #61c7f2;
  position: relative;
  top: -6px;
}
.single-projetas-text .link-container {
  display: flex;
  margin: 70px 0 0;
}
.single-projetas-text .link-container a {
  border-radius: var(--radius30);
  text-transform: uppercase;
}
.single-projetas-text .link-container a {
  text-wrap: nowrap;
}
.single-projetas .gallery-container {
  padding: 25px 55px 0;
  border-radius: var(--radius30);
  background-color: #262e3e;
  max-height: 755px;
  overflow-y: auto;
  overflow-x: hidden;
  -ms-overflow-style: none;
  scrollbar-width: none;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.single-projetas .gallery {
  position: relative;
  column-count: 3;
  column-gap: 65px;
}
.single-projetas .gallery::before,
.single-projetas .gallery::after {
  content: "";
  position: absolute;
  top: 0;
  height: 30px;
  width: 30%;
  background: #262e3e;
  pointer-events: none;
  z-index: 1;
}
.single-projetas .gallery::before {
  left: 0;
}
.single-projetas .gallery::after {
  right: 0;
}
.single-projetas .gallery div {
  margin: 0 0 30px;
  max-height: 640px;
  overflow: hidden;
  width: 100%;
}
.single-projetas .gallery div img {
  height: auto;
  width: 100%;
}
.single-projetas .go-toPost.back-toPage {
  margin: 0;
}
.single-projetas .extra-image {
  overflow: hidden;
  border-radius: var(--radius30);
  margin: 60px 0 35px;
}
.single-projetas .extra-image img {
  height: auto;
  width: 100%;
}
/* Single projektas page end */
/* Paslaugos page */
#site-darbai {
  overflow-x: clip;
}
.paslaugos .fig-left {
  position: absolute;
  top: 450px;
  left: 130px;
  z-index: -1;
}
.paslaugos .fig-left img {
  height: 135px;
}
.paslaugos img.fig-right {
  height: 585px;
  position: absolute;
  right: 0;
  top: -85px;
}
.paslaugos h1 {
  font-weight: 400;
  margin: 0 0 55px;
}
.paslaugos .main-txtCont {
  width: 71%;
}
.home-paslaugos .paslaugos-repeater,
.paslaugos ul#load-posts-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px;
}
.paslaugos ul#load-posts-container {
  position: relative;
  z-index: 1;
  margin: 50px 0 100px;
}
.paslaugos ul#load-posts-container li h4 {
  height: 55px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin: 40px 0 25px;
}
.paslaugos ul#load-posts-container li .pas-link {
  margin: auto 0 0;
}
.paslaugos ul#load-posts-container li {
  background-color: #fff;
}
.paslaugos ul#load-posts-container li a {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.blogas-paslaugos {
  padding: 60px 0 75px;
  background-color: var(--color-01091b);
}
.blogas-paslaugos h2 {
  color: #fff;
  font-weight: 400;
  margin: 15px 0 70px;
}
.blogas-page-slider {
  margin: 0 -17.5px;
}
.blogas-page-slider li {
  margin: 0 17.5px;
}
.blogas-page-slider li .paslaugos-img {
  aspect-ratio: 3 / 2.05;
  background: #fefefe;
  border-radius: var(--radius30);
  overflow: hidden;
}
.blogas-page-slider li .paslaugos-img img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.blogas-page-slider .date {
  font-size: 14px;
  color: #787878;
  margin: 30px 0;
  display: block;
}
.blogas-page-slider h4 {
  color: #fefefe;
  margin: 0 0 30px;
  transition: all 0.1s ease-in-out;
}
.blogas-page-slider h4:hover {
  color: var(--color-61c7f2);
}
.blogas-page-slider .pas-link {
  color: var(--color-61c7f2);
  font-size: 18px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.blogas-page-slider .pas-link svg {
  width: 20px;
  fill: var(--color-61c7f2);
}
.paslaugos-btn-container {
  display: flex;
  justify-content: center;
  margin: 60px 0 0;
}
.paslaugos-btn-container a {
  padding: 10px 70px;
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  background-color: #f53997;
  border-radius: var(--radius30);
  text-transform: uppercase;
  letter-spacing: 2px;
  transition: var(--transition);
  position: relative;
  z-index: 2;
}
.paslaugos-btn-container a:hover {
  color: #f53997;
  background-color: #fff;
}
.blogas-paslaugos .pap-fig {
  display: flex;
  gap: 35px;
  position: absolute;
  left: 25px;
  bottom: 45px;
}
.blogas-paslaugos .pap-fig img {
  height: 135px;
}
.extra-line {
  position: absolute;
  top: -8px;
  right: -37px;
  transform: rotate(90deg);
  z-index: 1;
}
.blogas-paslaugos .extra-line {
  top: -64px;
}
.extra-line svg {
  width: 105px;
  height: 8px;
}
#site-darbai .load-more-str {
  margin-bottom: 60px;
}
#site-darbai .load-more-str #load-more {
  transition: var(--transition);
  border: 2px solid var(--color-01091b);
}
#site-darbai .load-more-str #load-more-btn:hover {
  background-color: #fff;
  border: 2px solid var(--color-01091b);
  color: var(--color-01091b);
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}
/* Paslaugos page end */
/* Sigle paslauga */
.single-paslauga .extra-figure {
  position: absolute;
  right: 0;
  top: -60px;
  z-index: -1;
  height: 675px;
  width: 844px;
}
.single-paslauga .extra-figure img {
  height: 100%;
  width: 100%;
}
.single-paslauga .container-mine {
  display: flex;
}
.single-paslauga .container-mine .left-side {
  padding-right: 115px;
}
.single-paslauga .container-mine .right-side {
  display: flex;
  justify-content: start;
}
.single-paslauga .container-mine .left-side h1 {
  font-weight: 400;
  margin: 0 0 50px;
}
.single-paslauga .container-mine .left-side .go-toPost {
  display: flex;
  margin: 70px 0 45px;
}
.single-paslauga .container-mine .left-side .go-toPost a {
  padding: 10px 45px;
  border-radius: var(--radius30);
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  text-transform: uppercase;
  background-color: var(--color-01091b);
  letter-spacing: 1px;
}
.single-paslauga .container-mine .right-side .main-img {
  position: relative;
  z-index: 1;
  height: 525px;
  width: 525px;
  border-radius: 100%;
}
.single-paslauga {
  border-bottom: 59px solid var(--color-01091b);
}
.single-paslauga .procesas {
  padding: 70px 0 100px;
}
.single-paslauga .procesas h3 {
  margin: 0 0 20px;
  width: 58%;
  font-weight: 400;
}
/* Sigle paslauga end */
/* Responsive Styles */
/* @media (min-width: 1920px) {
  .container,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl,
  .container-xxl {
    max-width: 1680px;
  }
  .home-paslaugos .paslaugos-repeater li {
    width: calc(34% - 40px);
  }
} */
/* Simple page */
.simple-page {
  border-bottom: 59px solid var(--color-01091b);
}
@media (max-width: 1760px) {
  /* Footer */
  .footer .left-image {
    width: 240px;
    height: 150px;
    z-index: -1;
  }
  /* Darbai */
  .darbai .fig-left img {
    height: 90px;
  }
  .darbai .fig-left {
    gap: 20px;
    top: 265px;
    z-index: -1;
  }
  .darbai img.fig-right {
    width: 450px;
  }
  /* Home page */
  .hero .hero-image {
    max-width: 750px;
  }
}
@media (max-width: 1560px) {
  /* Footer */
  .footer .left-image {
    width: 103px;
    height: 68px;
    z-index: -1;
  }
  .hero .content {
    width: 50%;
    padding: 50px 0;
    margin: 0;
  }
  .home-paslaugos .paslaugos-repeater {
    margin: 0 0 70px;
    justify-content: center;
  }
  /* About us */
  .aboutus-page .hero-top {
    padding: 0 0 55px;
  }
  .hero.aboutus-page .content {
    background: #ffffff;
  }
}
@media (max-width: 1360px) {
  .hero .hero-image {
    max-width: 540px;
  }
  /* About us */
  .atsiliepimu-cont .content .slick-arrows-container {
    top: 33%;
    left: 0;
    width: 100%;
  }
  /* Single projektas page */
  .projetas-container {
    gap: 35px;
    margin: 40px 0 60px;
    height: 100%;
  }
}
@media (max-width: 1280px) {
  h1,
  h2 {
    font-size: 34px;
    line-height: 45px;
  }
  div#breadcrumbs {
    margin: 90px 0 15px;
  }
  /* header */
  .fixed-menu {
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  }
  .desktop-menu {
    display: none !important;
  }
  .mobile-menu {
    display: block;
  }
  .mobile-menu .container {
    margin: unset !important;
  }
  /* Footer */
  section.offer {
    padding: 50px 0;
  }
  .offer .right-image img {
    max-width: 390px;
  }
  .offer a.pas-link {
    height: 50px;
    width: 50px;
    font-size: 47px;
  }
  .footer-menu .menu {
    padding: 25px 0;
  }
  .cerdentials {
    display: flex;
    justify-content: space-between;
    padding: 20px 0 40px;
  }
  /* Home page */
  .hero h1 {
    font-size: 35px;
    margin-bottom: 30px;
  }
  .hero-top {
    padding: 0 0 55px;
    margin: 75px 0 0;
  }
  /* .hero .hero-image {
    max-width: 564px;
    max-height: 464px;
  } */
  .hero-top {
    padding: 0;
  }
  .aboutus-page .hero-top {
    margin-top: 150px;
  }
  .home-paslaugos .top-section {
    padding: 50px 0 30px;
  }
  .home-sukurkime .top-section {
    width: 70%;
    padding: 70px 0;
  }
  .home-aboutus {
    margin: 35px 0 75px;
  }
  .home-aboutus .top-section {
    padding: 20px 0 30px 53px;
  }
  .home-projects .top-section .all-projects li:nth-child(2),
  .home-projects .top-section .all-projects li:nth-child(6),
  .home-projects .top-section .all-projects li:nth-child(5) {
    grid-row: span 8;
  }
  .home-projects .top-section .all-projects li:nth-child(1),
  .home-projects .top-section .all-projects li:nth-child(4),
  .home-projects .top-section .all-projects li:nth-child(3) {
    grid-row: span 10;
  }
  .hero .hero-pratners ul .slick-list {
    padding-right: 100px;
  }
  .hero .hero-pratners .partners-title {
    width: 20%;
  }
  .hero .hero-pratners ul {
    width: 600px;
  }
  /* About us */
  .patirtis .top-container .right ul li p {
    font-size: 14px;
  }
  .hero.aboutus-page .content {
    margin: 15px 0 0 !important;
  }
  .hero-top {
    margin: 30px 0 0;
  }
  .atsiliepimu-cont .content .btn-container a {
    position: relative;
    z-index: 2;
  }
  .hero.aboutus-page .hero-image {
    max-height: 70%;
  }
  /* Darbai */
}
@media (max-width: 1160px) {
  .proccess-path-wrap {
    margin: 0 25px;
  }
}
@media (max-width: 1060px) {
  /* Home page */
  .hero-top {
    margin: 50px 0 0;
  }
  .hero .content {
    width: 100%;
    padding: 20px 0;
    margin: 0;
  }
  .hero .hero-image {
    top: 170px;
    max-height: 330px;
  }
  .hero .content {
    margin: 0 0 170px;
  }
  /* .hero .hero-pratners .partners-list .partners-list-child img {
    max-height: 45px;
  } */
  .home-aboutus .top-section {
    width: 100%;
    padding: 20px 0 0;
  }
  .home-aboutus .top-section ul.done-numbers {
    padding-bottom: 25px;
    padding-top: 25px;
  }
  .home-aboutus .aboutus-image {
    display: none;
  }
  .home-projects .top-section .all-projects {
    grid-template-columns: repeat(2, 1fr);
  }
  .home-projects .top-section .all-projects li:nth-child(2),
  .home-projects .top-section .all-projects li:nth-child(6),
  .home-projects .top-section .all-projects li:nth-child(5),
  .home-projects .top-section .all-projects li:nth-child(1),
  .home-projects .top-section .all-projects li:nth-child(4),
  .home-projects .top-section .all-projects li:nth-child(3) {
    grid-row: span 9;
  }
  /* About us */
  .aboutus-page .hero-top {
    margin-top: 100px;
    padding: 0 0 55px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
  }
  .aboutus-page .hero-image {
    z-index: -1;
    position: relative;
    top: 0 !important;
  }
  .aboutus-page .hero-top .content {
    width: 100%;
  }
  .hero.aboutus-page .content {
    margin: 0 !important;
  }
  .patirtis .content {
    gap: 50px;
    flex-direction: column;
  }
  .patirtis .content .left,
  .patirtis .content .right,
  .realizacija .content .left,
  .realizacija .content .right {
    width: 100%;
  }
  .realizacija .content {
    gap: 50px;
    padding: 65px 0 100px;
    flex-direction: column-reverse;
  }
  .realizacija .patirtis-image {
    top: unset;
    bottom: 0;
    left: unset;
    right: 0;
    max-height: 331px;
    transform: scaleX(-1);
  }
  .realizacija .content .left {
    justify-content: center;
  }
  .realizacija .content .right ul li {
    width: calc(25.2% - 30px);
  }
  img.atsiliepimu-figure {
    z-index: -1;
  }
  /* Mūsų paslaugos */
  .home-paslaugos .paslaugos-repeater,
  .paslaugos ul#load-posts-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 35px;
  }
  /* Sigle paslauga */
  .single-paslauga .container-mine .left-side {
    padding-right: 20px;
    background: #ffffff;
    width: 60%;
  }
  .single-paslauga .container-mine .right-side {
    width: 40%;
  }
  .single-paslauga .container-mine .right-side .main-img {
    height: 400px;
    width: auto;
  }
  .projetas-toptxt {
    gap: 50px;
  }
  /* Sigle straipsnis */
  .single-blogas .spilt-content {
    gap: 35px;
    flex-direction: column;
  }
  .single-blogas .spilt-content .left-side,
  .single-blogas .spilt-content .right-side {
    width: 100%;
  }
  ul.blogas-posts {
    column-count: 2;
    column-gap: 25px;
  }
  /* Darbai */
  .darbai img.fig-right {
    display: none;
  }
}
@media (max-width: 980px) {
  /* Contact page */
  .contact-page .content {
    gap: 25px;
    flex-direction: column;
  }
  .contact-page .left,
  .contact-page .right {
    width: 100%;
  }
  .contact-page {
    padding: 120px 0 80px;
    border-bottom: 10px solid var(--color-01091b);
    margin: 0 0 75px;
  }
  /* Kainos page */
  .price-page .content {
    gap: 35px;
    flex-direction: column;
  }
  .price-page .content .right {
    width: 100%;
    display: flex;
    justify-content: center;
  }
  .price-page .content .right .wpcf7 {
    max-width: 750px;
  }
  .price-page .contact-figure {
    width: 460px;
  }
}
@media (max-width: 860px) {
  h1,
  h2 {
    font-size: 28px;
  }
  /* Footer */
  .offer .right-image img {
    max-width: 270px;
  }
  .footer .left-image {
    display: none;
  }
  .cerdentials {
    padding: 15px 0;
  }
  /* Home page */
  .hero .content {
    margin: 0 0 235px;
  }
  .hero h1 {
    font-size: 28px;
    margin-bottom: 20px;
  }
  .main-btn {
    font-size: 16px;
    padding: 7px 40px;
  }
  .hero .hero-image {
    top: 180px;
    max-width: 380px;
    max-height: 320px;
  }
  .hero .main-btn-block {
    margin: 25px 0 0;
  }
  .hero .hero-pratners .partners-title {
    text-align: center;
  }
  .hero .hero-pratners .partners-title,
  .hero .hero-pratners ul {
    width: 100%;
  }
  .hero .hero-pratners {
    gap: 25px;
    padding: 20px 0;
    flex-direction: column;
  }
  /* About us page */
  .home-aboutus .top-section ul.done-numbers li span,
  .realizacija ul.done-numbers li span {
    font-size: 25px;
  }
  .rp_atsiliepimu li p {
    font-size: 16px;
  }
  .patirtis .top-container .right ul li p {
    padding-right: 0;
  }
  .patirtis .top-container .right ul li {
    height: 160px;
  }
  .patirtis .top-container {
    padding: 60px 0;
  }
  .darbai .main-txtCont {
    background: #ffffffb3;
  }
  /* Sigle paslauga */
  .paslaugos img.fig-right {
    display: none;
  }
  .single-paslauga .container-mine {
    flex-direction: column;
  }
  .single-paslauga .extra-figure {
    top: 0;
    height: auto;
    width: 100%;
  }
  .single-paslauga .container-mine .right-side {
    display: none;
  }
  .paslaugos .main-txtCont.hero-text {
    background: #ffffff99;
    position: relative;
    z-index: 2;
  }
  /* Single projektas page */
  .projetas-toptxt h1,
  .projetas-toptxt > div {
    width: 100%;
  }
  .projetas-toptxt {
    flex-direction: column;
    gap: 15px;
  }
  .single-projetas-text {
    gap: 30px;
  }
  .single-projetas .gallery {
    column-count: 2;
    column-gap: 35px;
  }
  .single-projetas .gallery::before,
  .single-projetas .gallery::after {
    display: none;
  }
  .single-projetas-text {
    margin: 0 0 30px;
    flex-direction: column;
  }
  .single-projetas-text .link-container {
    margin: 30px 0 0;
  }
  .single-projetas-text .left,
  .single-projetas-text .right {
    width: 100%;
  }
  .darbai ul.straipsniai-page li .text {
    bottom: 0;
    padding: 15px;
    width: 100%;
  }
  /* Kainos page */
  .price-page .content .left {
    width: 100%;
  }
  .price-page .contact-figure {
    display: none;
  }
}
@media (max-width: 720px) {
  /* Footer */
  .offer p {
    width: 75%;
  }
  .offer h2 {
    margin: 10px 0 20px;
  }
  section.offer {
    padding: 50px 0 0;
  }
  .footer-menu ul {
    gap: 10px 20px;
  }
  /* Home page */
  .hero-top {
    margin: 80px 0 0;
  }
  .home-projects .top-section .all-projects li:nth-child(2),
  .home-projects .top-section .all-projects li:nth-child(6),
  .home-projects .top-section .all-projects li:nth-child(5),
  .home-projects .top-section .all-projects li:nth-child(1),
  .home-projects .top-section .all-projects li:nth-child(4),
  .home-projects .top-section .all-projects li:nth-child(3) {
    grid-row: span 7;
  }
  .offer .container-ins {
    border-bottom: 1px solid #e8e8e8;
    padding-bottom: 15px;
  }
  section.offer {
    padding: 50px 0 0;
  }
  /* Sigle paslauga */
  .proccess-item--odd .proccess-inner,
  .proccess-item--even .proccess-inner {
    grid-template-columns: 100%;
  }
  .proccess-item--odd .proccess-text,
  .proccess-item--even .proccess-text {
    text-align: center;
  }
  .single-paslauga .container-mine .left-side {
    width: 100%;
  }
  .single-paslauga .extra-figure {
    display: none;
  }
  /* Paslaugos page */
  .blogas-paslaugos .extra-line {
    display: none;
  }
  .paslaugos h1 {
    font-weight: 400;
    margin: 0 0 25px;
  }
  .paslaugos .fig-left {
    display: none;
  }
  .paslaugos ul#load-posts-container {
    margin: 50px 0;
  }
  /* Kainos page */
  .price-page {
    padding: 0 0 50px;
  }
  .price-page h2 {
    margin: 0 0 20px;
  }
  /* Single projektas page */
  .darbai ul.straipsniai-page li .text {
    display: none;
  }
  /* No text to reveal here, so no overlay either */
  .darbai ul.straipsniai-page li a::after {
    display: none;
  }
  .darbai {
    padding: 0;
  }
}
@media (max-width: 660px) {
  .contact-figure {
    display: none;
  }
}
@media (max-width: 600px) {
  h1 {
    font-size: 28px;
    line-height: 35px;
  }
  h2 {
    font-size: 24px;
    line-height: 30px;
  }
  h3 {
    font-size: 20px;
  }
  h4,
  h5,
  h6 {
    font-size: 18px;
  }
  body p,
  body,
  .main-btn {
    font-size: 16px;
  }
  p {
    margin-bottom: 5px;
  }
  /* Footer */
  .offer p {
    width: 100%;
  }
  .footer-menu .menu {
    padding: 10px 0 20px;
  }
  .footer-menu ul {
    gap: 15px 20px;
  }
  .single-paslauga .container-mine .left-side p strong,
  .single-projetas-text ul li,
  .single-projetas p strong,
  .projetas-toptxt p,
  .go-toPost,
  .go-toPost.back-toPage,
  .feature-posts .post-item h4,
  .single-blogas .spilt-content .right-side .feature-posts-h,
  .darbai .main-txtCont p,
  .load-more-str a,
  .paslaugos .main-txtCont p strong,
  .blogas-page-slider .pas-link {
    font-size: 15px;
  }
  /* Header */
  .popup-close {
    top: 5px;
    right: 5px;
  }
  .popup-middle .wpcf7 .button p {
    margin: 0;
  }
  .popup-middle .wpcf7 .cf7-extraTxt {
    display: none;
  }
  .mobile-menu .mobile-ins .burger-nav-content .mobile-numb .main-btn {
    font-size: 14px;
    padding: 5px 25px;
  }
  .popup-middle {
    padding: 12px;
    width: 100%;
    height: 100%;
    display: flex;
    border-radius: 0;
    align-items: center;
  }
  .popup-middle .wpcf7 {
    padding: 20px 25px;
  }
  /* Home page */
  .hero h1 {
    font-size: 24px;
    margin-bottom: 15px;
  }
  .home-paslaugos .top-section {
    padding: 20px 0;
  }
  .home-paslaugos .top-section {
    gap: 5px;
  }
  .title-txt {
    font-size: 14px;
  }
  .home-paslaugos .paslaugos-repeater li a svg,
  .paslaugos ul#load-posts-container li span svg,
  .main-btn svg {
    width: 16px;
  }
  .home-paslaugos .paslaugos-repeater li a,
  .paslaugos ul#load-posts-container li span,
  .hero p,
  .offer p,
  .footer-menu ul li a {
    font-size: 16px;
  }
  .hero p {
    margin-bottom: 15px;
  }
  .hero .main-btn-block {
    margin: 15px 0 0;
  }
  .home-paslaugos .paslaugos-repeater li h4,
  .paslaugos ul#load-posts-container li h4,
  .home-sukurkime .top-section h2 {
    margin: 15px 0;
  }
  .home-paslaugos .paslaugos-repeater li h4,
  .paslaugos ul#load-posts-container li h4 {
    letter-spacing: 0.5px;
  }
  .home-paslaugos .paslaugos-repeater li,
  .paslaugos ul#load-posts-container li {
    padding: 20px;
  }
  .home-paslaugos .paslaugos-repeater li .icon,
  .paslaugos ul#load-posts-container li .icon {
    height: 60px;
    width: 60px;
  }
  .home-paslaugos .paslaugos-repeater li .icon svg,
  .paslaugos ul#load-posts-container li .icon svg {
    max-width: 26px;
  }
  .home-paslaugos .paslaugos-repeater {
    margin: 0 0 30px;
  }
  .home-sukurkime .top-section {
    width: 100%;
    padding: 30px 0;
  }
  .main-btn {
    padding: 7px 30px;
  }
  .home-aboutus .top-section ul.done-numbers,
  .realizacija ul.done-numbers {
    flex-wrap: wrap;
    gap: 20px;
  }
  .realizacija ul.done-numbers {
    padding-top: 0;
  }
  .home-aboutus {
    margin: 25px 0 50px;
  }
  .price-page .content .left ul li {
    margin: 25px 0;
  }
  .home-aboutus .top-section ul.done-numbers li,
  .realizacija ul.done-numbers li {
    padding: 15px 10px 10px;
  }
  .home-aboutus .top-section ul.done-numbers li span,
  .realizacija ul.done-numbers li span {
    font-size: 20px;
  }
  .done-numbers .devider svg {
    width: 65px;
  }
  .home-aboutus .top-section ul.done-numbers li p,
  .realizacija ul.done-numbers li p {
    font-size: 14px;
  }
  .home-projects .top-section .all-projects li:nth-child(2),
  .home-projects .top-section .all-projects li:nth-child(6),
  .home-projects .top-section .all-projects li:nth-child(5),
  .home-projects .top-section .all-projects li:nth-child(1),
  .home-projects .top-section .all-projects li:nth-child(4),
  .home-projects .top-section .all-projects li:nth-child(3) {
    grid-row: span 6;
  }
  .home-projects {
    padding: 30px 0;
  }
  .home-projects h2 {
    margin: 10px 0 30px;
  }
  .home-projects .top-section .main-btn-container {
    margin: 40px 0 0;
  }
  .home-projects .top-section {
    margin: 15px 0 25px;
  }
  /* Kainos page */
  .price-page .contact-from-universal {
    padding: 20px;
  }
  .single-projetas-text ul,
  .price-page .content .left ul,
  .check-container ul {
    gap: 0;
  }
  /* About us */
  .hero.aboutus-page h1 {
    font-size: 24px;
  }
  .hero.aboutus-page p strong {
    font-size: 16px;
  }
  .hero.aboutus-page p,
  .realizacija .content .right p strong,
  .realizacija .content .right .hero-gall-title,
  .rp_atsiliepimu li p {
    font-size: 14px;
  }
  .patirtis .top-container {
    padding: 35px 0;
  }
  .patirtis .content {
    gap: 25px;
  }
  .patirtis .top-container .right ul li p {
    font-size: 14px;
  }
  .realizacija .content {
    gap: 25px;
    padding: 40px 0 60px;
  }
  .rp_atsiliepimu li {
    padding: 30px;
  }
  .comment-container .quotes {
    height: 30px;
    width: 35px;
    top: -12px;
  }
  .atsiliepimu-cont .dots-ats {
    right: 35px;
    width: 61px;
  }
  .atsiliepimu-cont .content .btn-container {
    margin: 30px 0 0;
  }
  .atsiliepimu-cont {
    padding: 0 0 30px;
  }
  .patirtis .top-container .right ul {
    gap: 25px 15px;
  }
  .realizacija .content .right .hero-gall-title {
    margin: 25px 0 10px;
  }
  img.atsiliepimu-figure,
  .realizacija .patirtis-image {
    display: none;
  }
  .atsiliepimu-cont .content .text-container {
    margin: 0 0 40px;
    gap: 15px;
  }
  /* Mūsų paslaugos */
  .home-paslaugos .paslaugos-repeater,
  .paslaugos ul#load-posts-container {
    grid-template-columns: repeat(1, 1fr);
    gap: 35px;
  }
  .category-filters {
    gap: 15px;
    margin: 30px 0;
  }
  .load-more-str a {
    padding: 8px 40px;
  }
  .darbai ul.straipsniai-page {
    column-count: 2;
    column-gap: 15px;
  }
  .darbai .load-more-str {
    margin: 20px 0 0;
  }
  .darbai {
    padding: 0;
  }
  #site-darbai .load-more-str {
    margin-bottom: 30px;
  }
  .darbai ul.straipsniai-page li .text {
    padding: 10px;
    width: 100%;
  }
  .darbai ul.straipsniai-page li .text h4 {
    font-size: 15px;
  }
  .paslaugos h1 {
    font-weight: 400;
    margin: 0 0 20px;
  }
  .paslaugos .main-txtCont {
    width: 100%;
  }
  .paslaugos ul#load-posts-container li h4 {
    margin: 15px 0 0;
  }
  .blogas-page-slider li {
    margin: 0 10px;
  }
  .blogas-page-slider {
    margin: 0 -10px;
  }
  .blogas-page-slider h4 {
    margin: 0 0 15px;
  }
  .blogas-page-slider .date {
    margin: 15px 0;
  }
  .blogas-paslaugos h2 {
    margin: 10px 0 30px;
  }
  .paslaugos-btn-container {
    margin: 15px 0 0;
  }
  .paslaugos-btn-container a {
    padding: 8px 70px;
    font-size: 15px;
  }
  .blogas-paslaugos {
    padding: 40px 0;
  }
  /* Contact page */
  .contact-page ul.done-numbers {
    margin: 0 0 25px;
  }
  .contact-from-universal .cf7-extraTxt {
    margin: 10px 0;
  }
  .contact-page .left h2 {
    margin: 0 0 10px;
  }
  .contact-from-universal input,
  .contact-from-universal select {
    height: 40px;
  }
  .contact-from-universal input,
  .contact-from-universal textarea,
  .contact-from-universal select {
    padding: 7px 15px;
  }
  .contact-from-universal .button input {
    padding: 8px 30px;
    font-size: 15px;
  }
  .contact-page {
    padding: 100px 0 60px;
    margin: 0 0 40px;
  }
  /* Sigle paslauga */
  .single-paslauga .procesas h3 {
    margin: 0 0 50px;
    width: 100%;
  }
  .single-paslauga .container-mine .left-side .go-toPost {
    margin: 20px 0;
  }
  .single-paslauga .container-mine .left-side .go-toPost a {
    padding: 8px 45px;
    font-size: 15px;
  }
  .single-paslauga .procesas {
    padding: 35px 0 50px;
  }
  .single-paslauga .container-mine .left-side h1 {
    margin: 0 0 30px;
  }
  /* Single projektas page */
  .projetas-container {
    gap: 15px;
    margin: 20px 0 30px;
  }
  .single-projetas-text ul {
    gap: 10px;
  }
  .single-projetas .extra-image {
    margin: 30px 0;
  }
  .single-projetas {
    padding: 0 0 40px;
  }
  /* Sigle straipsnis */
  .single-blogas .gallery {
    grid-template-columns: repeat(2, 1fr);
    margin: 25px 0;
  }
  .single-blogas h1,
  .single-blogas h2,
  .single-blogas h3,
  .single-blogas h4,
  .single-blogas h5,
  .single-blogas h6 {
    margin: 15px 0;
  }
  .go-toPost.back-toPage {
    margin: 20px 0 0;
  }
  .single-blogas .spilt-content .right-side .feature-posts-scnd {
    padding: 20px;
  }
  .single-blogas .spilt-content .right-side .feature-posts-h {
    margin: 0 0 5px;
  }
  .feature-posts .post-item h4 {
    margin: 10px 0;
  }
  .single-blogas .container-mine strong {
    font-size: 16px;
  }
  .single-blogas {
    padding: 0 0 50px;
  }
  .single-blogas .go-toPost.back-toPage {
    align-items: flex-start;
  }
  .price-page .content .left ul li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0 0 10px;
  }
  /* Blogas */
  .blogas h1 {
    margin: 0 0 20px;
  }
  /* Atlikti */
  .atsiliepimu-cont .content .slick-arrows-container {
    left: -14px;
    width: 108%;
  }
}
@media (max-width: 500px) {
  /* Footer */
  .offer .right-image {
    display: none;
  }
  .offer a.pas-link {
    height: 40px;
    width: 40px;
    min-width: 40px;
    font-size: 39px;
    margin-left: 0;
  }
  .cerdentials .socials ul {
    gap: 20px;
  }
  .burger-btn {
    width: 50px;
    height: 40px;
  }
  .burger-btn span + span {
    margin-top: 5px;
  }
  .burger-btn span {
    height: 4px;
  }
  .burger-btn .brg-btn.active span:nth-child(3) {
    bottom: 10px !important;
  }
  /* Header */
  .logo a {
    width: 154px;
  }
  /* Home page */
  .hero-top {
    display: flex;
    padding: 0;
    flex-direction: column;
    align-items: flex-end;
  }
  .hero .hero-image {
    position: relative;
    top: -15px;
    max-width: 315px;
    max-height: 230px;
  }
  .hero .content {
    margin: 0;
  }
  .home-projects .top-section .all-projects li:nth-child(2),
  .home-projects .top-section .all-projects li:nth-child(6),
  .home-projects .top-section .all-projects li:nth-child(5),
  .home-projects .top-section .all-projects li:nth-child(1),
  .home-projects .top-section .all-projects li:nth-child(4),
  .home-projects .top-section .all-projects li:nth-child(3) {
    grid-row: span 5;
  }
  /* About us */
  .patirtis .top-container .right ul {
    grid-template-columns: repeat(2, 1fr);
  }
  .darbai .fig-left img {
    display: none;
  }
  .darbai .main-txtCont {
    gap: 0;
    width: 100%;
    background: #ffffffb3;
  }
  /* Contact page */
  .contact-page .left,
  .contact-page .right {
    background: #ffffff40;
  }
  /* Single projektas page */
  .go-toPost.back-toPage {
    flex-direction: column;
  }
  .single-projetas-text .link-container a {
    width: 100%;
    padding: 7px 0;
    text-align: center;
  }
  .single-projetas .gallery {
    column-count: 1;
  }
  /* Blogas */
  ul.blogas-posts {
    column-count: 1;
  }
  ul.blogas-posts li.blogas-single {
    margin: 0 0 25px;
  }
}
@media (max-width: 400px) {
  /* Footer */
  .hero .hero-pratners ul .slick-list {
    padding-right: 0;
  }
  /* Home page */
  .home-aboutus .top-section ul.done-numbers li,
  .realizacija ul.done-numbers li {
    flex: unset;
    width: 100%;
    max-width: 100%;
  }
  .home-projects .top-section .all-projects {
    grid-template-columns: repeat(1, 1fr);
  }
  .home-projects .top-section .all-projects li:nth-child(2),
  .home-projects .top-section .all-projects li:nth-child(6),
  .home-projects .top-section .all-projects li:nth-child(5),
  .home-projects .top-section .all-projects li:nth-child(1),
  .home-projects .top-section .all-projects li:nth-child(4),
  .home-projects .top-section .all-projects li:nth-child(3) {
    grid-row: span 8;
  }
  /* Sigle paslauga */
  .single-paslauga .container-mine .left-side .go-toPost a {
    width: 100%;
    display: block;
    text-align: center;
    font-size: 14px;
    text-wrap: nowrap;
  }
  .single-paslauga .container-mine .right-side .main-img {
    height: 60%;
    width: 100%;
  }
  /* Sigle straipsnis */
  .single-blogas .gallery {
    grid-template-columns: repeat(1, 1fr);
  }
  /* Blogas */
  .load-more-str a {
    padding: 8px 0;
    width: 100%;
    text-align: center;
  }
}

@media (max-width: 360px) {
  body p,
  body,
  .main-btn {
    font-size: 14px;
  }
  /* Home page */
  .home-projects .top-section .all-projects li:nth-child(2),
  .home-projects .top-section .all-projects li:nth-child(6),
  .home-projects .top-section .all-projects li:nth-child(5),
  .home-projects .top-section .all-projects li:nth-child(1),
  .home-projects .top-section .all-projects li:nth-child(4),
  .home-projects .top-section .all-projects li:nth-child(3) {
    grid-row: span 7;
  }
  /* About us */
  .rp_atsiliepimu li {
    padding: 20px;
    max-height: 210px;
    -ms-overflow-style: none;
    scrollbar-width: none;
    overflow-x: hidden;
    overflow-y: visible;
  }
  .rp_atsiliepimu li::-webkit-scrollbar {
    display: none;
  }
  .comment-container .quotes {
    left: 44%;
  }
  .patirtis .top-container .right ul {
    grid-template-columns: repeat(1, 1fr);
  }
  .patirtis .top-container .right ul li {
    height: 140px;
  }
}

/* ===== Procesas responsive ===== */
@media (max-width: 980px) {
  .proccess-path-wrap {
    max-width: 100%;
  }
}
@media (max-width: 860px) {
  .proccess-item {
    padding: 28px 32px;
  }
  .proccess-num-badge {
    width: 56px;
    height: 56px;
    font-size: 17px;
  }
  .proccess-image-wrap {
    width: 130px;
    height: 130px;
  }
  .proccess-image-wrap img {
    width: 88px;
    height: 88px;
  }
}
@media (max-width: 660px) {
  .proccess-path-wrap {
    margin: 0 15px;
  }
  .proccess-item {
    padding: 22px 24px;
  }
  .proccess-num-badge {
    width: 44px;
    height: 44px;
    font-size: 14px;
  }
  .proccess-inner {
    gap: 18px;
  }
  .proccess-image-wrap {
    width: 110px;
    height: 110px;
  }
  .proccess-image-wrap img {
    width: 74px;
    height: 74px;
  }
  .proccess-item:nth-child(2)::before,
  .proccess-item:nth-child(3)::after {
    display: none;
  }
  .proccess-item--odd .proccess-num-badge {
    right: -22px;
  }
  .proccess-item--even .proccess-num-badge {
    left: -22px;
  }
  .proccess-item:nth-child(4n)::after,
  .proccess-item:nth-child(2)::after,
  .proccess-item:nth-child(4n) .line-dots::after,
  .proccess-path-bottom::after {
    display: none;
  }
}
@media (max-width: 500px) {
  .proccess-item--odd .proccess-text {
    text-align: start;
  }
  .proccess-item--odd .proccess-text {
    order: 2;
  }
  .proccess-item--even .proccess-text {
    text-align: right;
  }
  .proccess-item {
    border-right: none !important;
    border-left: none !important;
    border-top-right-radius: 0 !important;
    border-bottom-right-radius: 0 !important;
    border-top-left-radius: 0 !important;
    border-bottom-left-radius: 0 !important;
    padding: 22px 14px 22px 15px;
    margin-top: 0;
  }
  .proccess-item + .proccess-item {
    margin-top: 0;
    border-top: none !important;
  }
  .proccess-num-badge {
    position: absolute;
    width: 38px;
    height: 38px;
    font-size: 13px;
  }
  .proccess-inner {
    flex-direction: column;
    align-items: center;
    gap: 14px;
  }
  .proccess-dots-deco {
    display: none;
  }
}
@media (max-width: 420px) {
  .proccess-path-top {
    justify-content: flex-start;
  }
  .proccess-path-bottom {
    justify-content: flex-end;
  }
  .proccess-arrow-chars {
    padding: 0;
  }
}

/* ==========================================================================
   Darbai / project list — load more (button or infinite scroll)
   Behaviour is set per page in wp-admin: ACF box "Įrašų krovimas"
   ========================================================================== */
.load-more-sentinel {
  width: 0%;
  height: 1px;
}
.load-more-spinner {
  display: flex;
  justify-content: center;
  width: 100%;
  padding: 10px 0;
}
/* Ring spinner: neutral track + brand-coloured arc */
.darbai-spinner {
  display: inline-block;
  width: 38px;
  height: 38px;
  border: 3px solid rgba(1, 9, 27, 0.15);
  border-top-color: var(--color-dd215c, #dd215c);
  border-radius: 50%;
  animation: darbai-spin 0.7s linear infinite;
  vertical-align: middle;
  box-sizing: border-box;
}
/* In the button, inherit the label colour so it reads on any button style */
.darbai-spinner--btn {
  width: 22px;
  height: 22px;
  border-width: 2px;
  border-color: currentColor;
  border-top-color: transparent;
}
#load-more-btn.is-loading {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}
/* Full-width row while the category filter swaps the list */
.darbai-loading {
  column-span: all;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 180px;
}
@keyframes darbai-spin {
  to {
    transform: rotate(360deg);
  }
}
@media (prefers-reduced-motion: reduce) {
  .darbai-spinner {
    animation: darbai-pulse 1.2s ease-in-out infinite;
  }
  @keyframes darbai-pulse {
    0%,
    100% {
      opacity: 1;
    }
    50% {
      opacity: 0.35;
    }
  }
}

/* ==========================================================================
   WYSIWYG lists
   Default is a check list; the editor can switch a list to plain
   bullets/numbers with the "Paprastas sąrašas" format (adds .simple-list).
   See options/wysiwyg-lists.php
   ========================================================================== */
.check-list {
  margin: 15px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.check-list li {
  position: relative;
  padding-left: 30px;
  list-style: none;
}
.check-list li::before {
  position: absolute;
  left: 0;
  top: -2px;
  display: block;
  content: "✔";
  color: #61c7f2;
  font-size: 21px;
}
/* Nested check list sits tighter than the list it belongs to */
.check-list .check-list {
  margin: 12px 0 0;
  gap: 12px;
}

/* Simple list — put back what the global reset removes */
ul.simple-list,
ol.simple-list,
.simple-list ul,
.simple-list ol {
  display: block;
  margin: 15px 0;
  padding-left: 20px;
  gap: 0;
}
ul.simple-list li,
.simple-list ul li {
  list-style: disc outside;
  letter-spacing: normal;
  padding-left: 0;
}
ol.simple-list li,
.simple-list ol li {
  list-style: decimal outside;
  letter-spacing: normal;
  padding-left: 0;
}
/* A list nested inside a simple list stays simple, even though the output
   filter tagged it as a check list */
ul.simple-list li::before,
ol.simple-list li::before,
.simple-list li::before {
  content: none;
}
.simple-list ul li {
  list-style: circle outside;
}
