div {
	box-sizing: border-box;
}

*,
*::before,
*::after {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

h1,
h2,
h3,
h4,
h5 {
	margin: 0;
	font-weight: normal;
	font-family: var(--font-medium);
}

h1 {
	font-size: 3rem;
}

h2 {
	font-size: 2rem;
}

h3 {
	font-size: 1.5rem;
}

h4 {
	font-size: 1.2rem;
}

h5 {
	font-size: 1rem;
}

a {
	background-color: transparent;
	text-decoration: none;
	color: #121212;
}

b,
strong {
	font-family: var(--font-bold);
}

img {
	border-style: none;
}

html {
	font-size: 1rem;
	overflow-x: hidden;
}

body {
	margin: 0;
}

@font-face {
	font-family: Montserrat-Bold;
	src: url(/fonts/Montserrat-Bold.woff);
	font-display: swap;
}

@font-face {
	font-family: Montserrat-SemiBold;
	src: url(/fonts/Montserrat-SemiBold.woff);
	font-display: swap;
}

@font-face {
	font-family: Montserrat-Black;
	src: url(/fonts/Montserrat-Black.woff);
	font-display: swap;
}

@font-face {
	font-family: Montserrat-Regular;
	src: url(/fonts/Montserrat-Regular.woff);
	font-display: swap;
}

@font-face {
	font-family: Montserrat-Medium;
	src: url(/fonts/Montserrat-Medium.woff);
	font-display: swap;
}

@font-face {
	font-family: Montserrat-Light;
	src: url(/fonts/Montserrat-Light.woff);
	font-display: swap;
}

@font-face {
	font-family: Montserrat-ExtraBold;
	src: url(/fonts/Montserrat-ExtraBold.woff);
	font-display: swap;
}

:root {
	--light-yellow-header: #F9F8F2;
	--green: #6E804C;
	--yellow: #EDC035;
	--light-yellow: #DBCDA1;
	--light-yellow-bg: #F6EDE7;
	--dark-green: #506033;
	--blue: #485091;
	--light-blue: #C3E5F7;
	--font-regular: "Montserrat-Regular", sans-serif;
	--font-bold: "Montserrat-Bold", sans-serif;
	--font-medium: "Montserrat-Medium", sans-serif;
	--font-semibold: "Montserrat-Semibold", sans-serif;
	--font-black: "Montserrat-Black", sans-serif;
	--font-light: "Montserrat-Light", sans-serif;
	--font-extra: "Montserrat-ExtraBold", sans-serif;
	--index: calc(1vw + 1vh);
}

body {
	font-family: var(--font-regular);
	font-size: 1rem;
}

.container {
	margin: 0 auto;
	padding: 0 3rem;
}

@media (min-width: 1315px) {
	.container {
		width: 100%;
	}
}

@media (min-width: 1415px) {
	.container {
		width: 1400px;
	}
}

@media (min-width: 1515px) {
	.container {
		width: 1470px;
	}
}

@media (min-width: 1615px) {
	.container {
		width: 1600px;
	}
}

@media (min-width: 1815px) {
	.container {
		width: 1800px;
	}
}

.top-header {
	background-color: var(--light-yellow-header);
	padding: 15px 0;
	margin-bottom: 20px;
	position: relative;
	z-index: 50;
}

.top-header .container {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 2rem;
}

.top-header__menu ul {
	display: flex;
	margin: 0;
	padding: 0;
	list-style-type: none;
	gap: 2.5rem;
}

.top-header__menu ul a {
	text-transform: uppercase;
}

.top-header__menu ul a:hover {
	color: #EDC135;
}

.main-menu-more {
	display: none;
}

.top-header__logo a {
	display: flex;
}

.top-header__logo img {
	width: 100%;
}

.top-header__lang ul {
	display: flex;
	margin: 0;
	padding: 0;
	list-style-type: none;
	gap: .5rem;
}

.top-header__lang a {
	position: relative;
	display: flex;
	height: 57px;
	width: 57px;
	align-items: center;
	justify-content: center;
}

.top-header__lang a:hover {
	color: #666;
}

.top-header__lang .current-lang a {
	font-family: var(--font-bold);
}

.top-header__lang .current-lang a:hover {
	color: #000;
}

.top-header__lang .current-lang a::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	background-image: url(/img/lang-hover.svg);
	background-repeat: no-repeat;
	background-size: 100%;
	background-position: center;
	width: 100%;
	height: 100%;

}

.top-header-right {
	display: flex;
	gap: 3rem;
}

.top-header__btn {
	background-color: var(--green);
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0 1.5rem;
	color: var(--yellow);
	text-transform: uppercase;
	height: 52px;
	cursor: pointer;
}

.top-header__btn:hover {
	background-color: #EDC135;
	color: #fff;
}


.second-screen-left br {
    display: block;
    content: "\0020";
    margin-top: 5px;
}

#mobile-menu {
	position: fixed;
	top: 80px;
	left: 0;
	height: calc(100% - 80px);
	width: 100%;
	background-color: var(--green);
	display: none;
	flex-direction: column;
	justify-content: space-between;
	gap: 20px;
	z-index: 500;
	padding: 40px 20px;
}

#mobile-menu.active-menu {
	display: flex;
}

#mobile-menu-btn {
	display: none;
	height: 40px;
	width: 40px;
	background-image: url(/img/menu-btn.svg);
	background-repeat: no-repeat;
	background-size: 100%;
	background-position: center;
	cursor: pointer;
}

#mobile-menu-btn.open-menu {
	background-image: url(/img/menu-close.svg);
}

#mobile-navigation a {
	color: #fff;
	font-size: 1.5rem;
	text-transform: uppercase;
}

#mobile-navigation ul {
	display: flex;
	flex-direction: column;
	gap: 40px;
	list-style-type: none;
	text-align: center;
}

#mobile-menu .top-header__lang {
	margin-top: 45px;
}

#mobile-menu .top-header__lang .current-lang a::after {
	background-image: url(/img/mobile-lang.svg);
}

#mobile-menu .top-header__lang ul {
	justify-content: center;
}

#mobile-menu .top-header__lang a {
	color: #d0d2cb;
}

#mobile-menu .top-header__lang .current-lang a {
	color: #fff;
}

#header-call-mobile {
	background-color: #EDC135;
	color: #fff;
	text-transform: uppercase;
	font-size: 1rem;
	height: 52px;
}

.about-us {
	font-family: var(--font-light);
	font-size: 1.2rem;
}

.about-us-top h1 {
	font-size: 3.5rem;
	text-transform: uppercase;
	line-height: 1.3;
	color: var(--dark-green);
	position: relative;
	padding: 125px 360px 25px 140px;
	font-family: var(--font-regular);
}

.about-us-top h1::before {
	content: '';
	position: absolute;
	top: 35px;
	right: -35px;
	background-image: url(/img/aboutway.svg);
	width: 360px;
	height: 360px;
}

.about-us-text {
	display: grid;
	grid-template-columns: 1fr 1.7fr;
	gap: 160px;
}

.about-us-text p {
	line-height: 1.7;
	padding-right: 230px;
}

.about-us-img {
	display: grid;
	grid-template-columns: 1fr 1.7fr;
	gap: 160px;
}

.about-us-top-two {
	display: grid;
	grid-template-columns: 1fr 2fr;
	align-items: flex-end;
}

.about-us-img img {
	width: 100%;
}

.about-us-top-two-img {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1rem;
}

.about-us-img-arrow {
	display: flex;
	align-items: center;
	height: 100%;
}

.about-us-img-arrow span {
	display: flex;
	height: 135px;
	width: 135px;
	background-image: url(/img/arrow-bottom.svg);
	background-size: 100%;
	margin-left: -40px;
	cursor: pointer;
}

.about-us-img-arrow span:hover {
	opacity: 0.8;
}

.about-us-blue {
	background-color: var(--blue);
	display: grid;
	grid-template-columns: 1fr 1.7fr;
	gap: 160px;
	color: #fff;
	padding-top: 115px;
}

.about-us-blue-left {
	display: flex;
	align-items: flex-end;
}

.about-us-blue-left img {
	width: 100%;
}

.about-us-blue-right {
	padding-right: 80px;
}

.about-us-blue-right h2 {
	color: #FFCAA3;
	font-size: 2.5rem;
	text-transform: uppercase;
	line-height: 1.3;
	font-family: var(--font-light);
	margin-bottom: 30px;
}

.about-us-blue-text {
	color: #E6D9B6;
	width: 60%;
	line-height: 1.7;
}

.about-us-whitef {
	display: grid;
	grid-template-columns: 1.5fr 1fr;
	gap: 160px;
	padding-top: 180px;
}

.about-us-whitef-right img {
	width: 100%;
}

.about-us-whitef h2 {
	margin-bottom: 45px;
	font-size: 2.5rem;
	text-transform: uppercase;
	line-height: 1.3;
	font-family: var(--font-medium);
}

.about-us-whitef-text {
	width: 80%;
	line-height: 1.7;
}


.about-us-white {
	display: grid;
	grid-template-columns: 1fr 1.7fr;
	gap: 160px;
	padding-top: 115px;
}

.about-us-white-left {
	display: flex;
	align-items: flex-end;
}

.about-us-white-left img {
	width: 100%;
}

.about-us-white-right {
	padding-right: 80px;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	position: relative;
}

.about-us-white-right::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	background-image: url(/img/spiral.svg);
	background-repeat: no-repeat;
	background-size: 100%;
	background-position: center;
	width: 130px;
	height: 130px;
}

.about-us-white-right h2 {
	font-size: 2.5rem;
	text-transform: uppercase;
	line-height: 1.3;
	font-family: var(--font-medium);
	margin-bottom: 30px;
}

.about-us-white-text {
	width: 75%;
	line-height: 1.7;
}


.about-us-yellow {
	background-color: var(--light-yellow-bg);
	display: grid;
	grid-template-columns: 1fr 1.7fr;
	gap: 160px;
	padding-top: 115px;
	margin-top: 90px;
}

.about-us-yellow-left {
	display: flex;
	align-items: flex-end;
}

.about-us-yellow-left img {
	width: 100%;
}

.about-us-yellow-right {
	padding-right: 80px;
}

.about-us-yellow-right h2 {
	font-size: 2.5rem;
	text-transform: uppercase;
	line-height: 1.3;
	margin-bottom: 30px;
}

