/* MAIN LAYOUT */
/* ----------------------------------------- */

/* ---------------------------------------
   			Vars
--------------------------------------- */

:root {
	--font: 'Satoshi', sans-serif;
	--sub-font: 'Satoshi Variable', sans-serif;
	/*--accent-font: 'Roboto', sans-serif;*/
	--accent-font: 'Satoshi', sans-serif;

	--main-color: #04494F;
	--sub-color: #F4F1E8;
	--text-color: #233038;
	--accent-color: #EA6344;
}




/* ---------------------------------------
	HTML
--------------------------------------- */

*,*::before,*::after {
	box-sizing: border-box
}

html {
	scroll-behavior: smooth;
	height: 100%;
}

body {
	position: static !important;
	display: flex;
	flex-direction: column;
	height: auto;
	font-family: var(--font);
	min-height: 100vh;
	margin: 0;
	background-color: var(--sub-color);
	color: var(--text-color);
	font-size: 16px;
	line-height: 1.5;
}

main {
	display: block;
}

*:last-child {
	margin-bottom: 0;
}


/* ---------------------------------------
	Preloader
--------------------------------------- */

.preloader {
	position: fixed;
	z-index: 100000000;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	visibility: visible;
	opacity: 1;
	background-color: #fff;
	color: #222;
	transition: opacity 0.4s ease, visibility 0.4s ease;
}

.preloader--hidden {
	visibility: hidden;
	opacity: 0;
}

.position-center {
	position: absolute;
	top: 50%;
	right: 50%;
	transform: translate(50%, -50%);
}

@keyframes spin {
	100% {
		transform: rotate(360deg);
	}
}

img {
	transition: opacity 0.3s ease-in-out;
}

img.pre-lazyload, &[data-lazy-src] {
	opacity: 0;
}

img.lazyloaded {
	opacity: 1;
}

/* ---------------------------------------
   			Container
--------------------------------------- */

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

.main-content {

}

.two-columns {
	columns: 2;
}

@media (max-width: 767px) {
	.two-columns {
		columns: 1;
	}
}



/* ---------------------------------------
   			Typography
--------------------------------------- */

p {
	font-size: 16px;
	line-height: 24px;
	margin: 0;
}

p:not(:last-child) {
	margin-bottom: 0.8rem;
}

@media (max-width: 767px) {
	p {
		font-size: 14px;
		line-height: 20px;
	}
}


h1,
h2,
h3,
h4,
h5,
h6 {
	font-weight: 400;
	/*font-family: var(--sub-font);*/
	margin: 0 0 1rem 0;
}


/*H1*/

h1 {
	font-size: 56px;
	line-height: 1.2;
}
@media (max-width: 992px) {
	h1 {
		font-size: 50px;
	}
}
@media (max-width: 781px) {
	h1 {
		font-size: 40px;
	}
}

.h1 {
	font-size: 56px;
	line-height: 1.2;
}
@media (max-width: 992px) {
	.h1 {
		font-size: 50px;
	}
}
@media (max-width: 781px) {
	.h1 {
		font-size: 40px;
	}
}


/*H2*/


h2 {
	font-size: 48px;
	line-height: 1.2;
}
@media (max-width: 992px) {
	h2 {
		font-size: 43px;
	}
}
@media (max-width: 781px) {
	h2 {
		font-size: 40px;
	}
}


h2 strong {
	font-weight: 700;
}

/*H3*/

h3 {
	font-size: 40px;
	line-height: 1.2;
}
@media (max-width: 992px) {
	h3 {

	}
}
@media (max-width: 767px) {
	h3 {

	}
}


/*H4*/

h4 {
	font-size: 32px;
	line-height: 1.2;
}
@media (max-width: 992px) {

}
@media (max-width: 767px) {

}
@media (max-width: 576px) {

}

/*H5*/

h5 {
	font-size: 28px;
	line-height: 1.16;
}
@media (max-width: 992px) {

}
@media (max-width: 767px) {

}
@media (max-width: 576px) {

}

/*H6*/

h6 {
	font-size: 20px;
	line-height: 1.4;
}
@media (max-width: 992px) {

}
@media (max-width: 767px) {

}
@media (max-width: 576px) {

}

p a {
	text-decoration: underline;
	font-size: inherit;
	line-height: inherit;
	transition: all 0.2s ease-in-out;
}

ul, ol {
	list-style-position: inside;
}

ul {

}

.button {
	border: 1px solid #68D8AA;
	padding: 11px 30px;
	display: inline-block;
	text-align: center;
	color: #03373B;
	font-size: 18px;
	line-height: 1.5;
	text-decoration: none;
	border-radius: 10px;
	font-weight: 700;
	background-color: #68D8AA;
	transition: all 0.3s ease-in-out;
	letter-spacing: -0.02em;
}

.button:hover {
	background-color: #5EC299;
	color: #03373B;
	border-color: #5EC299;
}

.button:focus {
	background-color: #53AD88;
	border-color: #53AD88;
}

.button-bg {
	background-color: transparent;
	border: 2px solid #FFFBE9;
	padding: 11px 30px;
	display: inline-block;
	text-align: center;
	color: #FFFBE9;
	font-size: 18px;
	line-height: 1.5;
	text-decoration: none;
	border-radius: 10px;
	font-weight: 700;
	transition: all 0.3s ease-in-out;
	letter-spacing: -0.02em;
}

.button-bg:hover {
	background-color: #FFFBE9;
	border-color: #FFFBE9;
	color: #03373B;
}

/* ---------------------------------------
			Header
--------------------------------------- */

.header {
	position: sticky;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 105;
	/*padding: 20px 0;*/
	background-color: var(--sub-color);
	box-shadow: 0px 2px 2px 0px #2330380D;

}

.header-scrolled {
	/*box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;*/
}

.header-fixed {
	position: fixed;
}

.header__logo h1 {
	font-size: 0;
	line-height: 1;
}

.logo a {
	display: flex;
	align-items: center;
}

.header__logo a img {
	max-height: 120px;
	object-fit: contain;
	max-width: 120px;
}



.menu-item .sub-menu {
	/*display: none;*/
	/*top: 100%;*/
	/*right: auto;*/
	/*left: 0;*/
}

.header__menus .header-menu > .menu-item-has-children > .sub-menu {
	background-color: white;
	display: none;
	min-width: 200px;
	padding: 10px;
	position: absolute;
	right: auto;
	left: 0;
	z-index: 10;
	list-style: none;
}

.header__menus .menu-item-has-children {
	position: static;
}

.header__menus .header-menu > .menu-item-has-children.mm-open > .sub-menu {
	display: block;
}

.header__menus .header-menu > .menu-item-has-children > .sub-menu {
	/*flex-wrap: wrap;*/
	width: 100%;
	left: 50% !important;
	transform: translate(-50%, 0);
	max-width: 1725px;
	margin: 0 auto;
	min-height: 398px;
	/*top: 100%;*/
	padding: 38px 25px 30px 100px;
	gap: 0;
	padding-right: calc(50% - 390px);
	box-shadow:
			rgba(0, 0, 0, 0.05) 0px 6px 24px 0px,
			rgba(0, 0, 0, 0.08) 0px 0px 0px 1px;

}

.header__menus .header-menu > .menu-item-has-children > .sub-menu span {
	display: inline-flex;
	align-items: center;
	gap: 13px;
}

.header__menus .header-menu .sub-menu .sub-menu {
	padding-top: 4px;
	padding-left: 36px;
	display: flex;
	flex-direction: column;
	gap: 4px;
	list-style: none;
}

.header__menus .header-menu .menu-item-352 .sub-menu {

}

.header__menus .header-menu .sub-menu .sub-menu a {
	font-weight: 400;
}

.header__menus .header-menu > .menu-item-has-children > .sub-menu li a {

}

.header__menus .header-menu > .menu-item-has-children > .sub-menu li {

}

.header__menus .header-menu > li > .sub-menu {

}

.header__menus .menu-icon {
	max-width: 30px;
	object-fit: contain;
}


.header-menu .current_page_item > a > span:before {
	width: 100% !important;
}

.menu-item a {
	color: #03373B;
	font-size: 16px;
	line-height: 1.5;
	text-decoration: none;
	font-weight: 500;
	position: relative;
}

.header-menu > .menu-item-has-children > a {

}

.header-menu > .menu-item-has-children > a:after {
	content: '';
	background-image: url("../images/chevron.svg");
	display: inline-block;
	background-position: center;
	width: 10px;
	height: 6px;
	background-repeat: no-repeat;
	position: relative;
	transition: all 0.3s ease-in-out;
	margin-left: 10px;
	margin-top: 5px;
	transform: translate(0, 0);
}

.menu-item-has-children a:hover:after {
	transform: translate(0, 0) rotate(180deg);
}

.menu-item a span {
	position: relative;
}

.header__menus .header-menu .sub-menu li a {
	transition: all 0.3s ease-in-out;
}



.openSearch {
	width: 48px;
	height: 48px;
	border-radius: 50%;
	border: 1px solid #E6EDED;
	background-color: white;
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
	cursor: pointer;
}

.openSearch img {
	position: absolute;
	top: 50%;
	right: 50%;
	transform: translate(50%, -50%);
	transition: all 0.3s ease-in-out;
}

.hide-icon {
	opacity: 0;
}

.search-block {
	position: relative;
	width: 100%;
}

.search-block .openSearch {
	position: absolute;
	top: 50%;
	right: 0;
	transform: translate(0%, -50%);
}

.search-block label {
	display: none;
}

.search-block .search-form__submit {
	display: none;
}

.search-block .search-form__input {
	border: 1px solid #E6EDED;
	background-color: white;
	height: 52px;
	width: 100%;
	font-size: 16px;
	font-weight: 500;
	line-height: 1.5;
	color: black;
	border-radius: 20px;
	padding-left: 18px;
	transition: all 0.3s ease-in-out;
}

.search-block .search-form__input:hover {
	outline: none;
	box-shadow: none;
}

.search-block .search-form__input:focus {
	outline: none;
	box-shadow: none;
}

.search-block .search-form__input::placeholder {
	color: #99978C;
}

.search-block .search-form {
	opacity: 0;
	transition: all 0.3s ease-in-out;
	visibility: hidden;
	pointer-events: none;
}

.search-block:hover .search-form  {

}

.active-search-block .search-form {
	opacity: 1;
	pointer-events: auto;
	visibility: visible;
}

.close-icon {
	opacity: 0;
}

.search-section .search-form {

}

.search-section .search-form label {
	display: none;
}

.search-section .search-form input {
	width: 100%;
	background-color: white;
	border: 1px solid white;
	height: 53px;
	border-radius: 25px;
	max-width: 500px;
	padding-left: 25px;
	transition: all 0.3s ease-in-out;
	padding-right: 25px;
	font-size: 16px;
	font-weight: 500;
	line-height: 1.5;
}

.search-section {
	padding: 36px 0 0 0;
}

.search-section .search-form {
	text-align: center;
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 10px;
}

.search-section .search-form__submit {
	border: 1px solid #68D8AA;
	padding: 11px 30px;
	display: inline-block;
	text-align: center;
	color: #03373B;
	font-size: 18px;
	line-height: 1.5;
	text-decoration: none;
	border-radius: 10px;
	font-weight: 700;
	background-color: #68D8AA;
	transition: all 0.3s ease-in-out;
	letter-spacing: -0.02em;
}

.search-section .search-form__submit:hover {
	background-color: #5EC299;
	color: #03373B;
	border-color: #5EC299;
}

.search-section .search-form__submit:focus {
	background-color: #53AD88;
	border-color: #53AD88;
}

.search-section .search-form input:hover {
	outline: none;
	box-shadow: none;
	border-color: var(--accent-color);
}

.search-section .search-form input:focus {
	outline: none;
	box-shadow: none;
}

.search-section .pagination {
	padding-bottom: 96px;
}


@media (max-width: 781px) {
	.search-section .search-form__submit {
		width: 100%;
	}
	.search-section .pagination {
		padding-bottom: 36px;
	}
}

.active-search-block .openSearch {
	border-color: white;
}

.active-search-block .search-icon {
	opacity: 0 !important;
}

.active-search-block .close-icon {
	opacity: 1 !important;
}


.header-contacts {
	background-color: #04494F;
	padding: 5px 0;
	z-index: 150;
}

.header-block {
	display: flex;
	align-items: center;
	gap: 10px;
	height: auto;
}

@media (min-width: 1440px) {
	.header-block {
		gap: 25px;
	}
}

.header .header__menus {
	height: 100%;
}

.header .header__menus .navbar {
	height: 100%;
}

.header .header__menus nav {
	height: 100%;
}

.header .header__menus nav > ul {
	height: 100%;

}

.header .header__menus nav > ul > li {
	height: 100%;
	min-height: 100px;
}
.header .header__menus nav > ul > li > a {
	height: 100%;
	display: flex;
	align-items: center;
}


@media (min-width: 1700px) {
	.header-block {
		gap: 75px;
	}
}

.header__row {
	display: flex;
	justify-content: space-between;
	gap: 10px;
	/*align-items: center;*/
}

.header__button {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 20px;
	width: 100%;
	max-width: 360px;
}

@media (min-width: 1700px) {
	.header__button {
		max-width: 524px;
	}
}

.header__button .accent-button {
	min-width: 161px;
	padding-left: 20px;
}



.header-contacts__row {
	display: flex;
	justify-content: center;
	gap: 48px;
	flex-wrap: wrap;
}

.header__btn {
	display: none;
}



.header-menu {
	display: flex;
	/*flex-wrap: wrap;*/
	justify-content: center;
	margin: 0;
	gap: 30px;
	padding: 0;
	list-style: none;
}

@media (min-width: 1645px) {
	.header-menu {
		gap: 44px;
	}
}


#clickWrapper {
	cursor:pointer;
	height:18px;
	width:18px;
}

/* menu start */
.header .menu {
	position: absolute;
	background-color: var(--accent-color);
	width: 18px;
	height: 2px;
	margin-top:6px;
}

.animate.menu{
	animation-name: menu-menu;
	animation-duration: 0.3s;
}

@keyframes menu-menu {
	0% {
		width:0;
		height:0;
	}
	50% {
		width:0;
		height:0;
	}
	51%{
		position: absolute;
		background-color: var(--accent-color);
		width: 18px;
		height: 2px;
	}
}

.header .menu:after {
	content: "";
	position: absolute;
	background-color: var(--accent-color);
	width: 18px;
	height: 2px;
	margin-top: -6px;
}

.animate.menu:after {
	animation-name: menu-after;
	animation-duration: 0.3s;
}

@keyframes menu-after {
	0% {
		transform: rotate(-45deg);
		margin-top:0;
	}
	50% {
		transform: rotate(0deg);
		margin-top:0;
	}
	100%{
		transform: rotate(0deg);
		margin-top:-6px;
	}
}

.header .menu:before {
	content: "";
	position: absolute;
	background-color: var(--accent-color);
	width: 18px;
	height: 2px;
	margin-top: 6px;
}

.animate.menu:before{
	animation-name: menu-before;
	animation-duration: 0.3s;
}
@keyframes menu-before {
	0% {
		transform: rotate(45deg);
		margin-top:0;
	}
	50% {
		transform: rotate(0deg);
		margin-top:0;
	}
	100%{
		transform: rotate(0deg);
		margin-top: 6px;
	}
}
/* menu end */

/* close start */
.close {
	position: absolute;
	margin-top: 6px;
	margin-left: 0;
	opacity: 1 !important;
	text-shadow: none;
}

.close.animate{
	animation-name: close-close;
	animation-duration: 0.3s;
}

@keyframes close-close {
	0% {
		position: absolute;
		background-color: var(--accent-color);
		width: 18px;
		height: 2px;
		margin-top: 6px;
	}
	50% {
		display:none;
		width:18px;
		height: 2px;
	}
	100%{
		width:0;
		height:0;
	}
}

.close:after {
	content: "";
	position: absolute;
	background-color: var(--accent-color);
	width: 18px;
	height: 2px;
	transform: rotate(45deg);
}

.animate.close:after {
	animation-name: close-after;
	animation-duration: 0.3s;
}

@keyframes close-after {
	0% {
		transform: rotate(0deg);
		margin-top: 6px;
	}
	50% {
		transform: rotate(0deg);
		margin-top: 0;
	}
	100%{
		transform: rotate(45deg);
	}
}

.close:before {
	content: "";
	position: absolute;
	background-color: var(--accent-color);
	width: 18px;
	height: 2px;
	transform: rotate(-45deg);
}

.animate.close:before {
	animation-name: close-before;
	animation-duration: 0.3s;
}

@keyframes close-before {
	0% {
		transform: rotate(0deg);
		margin-top:-6px;
	}
	50% {
		transform: rotate(0deg);
		margin-top:0;
	}
	100%{
		transform: rotate(-45deg);
	}
}
/* close end */

.mega-header {
	display: none;
}

.accent-button {
	font-size: 18px;
	line-height: 1.5;
	font-weight: 700;
	color: white;
	background-color: var(--accent-color);
	display: inline-flex;
	align-items: center;
	gap: 15px;
	transition: all 0.3s ease-in-out;
	padding: 15px 15px;
	border-radius: 10px;
	text-decoration: none;
}

.accent-button:hover {
	background-color: #D3593D;
}



@media (min-width: 1240px) {
	.sildymas-bg > .sub-menu > .menu-col:not(:first-child) {
		padding-left: 12rem;
	}
	.renovacija-bg > .sub-menu > .menu-col:not(:first-child) {
		/*padding-left: 4rem;*/
	}
	.apie-mus-bg > .sub-menu {
		background-image: url("../images/apie-mus.png");
		background-position: right;
		background-repeat: no-repeat;
		background-size: 33% 100%;
		padding-right: calc(50% - 390px) !important;
	}

	.prieziura-mus-bg > .sub-menu {
		background-image: url("../images/prieziura.png");
		background-position: right;
		background-repeat: no-repeat;
		background-size: 33% 100%;
	}

	.renovacija-bg > .sub-menu {
		background-image: url("../images/Renovacija.png");
		background-position: right;
		background-repeat: no-repeat;
		background-size: 33% 100%;
		gap: 56px !important;
	}

	.sildymas-bg > .sub-menu {
		background-image: url("../images/sildymas.png");
		background-position: right;
		background-repeat: no-repeat;
		background-size: 33% 100%;
		padding-right: 0 !important;
		column-gap: 181px !important;
	}

	.atlieku-tvarkymas-bg > .sub-menu {
		background-image: url("../images/Atliekutvarkymas.png");
		background-position: right;
		background-repeat: no-repeat;
		background-size: 33% 100%;
		padding-right: 0;
	}

	.paslaugos-bendruomenei-bg > .sub-menu {
		background-image: url("../images/Paslaugos-bendruomenei.png");
		background-position: right;
		background-repeat: no-repeat;
		background-size: 33% 100%;
	}

	.sildymas-bg > .sub-menu {

	}

	.sildymas-bg:hover .sub-menu {
		display: flex !important;
	}

	.sildymas-bg > .sub-menu .menu-col li {
		margin-bottom: 0;
	}


	.sildymas-bg > .sub-menu > .menu-col > li {
		margin-bottom: 30px;
	}

	.sildymas-bg > .sub-menu > .menu-col:not(:first-child) {
		padding-left: 1rem;
	}

	.renovacija-bg > .sub-menu {
		padding-right: 0 !important;
	}

	.renovacija-bg:hover .sub-menu {
		display: flex !important;
	}

	.renovacija-bg > .sub-menu .menu-col li {
		margin-bottom: 0;
	}

	.renovacija-bg > .sub-menu > .menu-col:not(:first-child) {
		/*padding-left: 1rem;*/
	}

	.renovacija-bg > .sub-menu .sub-menu a {
		text-transform: uppercase;
	}

	.renovacija-bg .sub-menu .other-col {
		flex-direction: column;
		display: flex;
		gap: 26px;
	}

	.sildymas-bg .sub-menu {
		padding-bottom: 0 !important;
	}
	.menus-columns-2 > .sub-menu {
		columns: 2;
	}

	.header__menus .header-menu .sub-menu > li {
		margin-bottom: 32px;
	}

	.header__menus .header-menu .sub-menu  .sub-menu li {
		margin-bottom: 0 !important;
	}
	.header__menus .header-menu .sub-menu li a:hover {
		opacity: 0.6;
	}

	.header__menus .header-menu .sub-menu > .current-menu-item > a {
		opacity: 0.6;
	}

	.header-menu > .menu-item > a > span:before {
		position: absolute;
		bottom: 0;
		left: 0;
		width: 0;
		height: 2px;
		background-color: var(--accent-color);
		content: '';
		transition: all 0.3s ease-in-out;
	}

	.menu-item > a:hover span:before {
		width: 100%;
	}
}

