/* 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: #355F62;
	--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:hover > .sub-menu {
	/*display: flex;*/
	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: #123D68;
	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: #004F9F;
}

.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: #355F62;
}

.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: #355F62;
	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: #355F62;
	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: #355F62;
	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: #355F62;
	font-size: 16px;
	line-height: 1.5;
	font-weight: 500;
	padding-top: 15px;
}

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

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


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

.faq-section__text p {
	color: #355F62;
	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: #355F62;
	font-size: 16px;
	line-height: 1.5;
	font-weight: 500;
	margin-bottom: 3px;
}

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

.team-item__link {
	color: #355F62;
	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: #355F62;
}

.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: #355F62;
	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: #355F62;
	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: #355F62;
	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: #355F62;
	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: #355F62;
	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: #355F62;
}

.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: #355F62;
	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: #355F62;
	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: #355F62 !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: #355F62 !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: #355F62 !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: #355F62 !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: #355F62 !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: #355F62 !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: #355F62 !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: #355F62;
	font-size: 16px;
	line-height: 1.5;
	font-weight: 500;
}

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

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

.item-list__text li {
	color: #355F62;
	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: #355F62;
	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: #355F62;
	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: #355F62;
}

.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: #355f62 !important;
	border-radius: 15px !important;
}

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


.top-banner {
	background-color: #68A9D8;

	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;
	}
}