.about-us-yellow-text {
	width: 90%;
	line-height: 1.7;
}

.faq-box {
	background-color: var(--light-yellow-header);
	padding: 100px 80px;
	margin: 80px 0;
	position: relative;
}

.faq-box::after {
	content: '';
	position: absolute;
	top: 40px;
	right: 80px;
	background-image: url(/img/doodle-decor-three-blue.svg);
	background-size: 100%;
	background-repeat: no-repeat;
	width: 165px;
	height: 190px;
}

.pre-title {
	font-size: 1.1rem;
	color: #777373;
	font-family: var(--font-semibold);
}

.site-main h1 {
	font-family: var(--font-medium);
	color: var(--dark-green);
	margin-bottom: 60px;
	text-transform: uppercase;
	font-size: 3.5rem;
	position: relative;
	z-index: 2;
}

.faq-box h2 {
	font-size: 3.7rem;
	color: #506033;
	text-transform: uppercase;
	margin-bottom: 40px;
	position: relative;
	z-index: 2;
}

.page-id-23 .bg-footer {
	background-color: #E6D9B6;

}

.bg-footer {
	padding-bottom: 80px;
}

.faq-box-vacancies .container {
	padding-bottom: 60px;
	padding-top: 80px;
}

.faq-box-vacancies-bg {
	background-color: var(--light-yellow-header);
	padding: 100px 80px;
}

.faq-box-vacancies {
	background-color: #E6D9B6;
	margin-bottom: 0;
	padding: 0;
}

.faq-box-vacancies h3 {
	font-family: var(--font-light);
	color: var(--dark-green);
	margin-bottom: 60px;
	text-transform: uppercase;
	font-size: 3.5rem;
}

.faq-box-vacancies.faq-box::after {
	background-image: url(/img/spiral-y.svg);
	width: 300px;
	height: 300px;
	top: 70px;
	right: 110px
}

.faqs-screen .faq-box::after {
	background-image: url(/img/home-quest.svg);
	height: 250px;
	width: 305px;
	top: 0;
	right: 15px;
}

summary::-webkit-details-marker {
	display: none;
}

summary {
	text-align: left;
	cursor: pointer;
	min-height: 90px;
	display: flex;
	align-items: center;
	justify-content: flex-start;
	font-size: 1.5rem;
	position: relative;
	padding-right: 60px;
	line-height: 1.5;
}

summary:hover {
	opacity: 0.75;
}

summary::after {
	content: '';
	position: absolute;
	right: 0;
	background-image: url(/img/plus.svg);
	background-size: 100%;
	background-repeat: no-repeat;
	width: 40px;
	height: 40px;
}

details {
	border-bottom: 1px solid #201E1D;
}

details[open] summary::after {
	background-image: url(/img/minus.svg);
}

.details-text {
	margin: 0 0 25px 0;
	line-height: 1.5;
}

.details-text ul {
	padding-left: 20px;
}

.details-text ol {
	padding-left: 20px;
}

.send-resume-btn {
	text-transform: uppercase;
	color: var(--dark-green);
	border: 1px solid var(--green);
	padding: 20px 25px;
	width: max-content;
	margin-top: 30px;
	cursor: pointer;
}

.faq-form {
	margin-top: 80px;
	background-color: var(--light-yellow-header);
	padding: 120px 0 60px 0;
}

.faq-form .container {
	display: grid;
	grid-template-columns: 1fr 1.2fr;
	gap: 50px;
}

.faq-form-form form>p {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.faq-form-form {
	background-color: #fff;
	padding: 160px 80px 80px 80px;
	position: relative;
}

.faq-form-form::after {
	content: '';
	position: absolute;
	left: 80px;
	top: 80px;
	background-image: url(/img/spiral-green.svg);
	background-size: 100%;
	background-repeat: no-repeat;
	width: 146px;
	height: 20px;
}

input.form-input {
	height: 53px;
	padding: 0;
	background-color: transparent;
	border: none;
	border-bottom: 1px solid #6F6758;
	color: #000;
	width: 100%;
	font-family: var(--font-regular);
	font-size: 1rem;
	outline: none !important;
}

input.form-input::placeholder {
	color: #888;
	text-transform: uppercase;
	font-family: var(--font-regular);
	font-size: 1rem;
}


textarea.form-textarea {
	height: 53px;
	padding: 0;
	background-color: transparent;
	border: none;
	border-bottom: 1px solid #6F6758;
	color: #000;
	width: 100%;
	font-family: var(--font-regular);
	outline: none !important;
	font-size: 1rem;
	padding-top: 17px;
	resize: none;
}

textarea.form-textarea::placeholder {
	color: #888;
	text-transform: uppercase;
	font-family: var(--font-regular);
	font-size: 1rem;
}

input.submit-form {
	background-color: var(--light-blue);
	color: var(--blue);
	text-transform: uppercase;
	font-family: var(--font-bold);
	padding: 20px 25px;
	width: max-content;
	line-height: 1;
	border: none;
	box-shadow: none;
	cursor: pointer;
	margin-top: 40px;
}

input.submit-form:hover {
	background-color: var(--blue);
	color: #fff;
}

.faq-form-text {
	position: relative;
}

.faq-form-text::after {
	content: '';
	position: absolute;
	left: 0;
	bottom: 30px;
	background-image: url(/img/arrow.svg);
	background-size: 100%;
	background-repeat: no-repeat;
	width: 290px;
	height: 210px;
}

.faq-form-text h2 {
	font-size: 2.6rem;
	text-transform: uppercase;
	font-family: var(--font-medium);
	color: var(--dark-green);
	line-height: 1.3;
	margin-top: 15px;
}

body .wpcf7 form .wpcf7-response-output {
	margin: 0;
	padding: 20px;
	line-height: 1.5;
}

.footer {
	background-color: var(--green);
	padding: 70px 125px 125px 125px;
}

.footer-top {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 30px;
	align-items: center;
}

.footer-top__navigation ul {
	display: flex;
	margin: 0;
	padding: 0;
	list-style-type: none;
	gap: 40px;
}

.footer-top__navigation ul a {
	text-transform: uppercase;
	color: #fff;
}

.footer a:hover {
	color: #EDC135;
}

.footer-top__lang {
	position: relative;
}

.footer-top__lang ul {
	display: flex;
	margin: 0;
	padding: 0;
	list-style-type: none;
	gap: 20px;
	position: relative;
}

.footer-top__lang::after {
	content: '';
	position: absolute;
	left: 50%;
	top: 0;
	height: 100%;
	width: 1px;
	background-color: #FFFFFF;
	opacity: .1;
}

.footer-top__lang a {
	color: #F2F2F2;
}

.footer-top__lang .current-lang a {
	font-family: var(--font-bold);
}

.footer-middle {
	padding: 105px 0;
	display: flex;
	justify-content: space-between;
	align-items: center;
	color: #fff;
}

.footer-middle a {
	color: #fff;
	text-transform: uppercase;
}

.social-footer {
	display: flex;
	flex-wrap: wrap;
	gap: 35px;
}

.footer-bottom {
	display: flex;
	justify-content: space-between;
	align-items: center;
	border-top: 1px solid rgba(255, 255, 255, 0.2);
	padding-top: 40px;
}

.footer-bottom__name {
	color: #fff;
	opacity: .6;
}

.footer-bottom a {
	color: #fff;
	opacity: .6;
	text-transform: uppercase;
}

.team {
	margin: 300px 0 200px 0;
}

.team-item {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	gap: 20px;
}

#posts-container-top img {
	width: 100%;
}

#posts-container img {
	width: 100%;
}

.team-item-left {
	background-color: var(--blue);
	position: relative;
	padding: 75px 40px;
	font-family: var(--font-regular);
}

.team-item-left::after {
	content: '';
	position: absolute;
	bottom: 30px;
	right: 40px;
	background-image: url(/img/slider-bg.svg);
	background-size: 100%;
	background-repeat: no-repeat;
	width: 340px;
	height: 340px;

}

.team-name {
	text-transform: uppercase;
	font-size: 2.7rem;
	line-height: 1;
	margin-bottom: 20px;
	color: #FFCAA3;
}

.team .splide__track--nav>.splide__list>.splide__slide.is-active {
	border: none;
	border-bottom: 1px solid #EDC035;
}

.team .splide__track--nav>.splide__list>.splide__slide {
	border: none;
}

.category-name {
	font-size: 2rem;
	color: #DBCDA1;
}

.team-item-right {
	background-color: #E6D9B6;
	color: #181818;
	padding: 75px 40px;
	font-size: 1.2rem;
	line-height: 1.5;
}

.main-screen {
	padding: 0 20px;
}

.main-screen .container {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 20px;
	width: 100%;
	padding: 0 0 20px 0;
}

.main-screen-left {
	background-repeat: no-repeat;
	background-size: cover;
	display: flex;
	justify-content: flex-end;
	position: relative;
}

.main-screen-left img {
	width: 100%;
}

.main-screen-left::before {
	content: '';
	position: absolute;
	left: 25%;
	top: 50px;
	background-image: url(/img/main_screen_bg.svg);
	background-size: 100%;
	background-repeat: no-repeat;
	width: 160%;
	height: 100%;
	z-index: 2;
}

.site-main h1.main-screen-left__title {
	font-family: var(--font-extra);
	color: var(--blue);
	text-align: right;
	line-height: 1;
	position: absolute;
	z-index: 3;
	font-size: calc(var(--index)* 4.1);
	word-spacing: 9999999px;
	padding: calc(var(--index)* 2.3);
	top: 0;
	right: 0;
}

.main-screen-right {
	padding: calc(var(--index)* 2.3);
	display: flex;
	justify-content: flex-end;
	background-color: var(--blue);
	flex-direction: column;
}

.main-screen-right__posttitle {
	color: #F8F4E4;
	margin-bottom: 10px;
	font-size: calc(var(--index)* 1.13);
}

.main-screen-right__title {
	color: #FFCAA3;
	font-size: calc(var(--index)* 3.2);
	font-family: var(--font-bold);
	text-transform: uppercase;
}

.second-screen-left {
	background-color: var(--green);
	color: #E6D9B6;
	display: flex;
	flex-direction: column;
	padding: calc(var(--index)* 7) calc(var(--index)* 3);
}