@media (max-width: 1440px) {
	.header-menu {
		gap: 15px;
	}
	.menu-item-has-children a:after {
		margin-left: 5px;
	}
	.menu-item a {
		font-size: 14px;
	}
}

@media (max-width: 1240px) {
	.header-contacts__row {
		gap: 15px;
		justify-content: space-between;
	}
	.header__button .search-block {
		display: none !important;
	}
	.header__button .accent-button {
		display: none !important;
	}
	.header__menus {
		display: none;
	}
	.header__btn {
		display: flex;
	}
	.header__button {
		display: flex;
		gap: 15px;
		align-items: center;
		padding-right: 10px;
	}
	.header-button {
		padding: 8px 15px;
		font-size: 14px;
		line-height: 1;
	}
	.mega-header {
		position: fixed;
		top: 0;
		padding-top: 70px;
		padding-bottom: 100px;
		right: 0;
		height: 100vh;
		width: 100%;
		transition: all 0.3s ease-in-out;
		opacity: 0;
		z-index: -1;
		overflow: scroll;
		display: block;
		visibility: hidden;
	}
	.bg {
		position: absolute;
		top: 0;
		left: 0;
		right: 0;
		bottom: 0;
		background: #FFFFFF;
	}
	.header-menu-nav {
		padding-top: 21px;
	}
	.header-button {
		display: block;
	}
	.header__menus {
		display: none;
	}
	.mega-header-active {
		opacity: 1;
		z-index: 104;
		visibility: visible;
	}
	.mega-header__block {
		padding: 15px 0;
		justify-content: flex-start;
		display: flex;
		height: 100%;
		flex-direction: column;
	}
	.search-block {

	}
	.header-menu-nav {
		overflow: scroll;
		/*height: calc(100vh - 61px);*/
		height: auto;
		display: flex;
		flex-direction: column;
		text-align: left;
		justify-content: flex-start;
		margin-bottom: 60px;
		align-items: flex-start;
		z-index: 200;

	}
	.header-menu li a {
		color: #04494F;
		font-size: 18px;
		line-height: 1.5;
		padding: 0 15px;
	}
	.header-menu > li {
		width: 100%;
	}

	.header-menu > li a {
		width: 100%;
		display: block;
	}
	.mega-header__container {
		height: 100%;
	}
	.header-menu .sub-menu {
		display: none;
	}
	.header-menu {
		flex-direction: column;
		gap: 0;
		width: 100%;
	}
	.header {
		padding: 15px 0;
	}
	.header-menu > .menu-item-has-children > a:after {
		position: absolute;
		top: 50%;
		right: 13px;
		margin: 0;
		background-position: right;
		background-image: url("../images/chevron-mobile.png");
		width: 10px;
		height: 12px;
		transform: translate(-50%, -50%);
		content: '';
	}

	.mega-header .sub-menu .menu-item-has-children > a {
		position: relative;
	}

	.mega-header .sub-menu .menu-item-has-children > a:after {
		content: "";
		position: absolute;
		top: 50%;
		right: 13px;
		width: 10px;
		height: 12px;
		background-image: url("../images/chevron-mobile.png");
		background-repeat: no-repeat;
		background-size: contain;
		transform: translateY(-50%);
		z-index: 2;
	}

	.mega-header__block .accent-button {
		z-index: 10;
		position: relative;
		justify-content: center;
	}

	.mega-header .menu-item img {
		display: none;
	}

	.mega-header .menu-item .sub-menu {
		list-style: none;
		padding: 0;
	}

	.mega-header .menu-item .sub-menu li {
		display: block;
	}
	.menu-item-parent-link > a  {
		background-color: #F4F1E8;

		display: flex !important;
		align-items: center;
	}

	.menu-item-parent-link a:before {
		content: '';
		background-image: url("../images/mobile-prev.png");
		width: 7px;
		height: 12px;
		display: inline-block;
		margin-right: 13px;
		background-repeat: no-repeat;
		background-size: contain;
		margin-left: 9px;
	}
	.mega-header-button {
		padding: 0 15px;
	}

	.mega-header-button a {
		width: 100%;
	}
	.mega-header__search {
		padding: 0 15px;
	}
	.mega-header .menu-item a {
		padding: 12px 15px;
	}
	.header-menu li {
		transition: all 0.3s ease-in-out;
	}
	.closed-menu {

	}
	.header-menu {
		position: relative;
	}
	.header-menu  .sub-menu {
		transition: all 0.3s ease-in-out;
	}
	.header-menu .menu-item-has-children .sub-menu {
		position: absolute;
		top: 0;
		left: -100%;
		background-color: white;
		transition: all 0.3s ease-in-out;
		width: 100%;
		height: 100%;
		z-index: 5;
	}
	.header-menu .open > .sub-menu {
		left: 0;
	}
}

@media (max-width: 781px) {
	.contact-link {
		font-size: 14px;
		line-height: 1.2;
	}
	.header-contacts__row .contact-link:last-child {
		display: none;
	}
	.header-contacts__row {
		justify-content: center;
	}
	.header-button {
		padding: 8px 5px;
		font-size: 12px;
		line-height: 1;
	}
	.header-contacts__row .contact-link:first-child {
		display: none;
	}

	.logo a img {
		max-width: 100px;
		height: 32px;
		object-fit: contain;
	}
}


/* ---------------------------------------
			Footer
--------------------------------------- */

.footer {
	position: relative;
	margin-top: auto;
}

.socials {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	justify-content: flex-end;
}

.socials a:hover {
	opacity: 0.8;
}



.main-content-text {

}

.grid-3 {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	gap: 30px;
}

.search-grid-block {
	padding: 96px 0;
}

h3.search-grid-block {
	font-weight: 700;
}

@media (max-width: 1240px) {

}

@media (max-width: 992px) {
	.grid-3 {
		grid-template-columns: 1fr 1fr;
	}

	.search-grid-block {
		padding: 66px 0;
	}
}

@media (max-width: 781px) {
	.grid-3 {
		grid-template-columns: 1fr;
	}
	.search-grid-block {
		padding: 36px 0;
	}
}

/* ---------------------------------------
				Slider
--------------------------------------- */

.slick-dots {
	margin: 0;
	padding: 0;
	display: flex;
	justify-content: center;
	position: relative;
	bottom: 0;
	left: 0;
	transform: translate(0%,0%);
	list-style: none;
	gap: 10px;
	z-index: 60;
}


.slick-dots li {

}


.slick-dots li button {
	background-color: #9A9A9A;
	padding: 0;
	font-size: 0;
	width: 8px;
	height: 8px;
	border: 1px solid #9A9A9A;
	border-radius: 50%;
	transition: all 0.3s ease-in-out;
}

.slick-dots .slick-active button {
	background-color: #03373B;
	border-color: #03373B;
	border-radius: 100px;
	width: 40px;
}

.slick-arrow {
	position: absolute;
	top: 50%;
	background-color: white;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 42px;
	height: 42px;
	border-radius: 50%;
	font-size: 0;
	outline: none;
	box-shadow: none;
	border: 1px solid rgba(0, 79, 159, 0.15); /* Border with 15% opacity */
	z-index: 80;
	transform: translate(0%, -50%);
	cursor: pointer;
}

.slick-arrow:after {
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
}

.slick-arrow:hover {
	border-color: #04494F;
}

.slick-prev {
	left: 0;
}

.slick-prev:after {
	content: url("../images/arrow-left.svg");

}

.slick-next {
	right: 0;
}

.slick-next:after {
	content: url("../images/arrow-right.svg");
}

.hero-slider .slick-prev {
	transform: translate(-60%, -50%);
}

.hero-slider .slick-next {
	transform: translate(60%, -50%);
}

/* ---------------------------------------
			Home
--------------------------------------- */

/* ---------------------------------------
			Hero Slider
--------------------------------------- */

.hero-slider {
	padding: 60px 0 80px 0;
}

.hero-slider-item {
	position: relative;
	min-height: 660px;
	padding: 30px 100px;
	display: flex;
	align-items: center;
	background-color: #04494F;
	border-radius: 40px;
}

.hero-slider-item-image {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 40px;
}

.hero-slider-item__content {
	z-index: 5;
	position: relative;
	color: #F4F1E8;
	max-width: 560px;
}

.hero-slider-item__content h2 {
	font-size: 56px;

	color: #FFFBE9;
	letter-spacing: -0.02em;
	margin-bottom: 1.6rem;
}

.hero-slider-item__content p {
	font-weight: 500;
	font-size: 18px;
	line-height: 1.5;
}

.hero-slider-item__buttons {
	padding-top: 10px;
	display: flex;
	flex-wrap: wrap;
	gap: 15px;
}

.hero-slider-block__buttons {
	display: none;
}

@media (max-width: 992px) {
	.hero-slider-item {

		padding: 30px;

	}

	.hero-slider-item__content h2 {
		font-size: 50px;

	}
}

@media (max-width: 781px) {
	.hero-slider-item__content h2 {
		font-size: 40px;
		margin-bottom: 1rem;
	}
	.hero-slider-item__content p {
		font-size: 16px;
	}
	.hero-slider-item {
		align-items: flex-start;
		border-radius: 18px;
		min-height: 657px;
	}
	.hero-slider-item-image {
		border-radius: 18px;
	}
	.hero-slider-block__buttons {
		display: flex;
		flex-direction: column-reverse;
		gap: 11px;
		padding-top: 25px;
	}

	.hero-slider-block__buttons {
		width: 100%;
		text-align: center;
	}

	.hero-slider-block__buttons .button-bg {
		border-color: #3E8266;
		color: #3E8266;
	}
	.hero-slider-item__buttons {
		display: none;
	}
	.hero-slider {
		padding: 48px 0;
	}
}

/* ---------------------------------------
			Text Columns
--------------------------------------- */

.text-columns {
	padding: 80px 0;
	background-color: #EEEADF;
}

.grid-item__text {
	color: #04494F;
}

.text-columns__grid {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	gap: 35px 50px;
}

.grid-item__column-revert a {
	box-shadow: 0px 1px 36.5px 0px #18575B1A;
	background: #04494F;
	border-radius: 40px;
	position: relative;
	transform: rotate(357deg);
}

.grid-item__column-default a {
	box-shadow: 0px 1px 36.5px 0px #18575B1A;
	background-color: white;
	border-radius: 40px;
}

.grid-item-column__image {
	position: relative;
	width: 60px;
	height: 60px;
}

.grid-item-column__image img {
	position: absolute;
	top: 50%;
	right: 50%;
	transform: translate(50%, -50%);
	transition: all 0.3s ease-in-out;
}

.grid-item-column__top {
	display: flex;
	position: relative;
	align-items: center;
	gap: 25px;
	padding-bottom: 20px;
}

.grid-item-column__title {
	font-size: 20px;
	line-height: 1.4;
	font-weight: 700;
	transition: all 0.3s ease-in-out;
}

.grid-item__text h3 {
	letter-spacing: -0.02em;
	margin-bottom: 1.5rem;

}

.grid-item__text p {
	max-width: 85%;
	transition: all 0.3s ease-in-out;
	font-weight: 500;
	font-size: 16px;
	line-height: 1.5;
}

.grid-item__text p:not(:last-child) {
	margin-bottom: 2.3rem;
}

.grid-item-column a {
	min-height: 278px;
	padding: 2rem;
	display: flex;
	flex-direction: column;
	text-decoration: none;
	box-shadow: 0px 1px 36.5px 0px #18575B1A;
	transition: all 0.3s ease-in-out;
}

.grid-item-column__link {
	margin-top: auto;
}

.grid-item-column__link span {
	font-size: 16px;
	line-height: 1.5;
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	font-weight: 700;
	gap: 11px;
	transition: all 0.3s ease-in-out;
	letter-spacing: -0.02em;
}

.grid-item-column__text p {
	font-weight: 500;
	font-size: 16px;
	line-height: 1.5;
	transition: all 0.3s ease-in-out;
}

.grid-item__column-default .grid-item-column__link span {
	color: #04494F;
}

.grid-item__column-revert .grid-item-column__link span {
	color: #FFFBE9;
}

.grid-item__column-revert .grid-item-column__link span img {
	filter: brightness(0) saturate(100%) invert(97%) sepia(70%) saturate(456%) hue-rotate(301deg) brightness(106%) contrast(103%);
}

.grid-item__column-revert .grid-item-column__text p {
	color: #F4F1E8;
}

.grid-item__column-revert .grid-item-column__title {
	color: #FFFBE9;
}

.grid-item__column-default .grid-item-column__title {
	color: #04494F;
}

.grid-item__column-default .grid-item-column__text p {
	color: #233038;
}

.grid-item__text {
	padding-top: 10px;
}

.grid-item__column-revert:hover a {
	background: #FFFFFD;

}

.grid-item__column-revert:hover a .grid-item-column__title {
	color: #04494F;
}

.grid-item__column-revert:hover a .grid-item-column__text p {
	color: #04494F;
}

.grid-item__column-revert:hover a .grid-item-column__link span {
	color: #04494F;
}


.grid-item__column-revert:hover a .grid-item-column__link span img {
	filter: brightness(0) saturate(100%) invert(20%) sepia(52%) saturate(1177%) hue-rotate(144deg) brightness(91%) contrast(97%);
}

.hover-icon {
	opacity: 0;
}

.grid-item__column-revert:hover a .grid-item-column__image .main-icon {
	opacity: 0;
}

.grid-item__column-revert:hover a .grid-item-column__image .hover-icon {
	opacity: 1;
}

.grid-item__column-default:hover {

}

.grid-item__column-default:hover a {
	background: #04494F;

}

.grid-item__column-default:hover a .grid-item-column__title {
	color: #FFFBE9;
}

.grid-item__column-default:hover a .grid-item-column__text p {
	color: #F4F1E8;
}

.grid-item__column-default:hover a .grid-item-column__link span {
	color: #FFFBE9;
}


.grid-item__column-default:hover a .grid-item-column__image .main-icon {
	opacity: 0;
}

.grid-item__column-default:hover a .grid-item-column__image .hover-icon {
	opacity: 1;
}

.grid-item__column-default:hover a {
	transform: rotate(-3deg);
}

.grid-item__column-default:hover a .grid-item-column__link span img {
	filter: brightness(0) saturate(100%) invert(100%) sepia(30%) saturate(1590%) hue-rotate(31deg) brightness(120%) contrast(103%);
}

.text-columns__slider .slick-dots {

}

.text-columns-slider .slick-list {
	padding: 10px;
}

.text-columns__slider-link {
	margin: 37px 0 10px 0;
}

.text-columns__slider-link a {
	width: 100%;
}

@media (max-width: 992px) {
	.text-columns__grid {
		grid-template-columns: 1fr 1fr;
		gap: 35px;
	}
}

@media (max-width: 781px) {
	.text-columns__grid {
		grid-template-columns: 1fr;
		gap: 40px;
	}
	.text-columns {
		padding: 40px 0;
	}
	.grid-item__text p {
		max-width: 100%;
	}
	.text-columns__slider .grid-item__text {
		padding-bottom: 40px;
	}
	.grid-item-column__title {

	}
	.grid-item-column a {
		padding: 1.5rem 2rem;
	}

	.grid-item-column__top {
		gap: 40px;
	}
	.grid-item-column__text {
		padding-bottom: 25px;
	}

	.text-columns-slider .slick-list {

	}
}

/* ---------------------------------------
			Latest News
--------------------------------------- */

.latest-news {
	background-color: white;
	padding: 81px 0;
}

.latest-news__top {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 10px;
	padding-bottom: 50px;
}

.latest-news__top h2 {
	font-weight: 700;
	color: #03373B;
	margin-bottom: 0;
	letter-spacing: -0.02em;
}

.link-arrow {
	color: #9A9A9A;
	display: inline-flex;
	align-items: center;
	gap: 12px;
	font-weight: 500;
	font-size: 18px;
	line-height: 1.5;
	transition: all 0.3s ease-in-out;
	text-decoration: none;
}

.link-arrow img {
	filter: brightness(0) saturate(100%) invert(63%) sepia(8%) saturate(9%) hue-rotate(323deg) brightness(96%) contrast(87%);
}

.link-arrow:hover {
	color: #04494F;
}

.link-arrow:hover img {
	filter: brightness(0) saturate(100%) invert(20%) sepia(12%) saturate(6103%) hue-rotate(150deg) brightness(96%) contrast(97%);
}

.category-list {
	display: flex;
	flex-wrap: wrap;
	padding: 0;
	list-style: none;
	gap: 10px;
	margin: 0 0 13px 0;
}
.category-list li a {
	font-size: 14px;
	text-transform: uppercase;
	text-decoration: none;
	font-weight: 700;
	line-height: 1.5;
	border-radius: 6px;
	padding: 9px 14px;
	min-width: 80px;
	text-align: center;
	display: inline-block;
	transition: all 0.3s ease-in-out;
}


.category-list li:not(:first-child) a {
	background-color: #68D8AA;
	color: #03373B;
}

.category-list li:first-child a:hover {
	background-color: #D3593D;
}

.category-list li:first-child a:focus {
	background-color: #D3593D;
}

.category-list li:first-child a {
	color: #FFFBE9;
	background-color: #EA6344;
}

.category-list li:not(:first-child) a:hover {
	background-color: #5EC299;
}

.category-list li:not(:first-child) a:focus {
	background-color: #53AD88;
}

.rkpc-post__link {
	display: flex;
	align-items: center;
	gap: 5px;
	color: #04494F;
	font-size: 16px;
	line-height: 1.5;
	text-decoration: none;
	font-weight: 700;
}

.rkpc-post__link img {
	filter: brightness(0) saturate(100%) invert(20%) sepia(31%) saturate(1799%) hue-rotate(143deg) brightness(99%) contrast(97%);
}

.rkpc-post__title {
	font-size: 18px;
	font-weight: 700;
	line-height: 1.5;
	color: #04494F;
	text-decoration: none;
	letter-spacing: -0.02em;
}