.second-screen-left__posttitle {
	font-size: calc(var(--index)* .7);
	font-family: var(--font-medium);
}

.second-screen-left__title {
	text-transform: uppercase;
	font-size: calc(var(--index)* 1.5);
	margin: 15px 0 30px 0;
	color: #FFCAA3;
	font-family: var(--font-medium);
}

.second-screen-left__text {
	line-height: 1.5;
	font-size: calc(var(--index)* .6);
}

.second-screen-right {
	background-color: #E6D9B6;
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: flex-end;
	padding: 0 0 100px 0;
}

.second-screen-right::after {
	content: '';
	position: absolute;
	top: 2%;
	left: 15%;
	background-image: url(/img/line-right.svg);
	background-repeat: no-repeat;
	background-size: auto 100%;
	z-index: 0;
	width: 100%;
	height: 90%;
	opacity: 0.8;
}

.second-screen-right__img {
	width: 38%;
	position: relative;
	z-index: 5;
	margin-bottom: 70px;
}

.second-screen-right__img img {
	width: 100%;
}

.second-screen-right__img::after {
	content: '';
	position: absolute;
	top: -55px;
	right: -65px;
	background-image: url(/img/leaf.svg);
	background-repeat: no-repeat;
	background-size: 100%;
	z-index: 6;
	width: 95px;
	height: 100px;
}

.second-screen-right__img::before {
	content: '';
	position: absolute;
	bottom: -35px;
	left: -90px;
	background-image: url(/img/leaf2.svg);
	background-repeat: no-repeat;
	background-size: 100%;
	width: 110px;
	height: 85px;
}

.second-screen-right__text {
	position: relative;
	width: 45%;
	text-align: center;
	color: #777373;
	line-height: 1.4;
	font-size: calc(var(--index)* .6);
}

.blago-sreen {
	background-color: var(--blue);
	border: 30px solid #E6D9B6;
	align-items: center;
	padding: 30px;
	display: flex;
	justify-content: center;
	align-items: center;
}

.blago-sreen .container {
	position: absolute;
	padding-right: 45vw;
}

.blago-sreen-left__title {
	text-transform: uppercase;
	font-size: 2.7rem;
	line-height: 1.4;
	color: #FFCAA3;
	margin-bottom: 30px;
	position: relative;
	font-family: var(--font-medium);
}

.blago-sreen-left__title::after {
	content: '';
	position: absolute;
	top: -100px;
	left: -65px;
	background-image: url(/img/blago-wawe.svg);
	background-repeat: no-repeat;
	background-size: 100%;
	width: 200px;
	height: 40px;
}

.blago-sreen-left__text {
	font-size: 1rem;
	color: #E6D9B6;
	line-height: 1.5;
	width: 70%;
}

.blago-sreen-right {
	position: relative;
	width: 100%;
	display: flex;
	justify-content: flex-end;
}

.blago-sreen-right img {
	width: 33vw;
	position: relative;
	z-index: 1;
}

.blago-sreen-right__img {
	position: relative;
}

.blago-sreen-right__img::after {
	content: '';
	position: absolute;
	bottom: -20px;
	left: -80px;
	background-image: url(/img/blago-img-wawe.svg);
	background-repeat: no-repeat;
	background-size: 100%;
	width: 230px;
	height: 282px;
	z-index: 2;
}

.header-tab {
	cursor: pointer;
	border-bottom: 2px solid transparent;
	color: #6F6758;
}

.header-tab.active-header-tab {
	border-bottom-color: var(--green);
	color: #201E1D;
}

.info-tabs .hide {
	display: none;
}

.info-tabs .show {
	display: flex;
}

.price-screen {
	background-color: var(--green);
	padding: 170px 0 140px 0;
	overflow: hidden;
}

.price-screen .container {
	position: relative;
}

.price-screen .pre-title {
	color: #E6D9B6;
}

.price-screen h2 {
	text-transform: uppercase;
	color: #FFCAA3;
	font-size: 3.7rem;
	margin-bottom: 80px;
}

.price-screen .container::after {
	content: '';
    position: absolute;
    bottom: -185px;
    left: -300px;
    background-image: url(/img/price-bg.png);
    background-repeat: no-repeat;
    background-size: contain;
    width: 50%;
    height: 100%;
    z-index: 2;
    transform: rotate(27deg) scaleX(-1);
}

.price-screen .container::before {
	content: '';
	position: absolute;
	top: -65px;
	right: -35px;
	background-image: url(/img/price-arrow-bg.svg);
	background-repeat: no-repeat;
	background-size: 100%;
	width: 440px;
	height: 400px;
	z-index: 2;
}

#price-slider {
	z-index: 5;
}

.price-item {
	background-color: #F9F8F2;
	padding: 40px 40px 100px 40px;
}

.price-item__title {
	color: #6F6758;
	font-size: 1.7rem;
	text-transform: uppercase;
	margin-bottom: 30px;
}

.header-tabs {
	display: flex;
	border-bottom: 1px solid #E6D9B6;
	gap: 40px;
}

.price-item__price {
	font-size: 6rem;
	position: relative;
	display: flex;
}

.price-item__price span {
	border: 1px solid #E6D9B6;
	border-radius: 30px;
	height: 55px;
	padding: 0 25px;
	font-size: 2rem;
	color: #6F6758;
	position: relative;
	top: -100%;
	display: flex;
	align-items: center;
	justify-self: center;
	text-align: center;
	margin-left: 10px;
}

.price-item__text {
	margin-top: 100px;
}

.price-item summary {
	color: #777373;
	font-size: 1rem;
	font-family: var(--font-medium);
	min-height: 60px;
}

.price-item summary::after {
	opacity: 0.7;
}

.price-item details {
	border-bottom-color: #E6D9B6;
}

.tabcontent .description {
	width: 100%;
}

.price-item .details-text {
	color: #777373;
	font-size: 1rem;
	margin: 25px 0;
}

.price-sreen-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 40px;
}

#price-slider .splide__arrows {
	display: flex;
	gap: 40px;
}

#price-slider .splide__arrow--prev {
	position: static;
	height: 67px;
	width: 67px;
	background-color: transparent;
	box-shadow: none;
	border-radius: 0;
	background-image: url(/img/price-left.svg);
	background-repeat: no-repeat;
	background-size: 65px;
}

#price-slider .splide__arrow--next {
	position: static;
	height: 67px;
	width: 67px;
	background-color: transparent;
	box-shadow: none;
	border-radius: 0;
	background-image: url(/img/price-right.svg);
	background-repeat: no-repeat;
	background-size: 65px;
}

.services {
	background-color: #E6D9B6;
	padding: 140px 0;
}

.services h2 {
	font-size: 3.7rem;
	color: #506033;
	text-transform: uppercase;
	margin-bottom: 80px;
}

.services .container {
	position: relative;
}

.services .container::before {
	content: '';
	position: absolute;
	top: -205px;
	right: -90px;
	background-image: url(/img/leaf-services.svg);
	background-repeat: no-repeat;
	background-size: 100%;
	width: 220px;
	height: 310px;
	z-index: 2;
}

.service-wrapper {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 20px;
}

.service-item {
	background-color: #F9F8F2;
	padding: 50px 40px;
	display: flex;
	flex-direction: column;
	gap: 50px;
}

.service-item img {
	width: 100%;
}

.service-item img:hover {
	opacity: .9;
}

.service-item-top {
	display: flex;
	gap: 30px;
	justify-content: space-between;
	align-items: center;
}

.service-item-top__title {
	font-size: 2rem;
	color: #201E1D;
}

.service-item-top__arrow {
	width: 45px;
	height: 45px;
	background-image: url(/img/services-arrow.svg);
	background-repeat: no-repeat;
	background-size: 44px;
}

.service-item-top__arrow a {
	display: flex;
	height: 100%;
	width: 100%;
	cursor: pointer;
}

.service-item-top__arrow:hover {
	opacity: 0.9;
}

.win-win {
	padding: 140px 0;
	background-color: #F9F8F2;
}

.projects-screen {
	background-color: var(--light-yellow-header);
	padding: 140px 0;
}

.project-wrapper {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 20px;
}

.project-item {
	background-color: #fff;
	display: flex;
	flex-direction: column;
}

.project-item-img img {
	width: 100%;
}

.project-item-img:hover {
	opacity: 0.85;
}

.project-item-text {
	padding: 40px 30px;
}

.project-name {
	font-size: 2rem;
	line-height: 1;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 25px;
}

.projects-screen h2 {
	font-size: 3.7rem;
	color: #506033;
	text-transform: uppercase;
	margin-bottom: 30px;
}

.projects-screen h1 {
	font-size: 3.7rem;
	color: #506033;
	text-transform: uppercase;
	font-family: var(--font-regular);
	margin-bottom: 30px;
}

.project-item-arrow {
	width: 45px;
	height: 45px;
	background-image: url(/img/services-arrow.svg);
	background-repeat: no-repeat;
	background-size: 44px;
}

#project-button {
	display: flex;
	gap: 65px;
	align-items: center;
	width: 100%;
	overflow-x: auto;
	overflow-y: hidden;
}

#project-button button {
	background-color: transparent;
	border-color: transparent;
	box-shadow: none;
	color: #777373;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	font-size: 1.2rem;
	min-height: 80px;
	margin-bottom: 45px;
	cursor: pointer;
	z-index: 5;
	min-width: 140px;
	font-family: var(--font-medium);
}

#project-button button:hover {
	color: #121212;
}

#project-button button.active::after {
	content: '';
	position: absolute;
	top: -50%;
	left: -20%;
	background-image: url(/img/bg-line.svg);
	background-repeat: no-repeat;
	background-size: 100%;
	background-position: center;
	width: 140%;
	height: 200%;
	z-index: 0;
}

#project-button button.active {
	color: #000;
}


.home-form {
	margin-top: 80px;
	background-color: #E6D9B6;
	padding: 120px 0 60px 0;
}

.home-form .container {
	display: grid;
	grid-template-columns: 1fr 1.2fr;
	gap: 50px;
}