.rkpc-post__date {
	color: #747474;
	font-weight: 400;
	font-size: 14px;
	line-height: 1.5;
	text-transform: uppercase;
	display: block;
	margin-bottom: 14px;
}

.latest-news__grid {
	display: grid;
	grid-template-columns: 1fr 0.71fr;
	gap: 25px;
}



.rkpc-post__row {
	display: grid;
	grid-template-columns: 1fr 0.95fr;
	gap: 25px;
	align-items: center;
}

.rkpc-post__links {
	display: flex;
	flex-direction: column;
	height: 100%;
}

.rkpc-post__links a:last-child {
	margin-top: auto;
}

.rkpc-post__links a {
	transition: all 0.3s ease-in-out;
}

.rkpc-post__links a:hover {
	color: #9A9A9A;
}


.rkpc-post__links a:hover img {
	filter: brightness(0) saturate(100%) invert(69%) sepia(0%) saturate(262%) hue-rotate(140deg) brightness(90%) contrast(88%);
}

.rkpc-post__image {
	position: relative;
	border-radius: 20px;
	overflow: hidden;
	min-height: 339px;
}

.rkpc-post__image img {
	width: 100%;
	height: 100%;
	border-radius: 20px;
	object-fit: cover;
	transition: all 0.3s ease-in-out;
	position: absolute;
	top: 0;
	left: 0;
}

.rkpc-post__image:hover img {
	transform: scale(1.1);
}



.rkpc-post__content {
	display: flex;
	flex-direction: column;
	height: 100%;
	padding: 32px 0 47px 0;
}

.latest-news__bottom {
	display: none;
}

.latest-news__bottom {
	padding: 43px 0 0 0;
	text-align: center;
}

@media (min-width: 992px) {
	.latest-news__grid article:first-child .rkpc-post__image {
		min-height: 527px;
	}

	.latest-news__grid article:first-child .rkpc-post__content {
		padding: 0 0 0 23px;
	}

	.latest-news__grid article:first-child .rkpc-post__row {
		gap: 23px;
	}

	.latest-news__grid article:first-child .rkpc-post__links {
		display: flex;
		align-items: flex-end;
		flex-direction: row;
		justify-content: space-between;
	}
	.latest-news__grid article:first-child .rkpc-post__title {
		font-size: 32px;
		line-height: 1.3;
	}

	.latest-news__grid article:first-child .rkpc-post__links a:last-child {
		margin: 0;
		padding-right: 26px;
	}
	.latest-news__grid article:first-child {
		grid-row: 2 span;
	}
	.latest-news__grid article:first-child .rkpc-post__row {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 992px) {
	.latest-news__grid {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 781px) {
	.rkpc-post__row {
		grid-template-columns: 1fr;
		gap: 20px;
	}
	.latest-news__top a {
		display: none;
	}
	.latest-news {
		padding: 46px 0;
	}
	.latest-news__top {
		padding-bottom: 24px;
	}
	.rkpc-post__image {
		min-height: auto;
		height: 220px;
	}
	.rkpc-post__content {
		padding: 0 21px;
	}
	.category-list li a {
		padding: 8px 14px;
	}
	.rkpc-post__links {
		gap: 20px;
	}
	.latest-news__grid {
		gap: 52px;
	}
	.latest-news__bottom {
		display: block;
	}
}

/* ---------------------------------------
			Text Image Columns
--------------------------------------- */

.text-image-columns {
	padding: 118px 0 110px 0;
}

.text-image-columns__row {
	display: flex;
	gap: 10px;
	align-items: center;
}

.text-image-columns__row > div {

}

.content-column__image {
	flex: 1 1 1.5%;
}

.content-column {
	flex: 1 1 5%;
}

.content-column__image img {
	width: 100%;
	object-fit: contain;
	height: auto;
	border-radius: 20px;
}

.content-column h2 {
	color: #03373B;
	letter-spacing: -0.02em;
	margin-bottom: 1.5rem;
}

.content-column {
	color: #04494F;
}

.content-column__text  {
	max-width: 716px;
	padding-bottom: 35px;
}

.content-column__text a {
	color: var(--accent-color);
}

.content-column__text h2 {
	font-weight: 500;
}

.content-column__text ul {
	padding-left: 9px;
	list-style: none;
	margin-top: 0;
	padding-top: 20px;
}

.content-column__text ul li {
	position: relative;
	padding-left: 24px;
}

.content-column__text ul li:not(:last-child) {
	margin-bottom: 15px;
}

.content-column__text ul li:before {
	position: absolute;
	top: 50%;
	transform: translate(0, -50%);
	left: 0;
	content: '';
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background-color: #68D8AA;
}


.content-column__text ul li a {
	color: #04494F;
	text-decoration: none;
	font-weight: 700;
	letter-spacing: -0.02em;
}

.content-column__text p {
	font-size: 18px;
	line-height: 1.5;
	font-weight: 500;
}

.content-column__text ul li a:hover {
	opacity: 0.8;
}

.content-column__links {
	display: flex;
	align-items: center;
	gap: 27px;
}

.image-text-columns {
	padding: 81px 0 74px 0;
}

.image-text-columns .content-column__text {
	margin-left: auto;
	max-width: 92%;
}

.image-text-columns .content-column__links {
	margin-left: auto;
	max-width: 92%;
}

@media (max-width: 992px) {
	.text-image-columns__row {
		flex-direction: column;
	}
	.image-text-columns .text-image-columns__row {
		flex-direction: column-reverse;
	}
	.image-text-columns .content-column__text {
		margin-left: 0;
		max-width: 100%;
	}

	.image-text-columns .content-column__links {
		margin-left: 0;
		max-width: 100%;
	}
	.content-column__text {
		max-width: 100%;
	}
	.text-image-columns__row {
		gap: 35px;
	}
}

@media (max-width: 781px) {
	.content-column__text p {
		font-size: 16px;
	}
	.text-image-columns {
		padding: 50px 0;
	}
	.content-column__text ul {
		padding-top: 6px;
	}

	.content-column__links a {
		flex: 1 1 5%;
		padding: 12px 5px;
		min-width: auto;
	}

	.content-column__links a:first-child {
		max-width: 141px;
	}

	.no-button a {
		max-width: 100% !important;
	}

	.content-column__links {
		gap: 10px;
	}
	.text-image-columns__row {
		gap: 46px;
	}

	.content-column__image img {
		min-height: 348px;
		object-fit: cover;
	}
}


/* ---------------------------------------
	Icons
--------------------------------------- */

.icons {
	padding: 80px 0;
}

.icons__title {
	font-weight: 700;
	margin-bottom: 16px;
	text-align: center;
	letter-spacing: -0.02em;
	color: #04494F;
}

.icons__subtitle {
	color: #233038;
	font-size: 18px;
	font-weight: 500;
	line-height: 1.5;
	text-align: center;
	margin-bottom: 0;
}

.icons-list {
	display: flex;
	gap: 25px 190px;
	padding-top: 47px;
	justify-content: center;
	flex-wrap: wrap;
}

.icons-col__text {

}

.icons-col {
	display: flex;
	align-items: center;
	gap: 40px;
}

.icons-col__text-title {
	font-size: 24px;
	line-height: 1.4;
	color: #04494F;
	font-weight: 700;
}

.icons-list-big .icons-col__text-title {

}

.icons-list-big {
	overflow: hidden;
}

.icons-col__text-subtitle {
	color: #233038;
	font-size: 16px;
	line-height: 1;
}

.icons-col__image {
	width: 120px;
	height: 120px;
	border-radius: 10px;
}

.icons-col__image img {
	object-fit: cover;
	height: 100%;
	width: 100%;
	border-radius: 10px;
}

.icons-list-big .icons-col__text {
	display: flex;
	flex-direction: column;
	gap: 10px;
	max-width: 210px;
}

.icons-list-big  .icons-col {
	gap: 20px;

}

.icons-list-big {
	justify-content: space-between;
	gap: 50px 15px;
	padding-top: 66px;
}

.about-us-right-column .link-arrow {
	color: #04494F;
}

.about-us-right-column .link-arrow img {
	filter: brightness(0) saturate(100%) invert(24%) sepia(11%) saturate(3739%) hue-rotate(138deg) brightness(88%) contrast(97%);
}

@media (max-width: 781px) {
	.icons-col__text-title {

	}
	.icons-col {
		gap: 15px;
	}
	.icons-col__image {
		width: 95px;
		height: 100px;
		border-radius: 10px;
	}
	.icons {
		padding: 49px 0;
	}
	.icons__title {
		padding: 0 15px;
	}
	.icons-list {
		padding-top: 36px;
		max-width: 263px;
		margin: 0 auto;
		gap: 80px;
		justify-content: flex-start;
	}
	.icons-list-big .icons-col__text-title {
		font-size: 20px;
		line-height: 1.4;
	}

	.icons-list-big {
		max-width: 100%;
	}
	.icons-list-big .icons-col__image {
		width: 100%;
		max-width: 118px;
		height: 122px;
	}
	.icons-col__image img {

	}
}


/* ---------------------------------------
	Numbers
--------------------------------------- */

.numbers {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 15px;
	padding: 82px 0;
}

.number-item {
	display: flex;
	flex-direction: column;
	gap: 0;
	text-align: center;
}


.number-item span {
	font-size: 72px;
	line-height: 1.2;
	color: #04494F;
	font-weight: 700;
}

.number-item p {
	color: #233038;
	margin-bottom: 0;
	font-weight: 500;
	font-size: 24px;
	line-height: 1.4;
}

.container-numbers {
	max-width: 1588px;
}

@media (max-width: 992px) {
	.number-item span {
		font-size: 50px;
		line-height: 1.2;
	}

	.number-item p {
		font-size: 20px;
		line-height: 1.4;
	}
}

@media (max-width: 781px) {
	.number-item span {
		font-size: 58px;
		line-height: 1.2;
	}

	.number-item p {
		font-size: 20px;
		line-height: 1.4;
	}

	.numbers {
		flex-direction: column;
		justify-content: center;
		align-items: center;
		padding: 47px 0;
		gap: 60px;
	}
}


/* ---------------------------------------
	Footer
--------------------------------------- */

.footer {
	position: relative;
}

.footer .container {
	max-width: 1825px;
}

.footer__bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.footer__bg-home {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.footer .container {
	z-index: 5;
	position: relative;
}

.footer__row {
	padding: 80px 0 32px 0;
	display: flex;
	justify-content: space-between;
	gap: 15px;
	z-index: 5;
	position: relative;
}

.footer__bottom {
	z-index: 5;
	position: relative;
}

.footer__menus {
	display: flex;
	gap: 150px;
	padding-right: 6rem;
}

.footer-menu-item {

}

.footer-title {
	color: #F4F1E8;
	font-family: var(--accent-font);
	font-size: 16px;
	line-height: 1.5;
	font-weight: 600;
	margin-bottom: 23px;
	display: block;
}

.footer-menu  {
	display: flex;
	flex-direction: column;
	list-style: none;
	margin: 0;
	padding: 0;
	gap: 12px;
}

.footer-menu li {

}

.footer-menu li a {
	color: #F4F1E8;
	font-family: var(--accent-font);
	font-size: 14px;
	line-height: 1.5;
	font-weight: 400;
	transition: all 0.3s ease-in-out;
}

.footer-menu li a:hover {
	color: var(--accent-color);
}

.kodas {
	color: #F4F1E8;
}

.kodas p {
	color: #F4F1E8;
	font-size: 16px;
	line-height: 1.5;
	font-weight: 500;
}

.kodas p a {
	color: #F4F1E8;
	font-size: 16px;
	line-height: 1.5;
	font-weight: 500;
	text-decoration: none;
}

.kodas p a:hover {
	color: var(--accent-color);
}

.day-time {

}

.day-time p {
	color: #FFFBE9;
	font-size: 16px;
	line-height: 1.5;
	font-weight: 700;
	margin-bottom: 10px;
	display: inline-block;
}

.day-time ul {
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 7px;
	padding-left: 0;
	margin-top: 0;
}

.day-time li {
	display: flex;
	align-items: center;
	gap: 5px;
}

.day-time li span {
	color: #F4F1E8;
	font-size: 16px;
	line-height: 1.5;
	font-weight: 500;
}

.day-time li span:first-child {
	min-width: 45px;
}

.day-time li span:not(:first-child) {

}

.footer__logo {
	margin-bottom: 26px;
	display: flex;
	align-items: center;
	gap: 15px;
}

.footer__block .kodas {
	margin-bottom: 32px;
}

.footer__bottom {
	display: flex;
	justify-content: space-between;
	align-items: center;
	border-top: 1px solid white;
	padding: 31px 0;
}

.copyright {

}

.copyright p {
	color: #FFFFFF;
	font-size: 14px;
	font-weight: 500;
	line-height: 1.5;
}

.privacy-menu {
	display: flex;
	list-style: none;
	margin: 0;
	padding: 0;
	flex-wrap: wrap;
	gap: 26px;
}

.privacy-menu li {

}

.privacy-menu li a {
	color: #F4F1E8;
	font-size: 14px;
	line-height: 1.5;
	font-weight: 500;
	text-decoration: underline;
	transition: all 0.3s ease-in-out;
}

.privacy-menu li a:hover {
	color: var(--accent-color);
}

.privacy-menu .current_page_item > a {
	color: var(--accent-color);
}

.footer-menu .current_page_item > a {
	color: var(--accent-color);
}

.footer-top {
	display: flex;
	align-items: center;
	gap: 15px;
}

.footer-top .container {
	padding-right: 0;
}

.footer-top > div {
	flex: 1 1 5%;
}

.footer-top-container {
	max-width: 1712px !important;
	padding-right: 0;
}

.footer-top__image img {
	height: auto;
	object-fit: contain;
	width: 100%;
	top: 2px;
	position: relative;
}

.footer-top__text {
	padding: 25px 0;
}

.footer-top__text-block {
	max-width: 800px;
	margin-bottom: 33px;
}

.footer-top__text h2 {
	color: #F4F1E8;
	font-weight: 500;
	margin-bottom: 20px;
}

.footer-top__text p {
	color: #F4F1E8;
	font-weight: 500;
	font-size: 18px;
	line-height: 1.5;
}

.footer-top__text p:not(:last-child) {
	margin-bottom: 20px;
}

.footer {
	background-color: #04494F;
}

@media (max-width: 1240px) {
	.footer__menus {
		gap: 35px;
		padding-right: 0;
	}
}

@media (max-width: 992px) {
	.footer__row {
		flex-wrap: wrap;
	}
	.footer__menus {
		gap: 15px;
		padding-right: 0;
		flex-wrap: wrap;
	}
	.footer__bottom {
		flex-wrap: wrap;
	}
	.footer__row {
		padding: 47px 0 42px 0;
	}
	.footer-top {
		flex-direction: column;
	}
	.footer-top-container {
		padding: 0;
	}
}


@media (max-width: 781px) {
	.footer__bottom {
		flex-direction: column-reverse;
		align-items: flex-start;
	}
	.footer__menus {
		flex-direction: column;
		gap: 50px;
	}
	.footer__block .day-time {
		margin-bottom: 50px;
	}
	.privacy-menu {
		flex-direction: column;
		gap: 13px;
	}
	.copyright {
		padding: 30px 0 15px 0;
	}
	.footer-top__text h2 {
		font-size: 36px;
		line-height: 1.2;
	}
	.footer-top__text {
		padding: 47px 15px 30px 15px;
	}
	.footer-top__text .button {
		width: 100%;
	}
}

/* ---------------------------------------
	Title Page
--------------------------------------- */

.title-page__banner {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	min-height: 450px;
}

.title-page__image {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.title-page__banner .container {
	z-index: 5;
	position: relative;
}

.title-page__banner h1 {
	text-shadow: 0px 4px 10px #04494F;

	letter-spacing: -0.02em;
	font-size: 56px;
	line-height: 1.2;
	font-weight: 700;
	color: #FFFBE9;
	padding: 15px 15px 7rem 15px;
}

.my-breadcrumbs {
	background-color: #F4F1E8;
	padding: 12px 0;
}
.my-breadcrumbs nav a {
	font-size: 16px;
	font-weight: 500;
	line-height: 1.5;
	color: #B1C8C1;
	text-decoration: none;
	transition: all 0.3s ease-in-out;
}

.my-breadcrumbs nav a:hover {
	color: #04494F;
}

.my-breadcrumbs nav span {
	color: #04494F;
	font-size: 16px;
	line-height: 1.5;
	font-weight: 500;
}

.my-breadcrumbs nav  .separator {
	color: #B1C8C1;
}

@media (max-width: 992px) {
	.title-page__banner h1 {
		padding-bottom: 0;
		font-size: 50px;
	}
}

@media (max-width: 781px) {
	.title-page__banner h1 {
		padding-bottom: 0;
		font-size: 40px;
		line-height: 1.2;
	}
	.title-page__banner {
		min-height: 376px;
	}
}

@media (max-width: 350px) {
	.title-page__banner h1 {
		font-size: 34px;
	}
}

/* ---------------------------------------
	Services Section
--------------------------------------- */

button {
	font-family: var(--font);
}

.services-section {
	padding: 80px 0;
}

.cat-service-button {
	width: 100%;
	background-color: #FFFFFD;
	border: 1px solid #FFFFFD;
	color: #04494F;
	font-size: 40px;
	line-height: 1.2;
	font-weight: 700;
	position: relative;
	display: flex;
	align-items: center;
	text-align: left;
	gap: 18px;
	padding: 10px 85px 10px 40px;
	border-radius: 18px;
	font-family: var(--font);
	min-height: 80px;
	letter-spacing: -0.02em;
	cursor: pointer;
	transition: all 0.3s ease-in-out;
}

.cat-service-button:hover {
	background-color: #04494F;
	border-color: #04494F;
	color: #FFFFFD;
}

.cat-service-button:hover .arrow-icon {
	filter: brightness(0) saturate(100%) invert(100%) sepia(88%) saturate(199%) hue-rotate(144deg) brightness(106%) contrast(102%);
}

.cat-service-button:hover .cat-service-button__image {
	filter: brightness(0) saturate(100%) invert(100%) sepia(88%) saturate(199%) hue-rotate(144deg) brightness(106%) contrast(102%);
}

.cat-service-button__image {
	max-width: 40px;
	object-fit: contain;
}

.arrow-icon {
	position: absolute;
	top: 50%;
	right: 0;
	transform: translate(-45px, -50%);
	transition: transform 0.3s ease-in-out;
}

.services-list-tab {

}


.services-list-tab ul {
	/*display: grid;*/
	/*grid-template-columns: 1fr 1fr 1fr 1fr;*/
	display: flex;
	flex-wrap: wrap;
	gap: 22px;
	list-style: none;
	padding: 40px 90px 15px 90px;
	margin: 0;
}

.services-list-tab ul > li {
	width: 100%;
	max-width: 366px;
}

.services-list-tab ul li .services-item__link {
	box-shadow: 0px 1px 36.5px 0px #18575B1A;
	background: #FFFFFD;
	border-radius: 20px;
	display: flex;
	justify-content: flex-start;
	align-items: center;
	color: #04494F;
	font-size: 22px;
	line-height: 1.4;
	font-weight: 700;
	text-decoration: none;
	min-height: 148px;
	padding: 15px 23px;
	gap: 20px;
	transition: all 0.3s ease-in-out;
	height: 100%;
}

.services-list-tab ul li .services-item__link:hover {
	background-color: #04494F;
	color: #FFFFFD;
}

.services-list-tab ul li .services-item__link img {
	width: 100px;
	height: 100px;
	object-fit: cover;
}

.category-services .active .arrow-icon  {
	transform: translate(-45px, -50%) rotate(180deg);
}

.category-services:not(:last-child) {
	margin-bottom: 25px;
}

.services-columns > .wp-block-group__inner-container {
	/*display: flex;*/
	/*flex-direction: column;*/
	/*gap: 25px;*/
}

@media (max-width: 992px) {
	.services-list-tab ul {
		gap: 15px;
		padding: 15px 15px 0 15px;
	}
	.services-list-tab ul > li {
		width: 100%;
		max-width: 100%;
		flex: 1 1 31%;
	}

}

@media (max-width: 781px) {
	.services-list-tab ul {
		gap: 15px;
		padding: 15px 15px 0 15px;
	}
	.services-list-tab ul > li {
		width: 100%;
		max-width: 100%;
		flex: 1 1 45%;
	}
}

/* ---------------------------------------
	FAQ
--------------------------------------- */

.faq-section {
	background-color: #FFFFFD;
	padding: 77px 0;
}

.faq-section__row {
	display: flex;
	gap: 30px;
}

.faq-section__content {
	flex: 1 1 2%;
}

.faq-section .faq-items {
	flex: 1 1 37%;
}

.faq-section__title {
	font-weight: 700;
	letter-spacing: -0.02em;
	margin-bottom: 23px;
}

.faq-item {
	background: #F4F1E8;
	border-radius: 18px;
	padding: 25px;
	cursor: pointer;
}

.faq-item__button {
	position: relative;
	color: #04494F;
	font-size: 18px;
	line-height: 1.5;
	padding: 0;
	font-weight: 700;
	background-color: transparent;
	width: 100%;
	border: none;
	text-align: left;
	letter-spacing: -0.02em;
	cursor: pointer;
}

.faq-item__button img {
	position: absolute;
	top: 0;
	right: 0;
	transform: translate(-10px, 5px) rotate(180deg);
	transition: all 0.3s ease-in-out;
}

.faq-item__content {
	color: #233038;
	font-size: 16px;
	line-height: 1.5;
	font-weight: 500;
	padding-top: 15px;
}

.faq-item__content p {
	color: #233038;
	font-size: 16px;
	line-height: 1.5;
	font-weight: 500;
}

.faq-item__content a {
	color: #233038;
	font-weight: 700;
}


.faq-section__text {
	margin-bottom: 33px;
}

.faq-section__text p {
	color: #233038;
	font-size: 18px;
	font-weight: 500;
	line-height: 1.5;
}

.faq-items {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.faq-item-active .faq-item__button img {
	transform: translate(-10px, 5px);
}


.faq-item:hover .faq-item__button img {
	transform: translate(-10px, 5px) rotate(360deg);
}

@media (max-width: 992px) {
	.cat-service-button {
		min-height: 66px;
		padding: 10px 18px;
		font-size: 24px;
		line-height: 1.4;
	}

	.category-services .active .arrow-icon {
		transform: translate(-25px, -50%) rotate(180deg);

	}

	.arrow-icon {
		transform: translate(-25px, -50%);
		max-width: 22px;
	}
	.services-list-tab ul li a img {
		width: 80px;
		height: 80px;
	}
	.services-list-tab ul li .services-item__link {
		font-size: 20px;
		line-height: 1.4;
		min-height: 116px;
		gap: 10px;
	}
	.category-services:not(:last-child) {
		margin-bottom: 15px;
	}
}

@media (max-width: 781px) {
	.faq-section__row {
		flex-direction: column;
		gap: 44px;
	}
	.services-section {
		padding: 62px 0;
	}
	.cat-service-button__image {
		max-width: 28px;
	}
	.cat-service-button {
		align-items: center;
	}
	.faq-section {
		padding: 65px 0;
	}
	.faq-section__text {
		margin-bottom: 20px;
	}
}

@media (max-width: 350px) {
	.services-list-tab ul li .services-item__link {
		font-size: 14px;
	}
}

/* ---------------------------------------
	Team
--------------------------------------- */


.section-team {
	padding: 80px 0;
}

.section-team .container {
	max-width: 1710px;
}

.team-item {
	box-shadow: 0px 1px 36.5px 0px #18575B1A;
	border-radius: 20px;
	background-color: #FFFFFD;
	padding: 32px 8px 10px 32px;
	display: flex;
	max-width: 390px !important;
	gap: 15px;
}

.team-item__info {
	flex: 1 1 45%;
	padding-bottom: 20px;
}

.team-item__image {
	flex: 1 1 5%;
	align-content: flex-end;
	text-align: right;
}

.team-item__image img {
	width: 92px;
	height: 92px;
	object-fit: cover;
	border-radius: 50%;
}

.team-item__title {
	color: #04494F;
	text-transform: capitalize;
	font-weight: 700;
	font-size: 20px;
	line-height: 1.4;
	display: block;
	margin-bottom: 20px;
	letter-spacing: -0.02em;
}

.team-item__content {
	color: #233038;
	font-size: 16px;
	line-height: 1.5;
	font-weight: 500;
	margin-bottom: 3px;
}

.team-item__content p {
	color: #233038;
	font-size: 16px;
	line-height: 1.5;
	font-weight: 500;
}

.team-item__link {
	color: #233038;
	font-size: 16px;
	line-height: 1.5;
	font-weight: 500;
	text-decoration: none;
	transition: all 0.3s ease-in-out;
}

.team-item__link:hover {
	color: var(--accent-color);
}

.team-list-tab ul {
	padding-right: 20px;
	padding-left: 20px;
}

.team-item__link:not(:last-child) {
	margin-bottom: 10px;
	display: block;
}

@media (max-width: 992px) {

}

@media (max-width: 781px) {
	.team-item {
		max-width: 100% !important;
		padding: 17px 18px 10px 18px;;
	}
	.section-team {
		padding: 64px 0;
	}
	.cat-profession-button {
		gap: 6px;
		padding-right: 50px;
	}
	.team-item__image img {
		width: 72px;
		height: 72px;
	}
	.team-item__title {
		font-size: 20px;
		line-height: 1.4;
	}
	.team-list-tab ul {
		padding-right: 10px;
		padding-left: 10px;
	}
	.team-item__info {
		padding-bottom: 5px;
	}
}

/* ---------------------------------------
	Blog
--------------------------------------- */


.posts-list {
	background: #FFFFFD;
	padding: 80px 0;
}

.posts-list__excerpt {
	margin-bottom: 60px;
}

.posts-list__excerpt p {
	font-weight: 700;

	display: block;
	font-size: 48px;
	color: #03373B;
	line-height: 1.2;
	letter-spacing: -0.02em;
}

.posts-list .container {
	max-width: 1712px;
}

.posts-list__grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 45px 25px;
}

.rkpc-post__row {

}

.posts-list__main {
	padding-bottom: 63px;
}

.pagination {
	padding: 60px 0 0 0;
}

.pagination ul {
	display: flex;
	justify-content: center;
	align-items: center;
	list-style: none;
	padding: 0;
	margin: 0;
	gap: 15px;
	flex-wrap: wrap;
}

.pagination li span {
	color: #04494F;
}

.pagination li a {
	text-decoration: none;
	color: #9A9A9A;
}

.pagination li a:hover {
	color: #04494F;
}

.pagination ul .prev img {
	filter: brightness(0) saturate(100%) invert(22%) sepia(16%) saturate(2833%) hue-rotate(140deg) brightness(93%) contrast(97%);
}

.post-content {
	background: #FFFFFD;
	padding: 103px 0 78px 0;
}

.post-content .container {
	max-width: 1150px;
}

.post-content__title {
	font-weight: 700;
	font-size: 40px;
	line-height: 1.2;
	color: #04494F;
	margin-bottom: 20px;
	letter-spacing: -0.02em;
}

.title-page-date {
	text-shadow: 0px 4px 10px #04494F;
	letter-spacing: -0.02em;
	font-size: 24px;
	line-height: 1.4;
	font-weight: 700;
	color: #FFFBE9;
}

.title-page-post h1 {
	padding-bottom: 25px;
}

.post-content__block p {
	letter-spacing: 0.015em;
}

.post-content__block a {
	color: var(--accent-color);
	font-weight: 600;
}

.post-content__block p:not(:last-child) {
	margin-bottom: 1rem;
}

.post-content__block {
	color: #233038;
}

.post-content__block h5 {
	letter-spacing: -0.02em;
}

.post-content__block h6 {
	letter-spacing: -0.02em;
}

.post-content__block .wp-element-caption {
	color: #04494F;
	font-size: 14px;
	line-height: 1.5;
	font-weight: 500;
	padding-left: 8px;
	border-left: 2px solid #04494F;
	margin-top: 17px;
}


.post-content__block blockquote {
	border-left: 2px solid #04494F;
	padding-left: 20px;
	margin: 20px 0;
}

.post-content__block blockquote p {
	font-weight: 500;
	font-size: 20px;
	line-height: 1.4;
	color: #04494F;
	letter-spacing: 0.0em;
}

.other-news {
	background-color: #F4F1E8;
	padding: 83px 0;
}

.other-news .container {
	max-width: 1710px;
}

.other-news__top {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 10px;
	padding-bottom: 50px;
}

.other-news__top h2 {
	font-weight: 700;
	color: #03373B;
	margin-bottom: 0;
	letter-spacing: -0.02em;
}

.other-news .rkpc-post__row {
	grid-template-columns: 1fr;
	gap: 20px;
}

.other-news__slider .slick-list {
	margin: 0 -15px;
}

.other-news__slider .slick-slide {
	margin: 0 15px;
}

.other-news__slider .rkpc-post__image {
	min-height: 311px;
}

.other-news__slider .rkpc-post__content {
	padding: 12px 0;
}

.other-news__grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 30px;
}

.other-news__link {
	display: none;
}

@media (min-width: 992px) {
	.posts-list__main article .rkpc-post__image {
		min-height: 527px;
	}

	.posts-list__main article .rkpc-post__content {
		padding: 0 0 0 23px;
	}

	.posts-list__main article .rkpc-post__row {
		gap: 23px;
	}

	.posts-list__main article .rkpc-post__links {
		display: flex;
		align-items: flex-end;
		flex-direction: row;
		justify-content: space-between;
	}
	.posts-list__main article .rkpc-post__title {
		font-size: 32px;
		line-height: 1.3;
	}

	.posts-list__main article .rkpc-post__links a:last-child {
		margin: 0;
		padding-right: 26px;
	}
	.posts-list__main article {
		grid-row: 2 span;
	}
	.posts-list__main article .rkpc-post__row {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 992px) {
	.posts-list__grid {
		grid-template-columns: 1fr;
	}
	.posts-list__excerpt p {
		font-size: 40px;
		line-height: 1.2;
	}
	.posts-list__excerpt {
		margin-bottom: 25px;
	}
	.other-news__top {
		flex-wrap: wrap;
	}
}
@media (max-width: 781px) {
	.posts-list {
		padding: 47px 0;
	}
	.posts-list__main {
		padding-bottom: 49px;
	}
	.title-page-date {
		font-size: 20px;
		line-height: 1.4;
	}
	.title-page-post h1 {
		font-size: 32px;
		padding-bottom: 0;
		line-height: 1.3;
	}
	.post-content__title {
		font-size: 32px;
		line-height: 1.2;
		margin-bottom: 25px;
	}
	.post-content {
		padding: 24px 0 78px 0;
	}
	.hide-sm {
		display: none !important;
	}
	.other-news__top .link-arrow {
		display: none;
	}
	.other-news__grid .rkpc-post__image {
		min-height: 220px;
	}
	.other-news {
		padding: 48px 0;
	}
	.other-news__grid {
		gap: 47px;
	}
	.other-news__link {
		display: flex;
		justify-content: center;
		align-items: center;
		text-align: center;
		padding: 45px 0;
	}

	.other-news__link a {
		width: 100%;
	}
}

/* ---------------------------------------
	Renovacijų projektai
--------------------------------------- */

.renovacija-projects {
	background-color: #FFFFFD;
	padding: 81px 0;
}

.renovacija-projects__excerpt {

}

.renovacija-projects__excerpt {
	color: #03373B;
	font-size: 48px;
	line-height: 1.2;
	font-weight: 700;
	letter-spacing: -0.02em;
	margin-bottom: 58px;
}

.renovacija-projects__grid {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	gap: 41px 23px;
}

.renovacija-projects .container {
	max-width: 1716px;
}

.rkpc-renovacija__image {
	border-radius: 20px;
	height: 311px;
	overflow: hidden;
	position: relative;
	margin-bottom: 40px;
}

.rkpc-renovacija__image img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: all 0.3s ease-in-out;
	border-radius: 20px;
}

.rkpc-renovacija__title {
	text-decoration: none;
	color: #04494F;
	font-size: 18px;
	line-height: 1.5;
	font-weight: 700;
	display: block;
	letter-spacing: -0.02em;
	transition: all 0.3s ease-in-out;
	margin-bottom: 30px;
}

.rkpc-renovacija__title:hover {
	color: var(--accent-color);
}

.rkpc-renovacija__link {
	color: #04494F;
	font-size: 16px;
	line-height: 1.5;
	font-weight: 700;
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	gap: 5px;
}

.rkpc-renovacija__link:hover {
	color: var(--accent-color);
}

.rkpc-renovacija__link:hover img {
	filter: brightness(0) saturate(100%) invert(48%) sepia(22%) saturate(6429%) hue-rotate(339deg) brightness(104%) contrast(83%);
}

.igyvendinta-list {
	position: relative;
	padding: 0;
	width: 100%;
	margin: 0;
}

.igyvendinta-list li {
	position: relative;
	padding: 0;
	margin: 0;
	height: 22px;
	border-radius: 8px;
	background-color: #E6EDED;
	display: block;
	width: 100%;
	overflow: hidden;
}

.igyvendinta-list li:after {
	background-color: #04494F;
	position: absolute;
	left: 0;
	top: 0;
	height: 100%;
	content: '';

	width: var(--percent, 0); /* default 0 if --percent not set */
	transition: width 0.5s ease;
}



.igyvendinta-list li a {
	text-align: center;
	color: #EA6344;
	font-size: 14px;
	line-height: 1.5;
	font-weight: 700;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 50%;
	right: 50%;
	z-index: 5;
	transform: translate(50%, -50%);
	text-decoration: none;
	text-transform: uppercase;
	transition: all 0.3s ease-in-out;
}

.igyvendinta-list li:hover {

}

.rkpc-renovacija__implement {
	display: flex;
	align-items: center;
	gap: 5px;
	margin-bottom: 24px;
}

.rkpc-renovacija__implement span {
	color: #747474;
	font-size: 16px;
	line-height: 1.5;
	font-weight: 500;
	text-transform: uppercase;
	display: block;
}


.rkpc-renovacija__image:hover img {
	transform: scale(1.1);
}

.post-block-text {
	background-color: #04494F;
}

@media (max-width: 992px) {
	.renovacija-projects__grid {

		grid-template-columns: 1fr 1fr;
		gap: 23px;
	}
}

@media (max-width: 781px) {
	.renovacija-projects__excerpt {
		font-size: 40px;
		line-height: 1.2;
		margin-bottom: 20px;
	}
	.renovacija-projects {
		padding: 48px 0;
	}

	.renovacija-projects__grid {

		grid-template-columns: 1fr;
		gap: 33px;
	}
	.rkpc-renovacija__title {
		margin-bottom: 0;
	}
}

/* ---------------------------------------
	Banners
--------------------------------------- */

.banner-item-slider {
	position: relative;
	height: 550px;
	display: flex !important;
	align-items: center;
	justify-content: center;
	padding: 15px;
	padding-bottom: 108px;

	text-align: center;
}

.banner-item-slider__image {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.banner-item-slider .container {
	z-index: 5;
	position: relative;
	display: flex;
	flex-direction: column;
	gap: 15px;
}

.banner-item-slider__title {
	font-size: 56px;
	line-height: 1.2;
	font-weight: 700;
	text-shadow: 0px 4px 10px #04494F;
	margin-bottom: 0;
	text-align: center;
	color: #FFFBE9;
	letter-spacing: -0.02em;
}

.banner-item-slider__text {
	text-shadow: 0px 4px 10px #04494F;
	font-size: 20px;
	line-height: 1.4;
	font-weight: 700;
	text-align: center;
	color: #F4F1E8;
	margin-bottom: 0;
	max-width: 803px;
	margin: 0 auto;
	letter-spacing: -0.02em;
}

.banners .slick-dots {
	position: absolute;
	bottom: 9%;
	left: 50%;
	transform: translate(-50%, -100%);
	z-index: 5;
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 10px;
	width: 100%;
	max-width: 1024px;
	margin: 0 auto;
	padding: 0 15px;
}

.banners .slick-dots li {
	flex: 1 1 5%;
	width: 100%;
}


.banners .slick-dots li button {
	height: 4px;
	background-color: #EA6344;
	width: 100%;
	opacity: 40%;
	border-radius: 0;
	cursor: pointer;
	border: none;
}

.banners .slick-dots li button:hover {
	outline: none;
}

.banners .slick-dots li button:focus {
	outline: none;
}

.banners .slick-dots .slick-active button {

	opacity: 100%;
}

.rkpc-map iframe {
	width: 100%;
	display: flex;
}

.about-us-columns .text-image-columns {
	padding-top: 82px;
	padding-bottom: 71px;
}

.about-us-columns .content-column__text {
	max-width: 770px;
}

@media (max-width: 992px) {

	.banner-item-slider {
		padding-bottom: 15px;
	}

	.banner-item-slider__title {
		font-size: 40px;
		line-height: 1.2;
	}
	.banner-item-slider__text {
		font-size: 16px;
		line-height: 1.5;
	}
}

@media (max-width: 781px) {
	.banner-item-slider {
		height: 376px;
		padding: 15px 0;
	}
	.banners .slick-dots {
		bottom: 5%;
	}
	.about-us-columns .text-image-columns {
		padding-top: 47px;
		padding-bottom: 40px;
	}
	.about-us-columns .text-image-columns__row {
		gap: 10px;
	}
}

/* ---------------------------------------
	Contact Text
--------------------------------------- */

.contact-text {
	padding: 82px 0;
	background-color: #EEEADF;
}

.contact-text__block {

}

.contact-text__block h2 {
	font-weight: 700;
	letter-spacing: -0.02em;
	margin-bottom: 106px;
}

.contact-text__row {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.contact-text__row > div {
	flex: 1 1 5%;
}

.contact-text__row > div:last-child {
	flex: 1 1 21%;
}

.contacts__link {

}

.contacts__link p {

}

.contacts__link img {
	margin-bottom: 16px;
}

.contacts__link p span {
	color: #04494F;
	font-size: 24px;
	line-height: 1.4;
	font-weight: 700;
	display: block;
	letter-spacing: -0.02em;
	margin-bottom: 7px;
}

.contacts__link p a {
	color: #233038;
	font-size: 16px;
	line-height: 1.5;
	font-weight: 500;
	text-decoration: none;
}

.contacts__link p a:hover {
	color: var(--accent-color);
}

.contacts {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 15px;
	max-width: 80%;
}

.contact-text__iframe iframe {
	width: 100%;
	border-radius: 20px;
	height: 375px;
}

.contacts__link__address {

}

.contacts__link__address ul {
	padding: 0;
	margin: 0;
	list-style: none;
}

.contact-text__content p {
	color: #233038;
	font-size: 18px;
	line-height: 1.5;
	font-weight: 500;
}

.contact-text__content {
	padding-bottom: 80px;
}

.contacts__link__address > span {
	color: #04494F;
	font-size: 24px;
	line-height: 1.4;
	font-weight: 700;
	display: block;
	letter-spacing: -0.02em;
	margin-bottom: 7px;
}

.contacts__link__address li {
	display: flex;
	align-items: flex-start;
}

.contacts__link__address li span {
	color: #233038;
	font-size: 16px;
	line-height: 1.5;
	font-weight: 500;
	display: inline-block;
}

.contacts__link__address li span:first-child {
	min-width: 50px;
}

@media (max-width: 992px) {
	.contact-text__row {
		flex-direction: column;
	}
	.contacts {
		max-width: 100%;
	}
	.contact-text__block h2 {
		margin-bottom: 36px;
	}
}

@media (max-width: 781px) {
	.contact-text__content p {
		font-size: 16px;
		line-height: 1.5;
	}
	.contacts {
		grid-template-columns: 1fr;
		gap: 30px;
	}
	.contact-text {
		padding: 63px 0;
	}
	.contacts__link {
		display: grid;
		grid-template-columns: 32px 1fr;
		gap: 10px;
	}
	.contact-text__row {
		gap: 52px;
	}

	.contact-text__content p br {
		display: none;
	}
	.contact-text__content {
		padding-bottom: 20px;
	}
	.contact-text__iframe iframe {
		height: 400px;
	}
}

/* ---------------------------------------
	Requisites
--------------------------------------- */

.requisites {
	padding: 80px 0;
	background-color: #F4F1E8;
}

.requisites__title {
	font-weight: 700;
	letter-spacing: -0.02em;
	margin-bottom: 40px;
}

.requisites ul {
	display: block;
	columns: 3;
	list-style: none;
	padding: 0;
	margin: 0;
}

.requisites ul li {
	margin-bottom: 7px;
}

.requisites ul li span:first-child {
	min-width: 206px;
}

.requisites ul span {
	font-size: 18px;
	line-height: 1.5;
	color: #233038;
	display: inline-block;
	font-weight: 500;
}

@media (max-width: 1240px) {
	.requisites ul li span:first-child {
		min-width: auto;
	}
}

@media (max-width: 781px) {
	.requisites ul {
		columns: 1;
	}
	.requisites {
		padding: 46px 0;
	}
	.requisites__title {
		margin-bottom: 32px;
	}
	.requisites ul span {
		display: block;
	}
	.requisites ul span:last-child {
		font-size: 16px;
		line-height: 1.5;
	}
}

/* ---------------------------------------
	Contact Us
--------------------------------------- */

.contact-us-form  {
	padding: 80px 0;
}

.contact-us-form h2 {
	letter-spacing: -0.02em;
	margin-bottom: 24px;
}

.contact-us-form p {
	font-weight: 500;
	font-size: 18px;
	line-height: 1.5;
}

.contact-us-form form {
	max-width: 768px;
	margin: 0 auto;
	padding: 35px 0 0 0;
}

.contact-us-form form label .gfield_required {
	display: none !important;
}

.contact-us-form form .gform-body  {

}

.contact-us-form form .gform-body .gfield--type-email input {
	height: 48px !important;
}

.contact-us-form form .gform-body .gfield--type-email input {
	font-size: 16px;
	line-height: 1.5;
	font-weight: 500;
	color: black;
	transition: all 0.3s ease-in-out;
}

.contact-us-form form .gform-body .gfield--type-email input:focus {
	outline: none !important;
	box-shadow: none !important;
	border-color: var(--accent-color) !important;
}

.contact-us-form form .gform-body .gfield--type-email input:hover {

	border-color: var(--accent-color) !important;
}


.contact-us-form form .gform-body .gfield--type-email input::placeholder {
	color: #9A9A9A;
}


.contact-us-form form .gform-body .gfield--type-phone input {
	height: 48px !important;
}

.contact-us-form form .gform-body .gfield--type-phone input {
	font-size: 16px;
	line-height: 1.5;
	font-weight: 500;
	color: black;
	transition: all 0.3s ease-in-out;
}

.contact-us-form form .gform-body .gfield--type-phone input:focus {
	outline: none !important;
	box-shadow: none !important;
	border-color: var(--accent-color) !important;
}

.contact-us-form form .gform-body .gfield--type-phone input:hover {

	border-color: var(--accent-color) !important;
}


.contact-us-form form .gform-body .gfield--type-phone input::placeholder {
	color: #9A9A9A;
}

.contact-us-form form .gform-body .gfield--type-text input {
	height: 48px !important;
}

.contact-us-form form .gform-body .gfield--type-text input:focus {
	outline: none !important;
	box-shadow: none !important;
	border-color: var(--accent-color) !important;
}

.contact-us-form form .gform-body .gfield--type-text input:hover {

	border-color: var(--accent-color) !important;
}

.contact-us-form form .gform-body .gfield--type-text input {
	font-size: 16px;
	line-height: 1.5;
	font-weight: 500;
	color: black;
	transition: all 0.3s ease-in-out;
}

.contact-us-form .gfield--type-select select {
	height: 48px !important;
	font-size: 16px;
	line-height: 1.5;
	font-weight: 500;
	color: #9A9A9A ;
	transition: all 0.3s ease-in-out;
	display: flex;
	align-items: center;
}

.contact-us-form .gfield--type-select select:focus {
	outline: none !important;
	box-shadow: none !important;
	border-color: var(--accent-color) !important;
}

.contact-us-form .gfield--type-select select:hover {
	border-color: var(--accent-color) !important;
}

.contact-us-form .gfield--type-select select.has-value {
	color: black;
}

.contact-us-form form .gform-body .gfield--type-text input::placeholder {
	color: #9A9A9A;
}

.contact-us-form form .gform-body .gform_fields {
	row-gap: 26px !important;
}

.contact-us-form form .gform-body .gfield--type-textarea textarea {
	height: 180px !important;
	min-block-size: 180px !important;
}

.contact-us-form form .gform-body .gfield--type-textarea textarea {
	font-size: 16px;
	line-height: 1.5;
	font-weight: 500;
	color: black;
	transition: all 0.3s ease-in-out;
}

.contact-us-form form .gform-body .gfield--type-textarea textarea:focus {
	outline: none !important;
	box-shadow: none !important;
	border-color: var(--accent-color) !important;
}


.contact-us-form form .gform-body .gfield--type-textarea textarea::placeholder {
	color: #9A9A9A;
}

.contact-us-form form .gfield--type-consent {

}

.contact-us-form form .gfield--type-consent legend {
	display: none !important;
}

.contact-us-form form .gfield--type-consent input {
	border: 1px solid #B1C7C8;
	width: 18px;
	height: 18px;
	border-radius: 4px;
}

.contact-us-form form .gfield--type-consent .ginput_container {
	display: flex;
	align-items: center;
}

.contact-us-form form .gfield--type-consent label {
	color: #233038;
	font-size: 14px;
	line-height: 1.4;
	font-weight: 400;
}

.contact-us-form form .gfield--type-consent label a {
	text-decoration: underline;
	font-weight: 500;
	color: #233038;
}

.contact-us-form form .gfield--type-consent label a:hover {
	color: var(--accent-color);
}

.contact-us-form form  .gform-footer {
	text-align: center !important;
	justify-content: center;
	margin-top: 40px !important;
}

.contact-us-form form  .gform-footer .gform_button {
	min-height: 51px !important;
	font-weight: 700 !important;
	font-size: 18px !important;
	line-height: 1.5 !important;
	min-width: 108px !important;
}

.contact-us-form .gform_confirmation_message {
	text-align: center;
	font-weight: 500;
	font-size: 18px;
}

.gfield--type-fileupload-kpc .gform_drop_instructions {
	display: none !important;
}

.gfield--type-fileupload-kpc .gform-theme-button {

	background-color: var(--main-color) !important;
	border-color: var(--main-color) !important;
}

.gfield--type-fileupload-kpc .gform-theme-button:before {
	content: 'Pasirinkite failus';
	font-size: 14px;
}



@media (max-width: 781px) {
	.contact-us-form p {
		font-size: 16px;
	}
	.contact-us-form {
		padding: 65px 0;
	}
	.contact-us-form h2 {
		margin-bottom: 11px;
	}
	.contact-us-form form {
		padding: 20px 0 0 0;
	}
}

/* ---------------------------------------
	Not Found
--------------------------------------- */

.not-found {
	padding: 96px 0;
}

.not-found__block {
	text-align: center;
}

.not-found__text {
	margin-bottom: 1rem;
}

.not-found__text h3 {
	font-size: 48px;
	line-height: 1;
	margin-bottom: 30px;
}


.not-found__text p {
	font-weight: 500;
	font-size: 18px;
}

.not-found__text p a {
	color: #233038;
	font-weight: 700;
	text-decoration: none;
}


.not-found__text p a:hover {
	color: var(--accent-color);
}

.not-found__title {
	color: var(--accent-color);
	font-size: 48px;
	line-height: 1;
	margin-bottom: 7px;
}

@media (max-width: 992px) {
	.not-found {
		padding: 66px 0;
	}
}

@media (max-width: 781px) {
	.not-found {
		padding: 36px 0;
	}
	.not-found__title {
		font-size: 32px;
	}
	.not-found__text h3 {
		font-size: 32px;
	}
	.not-found__text p {
		font-size: 16px;
	}
}

/* ---------------------------------------
	Pages
--------------------------------------- */

.rkpc-section {
	padding: 80px 0;
}

.service-item-title-table {

}

.rkpc-section a {
	color: var(--main-color);
}

.sub-text {
	font-size: 18px;
	font-weight: 500;
	line-height: 1.5;
}

.table-wrapper {
	box-shadow: 0px 1px 36.5px 0px #18575B0D;
	border-radius: 40px;
}

.table-caption {
	font-size: 12px;
	line-height: 1.5;
	font-weight: 400;
	padding-left: 10px;
}

.service-item-title-table h2 {
	letter-spacing: -0.02em;
}

.table-wrapper {
	margin-top: 64px;
	padding: 25px;
}

.service-item-title-table .container {
	max-width: 1400px;
}

.wp-block-table {
	border-radius: 20px 20px 0 0;
}

.wp-block-table table {
	border-radius: 40px;
}

.wp-block-table thead {
	border: none;
	background-color: #E6EDED;
}

.wp-block-table thead th {
	border: none;
	color: #04494F;
	font-size: 16px;
	line-height: 1.5;
	font-weight: 700;
	padding: 18px 10px;

}

.wp-block-table tbody td {
	border: none;
	font-size: 16px;
	line-height: 1.5;
	font-weight: 500;
	padding: 18px 10px;
	color: #233038;
	border-bottom: 1px solid #f5f5f5;
}

.section-popups {
	padding: 111px 0;
}

.section-popups__row {
	display: flex;
	gap: 15px;
	align-items: center;
}

.section-popups__image {
	flex: 1 1 5%;
}

.section-popups__image img {
	border-radius: 20px;
	height: auto;
	object-fit: contain;
	width: 100%;
}

.popup-with-form {
	cursor: pointer;
}

.section-popups__content {
	flex: 1 1 10%;
}

.section-popups-text h2 {
	letter-spacing: -0.02em;
	margin-bottom: 1.5rem;
}

.section-popups-text p {
	font-weight: 500;
	font-size: 16px;
	line-height: 1.5;
	color: #04494F;
}

.section-popups-text li {
	font-weight: 500;
	font-size: 18px;
	line-height: 1.5;
	color: #04494F;
}

.section-popups-text {
	max-width: 800px;
	margin-bottom: 2rem;
}

.image-text-popup {
	padding: 81px 0;
}

.image-text-popup .section-popups__row .section-popups__content .section-popups-text {
	margin-left: auto;
	max-width: 91%;
}

.image-text-popup .section-popups__row .section-popups__content .popup-wrapper {
	margin-left: auto;
	max-width: 91%;
}

.section-popup-reklama .section-popups-text ul {
	padding-left: 5px;
}

.popup-text-top {

}

.white-popup-block .popup-text-top {

}

.popup-text-top h2 {
	font-size: 32px;
	line-height: 1.3;
	font-weight: 700;

	color: #131819;
	letter-spacing: -0.02em;
	margin-bottom: 5px;
}

.popup-text-top p {
	color: #585858;
	font-size: 18px;
	line-height: 1.5;
	font-weight: 500;
	margin-bottom: 10px;
}

.white-popup-block .gform-body label {
	color: #233038 !important;
	font-size: 16px !important;
	line-height: 1.5 !important;
	font-weight: 500 !important;
}

.white-popup-block .gform-body .gform_fields {
	row-gap: 25px !important;
}

.white-popup-block .gform-body .gfield--type-text input {
	font-size: 16px !important;
	line-height: 1.5 !important;
	font-weight: 500 !important;
	color: black !important;
	transition: all 0.3s ease-in-out;
	border-radius: 10px !important;
	height: 48px !important;
}

.white-popup-block .gform-body .gfield--type-text input::placeholder {
	color: #233038 !important;
}

.white-popup-block .gform-body .gfield--type-text input:focus {
	outline: none !important;
	box-shadow: none !important;
	border-color: var(--accent-color) !important;
}

.white-popup-block .gform-body .gfield--type-text input:hover {
	border-color: var(--accent-color) !important;
}

.white-popup-block .gform-body .gfield--type-phone input {
	font-size: 16px !important;
	line-height: 1.5 !important;
	font-weight: 500 !important;
	color: black !important;
	transition: all 0.3s ease-in-out;
	border-radius: 10px !important;
	height: 48px !important;
}

.white-popup-block .gform-body .gfield--type-phone input::placeholder {
	color: #233038 !important;
}

.white-popup-block .gform-body .gfield--type-phone input:focus {
	outline: none !important;
	box-shadow: none !important;
	border-color: var(--accent-color) !important;
}

.white-popup-block .gform-body .gfield--type-phone input:hover {
	border-color: var(--accent-color) !important;
}

.white-popup-block .gform-body .gfield--input-type-email input {
	font-size: 16px !important;
	line-height: 1.5 !important;
	font-weight: 500 !important;
	color: black !important;
	transition: all 0.3s ease-in-out;
	border-radius: 10px !important;
	height: 48px !important;
}

.white-popup-block .gform-body .gfield--input-type-email input::placeholder {
	color: #233038 !important;
}

.white-popup-block .gform-body .gfield--input-type-email input:focus {
	outline: none !important;
	box-shadow: none !important;
	border-color: var(--accent-color) !important;
}

.white-popup-block .gform-body .gfield--input-type-email input:hover {
	border-color: var(--accent-color) !important;
}

.white-popup-block .gform-body label .gfield_required:after {
	content: '*' !important;
	font-weight: 500 !important;
	color: #C50000 !important;
	font-size: 18px !important;
}

.white-popup-block .gform-body label .gfield_required .gfield_required {
	display: none !important;
}

.white-popup-block {
	box-shadow: 0px 3px 20px 0px #0000001A;
	background-color: white;
	border-radius: 12px;
	width: 100%;
	max-width: 513px;
	margin: 0 auto;
	position: relative;
	padding: 35px 35px;
}

.gfield--type-consent {

}

.white-popup-block .gfield--type-consent legend {
	display: none !important;
}

.white-popup-block .gfield--type-consent label {
	color: #233038 !important;
	font-size: 14px !important;
	line-height: 1.5 !important;
	font-weight: 400 !important;
	margin-left: 7px !important;
}

.white-popup-block .gfield--type-consent input {
	border: 1px solid #B1C7C8 !important;
	width: 18px !important;
	height: 18px !important;
	background-color: white !important;
}

.white-popup-block .gfield--type-consent label a {
	font-weight: 500 !important;
	color: #233038 !important;
}

.white-popup-block .gfield--type-consent label a:hover {
	color: var(--accent-color) !important;
}

.mfp-close {
	color: #131819 !important;
	font-size: 37px !important;
}

.white-popup-block  .gform-footer {
	text-align: center !important;
	justify-content: center !important;
}

.white-popup-block .gform_button {

}

.white-popup-block .gform-footer {
	margin-top: 30px !important;
}

.white-popup-block .gform_button {
	min-height: 51px !important;
	font-weight: 700 !important;
	font-size: 18px !important;
	line-height: 1.5 !important;
	min-width: 108px !important;
	background-color: #D0F3E5 !important;
	color: #233038 !important;
	border-radius: 10px !important;
}

.mfp-bg {
	background: black !important;
	opacity: 0.6 !important;
}

.contacts-section {
	background-color: #FFFFFD;
	padding: 81px 0;
}

.contacts-section .contacts {
	display: flex;
	justify-content: space-between;
	max-width: 100%;
}

.contacts-section .contacts__link p span {
	font-size: 32px;
	line-height: 1.3;
}

.image-list-block__row {
	display: flex;
	gap: 15px;
	align-items: center;
}

.item-image-block {
	flex: 1 1 1%;
}

.item-list {
	flex: 1 1 5%;
}

.item-image-block {

}

.item-list__top {
	display: flex;
	align-items: flex-start;

	gap: 24px;
}

.item-list__item-icon {
	position: absolute;
	left: 0;
	top: 0;
	max-width: 48px;
}

.item-list__item {
	position: relative;
}

.item-list__item-image {
	padding-left: 70px;
}

.item-list__item__title {
	color: #04494F;
	font-size: 24px;
	font-weight: 700;
	line-height: 1.4;
	letter-spacing: -0.02em;
	display: block;
	margin-bottom: 15px;
}

.item-list__text {
	margin-bottom: 20px;
}

.item-list__text p {
	color: #233038;
	font-size: 16px;
	line-height: 1.5;
	font-weight: 500;
}

.item-list__text small {
	color: #233038;
	font-size: 14px;
	line-height: 1.5;
	font-weight: 500;
}

.item-list__text ul {
	padding-left: 10px;
}

.item-list__text li {
	color: #233038;
	font-size: 16px;
	line-height: 1.5;
	font-weight: 500;
}

.item-list__item .link-arrow {
	color: #04494F;
	font-size: 16px;
	line-height: 1.5;
	font-weight: 700;
	transition: all 0.3s ease-in-out;
}

.item-list .item-list__item:not(:last-child) {
	margin-bottom: 30px;
}

.image-list-section .item-list .item-list__item {
	max-width: 93%;
	margin-left: auto;
}

.item-list__item .link-arrow img {
	max-width: 15px;
	filter: brightness(0) saturate(100%) invert(22%) sepia(10%) saturate(5359%) hue-rotate(144deg) brightness(95%) contrast(97%);
}

.item-list__item .link-arrow:hover {
	color: var(--accent-color);
}

.item-list__item .link-arrow:hover img {
	filter: brightness(0) saturate(100%) invert(61%) sepia(82%) saturate(4100%) hue-rotate(335deg) brightness(97%) contrast(89%);
}

.item-list__top img {

}

.item-image-block img {
	width: 100%;
	object-fit: cover;
	border-radius: 20px;
}

.image-list-block {
	padding: 73px 0;
}

.contacts__link-text {

}

.contacts__link-text p {
	color: #233038;
	font-size: 16px;
	line-height: 1.5;
	font-weight: 500;
}

.contacts__link-text span {
	color: #04494F;
	font-size: 32px;
	line-height: 1.3;
	font-weight: 700;
	display: block;
	letter-spacing: -0.02em;
	margin-bottom: 14px;
}

.custom-links .contacts__link__address > span {
	font-size: 32px;
	line-height: 1.3;
	margin-bottom: 14px;
}

.custom-links {
	background-color: #FFFFFD;
	padding: 80px 0;
}

.custom-links .container {
	max-width: 1540px;
}

.custom-links .contacts {
	max-width: 100%;
	display: flex;
	justify-content: space-between;
}

.web-section {
	padding: 66px 0;
}

.scroll-up {
	position: fixed;
	right: 0;
	bottom: 0;
	transform: translate(-50%, -50%);
	z-index: 100;
	transition: all 0.3s ease-in-out;
}

.scroll-up-button {
	background: transparent;
	border: none;
	padding: 0;
	cursor: pointer;
}

@media (min-width: 992px) {
	.section-popup-reklama .text-image-popup {
		padding: 80px 0;
	}

	.section-popup-reklama .container {
		max-width: 1515px;
	}
	.section-popup-reklama .section-popups__content {
		flex: 1 1 3%;
	}

}

@media (max-width: 992px) {
	.section-popups__row {
		flex-direction: column;
		gap: 48px;
	}
	.image-text-popup .section-popups__row {
		flex-direction: column-reverse;
	}
	.section-popups {
		padding: 56px 0;
	}
	.section-popups-text {
		max-width: 100%;
	}
	.image-text-popup .section-popups__row .section-popups__content .section-popups-text {
		margin-left: 0;
		max-width: 100%;
	}
	.image-text-popup .section-popups__row .section-popups__content .popup-wrapper {
		margin-left: 0;
		max-width: 100%;
	}
	.section-popups__content {
		width: 100%;
		flex: 1 1 100%;
	}
	.contacts-section .contacts {
		flex-direction: column;
	}
	.image-list-block__row {
		flex-direction: column;
		gap: 53px;
	}
	.image-list-section .item-list .item-list__item {
		margin-left: 0;
		max-width: 100%;
	}
	.image-list-section	.image-list-block__row {
		flex-direction: column-reverse;
	}
	.custom-links .contacts {
		flex-direction: column;
	}
}

@media (max-width: 781px) {
	.service-item-title-table h2 {
		text-align: left;
		margin-bottom: 19px;
	}
	.rkpc-section {
		padding: 72px 0;
	}
	.service-item-title-table .sub-text {
		text-align: left;
	}
	.table-wrapper {
		margin-top: 48px;
	}

	.table-wrapper {
		border-radius: 20px;
		padding: 7px;
	}
	.wp-block-table tbody td {
		vertical-align: top;
	}
	.section-popups-text p {
		font-size: 16px;
		line-height: 1.5;
	}
	.section-popups-text li {
		font-size: 16px;
		line-height: 1.5;
	}
	.section-popups-text h2 {
		margin-bottom: 1.2rem;
	}
	.popup-wrapper {

	}
	.popup-with-form {
		width: 100%;
	}
	.section-popups__image img {
		height: 348px;
		object-fit: cover;
	}
	.white-popup-block {
		padding: 30px 15px;
	}
	.popup-text-top h2 {
		font-size: 26px;
	}
	.popup-text-top p {
		font-size: 16px;
	}
	.white-popup-block .gform-footer .gform_button {
		width: 100% !important;
	}
	.white-popup-block .gform-body .gform_fields {
		row-gap: 15px !important;
	}
	.contacts-section .contacts__link p span {
		font-size: 24px;
		line-height: 1.4;
	}
	.contacts-section {
		padding: 63px 0;
	}
	.contacts-section .contacts__link img {
		max-width: 30px;
		object-fit: contain;
	}
	.item-list__item__title {
		font-size: 20px;
		line-height: 1.4;
	}
	.image-list-block {
		padding: 82px 0;
	}
	.item-image-block img {
		height: 348px;
	}
	.contacts__link-text span {
		font-size: 24px;
		line-height: 1.4;
	}
	.custom-links .contacts__link__address > span {
		font-size: 24px;
		line-height: 1.4;
	}
	.custom-links {
		padding: 65px 0;
	}
	.custom-links  .contacts__link img {
		max-width: 32px;
		object-fit: contain;
		object-position: top;
	}
	.web-section {
		padding: 36px 0;
	}
}


.footer-form {
	background-color: white;
	border-radius: 20px;
	padding: 30px 15px;
	max-width: 400px;
}

.footer-form form label .gfield_required {
	display: none !important;
}

.footer-form form .gform-body  {

}

.footer-form form .gform-body .gfield--type-email input {
	height: 35px !important;
}

.footer-form form .gform-body .gfield--type-email input {
	font-size: 16px;
	line-height: 1.5;
	font-weight: 500;
	color: black;
	transition: all 0.3s ease-in-out;
}

.footer-form form .gform-body .gfield--type-email input:focus {
	outline: none !important;
	box-shadow: none !important;
	border-color: var(--accent-color) !important;
}

.footer-form form .gform-body .gfield--type-email input:hover {

	border-color: var(--accent-color) !important;
}


.footer-form form .gform-body .gfield--type-email input::placeholder {
	color: #9A9A9A;
}


.footer-form form .gform-body .gfield--type-phone input {
	height: 35px !important;
}

.footer-form form .gform-body .gfield--type-phone input {
	font-size: 16px;
	line-height: 1.5;
	font-weight: 500;
	color: black;
	transition: all 0.3s ease-in-out;
}

.footer-form form .gform-body .gfield--type-phone input:focus {
	outline: none !important;
	box-shadow: none !important;
	border-color: var(--accent-color) !important;
}

.footer-form form .gform-body .gfield--type-phone input:hover {

	border-color: var(--accent-color) !important;
}


.footer-form form .gform-body .gfield--type-phone input::placeholder {
	color: #9A9A9A;
}

.footer-form form .gform-body .gfield--type-text input {
	height: 48px !important;
}

.footer-form form .gform-body .gfield--type-text input:focus {
	outline: none !important;
	box-shadow: none !important;
	border-color: var(--accent-color) !important;
}

.footer-form form .gform-body .gfield--type-text input:hover {

	border-color: var(--accent-color) !important;
}

.footer-form form .gform-body .gfield--type-text input {
	font-size: 16px;
	line-height: 1.5;
	font-weight: 500;
	color: black;
	transition: all 0.3s ease-in-out;
}

.footer-form .gfield--type-select select {
	height: 48px !important;
	font-size: 16px;
	line-height: 1.5;
	font-weight: 500;
	color: #9A9A9A ;
	transition: all 0.3s ease-in-out;
	display: flex;
	align-items: center;
}

.footer-form .gfield--type-select select:focus {
	outline: none !important;
	box-shadow: none !important;
	border-color: var(--accent-color) !important;
}

.footer-form .gfield--type-select select:hover {
	border-color: var(--accent-color) !important;
}

.footer-form .gfield--type-select select.has-value {
	color: black;
}

.footer-form form .gform-body .gfield--type-text input::placeholder {
	color: #9A9A9A;
}

.footer-form form .gform-body .gform_fields {
	row-gap: 5px !important;
}

.footer-form form .gform-body .gfield--type-textarea textarea {
	height: 50px !important;
	min-block-size: 50px !important;
}

.footer-form form .gform-body .gfield--type-textarea textarea {
	font-size: 16px;
	line-height: 1.5;
	font-weight: 500;
	color: black;
	transition: all 0.3s ease-in-out;
}

.footer-form form .gform-body .gfield--type-textarea textarea:focus {
	outline: none !important;
	box-shadow: none !important;
	border-color: var(--accent-color) !important;
}


.footer-form form .gform-body .gfield--type-textarea textarea::placeholder {
	color: #9A9A9A;
}

.footer-form form .gfield--type-consent {

}

.footer-form form .gfield--type-consent legend {
	display: none !important;
}

.footer-form form .gfield--type-consent input {
	border: 1px solid #B1C7C8;
	width: 18px;
	height: 18px;
	border-radius: 4px;
}

.footer-form form .gfield--type-consent .ginput_container {
	display: flex;
	align-items: center;
}

.footer-form form .gfield--type-consent label {
	color: #233038;
	font-size: 14px;
	line-height: 1.4;
	font-weight: 400;
}

.footer-form form .gfield--type-consent label a {
	text-decoration: underline;
	font-weight: 500;
	color: #233038;
}

.footer-form form .gfield--type-consent label a:hover {
	color: var(--accent-color);
}

.footer-form form  .gform-footer {
	text-align: center !important;
	justify-content: center;
	margin-top: 40px !important;
}

.footer-form form  .gform-footer .gform_button {
	min-height: 51px !important;
	font-weight: 700 !important;
	font-size: 18px !important;
	line-height: 1.5 !important;
	min-width: 108px !important;
}

.footer-form .gform-footer .gform_button {
	min-height: 51px !important;
	font-weight: 700 !important;
	font-size: 18px !important;
	line-height: 1.5 !important;
	min-width: 108px !important;
	background-color: #d0f3e5 !important;
	border-color: #d0f3e5 !important;
	color: #233038 !important;
	border-radius: 15px !important;
}

.footer-form .gform_confirmation_message {
	text-align: center;
	font-weight: 500;
	font-size: 18px;
}


.top-banner {
	background-color: var(--accent-color);

	text-align: center;
}

.top-banner  a {
	width: 100%;
	padding: 10px 15px;
	color: white;
	display: flex;
	justify-content: center;
	align-items: center;
	text-decoration: none;
	font-weight: 500;

}

.footer-image {
	max-width: 72px;
	width: 100%;
	object-fit: contain;
	height: auto;
}

@media (max-width: 781px) {
	.top-banner  a {
		font-size: 12px;
		padding: 5px 15px;
	}
}

/* ================================================================
   KPC — Renovacijos projekto kortelės (modernizuotos)
   Brand: #04494F  #EA6344  #68D8AA  #FFFBE9
   ================================================================ */

.renovacija-projects {
    background: #FFFBE9;
    padding: 72px 0 80px;
}
.renovacija-projects .container { max-width: 1320px; }

.renovacija-projects__excerpt h2 {
    color: #04494F;
    font-size: 32px;
    line-height: 1.15;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin: 0 0 28px;
}

.renovacija-projects__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

/* ── Card ── */
.kpc-rn-card {
    background: #FFFFFF;
    border: 1px solid #e6dfc8;
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
    position: relative;
}
.kpc-rn-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 42px rgba(4, 73, 79, 0.14);
    border-color: #04494F;
}

/* ── Media ── */
.kpc-rn-card__media {
    position: relative;
    display: block;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: #04494F;
    text-decoration: none;
}
.kpc-rn-card__img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.kpc-rn-card:hover .kpc-rn-card__img { transform: scale(1.06); }

.kpc-rn-card__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
        rgba(4, 73, 79, 0.55) 0%,
        rgba(4, 73, 79, 0.05) 32%,
        rgba(4, 73, 79, 0.00) 60%,
        rgba(4, 73, 79, 0.35) 100%);
    pointer-events: none;
}

/* Top-left etap pill */
.kpc-rn-card__etap {
    position: absolute;
    top: 14px;
    left: 14px;
    display: inline-flex;
    align-items: center;
    gap: 0;
    background: #EA6344;
    color: #FFFBE9;
    font-size: 12px;
    font-weight: 700;
    padding: 6px 12px;
    border-radius: 999px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    box-shadow: 0 4px 12px rgba(234, 99, 68, 0.32);
    z-index: 2;
}

/* Top-right year pill */
.kpc-rn-card__year {
    position: absolute;
    top: 14px;
    right: 14px;
    display: inline-flex;
    align-items: center;
    background: rgba(255, 251, 233, 0.92);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    color: #04494F;
    font-size: 12px;
    font-weight: 700;
    padding: 6px 12px;
    border-radius: 999px;
    letter-spacing: 0.04em;
    z-index: 2;
}

/* Bottom-left "Įgyvendinta" badge for completed projects */
.kpc-rn-card__badge {
    position: absolute;
    left: 14px;
    bottom: 14px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #68D8AA;
    color: #04494F;
    font-size: 12px;
    font-weight: 700;
    padding: 6px 12px;
    border-radius: 999px;
    letter-spacing: 0.02em;
    z-index: 2;
}

/* ── Body ── */
.kpc-rn-card__body {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 22px 22px 24px;
    flex: 1;
}

.kpc-rn-card__title {
    text-decoration: none;
    color: #04494F;
    font-size: 17px;
    font-weight: 700;
    line-height: 1.35;
    letter-spacing: -0.01em;
    transition: color 0.2s ease;
    display: block;
    min-height: 2.7em;
}
.kpc-rn-card__title:hover { color: #EA6344; }

/* Progress */
.kpc-rn-card__progress { display: flex; flex-direction: column; gap: 6px; }
.kpc-rn-card__progress-meta {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    font-size: 12px;
    font-weight: 600;
}
.kpc-rn-card__progress-label {
    color: #5a8a8c;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}
.kpc-rn-card__progress-value {
    color: #04494F;
    font-size: 14px;
    font-weight: 800;
    font-variant-numeric: tabular-nums;
}
.kpc-rn-card__progress-track {
    height: 6px;
    background: #f0e8d4;
    border-radius: 999px;
    overflow: hidden;
}
.kpc-rn-card__progress-bar {
    height: 100%;
    background: linear-gradient(90deg, #04494F 0%, #68D8AA 100%);
    border-radius: 999px;
    transition: width 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}
.kpc-rn-card.is-done .kpc-rn-card__progress-bar {
    background: linear-gradient(90deg, #68D8AA 0%, #04494F 100%);
}

/* CTA */
.kpc-rn-card__cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    align-self: flex-start;
    color: #04494F;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    padding: 10px 16px;
    border-radius: 10px;
    background: #FFFBE9;
    border: 1px solid #e6dfc8;
    transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease, transform 0.15s ease;
    margin-top: auto;
}
.kpc-rn-card__cta:hover {
    background: #EA6344;
    color: #FFFBE9;
    border-color: #EA6344;
}
.kpc-rn-card__cta:hover svg { transform: translateX(3px); }
.kpc-rn-card__cta svg { transition: transform 0.15s ease; }

/* ── Responsive ── */
@media (max-width: 1080px) {
    .renovacija-projects__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 720px) {
    .renovacija-projects { padding: 48px 0 56px; }
    .renovacija-projects__excerpt h2 { font-size: 26px; margin-bottom: 20px; }
    .renovacija-projects__grid { grid-template-columns: 1fr; gap: 18px; }
    .kpc-rn-card__title { font-size: 16px; min-height: 0; }
    .kpc-rn-card__body { padding: 18px 18px 20px; gap: 14px; }
}

/* ================================================================
   KPC — Renovacija sekcijos vientisas dizainas
   Brand: #04494F · #EA6344 · #68D8AA · #FFFBE9 · #F4F1E8
   ================================================================ */

/* ── HUB title-page (renovacija archive / taxonomy) ── */
.title-page-renovacija {
    position: relative;
    background: linear-gradient(135deg, #04494F 0%, #233038 100%);
    overflow: hidden;
}
.title-page-renovacija::before {
    content: ''; position: absolute;
    top: -120px; right: -120px;
    width: 380px; height: 380px;
    background: rgba(104,216,170,0.10);
    border-radius: 50%;
    pointer-events: none;
}
.title-page-renovacija::after {
    content: ''; position: absolute;
    bottom: -80px; left: 20%;
    width: 240px; height: 240px;
    background: rgba(104,216,170,0.06);
    border-radius: 50%;
    pointer-events: none;
}
.title-page-renovacija .title-page__banner {
    background: transparent;
    padding: 44px 0 36px;
    position: relative;
    z-index: 1;
}
.title-page-renovacija .title-page__image { display: none !important; }
.title-page-renovacija .title-page__banner .container {
    position: relative;
    z-index: 2;
}
.title-page-renovacija h1 {
    color: #FFFBE9 !important;
    font-size: clamp(24px, 3.4vw, 34px);
    font-weight: 800 !important;
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin: 0;
}
.title-page-renovacija h1::before { content: none; }
.title-page-renovacija .title-page__banner .container::after { content: none; }
.title-page-renovacija .my-breadcrumbs {
    background: transparent;
    border-top: 1px solid rgba(255,251,233,0.10);
}
.title-page-renovacija .my-breadcrumbs .container,
.title-page-renovacija .my-breadcrumbs a,
.title-page-renovacija .my-breadcrumbs span {
    color: rgba(255,251,233,0.7) !important;
}
.title-page-renovacija .my-breadcrumbs a:hover { color: #EA6344 !important; }

/* ── Single project title-page (renovacija CPT) ── */
body.single-renovacija .title-page-post {
    position: relative;
    overflow: hidden;
    background: #04494F;
}
body.single-renovacija .title-page-post .title-page__banner {
    padding: 0;
    position: relative;
}
body.single-renovacija .title-page__image {
    width: 100%;
    height: 460px;
    object-fit: cover;
    object-position: center;
    filter: brightness(0.65);
}
body.single-renovacija .title-page-post .title-page__banner::after {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(4,73,79,0.10) 0%, rgba(4,73,79,0.30) 50%, rgba(4,73,79,0.85) 100%);
    pointer-events: none;
}
body.single-renovacija .title-page-post .container {
    position: absolute;
    left: 0; right: 0; bottom: 40px;
    z-index: 2;
}
body.single-renovacija .title-page-post h1 {
    color: #FFFBE9 !important;
    font-size: clamp(24px, 3.4vw, 40px);
    font-weight: 800;
    line-height: 1.15;
    margin: 0;
    letter-spacing: -0.01em;
    text-shadow: 0 2px 12px rgba(0,0,0,0.40);
    max-width: 880px;
}
body.single-renovacija .title-page-post h1::before { content: none; }
body.single-renovacija .my-breadcrumbs {
    background: #04494F;
    padding: 14px 0;
    border-top: 1px solid rgba(255,251,233,0.10);
}
body.single-renovacija .my-breadcrumbs .container,
body.single-renovacija .my-breadcrumbs a,
body.single-renovacija .my-breadcrumbs span {
    color: rgba(255,251,233,0.65) !important;
}
body.single-renovacija .my-breadcrumbs a:hover { color: #EA6344 !important; }

/* ── Post content section ── */
body.single-renovacija .post-content {
    background: #F4F1E8;
    padding: 56px 0 48px;
}
body.single-renovacija .post-content__title {
    display: none;
}
body.single-renovacija .post-content__block {
    background: transparent;
}

/* ── Services / paslaugos cards on hub ── */
.category-services-renovacija {
    background: transparent !important;
    padding: 48px 0 24px !important;
}
.category-services-renovacija .cat-service-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #04494F !important;
    color: #FFFBE9 !important;
    padding: 10px 18px !important;
    border-radius: 999px !important;
    border: none !important;
    font-size: 13px !important;
    font-weight: 700 !important;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 24px !important;
}
.category-services-renovacija .cat-service-button__image {
    width: 22px !important;
    height: 22px !important;
    object-fit: contain;
}
.category-services-renovacija .arrow-icon { display: none !important; }
.category-services-renovacija .services-list-tab {
    display: block !important;
}
.category-services-renovacija .services-items {
    display: grid !important;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 14px !important;
    list-style: none;
    padding: 0 !important;
    margin: 0 !important;
}
.category-services-renovacija .services-items li {
    margin: 0 !important;
    padding: 0 !important;
}
.category-services-renovacija .services-item__link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 18px;
    background: #FFFFFF;
    border: 1px solid #d8e8e6;
    border-radius: 12px;
    color: #04494F !important;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.3;
    text-decoration: none !important;
    transition: transform 0.15s, box-shadow 0.15s, border-color 0.15s;
}
.category-services-renovacija .services-item__link:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(4,73,79,0.10);
    border-color: #04494F;
    color: #EA6344 !important;
}
.category-services-renovacija .services-item__link img {
    width: 28px !important;
    height: 28px !important;
    object-fit: contain;
    flex-shrink: 0;
}

/* ── Renovacijos projektai heading on hub ── */
.renovacija-projects {
    background: #FFFBE9 !important;
    padding: 56px 0 72px !important;
}
.renovacija-projects__excerpt {
    margin-bottom: 24px !important;
}
.renovacija-projects__excerpt h2 {
    display: flex !important;
    align-items: center;
    gap: 14px;
    font-size: 28px !important;
    font-weight: 800 !important;
    color: #04494F !important;
    letter-spacing: -0.01em;
    margin: 0 !important;
}
.renovacija-projects__excerpt h2::before {
    content: '';
    width: 12px; height: 12px;
    border-radius: 50%;
    background: #EA6344;
    display: inline-block;
    flex-shrink: 0;
}

/* ── FAQ section on hub ── */
.faq-section-renovacija {
    background: #FFFFFF;
    padding: 64px 0 72px !important;
}
.faq-section-renovacija .faq-section__title {
    font-size: 28px !important;
    font-weight: 800 !important;
    color: #04494F !important;
    letter-spacing: -0.01em;
}
.faq-section-renovacija .faq-section__title::before {
    content: '';
    display: inline-block;
    width: 12px; height: 12px;
    border-radius: 50%;
    background: #EA6344;
    margin-right: 12px;
    vertical-align: 2px;
}
.faq-section-renovacija .button {
    background: #EA6344 !important;
    color: #FFFBE9 !important;
    border-radius: 10px !important;
    padding: 14px 24px !important;
    font-size: 15px !important;
    font-weight: 700 !important;
}
.faq-section-renovacija .button:hover { background: #d3593d !important; }

/* ── Other news (related projects) on single page ── */
body.single-renovacija .other-news {
    background: #FFFBE9;
    padding: 56px 0 72px;
}
body.single-renovacija .other-news__top h2 {
    display: flex !important;
    align-items: center;
    gap: 14px;
    font-size: 26px !important;
    font-weight: 800 !important;
    color: #04494F !important;
    letter-spacing: -0.01em;
    margin: 0 0 24px;
}
body.single-renovacija .other-news__top h2::before {
    content: '';
    width: 10px; height: 10px;
    border-radius: 50%;
    background: #EA6344;
    flex-shrink: 0;
}
body.single-renovacija .other-news__slider,
body.single-renovacija .other-news__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

/* ── Tighten section spacing on single project body ── */
body.single-renovacija .kpc-rv-wrap,
body.single-renovacija .kpc-ks-wrap {
    margin: 0 auto !important;
}
body.single-renovacija .post-block-text {
    padding: 56px 0;
}

/* ── Mobile ── */
@media (max-width: 880px) {
    .title-page-renovacija .title-page__banner { padding: 50px 0 36px; }
    body.single-renovacija .title-page__image { height: 320px; }
    body.single-renovacija .title-page-post .container { bottom: 24px; }
    body.single-renovacija .other-news__slider,
    body.single-renovacija .other-news__grid { grid-template-columns: 1fr; gap: 18px; }
    .category-services-renovacija .services-items { grid-template-columns: 1fr; }
}


/* === Footer menu — nested rendering for moved sections === */
.footer-menu-item .footer-menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.footer-menu-item .footer-menu > li.menu-item-has-children {
    margin-top: 14px;
    padding-top: 12px;
    border-top: 1px solid rgba(255,251,233,0.12);
}
.footer-menu-item .footer-menu > li.menu-item-has-children:first-child {
    margin-top: 0;
    padding-top: 0;
    border-top: none;
}
.footer-menu-item .footer-menu > li.menu-item-has-children > a {
    font-size: 12px !important;
    font-weight: 700 !important;
    color: rgba(255,251,233,0.55) !important;
    text-transform: uppercase;
    letter-spacing: 0.10em;
    pointer-events: none;
    margin-bottom: 8px;
    display: block !important;
}
.footer-menu-item .footer-menu .sub-menu {
    list-style: none;
    margin: 4px 0 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.footer-menu-item .footer-menu .sub-menu li { margin: 0; padding: 0; }
.footer-menu-item .footer-menu .sub-menu a {
    font-size: 14px;
    color: rgba(255,251,233,0.92) !important;
    text-decoration: none;
    padding: 3px 0;
    display: block;
    transition: color 0.15s ease;
}
.footer-menu-item .footer-menu .sub-menu a:hover { color: #EA6344 !important; }


/* ============================================================
   KPC — Mobile responsive fixes (general patch)
   Universal mobile improvements for all kpc-* components
   ============================================================ */

@media (max-width: 720px) {

    /* Containers — reduce side padding */
    .kpc-at, .kpc-pg, .kpc-rb, .kpc-rmap, .kpc-mr, .kpc-ts, .kpc-sp, .kpc-tv,
    .kpc-skf, .kpc-ek, .kpc-vp, .kpc-dr, .kpc-vz, .kpc-ci-wrap, .kpc-hub,
    .kpc-atinfo, .kpc-ru, .kpc-map-wrap, .kpc-pk-wrap, .kpc-mg-wrap,
    .kpc-rh, .kpc-pr-wrap {
        padding-left: 14px !important;
        padding-right: 14px !important;
    }

    /* Hero blocks — reduce padding + smaller fonts */
    .kpc-at-hero, .kpc-mr__hero, .kpc-ts__hero, .kpc-sp__hero, .kpc-tv__hero,
    .kpc-skf__hero, .kpc-ek__hero, .kpc-vp__hero, .kpc-vz__hero, .kpc-ci-hero,
    .kpc-hub__hero, .kpc-atinfo__hero, .kpc-ru__hero, .kpc-pk__hero, .kpc-pr-wrap .kpc-pr__hero {
        padding: 24px 20px !important;
        margin-bottom: 20px !important;
    }
    .kpc-at-hero h1, .kpc-mr__hero h1, .kpc-ts__hero h1, .kpc-sp__hero h1, .kpc-tv__hero h1,
    .kpc-skf__hero h1, .kpc-ek__hero h1, .kpc-vp__hero h1, .kpc-vz__hero h1, .kpc-ci-hero h1,
    .kpc-hub__hero h1, .kpc-atinfo__hero h1, .kpc-ru__hero h1, .kpc-pk__hero h2, .kpc-pr__hero h1 {
        font-size: 22px !important;
        line-height: 1.2 !important;
        margin-bottom: 8px !important;
        letter-spacing: -0.01em !important;
    }
    .kpc-at-hero p, .kpc-mr__hero p, .kpc-ts__hero p, .kpc-sp__hero p, .kpc-tv__hero p,
    .kpc-skf__hero p, .kpc-ek__hero p, .kpc-vp__hero p, .kpc-vz__hero p, .kpc-ci-hero p,
    .kpc-hub__hero p, .kpc-atinfo__hero p, .kpc-ru__hero p {
        font-size: 14px !important;
        line-height: 1.5 !important;
    }

    /* Hero decorative icons — hide on mobile */
    .kpc-mr__hero-ico, .kpc-ts__hero-ico, .kpc-sp__hero-ico, .kpc-tv__hero-ico {
        display: none !important;
    }
    .kpc-mr__hero, .kpc-ts__hero, .kpc-sp__hero, .kpc-tv__hero {
        grid-template-columns: 1fr !important;
        gap: 0 !important;
    }

    /* Force all grids to single column on small screens */
    .kpc-at-row.cols-2, .kpc-at-row.cols-3,
    .kpc-mr__benefits, .kpc-mr__works-list, .kpc-mr__steps-list, .kpc-mr__roi, .kpc-mr__cta,
    .kpc-ts__tips, .kpc-ts__savings, .kpc-ts__links-list,
    .kpc-sp__services, .kpc-sp__when ul, .kpc-sp__cta,
    .kpc-tv__finds, .kpc-tv__when-grid, .kpc-tv__cta, .kpc-tv__process ol,
    .kpc-skf__pillars, .kpc-skf__contact-grid,
    .kpc-ek__split, .kpc-ek__rules-list,
    .kpc-vp__support-grid, .kpc-vp__links ul,
    .kpc-dr__phases, .kpc-dr__docs, .kpc-dr__help,
    .kpc-vz__quick, .kpc-vz__pubs, .kpc-vz__terms-list,
    .kpc-ci-grid,
    .kpc-hub__grid, .kpc-hub__grid.cols-2,
    .kpc-pg__controls, .kpc-pg__types,
    .kpc-rb__card-info, .kpc-rb__card-stats,
    .renovacija-projects__grid,
    .kpc-pr-list,
    .kpc-pk__actions {
        grid-template-columns: 1fr !important;
        gap: 12px !important;
    }

    /* Section h2 — uniform mobile size */
    .kpc-mr__h2, .kpc-ts__h2, .kpc-sp__h2, .kpc-tv__h2,
    .kpc-skf__h2, .kpc-ek__h2, .kpc-vp__h2, .kpc-vz__h2,
    .kpc-hub__section-title, .kpc-rb__head h2, .kpc-rmap__head h2,
    .kpc-vt-section-head h2, .renovacija-projects__excerpt h2,
    .kpc-pg h2, .kpc-pk__hero h2 {
        font-size: 20px !important;
        line-height: 1.2 !important;
        margin-bottom: 12px !important;
    }

    /* Cards — reduce padding */
    .kpc-mr__benefit, .kpc-ts__tip, .kpc-sp__service, .kpc-tv__find,
    .kpc-skf__block, .kpc-skf__contact, .kpc-ek__role, .kpc-ek__rules, .kpc-ek__laws,
    .kpc-vp__support, .kpc-vp__costs, .kpc-vp__how, .kpc-vp__links,
    .kpc-dr__doc, .kpc-dr__phase-card, .kpc-dr__help,
    .kpc-vz__pub, .kpc-vz__terms,
    .kpc-hub__card, .kpc-at-card, .kpc-rn-card__body,
    .kpc-atinfo__body, .kpc-rb__card-info, .kpc-rb__card-stats,
    .kpc-ci-form {
        padding: 18px 18px !important;
    }

    /* Tables — horizontal scroll wrapper */
    .kpc-skf__formula, .kpc-vp__costs table {
        font-size: 12px !important;
    }
    .kpc-vp__costs { overflow-x: auto; }

    /* Big stats / numbers — smaller */
    .kpc-vp__stat-value, .kpc-mr__roi-stat-val, .kpc-rb__stat-value, .kpc-ts__saving-val {
        font-size: 28px !important;
    }
    .kpc-rmap__head h2, .kpc-rmap__head { flex-direction: column !important; align-items: flex-start !important; gap: 8px !important; }
    .kpc-rmap__stats { margin-left: 0 !important; }

    /* Renovacija map height shorter on mobile */
    .kpc-rmap__canvas { height: 380px !important; }

    /* Map iframes shorter */
    .kpc-mg-frame iframe, .kpc-pk-frame iframe, .kpc-map-frame iframe { height: 520px !important; }

    /* Atliekų tvarkymas hub — primary buttons go vertical */
    .kpc-at-primary { padding: 16px 18px !important; min-height: 0 !important; gap: 14px !important; }
    .kpc-at-primary .ico { width: 44px !important; height: 44px !important; }
    .kpc-at-primary .ico svg { width: 22px !important; height: 22px !important; }
    .kpc-at-primary .ttl { font-size: 16px !important; }
    .kpc-at-primary .sub { font-size: 14px !important; }
    .kpc-at-primary .arr { display: none !important; }

    /* Pakuočių grafikas dropdowns — full width */
    .kpc-pg__select { font-size: 15px !important; padding: 10px 12px !important; }

    /* Container issue form — smaller hero */
    .kpc-ci-form { padding: 20px 18px !important; }
    .kpc-ci-input, .kpc-ci-select, .kpc-ci-textarea { font-size: 14px !important; }

    /* Šilumos suvartojimas table — already has @media but reinforce */
    .kpc-ss-tbl-wrap { margin: 0 -14px; }
    .kpc-ss-card-head { flex-wrap: wrap; gap: 6px !important; }
    .kpc-ss-controls { flex-direction: column; gap: 8px !important; }
    .kpc-ss-select, .kpc-ss-search, .kpc-ss-dl { width: 100% !important; }

    /* Renovacija card — tighter */
    .kpc-rn-card { border-radius: 14px !important; }
    .kpc-rn-card__title { font-size: 15px !important; min-height: 0 !important; }
    .kpc-rn-card__body { padding: 16px 16px 18px !important; gap: 10px !important; }
    .kpc-rn-card__etap, .kpc-rn-card__year { font-size: 11px !important; padding: 4px 9px !important; top: 10px !important; left: 10px !important; }
    .kpc-rn-card__year { left: auto !important; right: 10px !important; }

    /* Footer column — prevent overflow */
    .footer-menu-item .footer-menu { gap: 4px !important; }
    .footer-menu-item .footer-menu > li.menu-item-has-children > a { font-size: 11px !important; }

    /* Renovacija project hero (single page) */
    body.single-renovacija .title-page__image { height: 240px !important; }
    body.single-renovacija .title-page-post h1 { font-size: 20px !important; }

    /* Title page renovacija hub */
    .title-page-renovacija h1 { font-size: 22px !important; }

    /* Sugadinto konteinerio CTA on hub — vertical */
    .kpc-at-row .kpc-at-primary.orange { grid-column: auto !important; }

    /* General — no horizontal scrolls */
    .kpc-at, .kpc-pg, .kpc-rb, .kpc-rmap, .kpc-mr, .kpc-ts, .kpc-sp, .kpc-tv,
    .kpc-skf, .kpc-ek, .kpc-vp, .kpc-dr, .kpc-vz, .kpc-ci-wrap, .kpc-hub,
    .kpc-atinfo, .kpc-ru, .kpc-map-wrap, .kpc-pk-wrap, .kpc-mg-wrap {
        overflow-x: hidden;
    }

    /* FAQ section — force vertical stack on mobile */
    .faq-section__row {
        flex-direction: column !important;
        gap: 18px !important;
    }
    .faq-section__content,
    .faq-section .faq-items {
        flex: 1 1 100% !important;
        width: 100% !important;
        max-width: 100% !important;
        min-width: 0 !important;
    }
    .faq-section { padding: 36px 0 !important; }
    .faq-section__title { font-size: 22px !important; margin-bottom: 12px !important; }
    .faq-section__text p { font-size: 14px !important; line-height: 1.5 !important; }
    .faq-section__text { margin-bottom: 14px !important; }
    .faq-item { padding: 16px 18px !important; border-radius: 12px !important; }
    .faq-item__button {
        font-size: 15px !important;
        line-height: 1.4 !important;
        padding-right: 32px !important;
        word-wrap: break-word !important;
        overflow-wrap: anywhere !important;
        white-space: normal !important;
    }
    .faq-item__button img { width: 18px !important; height: 11px !important; }
    .faq-item__content { padding-top: 10px !important; font-size: 14px !important; }
    .faq-item__content p { font-size: 14px !important; line-height: 1.55 !important; }
    .faq-section__link .button { padding: 12px 22px !important; font-size: 14px !important; min-height: 46px !important; }
    /* Prevent overflow on FAQ items list */
    .faq-items, .faq-section .faq-items {
        max-width: 100% !important;
        overflow-x: hidden !important;
    }
}

@media (max-width: 480px) {
    /* Extra small — even tighter */
    .kpc-at-hero h1, .kpc-mr__hero h1, .kpc-ts__hero h1, .kpc-sp__hero h1, .kpc-tv__hero h1,
    .kpc-skf__hero h1, .kpc-ek__hero h1, .kpc-vp__hero h1, .kpc-vz__hero h1, .kpc-ci-hero h1,
    .kpc-hub__hero h1, .kpc-atinfo__hero h1, .kpc-ru__hero h1 {
        font-size: 20px !important;
    }
    .kpc-mr__h2, .kpc-ts__h2, .kpc-sp__h2, .kpc-tv__h2,
    .kpc-skf__h2, .kpc-ek__h2, .kpc-vp__h2, .kpc-vz__h2,
    .kpc-hub__section-title, .renovacija-projects__excerpt h2 {
        font-size: 18px !important;
    }

    /* Hero gradient lighter on extra small */
    .kpc-at-hero, .kpc-mr__hero, .kpc-ts__hero, .kpc-sp__hero, .kpc-tv__hero,
    .kpc-skf__hero, .kpc-ek__hero, .kpc-vp__hero, .kpc-vz__hero, .kpc-ci-hero,
    .kpc-hub__hero, .kpc-atinfo__hero, .kpc-ru__hero {
        padding: 20px 16px !important;
    }

    /* Map shorter */
    .kpc-rmap__canvas { height: 320px !important; }

    /* Buttons full width */
    .kpc-mr__cta-actions, .kpc-pk__actions, .kpc-tv__cta a {
        width: 100%;
    }
    .kpc-mr__cta-btn, .kpc-pk__btn, .kpc-tv__cta a { width: 100%; justify-content: center; }
}

/* ── kpc-at-primary global (reused on single paslaugos pages) ── */
.kpc-at-primary {
    display: flex; align-items: center; gap: 18px;
    min-height: 88px; padding: 20px 24px;
    border-radius: 14px; text-decoration: none;
    transition: transform 0.15s, box-shadow 0.15s;
    border: 2px solid transparent;
    font-family: 'Satoshi', system-ui, sans-serif;
}
.kpc-at-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 28px rgba(4,73,79,0.14); }
.kpc-at-primary .ico {
    width: 52px; height: 52px; border-radius: 12px;
    display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.kpc-at-primary .ico svg { width: 26px; height: 26px; }
.kpc-at-primary .txt { flex: 1; min-width: 0; }
.kpc-at-primary .ttl { display: block; font-size: 18px; font-weight: 700; line-height: 1.25; margin: 0 0 3px; }
.kpc-at-primary .sub { display: block; font-size: 15px; line-height: 1.4; opacity: 0.88; margin: 0; }
.kpc-at-primary .arr { flex-shrink: 0; opacity: 0.65; transition: transform 0.15s, opacity 0.15s; }
.kpc-at-primary:hover .arr { transform: translateX(4px); opacity: 1; }
.kpc-at-primary.orange { background: #EA6344; color: #FFFBE9; }
.kpc-at-primary.orange .ico { background: rgba(255,251,233,0.20); }
.kpc-at-primary.orange .ico svg { stroke: #FFFBE9; }
.kpc-at-primary { display: flex !important; }

/* ── Renovacija hub — kompaktiškesnis headeris ── */
.title-page-renovacija .title-page__banner {
    min-height: 0 !important;
    padding: 28px 0 20px !important;
}
.title-page-renovacija h1 {
    padding: 0 !important;
    font-size: clamp(22px, 2.8vw, 30px) !important;
    text-shadow: none !important;
}
.title-page-renovacija .my-breadcrumbs {
    padding: 8px 0 !important;
}
.title-page-renovacija .my-breadcrumbs nav a,
.title-page-renovacija .my-breadcrumbs nav span {
    font-size: 13px !important;
}

/* Hide redundant "RENOVACIJA" pill button + tighten services grid */
.category-services-renovacija {
    padding: 24px 0 8px !important;
}
.category-services-renovacija .cat-service-button {
    display: none !important;
}
.category-services-renovacija .services-items {
    gap: 12px !important;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)) !important;
}
.category-services-renovacija .services-item__link {
    padding: 14px 16px !important;
    font-size: 14px !important;
    min-height: 64px;
}
.category-services-renovacija .services-item__link img {
    width: 26px !important;
    height: 26px !important;
}

/* Tighten the projects/map section gap above */
.title-page-renovacija + .services-section,
.title-page-renovacija + section[class*="services"] {
    padding-top: 0 !important;
}

@media (max-width: 781px) {
    .title-page-renovacija .title-page__banner {
        padding: 20px 0 14px !important;
    }
    .title-page-renovacija h1 {
        font-size: 22px !important;
    }
    .category-services-renovacija {
        padding: 16px 0 4px !important;
    }
}

/* ============================================================
   Renovacija hub — kompaktiškas viršus + etapų kortelės be nuotraukų
   ============================================================ */

/* 1. Hero strip — labai kompaktiškas, susilieja su mygtukais */
.title-page-renovacija {
    padding-bottom: 0 !important;
}
.title-page-renovacija .title-page__banner {
    min-height: 0 !important;
    padding: 22px 0 14px !important;
}
.title-page-renovacija h1 {
    padding: 0 !important;
    font-size: clamp(22px, 2.6vw, 28px) !important;
    text-shadow: none !important;
    margin: 0 !important;
}
.title-page-renovacija .my-breadcrumbs {
    padding: 6px 0 18px !important;
}
.title-page-renovacija .my-breadcrumbs nav a,
.title-page-renovacija .my-breadcrumbs nav span {
    font-size: 13px !important;
}

/* 2. Services section — tiesiogiai po hero, be tarpo, šviesiame fone */
.category-services-renovacija {
    padding: 22px 0 6px !important;
}
.category-services-renovacija .cat-service-button {
    display: none !important;
}
.category-services-renovacija .services-items {
    gap: 12px !important;
    grid-template-columns: repeat(auto-fill, minmax(190px, 1fr)) !important;
}
.category-services-renovacija .services-item__link {
    padding: 13px 15px !important;
    font-size: 14px !important;
    min-height: 60px;
    line-height: 1.25 !important;
}
.category-services-renovacija .services-item__link img {
    width: 24px !important;
    height: 24px !important;
}

/* Reduce gap between sections */
.services-section + section,
section.services-section + section {
    padding-top: 24px !important;
}

/* 3. Etapų kortelės — be nuotraukų, kompaktiškas sąrašas/grid */
.renovacija-projects {
    padding: 16px 0 36px !important;
}
.renovacija-projects__excerpt {
    margin-bottom: 14px !important;
}
.renovacija-projects__excerpt h2 {
    font-size: 20px !important;
    margin-bottom: 4px !important;
}
.renovacija-projects__grid {
    display: grid !important;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)) !important;
    gap: 14px !important;
}

/* Card itself — tighter, no photo bg */
.kpc-rn-card {
    background: #FFFFFF !important;
    border: 1px solid #d8e8e6 !important;
    border-radius: 14px !important;
    overflow: hidden !important;
    box-shadow: none !important;
    display: flex !important;
    flex-direction: column !important;
    transition: transform 0.15s, box-shadow 0.15s, border-color 0.15s !important;
}
.kpc-rn-card:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 20px rgba(4,73,79,0.08) !important;
    border-color: #04494F !important;
}

/* Hide the photo + overlay completely */
.kpc-rn-card__media {
    height: auto !important;
    aspect-ratio: auto !important;
    min-height: 0 !important;
    display: flex !important;
    align-items: center !important;
    flex-wrap: wrap !important;
    gap: 6px !important;
    padding: 14px 16px 8px !important;
    background: linear-gradient(135deg, #04494F 0%, #233038 100%) !important;
    position: relative !important;
    border: none !important;
    border-radius: 0 !important;
    text-decoration: none !important;
}
.kpc-rn-card__media:hover { background: linear-gradient(135deg, #045258 0%, #2a3a42 100%) !important; }
.kpc-rn-card__img { display: none !important; }
.kpc-rn-card__overlay { display: none !important; }

/* Etap badge — big number, prominent */
.kpc-rn-card__etap {
    position: static !important;
    background: #EA6344 !important;
    color: #FFFBE9 !important;
    padding: 5px 12px !important;
    border-radius: 999px !important;
    font-size: 13px !important;
    font-weight: 800 !important;
    letter-spacing: 0.02em !important;
    box-shadow: none !important;
    border: none !important;
    text-transform: none !important;
}

/* Year badge */
.kpc-rn-card__year {
    position: static !important;
    background: rgba(255,251,233,0.18) !important;
    color: #FFFBE9 !important;
    padding: 5px 12px !important;
    border-radius: 999px !important;
    font-size: 13px !important;
    font-weight: 700 !important;
    border: 1px solid rgba(255,251,233,0.25) !important;
}

/* Done badge */
.kpc-rn-card__badge.kpc-rn-card__badge--done {
    position: static !important;
    margin-left: auto !important;
    background: #68D8AA !important;
    color: #04494F !important;
    padding: 5px 10px !important;
    border-radius: 999px !important;
    font-size: 12px !important;
    font-weight: 800 !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 5px !important;
}

/* Card body — tighter */
.kpc-rn-card__body {
    padding: 14px 16px 16px !important;
    gap: 10px !important;
    display: flex !important;
    flex-direction: column !important;
    flex: 1 !important;
}
.kpc-rn-card__title {
    font-size: 14px !important;
    font-weight: 700 !important;
    line-height: 1.35 !important;
    color: #04494F !important;
    margin: 0 !important;
    text-decoration: none !important;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.kpc-rn-card__progress { gap: 4px !important; }
.kpc-rn-card__progress-meta { font-size: 11px !important; }
.kpc-rn-card__progress-label { color: #5a6a6b !important; font-weight: 600 !important; text-transform: uppercase; letter-spacing: 0.04em; }
.kpc-rn-card__progress-value { font-weight: 800 !important; color: #04494F !important; }
.kpc-rn-card__progress-track {
    height: 5px !important;
    background: #f0f4f3 !important;
    border-radius: 3px !important;
    overflow: hidden;
}
.kpc-rn-card__progress-bar {
    background: linear-gradient(90deg, #68D8AA, #04494F) !important;
    height: 100% !important;
    border-radius: 3px !important;
    transition: width 0.4s ease !important;
}
.kpc-rn-card.is-done .kpc-rn-card__progress-bar { background: #68D8AA !important; }

.kpc-rn-card__cta {
    display: inline-flex !important;
    align-items: center !important;
    gap: 6px !important;
    margin-top: auto !important;
    padding: 8px 0 0 !important;
    color: #EA6344 !important;
    font-size: 13px !important;
    font-weight: 700 !important;
    text-decoration: none !important;
    background: none !important;
    border: none !important;
}
.kpc-rn-card__cta:hover { color: #04494F !important; }
.kpc-rn-card__cta:hover svg { transform: translateX(3px); }
.kpc-rn-card__cta svg { transition: transform 0.15s; }

/* Mobile tightening */
@media (max-width: 781px) {
    .title-page-renovacija .title-page__banner { padding: 16px 0 10px !important; }
    .title-page-renovacija h1 { font-size: 20px !important; }
    .category-services-renovacija { padding: 14px 0 4px !important; }
    .renovacija-projects__grid { grid-template-columns: 1fr 1fr !important; gap: 10px !important; }
    .kpc-rn-card__body { padding: 12px !important; }
    .kpc-rn-card__media { padding: 10px 12px 6px !important; }
}
@media (max-width: 480px) {
    .renovacija-projects__grid { grid-template-columns: 1fr !important; }
}



/* ── Paslaugos breadcrumbs bar ── */
.kpc-paslaugos-crumbs {
    background: #FFFBE9;
    border-bottom: 1px solid #e6dfc8;
    padding: 12px 0;
    font-family: 'Satoshi', system-ui, sans-serif;
}
.kpc-paslaugos-crumbs .container { max-width: 1180px; margin: 0 auto; padding: 0 16px; }
.kpc-paslaugos-crumbs nav,
.kpc-paslaugos-crumbs a,
.kpc-paslaugos-crumbs span { font-size: 13px; line-height: 1.5; }
.kpc-paslaugos-crumbs a { color: #5a6a6b; text-decoration: none; font-weight: 500; }
.kpc-paslaugos-crumbs a:hover { color: #EA6344; }
.kpc-paslaugos-crumbs .separator { color: #b1c8c1; margin: 0 4px; }
.kpc-paslaugos-crumbs .last { color: #04494F; font-weight: 700; }
@media (max-width: 720px) { .kpc-paslaugos-crumbs { padding: 9px 0; } .kpc-paslaugos-crumbs nav, .kpc-paslaugos-crumbs a, .kpc-paslaugos-crumbs span { font-size: 12px; } }

/* ── Pranešti apie gedimą — header button ── */
.gedimas-button {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 11px 18px;
    background: #FFFFFF;
    border: 2px solid #EA6344;
    border-radius: 10px;
    color: #EA6344;
    font-weight: 700;
    font-size: 14px;
    font-family: 'Satoshi', system-ui, sans-serif;
    text-decoration: none;
    white-space: nowrap;
    transition: background 0.15s, color 0.15s;
    margin-right: 10px;
}
.gedimas-button:hover { background: #EA6344; color: #FFFBE9; }
.gedimas-button svg { flex-shrink: 0; }
@media (max-width: 1240px) {
    .gedimas-button { padding: 9px 12px; font-size: 13px; }
    .gedimas-button svg { width: 16px; height: 16px; }
}
@media (max-width: 900px) {
    .gedimas-button span, .gedimas-button { font-size: 0; gap: 0; padding: 10px; }
    .gedimas-button svg { width: 20px; height: 20px; }
}
/* Mega-header (mobile menu) gedimas button — full width */
.mega-header .gedimas-button { font-size: 14px !important; gap: 8px !important; padding: 12px 18px !important; width: 100%; justify-content: center; margin: 0 0 10px; }
.mega-header .gedimas-button svg { width: 18px !important; height: 18px !important; }

/* ── Footer "Pranešti apie gedimą" button (replaces inline form) ── */
.footer-gedimas-btn {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 13px 22px;
    background: #EA6344;
    color: #FFFBE9;
    border-radius: 10px;
    font-family: 'Satoshi', system-ui, sans-serif;
    font-weight: 700;
    font-size: 15px;
    text-decoration: none;
    transition: background 0.15s;
    margin-top: 6px;
}
.footer-gedimas-btn:hover { background: #d4543a; color: #FFFBE9; }
.footer-gedimas-btn svg { flex-shrink: 0; }

/* ── Footer rebalanced after removing gedimas column ── */
.footer__menus {
    gap: 70px;
    padding-right: 0;
    flex: 1 1 auto;
    justify-content: space-between;
}
/* Spread the tall first column (Apie mus + Lėšos ir pirkimai + Dokumentai) into 2 sub-columns */
.footer-menu-item:first-child { flex: 1 1 auto; max-width: 620px; }
.footer-menu-item:first-child .footer-menu {
    display: block;
    columns: 2;
    column-gap: 56px;
    column-fill: auto;
    height: 300px;
}
.footer-menu-item:first-child .footer-menu > li {
    break-inside: avoid;
    -webkit-column-break-inside: avoid;
    margin-bottom: 6px;
}
.footer-menu-item:first-child .footer-menu > li.menu-item-has-children {
    margin-top: 18px;
    padding-top: 0;
    border-top: none;
}
@media (max-width: 992px) {
    .footer__menus { gap: 32px; }
    .footer-menu-item:first-child { max-width: none; }
    .footer-menu-item:first-child .footer-menu { columns: 1; height: auto; }
    .footer-menu-item:first-child .footer-menu > li.menu-item-has-children { margin-top: 14px; }
}

/* ============================================================
   KPC — Header + Mega-menu redesign (refined utilitarian)
   Clean dropdown, scannable icon-card grid, clear grouping
   ============================================================ */

/* ── Mega-menu panel: tidy container ── */
.header__menus .header-menu > .menu-item-has-children > .sub-menu {
    min-height: 0 !important;
    width: 100vw !important;
    max-width: 100vw !important;
    left: 50% !important;
    transform: translateX(-50%);
    padding: 30px clamp(40px, 6vw, 160px) 34px !important;
    border-radius: 0 0 22px 22px !important;
    background: #FFFFFF !important;
    box-shadow: 0 18px 48px rgba(4,73,79,0.14), 0 0 0 1px rgba(4,73,79,0.06) !important;
    border-top: 3px solid #EA6344 !important;
}
/* entrance animation */
.header__menus .header-menu > .menu-item-has-children.mm-open > .sub-menu {
    display: block;
    animation: kpcMegaIn 0.22s ease both;
}
@keyframes kpcMegaIn {
    from { opacity: 0; transform: translate(-50%, -8px); }
    to   { opacity: 1; transform: translate(-50%, 0); }
}

/* ── Rebuilt structure: quick-list becomes a card grid ── */
.header__menus .header-menu .sub-menu.mm-rebuilt { display: none !important; }
.header__menus .header-menu > .menu-item-has-children.mm-open > .sub-menu.mm-rebuilt {
    display: flex !important;
    gap: 32px;
    align-items: flex-start;
}
.header__menus .header-menu .sub-menu .mm-quick-col { flex: 1 1 100% !important; min-width: 0 !important; width: 100%; }
.header__menus .header-menu .sub-menu .mm-quick-list {
    list-style: none; margin: 0; padding: 0;
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
    gap: 8px 24px;
    width: 100%;
}
/* category columns (menus with sub-groups) sit beside the grid */
.header__menus .header-menu .sub-menu .mm-cat-col {
    min-width: 230px;
    padding-right: 28px;
    border-right: 1px solid #eef3f2;
}

/* ── Each item rendered as a scannable card ── */
.header__menus .header-menu .mm-quick-list > li,
.header__menus .header-menu .sub-menu > li {
    margin: 0 !important; padding: 0 !important;
}
.header__menus .header-menu .mm-quick-list > li > a {
    display: flex !important;
    align-items: center;
    gap: 14px;
    padding: 8px 12px !important;
    border-radius: 12px;
    border: 1px solid transparent;
    transition: background 0.15s, border-color 0.15s, transform 0.15s;
}
.header__menus .header-menu .mm-quick-list > li > a:hover {
    background: #FFFBE9;
    border-color: #04494F;
    transform: translateY(-1px);
}
.header__menus .header-menu .mm-quick-list > li > a > span {
    display: inline-flex !important;
    align-items: center;
    gap: 14px !important;
    color: #04494F;
    font-size: 15px !important;
    font-weight: 600 !important;
    line-height: 1.3;
}
/* icon chip */
.header__menus .header-menu .mm-quick-list .menu-icon {
    width: 60px !important; height: 60px !important;
    max-width: 60px !important; max-height: 60px !important;
    padding: 8px;
    background: #FFFBE9;
    border-radius: 14px;
    object-fit: contain;
    flex-shrink: 0;
    transition: background 0.15s;
}
.header__menus .header-menu .mm-quick-list > li > a:hover .menu-icon {
    background: #68D8AA;
}

/* category column header (parent link) */
.header__menus .header-menu .mm-cat-col > li > a {
    font-size: 12px !important;
    font-weight: 800 !important;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #5a6a6b !important;
    pointer-events: none;
    margin-bottom: 10px;
    display: block !important;
}
.header__menus .header-menu .mm-cat-col .sub-menu {
    padding: 0 !important;
    display: flex; flex-direction: column; gap: 4px;
}
.header__menus .header-menu .mm-cat-col .sub-menu a {
    font-size: 14px !important; font-weight: 500 !important;
    color: #233038 !important; padding: 6px 8px !important;
    border-radius: 8px; transition: color 0.15s, background 0.15s;
}
.header__menus .header-menu .mm-cat-col .sub-menu a:hover {
    color: #EA6344 !important; background: #FFFBE9;
}

/* ── Top-level nav refinement ── */
.header-menu > .menu-item > a span {
    font-weight: 600;
}
.header__menus .header-menu > .menu-item-has-children.mm-open > a span,
.header__menus .header-menu > .menu-item-has-children:hover > a span,
.header-menu .current-menu-parent > a span,
.header-menu .current_page_item > a span {
    color: #EA6344;
}
.header-menu > .menu-item-has-children > a:after {
    transition: transform 0.22s ease;
}
.header__menus .header-menu > .menu-item-has-children.mm-open > a:after {
    transform: rotate(180deg);
}

/* ── Responsive: 2-up then 1-up grid ── */
@media (max-width: 1180px) {
    .header__menus .header-menu .sub-menu .mm-quick-list { grid-template-columns: repeat(2, 1fr); }
}


/* ── Header search: expand input on click (was collapsing to icon width) ── */
.header__button .search-block { width: auto !important; }
.header__button .search-block .search-form {
    position: absolute !important;
    top: 50%; right: 0;
    transform: translateY(-50%);
    width: 340px;
    z-index: 60;
    opacity: 0; visibility: hidden; pointer-events: none;
    transition: opacity 0.22s ease, visibility 0.22s ease;
}
.header__button .active-search-block .search-form {
    opacity: 1 !important; visibility: visible !important; pointer-events: auto !important;
}
.header__button .search-block .search-form__input {
    width: 100% !important;
    height: 48px !important;
    padding-right: 58px !important;
    border: 1px solid #d8e8e6 !important;
    border-radius: 24px !important;
    box-shadow: 0 10px 28px rgba(4,73,79,0.16) !important;
    background: #FFFFFF !important;
}
.header__button .search-block .search-form__input:focus {
    border-color: #04494F !important;
    outline: 3px solid rgba(234,99,68,0.2) !important;
}
.header__button .search-block .openSearch { z-index: 61; }
@media (max-width: 600px) {
    .header__button .search-block .search-form { width: min(78vw, 320px); }
}

/* ── Equalize + center top-bar header buttons (desktop only) ── */
@media (min-width: 1241px) {
  .header__button .gedimas-button,
  .header__button .accent-button {
      font-size: 14px;
      line-height: 1.2;
      font-weight: 700;
      gap: 8px;
      border-radius: 10px;
      border: 2px solid transparent;
      white-space: nowrap;
      box-sizing: border-box;
      justify-content: center;
  }
  .header__button .gedimas-button {
      padding: 11px 18px;
      border-color: #EA6344;
      margin-right: 10px;
      min-width: 220px;
  }
  .header__button .accent-button {
      padding: 11px 18px;
      min-width: 175px;
  }
  .header__button .gedimas-button svg,
  .header__button .accent-button img {
      width: 18px;
      height: 18px;
      flex-shrink: 0;
  }
}

/* KPC: įrašas 2190 — vienas pavadinimas (slepiam pasikartojantį turinio pavadinimą, lieka hero) */
body.postid-2190 .post-content__title{display:none;}