.home-form-form form>p {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.home-form-form {
	background-color: #fff;
	padding: 160px 80px 80px 80px;
	position: relative;
}

.home-form-form::after {
	content: '';
	position: absolute;
	left: 80px;
	top: 80px;
	background-image: url(/img/spiral-green.svg);
	background-size: 100%;
	background-repeat: no-repeat;
	width: 146px;
	height: 20px;
}

.home-form-text {
	position: relative;
}

.home-form-text::after {
	content: '';
	position: absolute;
	left: -50px;
	bottom: -30px;
	background-image: url(/img/home-form-arrow.svg);
	background-size: 100%;
	background-repeat: no-repeat;
	width: 420px;
	height: 330px;
}

.home-form-text h2 {
	font-size: 2.6rem;
	text-transform: uppercase;
	font-family: var(--font-medium);
	color: var(--dark-green);
	line-height: 1.3;
	margin-top: 15px;
}

.home .bg-footer {
	background-color: #E6D9B6;
}

.pp-first {
	display: flex;
	position: relative;
	justify-content: center;
	background-color: #F9F8F2;
}

.pp-first::after {
	content: '';
	position: absolute;
	left: 0;
	top: -30px;
	background-image: url(/img/project-wawe.svg);
	background-size: 100%;
	background-repeat: no-repeat;
	width: 20%;
	height: 100%;
	z-index: 0;
}

.pp-first__left::before {
	content: '';
	position: absolute;
	top: -100%;
	right: 12%;
	background-image: url(/img/project-roll.svg);
	background-size: 100%;
	background-repeat: no-repeat;
	width: 205px;
	height: 170px;
	z-index: 0;
}

.pp-first .container {
	position: absolute;
	padding-right: 55vw;
	bottom: 100px;
	z-index: 2;
}

.pp-first__left {
	position: relative;
}

.error-404-text {
	font-size: 7rem;
}
.error-404-header {
	display: flex;
	flex-direction: column;
	gap: 20px;
	align-items: center;
	justify-content: center;
	background-color: var(--light-yellow-header);
	margin-bottom: 20px;
	padding: 100px 0;
}
.site-main h1.error-404-title {
	text-transform: uppercase;
	text-align: center;
	font-size: 3.5rem;
	margin-bottom: 0;
	font-family: var(--font-light);
}
h1.pp-first__left_title {
	font-size: 2.7rem;
	text-transform: uppercase;
	margin: 20px 0;
	line-height: 1.4;
	font-family: var(--font-medium);
	color: #201E1D;
}

.pp-first__left_subtitle {
	color: #201E1D;
}

.pp_text {
	font-family: var(--font-light);
	font-size: 1.1rem;
	color: #201E1D;
	line-height: 1.5;
}

.projects-template-default .top-header {
	margin-bottom: 0;
	background-color: #fff;
}

.pp-first__right {
	width: 100%;
	display: flex;
	justify-content: flex-end;
}

.pp-first__right img {
	width: 50%;
}

.pp-second {
	background-color: #F6EDE7;
	padding: 100px 0 80px 0
}

.pp-second .container {
	display: grid;
	grid-template-columns: 1fr 1fr;
	align-items: center;
}

.pp-second__left img {
	width: 70%;
}

.pp-second__left_subtitle {
	color: #201E1D;
}

.pp-second__left_title {
	color: rgba(106, 67, 58, 1);
	font-size: 2rem;
	margin: 20px 0;
}

.pp-second__left_text {
	font-size: 1rem;
	color: #201E1D;
	width: 80%;
}

.pp-carousel {

	background-color: #F6EDE7;
}

.pp-carousel img {
	width: 100%;
}

.pp-third {
	background-color: #F9F8F2;
	padding-top: 120px;
	padding-bottom: 120px;
}

.container-blue.container {
	padding: 190px 200px;
	background-color: var(--blue);
	position: relative;
	display: grid;
	grid-template-columns: 1fr 1.5fr;
	gap: 160px;
	align-items: center;
}

.container-blue::after {
	content: '';
	position: absolute;
	left: -65px;
	top: -160px;
	background-image: url(/img/blue-wawe.svg);
	background-size: 100%;
	background-repeat: no-repeat;
	width: 35%;
	height: 150%;
	z-index: 0;
}

.pp-third__left img {
	width: 100%;
	position: relative;
	z-index: 2;
}

.pp-third__left_subtitle {
	color: #E6D9B6;
}

.pp-third__left_title {
	color: #E6D9B6;
	font-size: 2rem;
	margin: 10px 0 20px 0;
}

.pp-third__left_text {
	color: #E6D9B6;
}

.pp-forth {
	display: flex;
	justify-content: center;
	background-color: #F6EDE7;
	position: relative;
	padding: 90px 0 170px 0;
}

.pp-forth .container {
	position: absolute;
	padding-right: 60vw;
	z-index: 2;
}

.pp-forth__left_title {
	font-size: 2rem;
	margin: 20px 0;
	line-height: 1.4;
	font-family: var(--font-medium);
	color: #754A40;
}

.pp-forth__left_subtitle {
	color: #201E1D;
}

.pp-forth__left_text {
	color: #6F6758;
}

.pp-forth__right {
	width: 100%;
	display: flex;
	justify-content: flex-end;
}

.pp-forth__right .pp-forth__right-images {
	width: 55%;
	display: grid;
	grid-template-columns: 1fr 1.3fr;
	gap: 15px;
}

.pp-forth__right .pp-forth__right-images img {
	width: 100%;
	height: 100%;

}
.pp-forth__right .pp-forth__right-images img:first-child {
    height: 100%;
    object-fit: cover;
}
.grey-img {
	background-color: #754A40;
	padding: 80px 0;
}

.grey-img img {
	width: 100%;
}
.home-carousel {
	padding: 100px 0;
}
.gallery-box {
	border: 20px solid #F9F8F2;
	background-color: #F3E8DF;
	position: relative;
}

.gallery-box::after {
	content: '';
	position: absolute;
	left: 0;
	bottom: -150px;
	background-image: url(/img/line.png);
	background-size: 100%;
	background-repeat: no-repeat;
	width: 100%;
	height: 100%;
	z-index: 0;
}

.gallery-box .container {
	position: relative;
	z-index: 2;
}

.gallery-box1 {
	display: grid;
	grid-template-columns: 1fr 1.3fr;
	gap: 160px;
	padding-top: 130px;
}

.gallery-box1__left img {
	width: 100%;
}

.pp-gallery-box1__left_subtitle {
	color: #6F6758;
}

.pp-gallery-box1__left_title {
	color: #754A40;
	margin: 15px 0;
	font-size: 2rem;

}

.pp-gallery-box1__left_text {
	color: #6F6758;
	font-size: 1rem;
	width: 80%;
}

.gallery-box1__right {
	width: 80%;
}

.gallery-box2 {
	display: grid;
	grid-template-columns: 1fr 1fr;
	margin-top: 320px;
}

.gallery-box2__left_imgs {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 20px;
}

.gallery-box2__left_imgs img {
	width: 100%;
}

.gallery-box2__right {
	margin-top: -40px;
}

.gallery-box2__right img {
	width: 50%;
	margin-top: -100%;
	margin-left: 165px;
}

.gallery-box3 {
	display: grid;
	grid-template-columns: 1.5fr 1fr;
}

.gallery-box3__left {
	padding-top: 210px;
	width: 70%;
}

.pp-gallery-box3__left_subtitle {
	color: #6F6758;
}

.pp-gallery-box3__left_title {
	color: #754A40;
	margin: 15px 0;
	font-size: 2rem;

}

.pp-gallery-box3__left_text {
	color: #6F6758;
	font-size: 1rem;
}

.gallery-box3__right img {
	width: 100%;
	margin-top: -150px;
}

.gallery-box4 {
	display: grid;
	grid-template-columns: 1fr 1fr;
}

.gallery-box4__left {
	padding-right: 300px;
}

.gallery-box4__left img {
	width: 100%;
}

.gallery-box4__right {
	margin-top: 240px;
}

.gallery-box4__right img {
	width: 100%;
}

.pp-scheme {
	background-color: #F9F8F2;
	padding: 220px 0;
}

.pp-scheme img {
	width: 100%;
}

.services-included {
	background-color: var(--green);
	padding: 135px 0;
}
#carousel2-slider {
	padding-top: 20px;
}

.services-included .container {
	position: relative;
}

.services-included .container::after {
	content: '';
	position: absolute;
	left: -140px;
	bottom: -155px;
	background-image: url(/img/poslugi-wawe.png);
	background-size: 100%;
	background-repeat: no-repeat;
	width: 19%;
	height: 100%;
	z-index: 0;
}

.services-included-top {
	display: grid;
	grid-template-columns: 1fr 1fr;
	margin-bottom: 70px;
}

.services-included__title {
	text-transform: uppercase;
	color: #E6D9B6;
	font-size: 3.7rem;
	width: 70%;
	margin-bottom: 25px;
}

.services-included__text {
	color: #E6D9B6;
	font-size: 1.2rem;
}

.about-us-img-arrow.about-us-img-arrow-mobile {
	display: none;
}

.services-included-card {
	background-color: #F9F8F2;
	border: 12px solid #FFCAA3;
	padding: 100px 25px 50px 25px;
	position: relative;
}


#services-included-cards .splide__arrows {
	display: flex;
	gap: 40px;
	justify-content: flex-end;
}

#services-included-cards .splide__arrow--prev {
	position: static;
	height: 67px;
	width: 67px;
	background-color: transparent;
	box-shadow: none;
	border-radius: 0;
	background-image: url(/img/price-left.svg);
	background-repeat: no-repeat;
	background-size: 65px;
}

#services-included-cards .splide__arrow--next {
	position: static;
	height: 67px;
	width: 67px;
	background-color: transparent;
	box-shadow: none;
	border-radius: 0;
	background-image: url(/img/price-right.svg);
	background-repeat: no-repeat;
	background-size: 65px;
}

.services-included-card::after {
	content: '';
	position: absolute;
	left: 15px;
	top: 45px;
	background-image: url(/img/poslugi-star.svg);
	background-size: 100%;
	background-repeat: no-repeat;
	width: 45px;
	height: 45px;
	z-index: 0;
}

.services-included-cards {
	position: relative;
	z-index: 5;
}

.services-included-cards__title {
	font-size: 2rem;
	color: #201E1D;
	margin-bottom: 20px;
	font-family: var(--font-medium);
}

.services-included-cards__text {
	color: #666;
	font-size: 1rem;
	line-height: 1.5;
}

br {
	display: block;
	content: "\0020";
	margin-top: 1rem;
}

.carousel2 img {
	object-fit: cover;
	width: 100%;
	height: 100%;
}

.carousel1 img {
	object-fit: cover;
	width: 100%;
	height: 100%;
}

.splide__arrows1 svg {
	display: none;
}

.splide__arrow1 {
	box-shadow: none;
	border: none;
	background-color: transparent;
}

.splide__arrow--prev1 {
	height: 55px;
	width: 55px;
	background-color: transparent;
	box-shadow: none;
	border-radius: 0;
	background-image: url(/img/left.svg);
	background-repeat: no-repeat;
	background-size: 54px;
	left: 50px;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	z-index: 5;
	cursor: pointer;
}

.splide__arrow--next1 {
	height: 55px;
	width: 55px;
	background-color: transparent;
	box-shadow: none;
	border-radius: 0;
	background-image: url(/img/right.svg);
	background-repeat: no-repeat;
	background-size: 54px;
	right: 50px;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	z-index: 5;
	cursor: pointer;
}

.splide__arrow--next1:disabled {
	opacity: 0.5;
	cursor: not-allowed;
}

.splide__arrow--prev1:disabled {
	opacity: 0.5;
	cursor: not-allowed;
}

.splide__arrows2 svg {
	display: none;
}

.splide__arrow2 {
	box-shadow: none;
	border: none;
	background-color: transparent;
}

.splide__arrow--prev2 {
	height: 55px;
	width: 55px;
	background-color: transparent;
	box-shadow: none;
	border-radius: 0;
	background-image: url(/img/left.svg);
	background-repeat: no-repeat;
	background-size: 54px;
	left: 50px;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	z-index: 5;
	cursor: pointer;
}

.splide__arrow--next2 {
	height: 55px;
	width: 55px;
	background-color: transparent;
	box-shadow: none;
	border-radius: 0;
	background-image: url(/img/right.svg);
	background-repeat: no-repeat;
	background-size: 54px;
	right: 50px;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	z-index: 5;
	cursor: pointer;
}

.splide__arrow--next2:disabled {
	opacity: 0.5 !important;
	cursor: not-allowed;
}

.splide__arrow--prev2:disabled {
	opacity: 0.5 !important;
	cursor: not-allowed;
}


.project-form {
	background-color: #F9F8F2;
	padding: 120px 0;
}

.project-form .container {
	display: grid;
	grid-template-columns: 1fr 1.2fr;
	gap: 50px;
}

.project-form-form form>p {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.project-form-form {
	background-color: #fff;
	padding: 160px 80px 80px 80px;
	position: relative;
}

.project-form-form::after {
	content: '';
	position: absolute;
	left: 80px;
	top: 80px;
	background-image: url(/img/pro-wawe.svg);
	background-size: 100%;
	background-repeat: no-repeat;
	width: 146px;
	height: 20px;
}

.project-form-text {
	position: relative;
}

.project-form-text::after {
	content: '';
	position: absolute;
	left: -20px;
	bottom: -10px;
	background-image: url(/img/pro-spiral.svg);
	background-size: 100%;
	background-repeat: no-repeat;
	width: 195px;
	height: 300px;
}

.project-form-text h2 {
	font-size: 2.6rem;
	text-transform: uppercase;
	font-family: var(--font-medium);
	color: #201E1D;
	line-height: 1.3;
	margin-top: 15px;
}

.project-form input.submit-form {
	background-color: #C9DAF1;
	color: #485091;
}
.home .home-form-form input.submit-form  {
	background-color: #C8D9A7;
	color: rgba(80, 96, 51, 1);
	
}
.home .home-form-form input.submit-form:hover {
	color: #fff;
	background-color: rgba(80, 96, 51, 1);
}



#popup-resume input.submit-form  {
	background-color: #C8D9A7;
	color: rgba(80, 96, 51, 1);
	
}
#popup-resume input.submit-form:hover {
	color: #fff;
	background-color: rgba(80, 96, 51, 1);
}

.single-projects .bg-footer {
	background-color: #F9F8F2;
}

.single-projects .footer {
	background-color: #754A40;
}

.page-id-94 .footer, .page-id-104 .footer {
	background-color: #754A40;
}
.page-id-94 .bg-footer, .page-id-104 .bg-footer {
	background-color: var(--light-yellow-header);
}

.footer-top__logo__dark {
	display: none;
}

.single-projects .footer .footer-top__logo.footer-top__logo__dark {
	display: flex !important;
}

.single-projects .footer .footer-top__logo {
	display: none;
}

.page-id-94 .footer .footer-top__logo.footer-top__logo__dark {
	display: flex !important;
}

.page-id-94 .footer .footer-top__logo {
	display: none;
}
.page-id-104 .footer .footer-top__logo.footer-top__logo__dark {
	display: flex !important;
}

.page-id-104 .footer .footer-top__logo {
	display: none;
}
.page-id-27 .top-header {
	margin-bottom: 0;
	background-color: #fff;
}

.page-id-27 .bg-footer {
	background-color: var(--light-yellow-header);
}

.page-id-42 .bg-footer {
	background-color: #E6D9B6;
}

.page-id-40 .bg-footer {
	background-color: #E6D9B6;
}

.page-id-44 .bg-footer {
	background-color: var(--light-yellow-header);
}

.page-id-44 .top-header {
	margin-bottom: 0;
	background-color: #fff;
}

.page-id-40 .top-header {
	margin-bottom: 0;
	background-color: #fff;
}

.page-id-31 .top-header {
	margin-bottom: 0;
	background-color: #fff;
}

.page-id-31 .bg-footer {
	background-color: #E6D9B6;
}

.page-id-31 .services .container::before {
	display: none;
}

.page-id-40 .services .container::before {
	display: none;
}

#filter-team {
	display: flex;
	gap: 40px;
	align-items: center;
	width: 100%;
	overflow-x: auto;
	overflow-y: hidden;
}

#filter-team button.active::after {
	content: '';
	position: absolute;
	top: -50%;
	left: -20%;
	background-image: url(/img/bg-line.svg);
	background-repeat: no-repeat;
	background-size: 100%;
	background-position: center;
	width: 140%;
	height: 200%;
	z-index: 0;
}

#filter-team button {
	background-color: transparent;
	border-color: transparent;
	box-shadow: none;
	color: #777373;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	font-size: 1.2rem;
	min-height: 80px;
	margin-top: 20px;
	cursor: pointer;
	z-index: 5;
	min-width: 140px;
}

#filter-team button:hover {
	color: #121212;
}

.team-bottom-page .container {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 160px;
	align-items: center;
	margin-bottom: 200px;
}

.team-bottom-page__title {
	font-size: 2rem;
	font-family: var(--font-medium);
}

.team-bottom-page__text {
	font-size: 1rem;
	color: #6A6666;
}

.team-bottom-page__text p {
	margin-bottom: 10px;
}

.overflow-hidden {
	overflow: hidden;
}

.popup-form-header {
	position: fixed;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
	background-color: rgba(0, 0, 0, .7);
	z-index: 500;
	display: none;
	align-items: center;
	justify-content: center;
	padding: 50px 20px;
}

.popup-form-header.active-form {
	display: flex;
}

.popup-form-header-title {
	font-size: 2.5rem;
	text-transform: uppercase;
	color: #506033;
	margin-bottom: 30px;
}

.popup-form-header-body {
	background-color: #fff;
	width: 100%;
	max-width: 800px;
	padding: 120px 60px 40px 60px;
	position: relative;
}

.popup-form-header-body::after {
	content: '';
	position: absolute;
	left: 60px;
	top: 60px;
	background-image: url(/img/spiral-green.svg);
	background-size: 100%;
	background-repeat: no-repeat;
	width: 140px;
	height: 20px;
}

.popup-form-form form>p {
	display: flex;
	flex-direction: column;
	gap: 15px;
}

.popup-form-form input.submit-form {
	width: 100%;
	text-align: center;
	margin-top: 20px;
}

.close {
	color: #fff;
	width: 70px;
	height: 70px;
	position: absolute;
	top: 0;
	right: 0;
	opacity: 1 !important;
	font-size: 0;
	z-index: 100;
	-webkit-transition: -webkit-transform .3s ease-in-out;
	transition: transform .3s ease-in-out;
	cursor: pointer;
}

.close:hover {
	-webkit-transform: rotate(180deg);
	transform: rotate(180deg);
	-webkit-transition: -webkit-transform 0.5s ease-out;
	transition: transform 0.5s ease-out;
	opacity: 1;
}

.close::before {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%) rotate(315deg);
	-ms-transform: translate(-50%, -50%) rotate(315deg);
	transform: translate(-50%, -50%) rotate(315deg);
	height: 1px;
	width: 55%;
	background: #121212;
}

.close::after {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%) rotate(45deg);
	-ms-transform: translate(-50%, -50%) rotate(45deg);
	transform: translate(-50%, -50%) rotate(45deg);
	height: 1px;
	width: 55%;
	background: #121212;
}

.popup-resume {
	position: fixed;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
	background-color: rgba(0, 0, 0, .7);
	z-index: 500;
	display: none;
	align-items: center;
	justify-content: center;
	padding: 50px 20px;
}

.popup-resume.active-form {
	display: flex;
}

.popup-resume-title {
	font-size: 2.5rem;
	text-transform: uppercase;
	color: #506033;
	margin-bottom: 30px;
}

.popup-resume-body {
	background-color: #fff;
	width: 100%;
	max-width: 800px;
	padding: 120px 60px 40px 60px;
	position: relative;
}

.popup-resume-body::after {
	content: '';
	position: absolute;
	left: 60px;
	top: 60px;
	background-image: url(/img/spiral-green.svg);
	background-size: 100%;
	background-repeat: no-repeat;
	width: 140px;
	height: 20px;
}

.popup-resume-form form>p {
	display: flex;
	flex-direction: column;
	gap: 15px;
}

.popup-resume-form input.submit-form {
	width: 100%;
	text-align: center;
	margin-top: 20px;
}

#add-file {
	position: relative;
	display: flex;
	align-items: center;
	color: #6F6758;
	cursor: pointer;
	font-size: 1rem;
	padding-left: 75px;
	height: 60px;
	margin-top: -17px;
}

#add-file::after {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	background-image: url(/img/plus-vac.svg);
	background-size: 100%;
	background-repeat: no-repeat;
	width: 60px;
	height: 60px;

}

.popup-resume-form .wpcf7-file {
	opacity: 0;
}


#posts-container-top .splide__arrows svg {
	display: none;
}

#posts-container-top .splide__arrow {
	box-shadow: none;
	border: none;
	background-color: transparent;
}

#posts-container-top .splide__arrow--prev {
	height: 55px;
	width: 55px;
	background-color: transparent;
	box-shadow: none;
	border-radius: 0;
	background-image: url(/img/left.svg);
	background-repeat: no-repeat;
	background-size: 54px;
	left: calc(50% - 70px);
	position: absolute;
	bottom: 10px;
	top: initial;
	transform: translateY(-50%);
	z-index: 5;
	opacity: 1;
	cursor: pointer;
}

#posts-container-top .splide__arrow--next {
	height: 55px;
	width: 55px;
	background-color: transparent;
	box-shadow: none;
	border-radius: 0;
	background-image: url(/img/right.svg);
	background-repeat: no-repeat;
	background-size: 54px;
	right: calc(50% - 70px);
	position: absolute;
	bottom: 10px;
	top: initial;
	transform: translateY(-50%);
	z-index: 5;
	opacity: 1;
	cursor: pointer;
}

#posts-container-top .splide__arrow--next:disabled {
	opacity: 0.5;
	cursor: not-allowed;
}

#posts-container-top .splide__arrow--prev:disabled {
	opacity: 0.5;
	cursor: not-allowed;
}

.privacy-policy main {
	margin: 100px 0;
}

.wpcf7-not-valid-tip {
	margin-top: 10px;
}

.single-dodatkovi_poslugy main {
	margin: 100px 0;
}

@media (max-width: 1900px) {
	.blago-sreen-left__title::after {
		top: -80px;
		left: -30px;
		width: 150px;
		height: 35px;
	}

}

@media (max-width: 1700px) {
	.blago-sreen-left__title {
		font-size: 2.2rem;
        width: 92%;
	}
	.project-form-text h2 {
		font-size: 2.1rem;
	
	}
	.gallery-box1 {
		gap: 120px;
	}
	.pp-gallery-box1__left_title {
		font-size: 1.7rem;
	}
	.services-included__title {
		font-size: 3.5rem;
	}
	.services-included-cards__title {
		font-size: 1.5rem;
	}
	.services-included-cards__text {
		font-size: .9rem;
	}
	.pp-gallery-box3__left_title {
		font-size: 1.7rem;
	}
	.gallery-box3__left {

		width: 80%;
	}
	.gallery-box1__right {
		width: 90%;
	}
	.pp-third__left_title {
		font-size: 1.8rem;
	}
	.pp-forth__left_title {
		font-size: 1.8rem
	}
	.blago-sreen-left__text {
		font-size: 0.85rem;
	}

	.home-form-text h2 {
		font-size: 2.4rem;
	}

	.projects-screen h2 {
		font-size: 3.4rem;
	}

	.services h2 {
		font-size: 3.4rem;
	}

	.price-screen h2 {
		font-size: 3.4rem;
	}

	.faq-box h2 {
		font-size: 3.4rem;
	}

	.project-name {
		font-size: 1.5rem;
	}

	.price-item__title {
		font-size: 1.5rem;
	}

	.price-item__price {
		font-size: 5rem;
	}

	.price-item__text {
		margin-top: 80px;
	}

	.blago-sreen-left__title::after {
		top: -65px;
		left: -40px;
	}

	.blago-sreen {
		border: 20px solid #E6D9B6;
		padding: 30px 30px 30px 65px;
	}

	.site-main h1 {
		font-size: 3rem;
	}

	.about-us-text p {
		line-height: 1.5;
	}

	.about-us-blue-text {
		width: 65%;
		line-height: 1.5;
		font-size: 1rem;
	}

	.about-us-whitef h2 {
		font-size: 2rem;
	}

	.about-us-whitef-text {
		font-size: 1rem;
	}

	.about-us-white-right h2 {
		font-size: 2rem;
		width: 80%;
	}

	.about-us-white-text {
		width: 80%;
		font-size: 1rem;
	}

	.about-us-yellow-right h2 {
		font-size: 2.2rem;
	}

	.about-us-yellow-text {
		font-size: 1rem;
	}

	.team-name {
		font-size: 2.2rem;
	}

	.category-name {
		font-size: 1.5rem;
	}

	.team-item-right {
		font-size: 1rem;
	}

	#filter-team button {
		font-size: 1rem;
	}

	.team-bottom-page__title {
		font-size: 1.7rem;
	}

	.faq-box-vacancies h3 {
		font-size: 3rem;
	}

	summary {
		font-size: 1.2rem;
		min-height: 70px;
	}
	h1.pp-first__left_title.pp_title {
		font-size: 2.2rem;
	}
	.pp-second__left_title {
		font-size: 1.8rem;
	}
	.container-blue.container {
		padding: 100px;
	}
 	
}

@media (max-width: 1400px) {
	.second-screen-left__text {
		font-size: .8rem;
	}
	.container-blue.container {
		gap: 100px;
	}
	.pp-third__left_title {
		font-size: 1.5rem;
	}
	.pp-second__left_title {
		font-size: 1.5rem;
	}
	.pp-forth__left_title {
		font-size: 1.5rem;
	}
	.pp-gallery-box1__left_title {
		font-size: 1.5rem;
	}
	.pp-gallery-box3__left_title {
		font-size: 1.5rem;
	}
	.gallery-box3__left {
		padding-top: 70px;
	}
	.gallery-box1__right {
		width: 90%;
	}
	.gallery-box1 {
		gap: 100px;
	}
	.services-included__title {
		font-size: 3rem;
	}
	.services-included__text {
		font-size: 1rem;
	}
	.pp-second__left img {
		width: 80%;
	}
	.services-included-cards__title {
		font-size: 1.5rem;
	}
	.project-form-text h2 {
		font-size: 2rem;
	}
	.bg-footer {
		padding-bottom: 2rem;
	}
	.gallery-box3__left {
		padding-top: 70px;
		width: 90%;
	}
	.gallery-box4__left {
		padding-right: 200px;
	}

	.second-screen-right__text {
		font-size: .8rem;
		width: 55%;
	}

	.second-screen-right__img::after {
		top: -30px;
	}

	.blago-sreen-left__title {
		font-size: 2rem;
		line-height: 1.2;
	}

	.blago-sreen-left__text {
		font-size: .8rem;
		line-height: 1.4;
		width: 85%;
	}

	.second-screen-left {
		padding: 80px 40px;
	}

	.second-screen-right {
		padding-bottom: 80px;
	}

	.second-screen-left__title {
		font-size: 1.5rem;
	}

	.projects-screen {
		padding: 100px 0;
	}

	.top-header__menu ul a {
		font-size: .8rem;
	}

	.top-header__lang a {
		font-size: .8rem;
	}

	.top-header__btn {
		font-size: .8rem;
	}

	.project-name {
		font-size: 1.2rem;
	}

	.project-item-text {
		padding: 20px 25px;
	}

	.blago-sreen-left__title {
		font-size: 2rem;
	}

	.home-form-text h2 {
		font-size: 2rem;
	}

	.projects-screen h2 {
		font-size: 2.8rem;
	}

	.services h2 {
		font-size: 2.8rem;
	}

	.price-screen h2 {
		font-size: 2.8rem;
		margin-bottom: 50px;
	}

	.faq-box h2 {
		font-size: 2.8rem;
	}

	.service-item-top__title {
		font-size: 1.5rem;
	}

	.service-item {
		padding: 40px 30px;
	}

	.win-win {
		padding: 100px 0;
	}

	.services {
		padding: 100px 0;
	}

	.price-screen {
		padding: 100px 0 80px 0;
	}

	#price-slider .splide__arrow--prev {
		height: 50px;
		width: 50px;
		background-size: 49px;
	}

	#price-slider .splide__arrow--next {
		height: 50px;
		width: 50px;
		background-size: 49px;
	}

	.price-item__title {
		font-size: 1.2rem;
	}

	.price-item__price {
		font-size: 4rem;
	}

	.price-item__price span {
		height: 45px;
		padding: 0 25px;
		font-size: 1.3rem;
	}

	.faq-box:not(.faq-box-vacancies) {
		padding: 80px 60px;
	}

	.home-form {

		padding: 100px 0 50px 0;
	}

	.home-form-form {
		padding: 140px 50px 50px 50px;
	}

	.home-form-form::after {
		left: 50px;
		top: 60px;
		width: 120px;
		height: 20px;
	}

	.footer {
		padding: 60px 80px 80px 80px;
	}

	.footer-middle {
		padding: 60px 0;
	}

	.footer-top__navigation ul a {
		font-size: .8rem;
	}

	.footer-middle a {
		font-size: .8rem;
	}

	.footer-middle {
		font-size: .8rem;
	}

	.footer-bottom {
		font-size: .8rem;
	}

	.footer-top__navigation ul {
		gap: 30px;
	}

	.services h2 {
		margin-bottom: 60px;
	}

	.team-item-left::after {
		width: 200px;
		height: 200px;
	}

	.team-item-left {
		padding: 50px 30px;
	}

	.team-item-right {
		padding: 50px 30px;
	}
	.page.page-id-23 .site-main h1, .page.page-id-42 .site-main h1 {
		padding: 100px 300px 25px 100px;
	}
	.site-main h1 {
		font-size: 2.5rem;
		
	}

	.about-us-top h1::before {
		top: 0;
		right: 0;
		background-size: 100%;
		width: 260px;
		height: 260px;
	}

	.about-us-text p {
		font-size: 1rem;
	}

	.about-us-blue-text {
		width: 100%;
		font-size: 1rem;
	}

	.about-us-white-right h2 {
		font-size: 1.8rem;
		width: 100%;
	}

	.about-us-blue-right h2 {
		font-size: 1.8rem;
	}

	.about-us-white-text {
		width: 100%;
	}

	.about-us-whitef h2 {
		font-size: 1.8rem;
	}

	.about-us-yellow-right h2 {
		font-size: 1.8rem;
	}

	.team-name {
		margin-bottom: 10px;
	}

	.about-us-text {
		gap: 100px;
	}

	.about-us-img {
		gap: 100px;
	}

	.about-us-blue {
		gap: 100px;
	}

	.about-us-whitef {
		gap: 100px;
	}

	.about-us-yellow {
		gap: 100px;
	}

	.team-bottom-page .container {
		gap: 100px;
	}

	.about-us-white {
		gap: 100px;
	}

	.about-us-top-two {
		grid-template-columns: 1fr 2.5fr;
	}
	
	
	
}
@media (max-width: 1200px) {
	.services-included-cards__title {
        font-size: 1.2rem;
    }
	.pp_text {
		font-size: 1rem;
	}
	.services-included__title {
        font-size: 2.5rem;
    }
	h1.pp-first__left_title.pp_title {
        font-size: 2rem;
    }
	.pp-first__left::before {
		top: -50%;
		width: 150px;
		height: 170px;
	}
	.project-form-text h2 {
        font-size: 1.7rem;
    }
	.project-form-form {
		background-color: #fff;
		padding: 100px 50px 50px 50px;
		position: relative;
	}
	.project-form-form::after {
		left: 50px;
		top: 40px;
		width: 130px;
		height: 20px;
	}
	.project-form-text::after {
		width: 151px;
		height: 240px;
	}
}
@media (max-width: 1100px) {
	.top-header__menu ul {
		gap: 2rem;
	}
	
	.top-header__menu ul a {
		font-size: .75rem;
	}

	.top-header__lang a {
		font-size: .75rem;
	}

	.top-header__btn {
		font-size: .75rem;
	}

	.top-header__lang a {
		height: 50px;
		width: 50px;
	}

	.top-header__btn {
		padding: 0 1.3rem;
		height: 45px;
	}

	.container {
		padding: 0 20px;
	}

	.top-header-right {
		gap: 2rem;
	}

	.top-header__logo {
		max-width: 90px;
	}

	br {
		margin-top: 7px;
	}

	.main-screen .container {
		gap: 15px;
	}

	.second-screen-left {
		padding: 70px 20px;
	}

	.second-screen-right {
		padding-bottom: 60px;
	}

	.second-screen-right__img {
		width: 45%;
		margin-bottom: 60px;
	}

	.projects-screen {
		padding: 80px 0;
	}

	#project-button button {
		margin-bottom: 25px;
		min-width: 129px;
		font-size: 1rem;
	}

	.pre-title {
		font-size: .8rem
	}

	.projects-screen h2 {
		font-size: 2rem;
		margin-bottom: 15px;
	}

	.project-wrapper {
		gap: 15px;
	}

	.blago-sreen {
		padding: 50px 20px 20px 45px;
	}

	.blago-sreen-left__title::after {
		width: 120px;
		height: 30px;
	}

	.blago-sreen-left__title {
		font-size: 1.5rem;
	}

	.win-win {
		padding: 80px 0;
	}

	.services {
		padding: 80px 0;
	}

	.services h2 {
		margin-bottom: 30px;
		font-size: 2rem;
	}

	.services .container::before {
		top: -170px;
		right: 35px;
		width: 166px;
		height: 310px;
	}

	.service-wrapper {
		gap: 15px;
	}

	.service-item {
		padding: 30px 20px;
		gap: 20px;
	}

	.service-item-top__title {
		font-size: 1.2rem;
	}

	.price-screen {
		padding: 80px 0 60px 0;
	}

	.price-screen h2 {
		font-size: 2rem;
		margin-bottom: 30px;
	}

	.price-item {
		padding: 30px 30px 50px 30px;
	}

	.price-item__price {
		font-size: 3rem;
	}

	.price-item__text {
		margin-top: 50px;
	}

	.faq-box:not(.faq-box-vacancies) {
		padding: 60px 20px;
	}

	.home-form {
		padding: 80px 0 50px 0;
	}

	.footer {
		padding: 40px 60px 60px 60px;
	}

	.bg-footer {
		padding-bottom: 20px;
	}
	.page.page-id-23 .site-main h1, .page.page-id-42 .site-main h1{
		padding: 80px 200px 25px 50px;
	}
	.site-main h1 {
		font-size: 2.2rem;
	}

	.about-us-top h1::before {
		width: 200px;
		height: 200px;
		z-index: -1;
	}

	.about-us-text p {
		padding-right: 120px;
	}

	.about-us-text {
		gap: 70px;
	}

	.about-us-img {
		gap: 70px;
	}

	.about-us-blue {
		gap: 70px;
	}

	.about-us-whitef {
		gap: 70px;
	}

	.about-us-yellow {
		gap: 70px;
	}

	.team-bottom-page .container {
		gap: 70px;
	}

	.about-us-white {
		gap: 70px;
	}

	.about-us-white-right h2 {
		font-size: 1.6rem;
	}

	.about-us-blue-right h2 {
		font-size: 1.6rem;
	}

	.about-us-whitef h2 {
		font-size: 1.6rem;
	}

	.about-us-yellow-right h2 {
		font-size: 1.6rem;
	}

	.about-us-white-right::after {
		display: none;
	}
	.services-included__title {
		font-size: 2rem;
	}
	.pp-scheme {
		padding: 150px 0;
	}
}

@media (max-width: 1000px) {
	.faq-form {
		padding: 80px 20px;
	}
	.faq-form-form {
		padding: 120px 15px 50px 15px;
	}
	.faq-form-form::after {
		left: 15px;
		top: 70px;
	}
	.faq-page .container {
		grid-template-columns: 1fr;
		gap: 70px;
	}
	.faq-form-text::after {
		display: none;
	}
	.faq-form-text h2 {
		font-size: 1.2rem;
	}
	.faq-box::after {
		top: 10px;
		right: 10px;
		width: 90px;
		height: 110px;
		z-index: 0;
	}
	.faq-page .container {
		padding: 0;
	}
	.faq-box {
		padding: 60px 20px;
	}
	.details-text {
		margin: 25 0 25px 0;
		font-size: 1rem;
	}
	.about-us-text {
		grid-template-columns: 1fr;
		gap: 0;
	}
	.services {
		padding: 60px 0;
	}
	.about-us-text p {
		padding-right: 0;
	}

	#main-navigation {
		display: none;
	}

	.top-header-right {
		display: none;
	}

	#mobile-menu-btn {
		display: flex;
	}

	.main-screen .container {
		grid-template-columns: 1fr;
	}

	.main-screen-left::before {
		background-image: url(/img/mobile-main-bg.svg);
		left: 5%;
		top: 30%;
		background-size: 100%;
		width: 100%;
		height: 150%;
	}

	.second-screen-right {
		padding: 40px;
	}

	.second-screen-right__img {
		width: 100%;
		margin-bottom: 25px;
	}

	.second-screen-right__img::after {
		top: -20px;
		right: -20px;
	}

	.second-screen-right__text {
		width: 100%;
	}

	.second-screen-right__img::before {
		bottom: -13px;
		left: -40px;
	}

	.site-main h1.main-screen-left__title {
		padding: 25px 20px;
	}

	.main-screen-right {
		padding: 25px 20px;
	}

	.second-screen-left {
		margin-top: 50px;
	}

	.project-wrapper {
		grid-template-columns: 1fr;
	}

	.blago-sreen .container {
		position: static;
		padding: 0;
	}

	.blago-sreen {
		flex-direction: column;
		gap: 60px;
		padding: 120px 20px 20px 20px;
	}

	.blago-sreen-right img {
		width: 100%;
	}

	.blago-sreen-right__img::after {
		bottom: -55px;
		left: -55px;
	}

	.services .container::before {
		top: -120px;
		right: 35px;
		width: 125px;
		height: 295px;
	}

	.service-wrapper {
		grid-template-columns: 1fr;
	}

	.price-screen .container {
		padding-right: 0;
	}

	.price-sreen-header {
		padding-right: 20px;
	}

	.faqs-screen .container {
		padding: 0;
	}

	.home-form .container {
		grid-template-columns: 1fr;
		gap: 50px;
	}

	.home-form-form {
		padding: 120px 20px 50px 20px;
	}

	.home-form-text::after {
		display: none;
	}

	.home-form-form::after {
		left: 20px;
		top: 80px;
		width: 155px;
		height: 25px;
	}

	input.submit-form {
		width: 100%;
		margin-top: 0;
	}

	.home-form {
		padding: 80px 0 80px 0;
	}

	.footer-top {
		flex-direction: column;
	}

	.footer-top__lang {
		order: -1;
	}

	.footer-top__logo {
		order: -2;
	}

	.footer-top__navigation ul {
		flex-direction: column;
		text-align: center;
	}

	.footer-middle {
		gap: 30px;
		flex-direction: column;
		padding: 40px 0;
		text-align: center;
	}

	.footer-middle__text {
		font-size: 1rem;
		color: #E6D9B6;
	}

	.social-footer {
		flex-direction: column;
		text-align: center;
	}

	.footer-bottom {
		justify-content: center;
		flex-direction: column;
		align-items: center;
		text-align: center;
		gap: 15px;
	}

	.footer {
		padding: 40px 20px;
	}

	.second-screen-left__posttitle {
		font-size: 1rem;
	}

	.faqs-screen .faq-box::after {
		height: 200px;
		width: 200px;
		top: -20px;
		right: -15px;
	}
	.page.page-id-23 .site-main h1, .page.page-id-42 .site-main h1{
		padding: 100px 20px 0 20px;
	}
	.site-main h1 {
		
		z-index: 2;
		margin-bottom: 25px;
	}

	.about-us-img {
		grid-template-columns: 1fr;
		gap: 1rem;
	}

	.about-us-top-two {
		grid-template-columns: 1fr;
	}

	.about-us-img-arrow {
		display: none;
	}

	.about-us-img-arrow.about-us-img-arrow-mobile {
		display: flex;
		margin-bottom: 30px;
	}

	.about-us-blue {
		margin-top: 45px;
	}

	.about-us-blue {
		grid-template-columns: 1fr;
		padding: 80px 20px;
		gap: 25px;
	}

	.about-us-blue-left {
		order: 2;
	}

	.about-us-whitef {
		padding-top: 80px;
		grid-template-columns: 1fr;
		gap: 40px;
	}

	.about-us-whitef h2 {
		margin-bottom: 25px;
	}

	.about-us-whitef-text {
		width: 100%;
	}

	.about-us-white {
		padding-top: 40px;
		grid-template-columns: 1fr;
		gap: 40px;
	}

	.about-us-white-right {
		padding: 0;
		order: -1;
	}

	.about-us-white-left img {
		width: calc(100% + 40px);
		margin: 0 -20px;
	}

	.about-us-yellow {
		padding: 0;
		margin: 0 -20px;
		width: calc(100% + 40px);
		grid-template-columns: 1fr;
	}

	.about-us-yellow-right {
		padding: 0 20px 80px 20px;
	}

	.team {
		margin: 80px 0;
	}

	.team-item {
		grid-template-columns: 1fr;
	}

	.about-us-yellow-left {
		display: none;
	}

	.about-us-yellow-right {
		padding-top: 80px;
	}

	.team-item-left {
		padding: 100px 20px;
		order: -2;
	}

	.team-item-right {
		padding: 100px 20px;
		order: -1;
	}

	#filter-team button.active::after {
		top: -50%;
		left: -7%;
		width: 115%;
		height: 200%;
	}

	#filter-team {
		gap: 25px;
	}

	.team .container {
		padding: 0;
	}

	.team-bottom-page .container {
		gap: 40px;
		grid-template-columns: 1fr;
		margin-bottom: 60px;
	}

	.faq-box-vacancies .container {
		padding: 0;
	}

	.faq-box-vacancies-bg {
		padding: 80px 20px;
		margin-bottom: 40px;
	}

	.page-id-23 .bg-footer {
		padding-top: 20px;
	}
	.pp-first .container {
		position: static;
		padding: 125px 20px 80px 20px;
	}
	.pp-first {
		flex-direction: column;
	}
	.pp-first__right img {
		width: 100%;
	}
	.pp-first::after {
		display: none;
	}
	.pp-first__left::before {
        top: -60px;
        width: 76px;
        height: 65px;
        right: 0;
    }
	.pp-second {
		padding-top: 80px;
	}
	.pp-second .container {
		display: flex;
		flex-direction: column;
		gap: 60px;
	}
	.pp-second__left {
		order: 2;
	}
	.pp-second__left img {
		width: 100%;
	}
	.container-blue.container {
		grid-template-columns: 1fr;
		gap: 60px;
	}
	.container-blue::after {
		left: -42px;
        top: -10px;
        width: 50%;
        height: 100%;
	}
	.pp-third {
		padding: 20px;
	}
	.pp-forth .container {
		position: static;
		padding: 0 20px;
	}
	.pp-forth__right .pp-forth__right-images {
		width: 100%;
		padding-left: 20px;
	}
	.pp-forth {
		flex-direction: column;
		gap: 60px;
	}
	.pp-forth__right .pp-forth__right-images img {
		height: 100%;
		object-fit: cover;
	}
	.grey-img {
		padding: 40px 0;
	}
	.grey-img .container {
		padding: 0;
	}
	.gallery-box {
		border: none;
	}
	.gallery-box1 {
		grid-template-columns: 1fr;
		gap: 40px;
		padding-top: 80px;
	}
	.gallery-box1__left {
		order: 2;
	}
	.gallery-box::after {
		display: none;
	}
	.gallery-box2 {
		grid-template-columns: 1fr;
		margin-top: 10px;
	}
	.gallery-box2__right {
		margin: 20px 0 0 0;
	}
	.gallery-box2__right img {
		width: 100%;
		margin: 0;
	}
	.gallery-box2__left_imgs {
		grid-template-columns: 1fr;
	}
	.gallery-box3__right img {
		margin-top: 0;
	}
	.gallery-box3 {
		grid-template-columns: 1fr;
		gap: 40px;
	}
	.gallery-box3__left {
		width: 100%;
		padding-top: 40px;
	}
	.gallery-box4 {
		grid-template-columns: 1fr;
	}
	.gallery-box4__left {
		padding: 0;
		margin-top: 20px;
	}
	.gallery-box4__right {
		margin-top: 20px;
	}
	.pp-scheme {
        padding: 40px 0;
		background-color: #fff;
    }
	.gallery-box .container {
		padding-bottom: 80px;
	}
	.pp-scheme .container {
		padding: 0;
	}
	.services-included__title {
        font-size: 1.5rem;
    }
	.services-included-top { 
		grid-template-columns: 1fr;
		gap: 20px;
		margin-bottom: 40px;
	}
	#services-included-cards .splide__arrows {
		justify-content: flex-start;
	}
	#services-included-cards .splide__arrow {
		transform: none;
	}
	.services-included-card {
		border: none;
	}
	.project-form .container {
		grid-template-columns: 1fr;
	}
	.project-form-text::after {
		display: none;
	}
	.project-form-form::after {
		top: 60px;
	}

}

@media (max-width: 600px) {

	.site-main h1.error-404-title {
		font-size: 2rem;
	}
	.service-item img {
		height: 300px;
		object-fit: cover;
	}

	.about-us-top h1::before {
		width: 200px;
		height: 200px;
		z-index: -1;
		top: -50px;
		right: -20px;
	}
	.popup-resume-body {
		padding: 80px 20px 30px 20px;
	}
	.popup-form-header-body {
		padding: 80px 20px 30px 20px;
	}
	.popup-form-header-title {
		font-size: 1.5rem;
	}
	.popup-resume-title {
		font-size: 1.5rem;
	}
	.popup-form-header-body::after {
		left: 25px;
		top: 40px;
	}
	.popup-resume-body::after {
		left: 25px;
		top: 40px;
	}
	.popup-resume-header-title {
		font-size: 1.5rem;
	}
	
	.about-us-top .container {
		padding: 0;
	}
	.about-us-whitef h2 {
		font-size: 1.5rem;
	}
	.about-us-white-right h2 {
		font-size: 1.5rem;
	}
	.about-us-yellow-right {
		padding: 80px 0;
	}
	.about-us-yellow-right h2 {
		font-size: 1.5rem;
	}
	.about-us-whitef {
		padding: 80px 20px 0 20px;
	}
	.about-us-yellow {
		padding: 0 20px;
		margin: 0;
    	width: 100%;
	}
	.team-bottom-page__title {
		font-size: 1.5rem;
	}
	.faq-box-vacancies.faq-box::after {
		width: 200px;
		height: 200px;
		top: -22px;
		right: -35px;
		z-index: 0;
	}
	.faq-box-vacancies h3 {
		font-size: 1.7rem;
		margin-top: 10px;
	}
	.about-us-white-right {
		padding: 0 20px;
	}
	.team {
		margin: 60px 0;
	}

	.about-us-top .container h1 {
		padding: 0 20px;
	}

	.about-us-text {
		padding: 0 20px;
	}
	.site-main h1 {
		font-size: 1.7rem;
	}
	.about-us-blue-right h2 {
		font-size: 1.5rem;
	}
	.about-us-blue-right {
		padding: 0;
	}

	.about-us-img-arrow-mobile.about-us-img-arrow {
		padding: 0 20px;
	}

	.main-screen-right__title {
		font-size: 2rem;
	}

	.main-screen-right__posttitle {
		font-size: 1rem;
	}

	#project-button {
		gap: 50px;
	}

	.site-main h1.main-screen-left__title {
		font-size: 2rem;
		word-spacing: initial;
	}

	.projects-screen h2 {
		font-size: 1.5rem;
	}

	.blago-sreen-left__text {
		width: 100%;
	}

	.services h2 {
		font-size: 1.5rem;
	}

	.faq-box h2 {
		font-size: 1.5rem;
	}

	.service-item {
		padding: 20px 15px 15px 15px;
	}

	.price-screen h2 {
		font-size: 1.5rem;
	}

	.home-form-text h2 {
		font-size: 1.5rem;
	}

	.price-sreen-header {
		flex-direction: column;
		align-items: flex-start;
		gap: 10px;
	}

	.price-item {
		padding: 20px 15px 15px 15px;
	}

	.price-item__price {
		font-size: 2.7rem;
	}

	.header-tabs {
		gap: 20px;
	}

	.price-item__title {
		font-size: 1rem;
		margin-bottom: 20px;
	}

	summary {
		font-size: 1.1rem;
		min-height: 70px;
	}

	.home-form-form {
		padding: 120px 15px 50px 15px;
	}

	.footer-top__navigation ul {
		gap: 20px;
	}

	.social-footer {
		gap: 20px;
	}

	.footer-bottom {
		padding-top: 20px;
	}

	.footer-top__logo {
		max-width: 100px;
	}

	.footer-top__logo img {
		width: 100%;
	}
	.pp-second__left_text {
		width: 100%;
	}
	h1.pp-first__left_title.pp_title {
        font-size: 28px;
    }
	.pp-second__left {
		width: calc(100% + 40px);
	}
	.splide__arrow--prev1 {
		position: static;
	}
	.splide__arrow--next1 {
		position: static;
	}
	.splide__arrows1 {
		display: flex;
		gap: 20px;
		padding: 0 20px;
	}

	.splide__arrow--prev2 {
		position: static;
	}
	.splide__arrow--next2 {
		position: static;
	}
	
	.splide__arrows2 {
		display: flex;
		gap: 20px;
		padding: 0 20px;
	}
	.container-blue.container {
		padding: 80px 20px;
	}
	.container-blue::after {
        width: 65%;
    }
	.pp-third__left_title {
		font-size: 20px;
		text-transform: uppercase;
	}
	.pp-forth__left_title {
		font-size: 20px;
	}
	.pp-forth__right .pp-forth__right-images {
		grid-template-columns: 1fr;
		gap: 15px;
		padding: 0 20px;
	}
	.pp-forth__right .pp-forth__right-images img {
		width: 100%;
		height: auto;
	}
	.pp-forth {
		padding-bottom: 80px;
	}
	.gallery-box1__right {
		width: 100%;
	}
	.pp-gallery-box1__left_text {
		width: 100%;
	}
	.services-included {
		padding: 80px 0;
	}
	#carousel2-slider {
		padding-top: 50px;
		padding-bottom: 20px;
	}
	.project-form {
		padding: 80px 0;
	}
	.project-form-text h2 {
		font-size: 20px;
	}
	.project-form-form {
        padding: 100px 15px 50px 15px;
	}
	.project-form-form::after {
		left: 15px;
	}
	.pp-forth__right .pp-forth__right-images img:first-child {
		width: 100%;
		height: auto;
	}
}