@import url(reset.css);

:root {
  --themeWhite: #FFFFFF;
  --gold: #C7B287;
  --themeGreen: #31B939;
  --themeBlue: #21374C;
  --themeTransparent: rgba(255, 255, 255, 0);
  --themeRed: rgba(220, 40, 40, 1);
}

body {
font-family: "Plus Jakarta Sans";
font-weight: 400;
font-size: clamp(0.875rem, 0.8333rem + 0.1852vw, 1rem);
line-height: 1.6em;
	color:var(--themeBlue);
letter-spacing: 0.01em;
}
.signle-map-section {
	display:none;
	visibility:hidden;
	opacity:0;
}
.single-services .map-titles {
	display:none;
	visibility:hidden;
	opacity:0;
}
.single-services .signle-map-section {
	display:block;
	visibility:visible;
	opacity:1;
}
[class*="__container"] {
max-width: 1440px;
margin: 0 auto;
padding-inline:clamp(0.9375rem, 0.2083rem + 3.2407vw, 3.125rem);
}
h1 {
font-weight: 700;
font-size: clamp(2.375rem, 2.0208rem + 1.5741vw, 3.4375rem);
margin-bottom: 14px;
line-height:1.2em;
}
h2,
.page-text h2.wp-block-heading {
font-weight: 700;
font-size: clamp(2rem, 1.7292rem + 1.2037vw, 2.8125rem);
line-height:1.2em;
}
h3,
h4 {
font-weight: 700;
font-size: 25px;
line-height: 1.2em;
}
[class*="--white"] {
color: var(--themeWhite);
}
[class*="--blue"] {
color: var(--themeBlue);
}
[class*="--center"] {
text-align: center;
}
[class*="--wide"] {
	width: 100%;
	display: flex;
	justify-content: space-between;
}
[class*="--uppercase"] {
  text-transform: uppercase;
}
[class*="--point-decor"] {
	position: relative;
	padding: 3px 10px 3px 20px; 
	background-color: var(--themeGreen);
	border-radius: 500px;
	width: fit-content;
}
[class*="--point-decor"]::before {
	content: '';
	width: 5px;
	top: 50%;
	left: 10px;
	transform: translateY(-50%);
	position: absolute;
	height: 5px;
	border-radius: 500px;
	background-color: var(--themeWhite);
}

header {
    background-color: var(--themeBlue);
	position: relative;
	z-index: 99999;
    border-radius: 0px 0px 14px 14px;
}
#contact-popup {
	z-index: 99999999999;
}
.container-header,
.header-inner,
.header-items {
display: flex;
justify-content: space-between;
flex-direction: column;
}
.header-inner,
.header-items {
    flex-direction:row;
    align-items: center;
}
.header-contacts {
    display: flex;
}
.header-items,
.header-contacts {
    gap:clamp(0.9375rem, 0.75rem + 0.8333vw, 1.5rem);
}
.header-contacts li{
    padding-left: 35px;
}
.main-navigation ul.main-menu{
    display: flex;
    list-style: none;
    justify-content: center;
}
.header-inner {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.header-inner,
.header-menu {
 padding: 10px 0px;
}
.main-navigation ul.main-menu li:not(:last-of-type) {
    margin-right: 100px;
}
.main-navigation ul.main-menu li{
    position: relative;
}
.main-navigation ul.main-menu li a {
    font-weight: 700;
    text-transform: uppercase;
    position: relative;
    color: var(--themeWhite);
    font-size: 15px;
    transition: all 0.3s;
    background: var(--themeTransparent);
    padding: 5px 10px;
    border-radius: 100px;
}
.main-navigation ul.main-menu li.menu-item-has-children {
	position: relative;
	margin-right: 125px;
}
.main-navigation ul.main-menu li.menu-item-has-children::after {
	content: '';
	position: absolute;
	background: url('/wp-content/themes/infab/img/icons/sub-menu-icon.svg') center center no-repeat;
	right: -20px;
	top:7px;
	width: 20px;
	height: 20px;
}
.menu-open .mobile-menu-content .main-navigation ul.main-menu li.menu-item-has-children::after {
	display:none;
	visibility:hidden;
	opacity:0;
	top:5px;
}
.mobile-menu-content ul.main-menu li.menu-item-has-children::after {
	right: 0px;
}
.main-navigation ul.main-menu li:hover a,
.main-navigation ul.main-menu li.current-menu-item a  {
    opacity: 0.5;
}
.main-navigation ul.main-menu li:not(:last-of-type) a::before {
    content: '';
    position: absolute;
    background-color:rgba(255, 255, 255, 0.2);
    width: 1px;
	 pointer-events: none;
    height: 20px;
    right:-50px;
}
.main-navigation ul.main-menu li.menu-item-has-children a::before {
    right:-80px;
}
.sub-menu {
    position: absolute;
	 width: 100%;
	 min-width: 350px;
	 height: auto;
	 background-color: var(--themeWhite);
	 padding: 15px 10px;
	 z-index: 999;
	 border-radius: 15px;
	 opacity: 0;
	 visibility: hidden;
	 display: none;
}

.menu-open .container-header .sub-menu {
	position:relative;
}
.container-header .main-navigation ul.main-menu li:hover ul.sub-menu {
	opacity: 1;
	visibility: visible;
	display: block;
} 
.main-navigation ul.main-menu li:hover ul.sub-menu li:not(:last-of-type) {
	margin-right: 0px;
	margin-bottom: 5px;
}
.main-navigation ul.main-menu li:hover ul.sub-menu a {
	color: var(--themeBlue);
}
.main-navigation ul.main-menu li ul.sub-menu li:hover a {
	color: var(--gold);
	opacity: 1;
}
/* contact list */
.contact-list li{
	position: relative;
}
.footer-contacts li{
	padding-left: 35px;
}
.contact-list li a{
    display: flex;
    gap:2px;
    flex-direction: column;
}
.contact-list li a {
    color: var(--themeWhite);
    font-weight: 700;
    line-height: 1em;
}
.contact-list li a span {
    font-size: 12px;
    width: fit-content;
    overflow: hidden;
    color: var(--gold);
    position: relative;
}
.contact-list li a span::before {
    content: '';
    background-color: var(--gold);
    width: 100%;
    height: 1px;
    transition: left 0.3s;
    position: absolute;
    left: 0;
    bottom: 0;
}
.contact-list li:hover a span::before {
    left: -100%;
}
.contact-list li::before{
    content:'';
    position: absolute;
    width: 24px;
    height: 24px;
    top: 50%;
    transform: translateY(-50%);
    left:0px;
}
.contact-list li.mail::before {
    background: url('/wp-content/themes/infab/img/icons/envelope-icon.svg') center center no-repeat;
}
.contact-list li.phone::before {
    background: url('/wp-content/themes/infab/img/icons/phone-icon.svg') center center no-repeat;
}
.contact-list li.address::before {
    background: url('/wp-content/themes/infab/img/icons/marker-icon.svg') center center no-repeat;
}
footer {
	background-color: var(--themeBlue);
	border-radius: 24px 24px 0 0;
}
.footer-contacts li {
	padding-left: 60px;
}
.phone-description span{
	display: inline-block;
}
.footer-contacts.contact-list li a span {
    	color: rgba(255, 255, 255, 0.5);
}
.footer-contacts.contact-list li a span::before {
	background-color:rgba(255, 255, 255, 0.5);
}
.phone-description span.desctiption-title::after {
	content: '';
	width: 5px;
	top: 50%;
	left: 6px;
	transform: translateY(-50%);
	position: absolute;
	height: 5px;
	border-radius: 500px;
	background-color: var(--themeWhite);
}
.footer-contacts .desctiption-title::before {
	display:none;
}
.footer-contacts li a {
	gap:5px;
	font-size: 24px;
}
.footer-contacts.contact-list li a span.desctiption-title {
	position: relative;
	padding: 2px 10px 2px 16px;
	color: var(--themeWhite);
}
.footer-contacts li::before {
	 width: 48px;
    height: 48px;
}
.footer-contacts li:not(:last-of-type) {
	margin-bottom: 27px;
}
.footer-contacts.contact-list li.mail::before {
    background: url('/wp-content/themes/infab/img/icons/footer-envelope-icon.svg') center center no-repeat;
}
.footer-contacts.contact-list li.phone::before {
    background: url('/wp-content/themes/infab/img/icons/footer-phone-icon.svg') center center no-repeat;
}
.footer-contacts.contact-list li.address::before {
    background: url('/wp-content/themes/infab/img/icons/footer-marker-icon.svg') center center no-repeat;
}
.footer-menu {
font-weight: 700;
font-size: 14px;
line-height: 100%;
letter-spacing: 0.01em;
color: var(--themeWhite);
text-transform: uppercase;
}
.footer-menu ul li:not(:last-of-type) {
	margin-bottom: 18px;
}
.footer-menu ul li:hover a,
.footer-menu ul li.current-menu-item a{
	opacity: 0.7;
}
.footer-socials li a {
	display: flex;
	gap:12px;
	align-items: center;
}
.global-options-info .socials .footer-socials {
	display: flex;
}
.global-options-info .socials .footer-socials li:not(:last-of-type) {
	margin-right: 15px;
}
.socials .footer-socials li a {
	text-transform: uppercase;
}
.global-options-info {
	display: flex;
	flex-direction: column;
	gap:60px;
}
.footer-navigation ul.sub-menu {
	display:none;
}
.footer-cta__block {
    background: url('/wp-content/themes/infab/img/footer-cta-image.jpg') center center no-repeat;
    background-size: cover;
    position: relative;
    border-radius: 24px 24px 0px 0px;
}
.footer-cta__block::before {
    content: '';
    width: 100%;
    position: absolute;
    border-radius: 24px 24px 0px 0px;
    z-index: 0;
    height: 100%;
    background: rgba(4, 4, 4, 0.5);
}
.cta-inner {
    padding: 140px 0px;
    max-width: 595px;
    position: relative;
    z-index: 1;
	 display: flex;
	 flex-direction: column;
	 gap: clamp(4.375rem, 0.1667rem + 18.7037vw, 17rem);
    margin: 0 auto;
}
.cta-inner h2 {
    margin-bottom: 24px;
}

.cta-inner .content-cta {
    display: flex;
    gap:10px;
	 max-width: 535px;
    align-items: flex-start;
}
.cta-inner .content-cta img {
    border-radius: 500px;
    max-width: 64px;
}
.cta-inner .content-cta div.cta-texts {
    padding: 20px;
    background: rgba(33, 55, 76, 1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 0px 14px 14px 14px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}
.cta-inner .content-cta div.cta-texts span {
    display: block;
    font-weight: 400;
    font-size: clamp(0.875rem, 0.8333rem + 0.1852vw, 1rem);
    line-height: 160%;
    letter-spacing: 0.01em;
}
.cta-action__block {
	display: flex;
	align-items: center;
	justify-content: center;
	gap:24px;
}
.action-description {
	display: flex;
	flex-direction: column;
	line-height: 140%;
	letter-spacing: 0em;
	gap:6px;
}
.desctiption-title {
font-weight: 600;
font-size: 14px;
}
.description-text {
font-weight: 500;
font-size: 16px;
}
.block-content {
	background-color: var(--themeBlue);
	border-radius: 24px;
	padding: 100px 0px;
	position: relative;
	z-index: 1;
	margin-top: -24px;
}
.content-logo {
	display: flex;
	justify-content: center;
	flex-direction: column;
	padding-bottom: 48px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
.footer-logo {
	margin-bottom: 12px;
	display: flex;
	justify-content: center;
}
.content-logo span {
	font-weight: 600;
	font-size: 14px;
	line-height: 140%;
	text-align: center;
	text-transform: uppercase;
	color: var(--themeWhite);
}
.content-items {
	display: flex;
	gap:15px;
	justify-content: space-between;
	padding-top: 48px;
}
.footer-menu h3 {
font-weight: 700;
font-size: 14px;
line-height: 1em;
margin-bottom: 32px;
letter-spacing: 0.03em;
color: rgba(255, 255, 255, 0.5);
text-transform: uppercase;
}
.block-copyright {
	background-color: #FFFFFF;
	margin-top: -30px;
	padding-top: 30px;
}
.copyright-inner {
	padding: 20px 0px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap:20px;
}
.privacy-menu,
.dev-info a{
	display: flex;
	align-items: center;
}
.dev-info a{
font-weight: 500;
font-size: 14px;
color: rgba(53, 53, 53, 1);
line-height: 1.4em;
gap:10px;
}
.privacy-menu li:not(:last-of-type) {
	margin-right:30px;
}
.privacy-menu li a {
position: relative;
font-weight: 400;
font-size: 14px;
line-height: 1em;
color: rgba(33, 55, 76, 1);
letter-spacing: 0em;
}
.privacy-menu li a::before {
	content: '';
	width: 100%;
	height: 2px;
	background: rgba(33, 55, 76, 1);
	position:absolute;
	left: 0;
	transition: all 0.3s;
	transform: scale(100%);
	transform-origin: left;
	top: calc( 100% + 2px);
}
.privacy-menu li:hover a::before {
	transform: scale(0%);
}
.copy-text {
font-weight: 600;
font-size: 14px;
line-height:1.4em;
letter-spacing: 0.01em;
color: rgba(33, 55, 76, 1);
}
.page404-inner {
	margin: 40px 0px;
	padding: 60px;
	border-radius: 24px;
	position: relative;
	min-height: 700px;
	background: url(../img/404-image.jpg) center center no-repeat;
	background-size: cover;
	display: flex;
	align-items: center;
}
.page404-inner::before {
	content: '';
	width: 100%;
	left: 0px;
	top: 0px;
	border-radius: 24px;
	height: 100%;
	position: absolute;
	background:linear-gradient(0deg, rgba(28, 28, 28, 0.7), rgba(28, 28, 28, 0.7));
}
.page404-content {
	position: relative;
	z-index: 9;
}
.error-text {
font-weight: 500;
font-size: clamp(1rem, 0.9167rem + 0.3704vw, 1.25rem);
line-height:1.8em;
margin-bottom: 32px;
color: var(--themeWhite);
max-width: 800px;
}
a.btn-action {
	display: inline-flex;
}
.meta-info {
	padding: 40px 0px 60px 0px;
}
.content-page {
	padding: clamp(0.9375rem, 0.25rem + 3.0556vw, 3rem);
	background: rgba(238, 238, 238, 1);
	border-radius: 24px;
	margin-bottom: 160px;
}
.breadcrumbs {
	display:flex;
	align-items: center;
	gap:8px;
	margin-bottom: 10px;
}
.breadcrumbs-block .breadcrumbs{
font-weight: 600;
font-size: 14px;
line-height:1.6em;
color: rgba(33, 55, 76, 0.7);
}
.breadcrumbs-block .breadcrumbs a {
	color: var(--themeBlue);
}
.breadcrumbs-block .breadcrumbs a {
	text-decoration: underline;
}
.breadcrumbs-block .breadcrumbs a:hover {
	text-decoration: none;
}
.page-text > *{
	margin-bottom: 20px;
}
.page-text ul {
	list-style: none;
	margin: 0;
	margin-bottom: 20px;
}
.page-text ul li {
	position: relative;
	padding-left: 30px;
}
.page-text ul li::before {
	content: '';
	background: url('../img/icons/bullet-icon.svg');
	position: absolute;
	left: 0px;
	width: 18px;
	height: 14px;
	top: 50%;
	transform: translateY(-50%);
}
.page-text ul li:not(:last-of-type) {
	margin-bottom: 6px;
}
.hero-section {
	overflow: hidden;
	position: relative;
	margin-top: -30px;
	margin-bottom: -30px;
	z-index: 1;
	border-radius: 0px 0px 24px 24px;
	/*min-height: 940px;*/
}
.hero-section::before {
	content: '';
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.45);
	position: absolute;
	z-index: 2;
}
.container-hero {
	position: relative;
}
.hero-inner-content {
	padding: 150px 0px 40px 0px; 
	top: 0px;
	left: 0px;
	z-index: 99;
	display: flex;
	flex-direction: column;
	gap: clamp(3.125rem, 0.6875rem + 10.8333vw, 10.4375rem);
}
.hero-texts {
	max-width: 1034px;
}
.hero-texts h1 {
	color: var(--themeWhite);
}
.hero-texts h1 span,
.block-title h2 span {
	font-style: italic;
	color: var(--gold);
}
.hero-texts p {
font-weight: 500;
font-size: clamp(1rem, 0.9167rem + 0.3704vw, 1.25rem);
line-height: 1.8em;
max-width: 726px;
margin-bottom: 14px;
color: var(--themeWhite);
}
.hero-texts .homepage-slogans {
	backdrop-filter: blur(12px);
	padding: 24px;
	margin-bottom: clamp(1.5625rem, 0.75rem + 3.6111vw, 4rem);
	border-radius: 12px;
	display: inline-flex;
	background: rgba(255, 255, 255, 0.2);
}
.hero-texts .homepage-slogans li {
	position: relative;
	padding-left: 26px;
	font-weight: 600;
	color: var(--themeWhite);
	font-size: 20px;
	line-height: 1.6em;
}
.hero-partners {
	display: flex;
}
.hero-partners li:not(:last-of-type) {
	margin-right: 10px;
}
.hero-partners li img {
	width: 100%;
	max-width: 160px;
	border-radius: 12px;
}
.bullets--green li:not(:last-of-type) {
	margin-right: 24px;
}
.bullets--green li::before {
	content: '';
	width: 20px;
	background: url('../img/icons/list-bullet-green-icon.svg');
	height: 20px;
	position: absolute;
	left: 0px;
	top: 50%;
	transform: translateY(-50%);
}
.hero-video-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero-bg-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__container {
  position: relative;
  z-index: 9999;
}
.hero-button__block {
	display: flex;
	align-items: center;
	gap:24px;
}
/* Quote Popup */
.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.popup-overlay.active {
  display: flex;
}

.popup-content {
  border-radius: 8px;
  max-width: 500px;
  width: 100%;
  position: relative;
}

.popup-close {
  position: absolute;
  top: 10px;
  right: 25px;
  background: none;
	z-index:99;
	color:var(--gold);
  border: none;
  font-size: 24px;
  cursor: pointer;
}

/* Quote Popup End*/
.services-section {
	overflow: hidden;
	background-color: var(--themeBlue);
	padding: 100px 0;
}
.services-section  .block-title {
	max-width: 801px;
	margin: 0 auto;
}
.services-section .container-title {
margin-bottom: 70px;
}
.services-section  .block-title .title {
	margin-bottom: 14px;
}
/*
.swiper-wrapper {
	margin: 0 -250px;
}
*/
.services-posts-slider .swiper-slide{
	max-width: 324px;
}
.swiper-slide {
    width: 100%;
    max-width:unset;
}
.service-card .cart-top .service-thumb a {
	width:100%;
}
.services-posts-slider .swiper-wrapper .service-card .cart-top .service-thumb img{
width: 100%;
aspect-ratio: 324 / 213;
height: auto;
object-fit: cover;
border-radius: 20px;
}

/* */
.service-card {
  background: #EEEEEE;
  border-radius: 20px;
}
.services-posts-slider .swiper-pagination-bullets {
	margin-top:30px;
}

.service-btn {
  display: inline-block;
  margin-top: 10px;
  padding: 8px 20px;
  background: #0073aa;
  color: #fff;
  border-radius: 5px;
  text-decoration: none;
}

.service-btn:hover {
  background: #005177;
}

/* */
.services-posts-slider .swiper-wrapper .service-card .cart-top {
	position: relative;
	margin-bottom: 20px;
}
.services-posts-slider {
	margin-bottom: 100px;
}
.discount-message {
	position: absolute;
	z-index: 1;
	top: 16px;
	left: 16px;
	background-color: var(--themeRed);
	border-radius: 500px;
	padding: 3px 10px 3px 20px;
	font-weight: 600;
	font-size: 14px;
	color: var(--themeWhite);
	line-height: 1.2em;
}
.discount-message::before {
content: '';
background-color: var(--themeWhite);
width: 5px;
position: absolute;
height: 5px;
border-radius: 500px;
left: 10px;
top: 50%;
transform: translateY(-50%);
}
.card-texts {
	padding: clamp(0.75rem, 0.5833rem + 0.7407vw, 1.25rem);
	color:var(--themeBlue);
}
.single-services .our-process .process-cards-wrapper .process-card .card-texts {
	padding:0;
}
.card-texts h3 {
font-weight: 700;
font-size: 20px;
line-height: 1.2em;
margin-bottom: 10px;
}
.card-texts .service-content {
font-weight: 500;
font-size: 14px;
overflow: hidden;
line-height: 1.6em;
margin-bottom: 20px;
display: -webkit-box;
-webkit-box-orient: vertical;   
-webkit-line-clamp: 2;
}
.services-slider {
	position: relative;
}
.my-prev,
.my-next {
    position: absolute;
    z-index: 9;
    top: 50%;
	 transition: all .3s;
    padding: 0px 10px;
}
.my-prev {
	 left: 0;
	 transform: translateY(-50%) rotate(180deg);;
}
.my-next {
	right: 0px;
	transform: translateY(-50%);
}
.my-prev:hover,
.my-next:hover {
	opacity: 0.7;
}
.swiper-pagination span {
	width: 8px;
	height: 8px;
	background: var(--themeWhite);
}
.swiper-pagination span.swiper-pagination-bullet-active,
.swiper-pagination span.swiper-pagination-bullet:hover {
	background: var(--gold);
}
.swiper-pagination span.swiper-pagination-bullet {
	opacity: 1;
}
.container-banner {
	background: #EEEEEE14;
	border-radius: 24px;
	padding: 64px;
}
.service-pin-post {
	display: flex;
	justify-content: space-between;
	gap:20px;
}
.pin-post-info {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
	 max-width: 670px;
}
.pin-post-info p {
font-weight: 500;
font-size: 18px;
line-height: 1.6em;
opacity: 0.9;
margin-bottom: 35px;
}
.pin-post-card {
	max-width: 325px;
}
.pin-post-card img {
	width: 100%;
	aspect-ratio: 324 / 213;
	border-radius: 14px;
	height: auto;
	object-fit: cover;
}

.pin-post-titles h3 span {
	color: var(--gold);
}
.about-inner {
	display: flex;
	gap:40px;
	align-items: stretch;
	justify-content: space-between;
}
.about-inner > div {
	width: 50%;
}

.about-content p {
font-weight: 500;
font-size: clamp(1rem, 0.9674rem + 0.1449vw, 1.125rem);
line-height:1.6em;
margin-bottom: 14px;
color: var(--themeBlue);
}
.list-block {
	padding: 32px 24px;
	background: #EEEEEE;
	border-radius: 14px;
}
.list-block h3 {
	border-bottom: 1px solid #21374C66;
	padding-bottom:24px;
}
.about-texts .title {
	margin-bottom: 20px;
}
ul.two-columns {
	padding-top: 24px;
    columns: 2;
    -webkit-columns: 2;
    -moz-columns: 2;
    column-gap: 0px;
    list-style-position: inside;
    padding-left: 0;
}
ul.about-list li:not(:last-of-type) {
	margin-bottom: 24px;
}
ul.about-list li{
	position: relative;
	padding-left: 30px;
}
ul.about-list li:not(:last-of-type) {
	margin-right: 0;
}
.list-columns {
    display: flex;
    gap:20px;
	 justify-content: flex-start;
}

.list-columns ul {
    flex: 1;
    padding-left: 0;
    list-style-position: inside;
}

ul.about-list li::before{
	position: absolute;
}
.about-images,
.about-texts {
	flex: 1;
}
.about-inner .about-images img {
	aspect-ratio: 324 / 360;
	width: 100%;
	max-width: 324px;
	border-radius: 16px;
	object-fit: cover;
}
section {
	margin-bottom: clamp(3.125rem, 1.3315rem + 7.971vw, 10rem);
}
.about-button {
	width: fit-content;
}
.about-texts {
	display: flex;
	flex-direction: column;
	gap:30px;
	justify-content: space-between;
}
.why-titles {
	max-width: 800px;
	margin: 0 auto;
	margin-bottom: 60px;
}
span.subtitle {
font-weight: 500;
font-size: 18px;
line-height: 1.6em;
color: var(--themeBlue);
}
.why-titles h2 {
	margin-bottom: 14px;
}
.why-choose {
	display: flex;
	gap:20px;
	flex-direction: column;
}
.why-choose .why-choose__item {
	display: flex;
}
.why-choose .why-choose__item:nth-child(2n) {
flex-direction: row-reverse;
}
.why-choose .why-choose__item .image,
.why-choose .why-choose__item .texts{
	width: 50%;
	height: 100%;
	min-height: 500px;
	border-radius: 18px;
}
.why-choose .why-choose__item .image {
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
}
.why-choose .why-choose__item h3 {
	display: flex;
	gap:24px;
	align-items: flex-start;
}
.why-choose .why-choose__item h3 span{
font-weight: 700;
font-size: 14px;
line-height:1.2em;
letter-spacing:-0.02em;
background-color: var(--gold);
padding: 10px;
border-radius: 8px;
color: var(--themeBlue);
}
.why-choose .why-choose__item .texts {
	padding: 32px 24px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	color: var(--themeWhite);
	background-color: var(--themeBlue);
}

/* works slider */
.latest-works {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
	 margin-bottom: 40px;
}
.latest-works .swiper-pagination {
	display: none;
}
.latest-works .pagination {
	flex-wrap: wrap;
}
.more-works-button {
	display: flex;
	justify-content: center;
}
.work-item {
	padding: 32px;
	background-color:#EEEEEE;
	border-radius: 24px;
;
    width: calc(50% - 10px);
    box-sizing: border-box;
}

.photo-slider {
    position: relative;
    width: 100%;
}

.main-slider {
    width: 100%;
    overflow: hidden; /* Ховаємо зайві слайди */
}

.main-slider .swiper-wrapper {
    width: 100%;
    display: flex; /* Гарантуємо коректне вирівнювання слайдів */
}

.main-slider .swiper-slide {
    width: 100% !important; /* Один слайд на всю ширину */
    flex-shrink: 0;
    opacity: 0; /* Ховаємо неактивні слайди */
    transition: opacity 0.3s ease;
}

.main-slider .swiper-slide-active {
    opacity: 1; /* Показуємо активний слайд */
}

.main-slider .swiper-slide img {
    width: 100%;
	 border-radius: 10px;
	 aspect-ratio: 602 / 340;
    height: auto;
    object-fit: cover;
}

.thumbnail-slider {
    margin-top: 10px;
    width: 100%;
}

.thumbnail-slider .swiper-slide {
    width: 120px;
    height: 120px;
    opacity: 0.4;
    cursor: pointer;
}

.thumbnail-slider .swiper-slide img {
    width: 100%;
    height: 100%;
	 border-radius: 10px;
    object-fit: cover;
}

.thumbnail-slider .swiper-slide-thumb-active {
    opacity: 1;
}

.swiper-button-prev,
.swiper-button-next {
    color: #fff;
    width: 48px;
    height: 48px;
    background: var(--themeBlue);
    border-radius: 50%;
	 transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.swiper-button-prev:after,
.swiper-button-next:after {
    font-size: 15px;
}
.swiper-button-prev:hover,
.swiper-button-next:hover {
	background-color: var(--gold);
}
.swiper-pagination {
    position: relative;
    margin-top: 10px;
}

.swiper-pagination-bullet-active {
    background: var(--themeBlue);
}

.work-texts{
    margin-top: 18px;
}
.work-texts .title {
	color: var(--themeBlue);
	margin-bottom: 4px;
}
.work-texts .excerpt {
	padding-bottom: 18px;
	display: inline-block;
	border-bottom: 1px solid #21374C33;
	margin-bottom: 18px;
}
.work-info {
	display: flex;
	gap:32px;
}
.work-info .legend {
	font-size: 16px;
	font-weight: 400;

}
.work-info span {
font-weight: 700;
font-size: 18px;
line-height: 1.2em;
color: var(--themeBlue);
}
.area-text,
.timeline-text {
	display: flex;
	flex-direction: column;
}
.area,
.timeline {
    display: flex;
    align-items: center;
    gap: 10px;
}
.work-info .work-information,
.work-info .legend {
	font-size: clamp(1rem, 0.9674rem + 0.1449vw, 1.125rem);
}
/* end of works slider */


.multi-titles {
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	margin-bottom: 60px;	
}
.work-titles > * {
width: 50%;
}
.work-titles .subtitle {
font-weight: 400;
font-size: 16px;
line-height:1.6em;
max-width: 500px;
}
.reviews {
	min-height: 1700px;
	border-radius: 14px;
	background: url('../img/reviews-block-bg-1.jpg') bottom center no-repeat;
	background-size: cover;
}
.review-sources a{
	display: flex;
	gap: 15px;
	align-items: center;
	transition:all 0.3s;
}
.review-sources a:hover {
	opacity:0.7;
}
.review-sources span {
font-weight: 500;
font-size: 16px;
line-height: 0.875em;
text-decoration: underline;
}
.container-reviews {
	padding: 40px;
}
section.reviews .container-reviews {
	overflow:hidden;
}
.reviews-block {
	background-color: var(--themeBlue);
	border-radius: 24px;
	padding: 64px 24px;
	gap:60px;
	 margin: 40px 0;
}
.title span {
	font-weight: 500;
}
/* Reviews Block */
.consultation {
	display: flex;
	justify-content: flex-end;
}
.get-a-consultation {
	max-width: 490px;
	background-color: var(--themeBlue);
	padding: 32px;
	border-radius: 24px;
}
.get-a-consultation .consultForm {
display: flex;
flex-direction: column;
gap:12px;
}
.inner-form-block h3{
margin-bottom: 24px;
font-weight: 700;
font-size: 30px;
color: var(--themeWhite);
line-height: 1.2em;
letter-spacing: -0.02em;
}
.inner-form-block ul {
	margin: 0;
	padding: 0;
	padding-bottom: 24px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.2);
	margin-bottom: 24px;
}
.inner-form-block ul li:not(:last-of-type) {
	margin-bottom: 4px;
}
.inner-form-block ul li{
	position: relative;
	color: var(--themeWhite);
font-weight: 400;
font-size: 16px;
line-height: 1.5em;
letter-spacing: -0.02em;

	padding-left: 30px;
}
.inner-form-block ul li::before {
	content: '';
	position: absolute;
	top:0px;
	width: 24px;
	height: 24px;
	left: 0px;
	background: url('../img/icons/conntact-form-list-bullet.svg')center center no-repeat;
}
.green-text,
.gold-text {
	font-weight: 800;
}
.green-text {
	color: var(--themeGreen);
}
.gold-text {
	color: var(--gold);
}
.consultForm .field input,
.consultForm .field textarea,
.consultForm .field select{
padding: 24px 18px;
background-color: var(--themeWhite);
border-radius: 8px;
font-weight: 500;
font-size: 16px;
width: 100%;
line-height: 1.4em;
}
.consultForm .field input:focus,
.consultForm .field textarea:focus,
.consultForm .field select:focus{
	outline: none;
	background-color: #dadada;
}
.wpcf7-not-valid-tip {
	font-size: 12px;
	position: absolute;
	right: 5px;
	top: 0;
}
.contact-info-inner {
font-weight: 500;
font-size: clamp(1rem, 0.9167rem + 0.3704vw, 1.25rem);
line-height: 1.8em;
color: var(--themeWhite);
}
/* change standard checkbox */
.field.accept input[type="checkbox"] {
  opacity: 0;
  position: absolute;
  z-index: -1;
}


.field.accept label {
  position: relative;
  padding-left: 32px;
  cursor: pointer;
  display: inline-block;
  line-height: 1.4;
}


.field.accept label::before {
  content: "";
  position: absolute;
  left: 0;
  top: 2px;
  width: 20px;
  height: 20px;
  border: 2px solid #ccc;
  border-radius: 4px;
  background-color: #fff;
  transition: all 0.2s ease;
}

.field.accept label::after {
  content: "";
  position: absolute;
  left: 6px;
  top: 5px;
  width: 6px;
  height: 12px;
  border: solid var(--themeWhite);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
  opacity: 0;
  transition: opacity 0.2s;
}

.field.accept input[type="checkbox"]:checked + .wpcf7-list-item-label::after {
  opacity: 1;
  color: #FFFFFF;
}


.field.accept input[type="checkbox"]:checked + .wpcf7-list-item-label::before {
  background-color: var(--themeGreen);
  border-color: var(--themeGreen);
}
.field.accept .wpcf7-list-item {
	margin: 0;
}
.field.accept .wpcf7-list-item-label {
display: inline-block;
font-weight: 500;
font-size: 14px;
line-height: 1.4em;
color: var(--themeWhite);
}
.field.accept .wpcf7-list-item-label a {
	color: var(--themeGreen);
	text-decoration: underline;
}
.field.accept .wpcf7-list-item-label a:hover {
	text-decoration: none;
}
.consultForm .field.send input{
border-radius: 100px;
padding: 20px 15px;
margin-top: 10px;
border:1px solid var(--gold);
cursor: pointer;
color: var(--themeWhite);
background:var(--gold) url('../img/icons/button-arrow.svg') center right 5px no-repeat;
text-align: left;
font-weight: 800;
font-size: 16px;
transition: all 0.3s;
line-height: 1.4em;
text-transform: uppercase;
}
.consultForm .field.send:hover input {
	border:1px solid var(--gold);
	background:url('../img/icons/button-arrow.svg') center right 5px no-repeat;
}
.field.send,
.get-a-consultation {
	position: relative;
}
.wpcf7-response-output {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	border:1px solid var(--gold)!important;
	margin: 0px;
	padding: 0px;
	background-color: var(--themeWhite);
	padding: 5px;
	font-size: 12px;
	color:var(--themeBlue);
	max-width: 80%;
}
.wpcf7-spinner {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 50px;
}
.field.accept label.checked::after {
  opacity: 1;
}
.field.accept label.checked::before {
  background-color: var(--themeGreen);
  border-color: var(--themeGreen);
}
.contact-information__block .socials .footer-socials li {
	transition:all 0.3s;
}
.contact-information__block .socials .footer-socials li:hover {
	opacity:0.5;
}

/* change standard checkbox */

.review-item {
    padding: 20px;
    border: 1px solid #eee;
    border-radius: 8px;
    background: #fff;
}
.form-block__title {
	max-width: 900px;
	margin: 0 auto;
}
.review-info__block {
    display: flex;
    gap: 10px;
    align-items: center;
    margin-bottom: 10px;
}
.review-info__block img {
	width: 40px;
	height: 40px;
	border-radius: 500px;
	object-fit: cover;
}

.title-review h4{
font-weight: 700;
font-size: 15px;
line-height: 1.4em;
}
.title-review span {
font-weight: 600;
font-size: 12px;
line-height: 1.4em;
}
.title-review {
	display:flex;
	flex-direction:column;
	gap:1px;
}
.review-text {
font-weight: 400;
font-size: 14px;
line-height: 1.4em;
max-height: 130px;
overflow: auto;
}
.review-item {
	min-height: 265px;
}
.no-slider .swiper-wrapper {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.reviews-block .swiper-button-prev,
.reviews-block .swiper-button-next {
    background: var(--gold);
}
.reviews-block .swiper-button-prev:hover,
.reviews-block .swiper-button-next:hover {
	opacity: 0.5;
}
.reviews-block {
	overflow: hidden;
	margin-bottom: clamp(3.125rem, 1.0054rem + 9.4203vw, 11.25rem);
}
.reviews-block .swiper {
	overflow: visible;
}
.reviews-block .swiper-button-prev,
.reviews-block .swiper-button-next {
	position: absolute;
	top: calc(100% + 50px);
	transform: translateX(-50%);
}
.reviews-block .swiper-button-next {
	left: calc(50% + 30px);
}
.reviews-block .swiper-button-prev {
	left: calc(50% - 30px);
}
.reviews-block .swiper {
	margin-bottom: 100px;
}
.swiper-slide {
	cursor: grab;
}
/* End Reviews Block */
.form-block {
	display: flex;
	flex-direction: column;
	gap: clamp(3.125rem, 1.8207rem + 5.7971vw, 8.125rem);
}
.request-title {
	max-width: 700px;
	margin-bottom: 60px;
}
.after-request-image img {
	aspect-ratio: 684 / 520;
	object-fit: cover;
	width:100%;
	border-radius: 12px;
}

.after-request-content {
 display: flex;
 gap:8px;
 align-items: flex-start;
}
.after-request-content > div {
	width: 50%;
}
/* Acordion */


.tab-button {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #EEEEEE;
  width: 100%;
  padding:32px;
  border-left: 4px solid var(--gold);
  cursor: pointer;
  outline: none;
  font-size: 16px;
  transition: background 0.3s;
}

.tab-button:hover {
  background: var(--themeBlue);
}
.tab-button:hover .tab-title {
	color: var(--themeWhite);
}
.tab-title {
  flex: 1;
  text-align: left;
font-weight: 700;
font-size: 20px;
line-height: 1.2em;
}

.tab-icon {
  display: flex;
  align-items: center;
  margin-left: 10px;
}

.tab-icon svg {
  display: block;
}

.active-icon {
  display: none;
}

.tab-item.active .active-icon {
  display: inline-block;
}

.tab-item.active .inactive-icon {
  display: none;
}
.tab-item.active .tab-button {
	background-color: var(--themeBlue);
	color: var(--themeWhite);
}
.tab-item:hover .tab-button .tab-icon svg g path {
	fill:#FFFFFF;
}
.tab-content {
  display: none;
}
.custom-tabs {
	display: flex;
	flex-direction: column;
	gap:8px;
}
.custom-tabs .tab-item .tab-button{
	border-radius: 0px 12px 12px 0px;
}
.custom-tabs .tab-item.active .tab-button {
border-radius: 0px 12px 0px 0px;
}
.custom-tabs .tab-item.active .tab-content {
	border-radius: 0px 0px 12px 0px;
}
.tab-item.active .tab-content {
  display: block;
  	background-color: var(--themeBlue);
	color: var(--themeWhite);
	border-left: 4px solid var(--gold);
	padding: 32px;
font-weight: 400;
font-size: 16px;
line-height: 1.6em;
}
/* ************* */
.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.accordion-item.active .accordion-content {
  max-height: 1000px; /* Достатньо велике значення */
}
/* End Acordion */
.container-map {
	display: flex;
	justify-content: center;
}
.map-titles {
	max-width: 650px;
	margin-bottom: 40px;
}
.container-faq {
	display: flex;
	gap:clamp(1.25rem, 0.8098rem + 1.9565vw, 2.9375rem);
}
.faq-titles {
	width: 38%;
}
.faq-titles h2 {
	max-width: 500px;
}
.faq-acordion__block {
	width: 58%;
}

/* FAQ Acordion Start */
/* Container for the FAQ accordion */
.faq-accordion-container {
    max-width: 800px;
    margin: 0 auto;
}

/* Individual accordion item */
.faq-accordion-item {
    margin-bottom: 16px;
}

/* Header of each accordion item */
.faq-accordion-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-block:clamp(0.9375rem, 0.5833rem + 1.5741vw, 2rem);
	padding-inline: clamp(0.625rem, 0.3333rem + 1.2963vw, 1.5rem);
	 border-radius: 12px;
    cursor: pointer;
    background: #EEEEEE;
    transition: all 0.3s;
}

/* Title styling */
.faq-accordion-title {
font-weight: 700;
font-size: 20px;
line-height: 1.2em;
color: var(--themeBlue);
}

/* Icon container */
.faq-accordion-icon {
    display: flex;
    align-items: center;
}

/* Show plus icon by default, hide cross icon */
.faq-icon-plus {
    display: block;
}
.faq-icon-cross {
    display: none;
}

/* Active state: show cross icon, hide plus icon */
.faq-accordion-item.active .faq-icon-plus {
    display: none;
}
.faq-accordion-item.active .faq-icon-cross {
    display: block;
}

/* Content area, hidden by default */
.faq-accordion-content {
    max-height: 0;
    overflow: hidden;
	 background-color: #EEEEEE;
	 color: var(--themeBlue);
    transition: max-height 0.3s ease-out, padding 0.3s ease-out;
}

/* Content visible when active */
.faq-accordion-item.active .faq-accordion-content {
    max-height: none; /* Remove max-height restriction */
    height: auto; /* Let content take its natural height */
    padding: 15px;
	 background-color: #EEEEEE;
	 border-radius: 0px 0px 12px 12px;
}
.faq-accordion-item.active .faq-accordion-header {
	border-radius: 12px 12px 0px 0px;
	transition: all 0.1s;
}
/* Content paragraph styling */
.faq-accordion-content p {
    margin: 0;
    font-size: 16px;
    color: #333;
}
/* FAQ Acordion End */

/* */
[class*="--distance"] {
	padding-top: 20px;
}
.page-hero {
	background-size: cover;
	min-height: 400px;
	padding: 60px;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
}
.about-hero-block,
.services-hero-block,
.works-hero-block,
.contact-hero-block {
	border-radius: 24px;
}
.about-hero-block {
	background: url('../img/about-hero.jpg') center center no-repeat;
	background-size: cover;
}
.services-hero-block {
	background: url('../img/services-hero.jpg') center center no-repeat;
	background-size: cover;
}
.works-hero-block {
	background: url('../img/works-hero.jpg') center center no-repeat;
	background-size: cover;
}
.contact-hero-block {
		background: url('../img/contact-hero.jpg') center center no-repeat;
		background-size: cover;
}
.hero-overlay {
	position: relative;
}
.hero-overlay::before {
	content: '';
	position: absolute;
	left: 0px;
	top: 0px;
	background: rgba(28, 28, 28, 0.65);
	width: 100%;
	z-index:0;
	border-radius: 24px;
	height: 100%;
}
.hero-inner {
	z-index: 1;
}
.subpage .breadcrumbs-block a,
.subpage .breadcrumbs-block span {
	color: var(--themeWhite);
}
.subpage .breadcrumbs-block span {
	opacity: 0.7;
}
.subpage .breadcrumbs-block span.breadcrumb-separator {
	opacity: 1;
}
.subpage .breadcrumbs-block span svg path {
	fill: var(--themeWhite);
}
.about-main__inner img {
	max-width: 100%;
	aspect-ratio: 1356 / 560;
	object-fit: cover;
	border-radius: 24px;
	width: 100%;
	height: auto;
}
.main-image {
	margin-bottom: clamp(1.875rem, 1.25rem + 2.7778vw, 3.75rem);
}
.main-about-texts {
	display: flex;
	gap:60px;
	padding-bottom: 40px;
	border-bottom: 1px solid rgba(33, 55, 76, 0.5);
}
.main-about-texts .block-title {
	width: 30%;
	flex:0 0 30%;
}
.main-about-texts .main-text {
	width: 66%;
}

/* Timeline */
/* ********************** */
.timeline-slider {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
  font-family: sans-serif;
}
.slider-main-info {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 30px;
  position: relative;
  margin-bottom: 40px;
}

.slide {
  display: none;
  flex-direction: row;
}
.timeline-slider .slider-main-info .slide.active {
	 display: flex;
	 justify-content: space-between;
	 gap:clamp(1.25rem, -0.1746rem + 2.9718vw, 2.5rem);
}
.timeline-slider .slider-main-info .slide.active .slide-image {
	width: 46%;
}
.timeline-slider .slider-main-info .slide.active .slide-texts {
	width: 50%;
	color: var(--themeBlue);
}
.year-content {
font-weight: 400;
font-style: Italic;
font-size: 30px;
line-height: 1,2em;
letter-spacing:-0.02em;

}
.timeline-slider .slider-main-info .slide.active .slide-image img {
	aspect-ratio: 625 / 392;
	width: 100%;
	height: auto;
}
.slide-image img {
  width: 100%;
  height: auto;
  border-radius: 10px;
}

.slide-texts h3 {
font-weight: 700;
font-size: 30px;
line-height: 1.2em;
letter-spacing: -0.02em;
margin-bottom: 16px;
}

.slide-texts .text {
  display: block;
  margin-bottom: 24px;
font-weight: 500;
font-size: 18px;
line-height: 1.6em;
}
.slider-arrows {
	display: flex;
	gap:12px;
}
.slider-arrows button {
	width: 48px;
	height: 48px;
background: none;
padding: 0;
}
.slider-arrows button:hover {
	opacity: 0.5;
}
.slider-arrows .prev-slide {
	transform: rotate(-180deg);
}
.slider-year-points {
  position: relative;
  padding: 30px 0;
}

.year-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

.year-point {
  position: relative;
  cursor: pointer;
  text-align: left;
  flex: 0;
}

.year-point .year {
font-weight: 700;
font-size: 16px;
color: rgba(33, 55, 76, 1);
line-height: 1.2em;
}

.year-point .circle {
  width: 10px;
  height: 10px;
  background: var(--themeBlue);
  border-radius: 50%;
  z-index: 2;
  position: relative;
  transition: background 0.3s ease;
}
.year-point.active .circle {
  background: var(--gold);
}
.year-point.active .year {
	color: var(--gold);
}
.year-line::before {
  content: '';
  position: absolute;
  top: 24px;
  left: 0;
  right: 0;
  height: 1px;
  background:var(--themeBlue);
  z-index: 1;
}
.line-extension {
  position: absolute;
  top: 24px;
  right: -20px;
  width: 20px;
  height: 1px;
 background:var(--themeBlue);
}
.bg-gray {
	background: rgba(238, 238, 238, 1);
	border-radius: 24px;
	padding: 85px 0px;
}
.timeline-title {
	margin-bottom: 40px;
}
.container-timeline {
	width: 100%;
}
/* ********************** */
/* End Of Timeline */
/* */

.media-cards,
.title-block {
	display: flex;
	gap:clamp(1.25rem, -0.1746rem + 2.9718vw, 2.5rem);
}
.title-block {
	gap:12px;
	z-index: 1;
	position: relative;
	align-items: center;
}
.media-cards {
	align-items: flex-start;
}
.media-card {
	position: relative;
	width: 50%;
	z-index: 1;
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	min-height: 500px;
	border-radius: 18px;
	padding: 32px 24px;
}
.media-card-text {
	position: relative;
	z-index: 2;
	color: var(--themeWhite);
font-weight: 400;
font-size: 16px;
line-height: 1.5em;
letter-spacing:-0.02em;
}
.media-card.card-2 {
	margin-top: 50px;
}
.media-card::before {
	content: '';
	width: 100%;
	height: 100%;
	background: rgba(33, 55, 76, 0.8);
	position: absolute;
	top:0px;
	border-radius: 18px;
	z-index: 0;
	left: 0px;
}
.why-choose-us-cards {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	grid-template-rows: auto;
	gap:20px;
}
.why-choose-us-cards .why-choose-us-card {
	padding:20px;
	border-radius: 24px;
	background: rgba(238, 238, 238, 1);
}
.why-choose-us-card .card-image {
margin-bottom: clamp(1.875rem, -3.1111rem + 10.4012vw, 6.25rem);
}
.why-choose-us-card .card-title {
font-weight: 700;
font-size: 20px;
line-height: 1.2em;
margin-bottom: 12px;
color: var(--themeBlue);
}
.why-choose-us-car .card-text {
font-weight: 400;
font-size: 12px;
line-height:1.4em;
color: var(--themeBlue);
}
.why-choose-title {
	margin-bottom: 40px;
}
.partners-titles {
	display: flex;
	justify-content: space-between;
	gap:20px;
}
.partners-titles .title,
.partners-titles .subtitle {
	width: 50%;
	max-width: 500px;
}
.all-partners {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	grid-template-rows: auto;
	gap:20px;
}
.all-partners .partner img {
	width: 100%;
}
.all-partners .partner {
	display:flex;
	justify-content:center;
	flex-direction:column;
	align-items:center;
	gap:0px;
	background-color:var(--themeWhite);
	padding:15px;
	border-radius:20px;
}
.testimonials .reviews-block {
	margin-bottom: 0;
}
.about-page .map-section,
.our-contacts .map-section {
	margin-bottom: 0px;
}
.about-page .map-embed__block,
.our-contacts .map-embed__block {
	line-height: 0;
}
.services-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
}
.all-services .cart-top .service-thumb img {
	width: 100%;
	aspect-ratio: 324 / 213;
	border-radius: 20px 20px 0 0;
	object-fit: cover;
	height: auto;
}
.service-card .card-texts .service-title {
	position: relative;
	width: fit-content;
}
.services-page .service-card .service-title a{
display: -webkit-box;
overflow: hidden;
min-height: 50px;
  -webkit-box-orient: vertical;  
  -webkit-line-clamp: 2;
}
.service-card .card-texts .service-title{
	position: relative;
	transition: all 0.3s;
}
.service-card:hover .card-texts .service-title {
	padding-left:3px;
}
.service-card .card-texts a img {
transition: filter 0.3s ease;
}
.service-card:hover .btn--bluebg {
    background-color: var(--gold) !important;
    border-color: var(--gold);
}
.service-card:hover .btn--bluebg svg path {
    stroke: var(--gold);
}
.service-card:hover .service-thumb a img{
  filter: grayscale(100%);
}
.service-card:hover .btn-action svg {
    transform: rotate(90deg);
}

/* ************************************************************** */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 20px auto;
    gap: 10px;
}

.pagination a {
    display: flex;
    align-items: center;
    padding: 5px 12px;
    background-color: var(--themeBlue);
    color: #fff;
    border-radius: 5px;
    text-decoration: none;
    font-size: 16px;
    transition: background-color 0.3s ease;
}

.pagination a:hover {
    background-color: var(--gold);
}

.pagination a.active,
.pagination a.disabled {
    background-color: #cccccc;
    color: #666666;
    cursor: not-allowed;
}

.pagination a.disabled {
    pointer-events: none;
}

.pagination.loading a {
    opacity: 0.7;
    cursor: wait;
}

.pagination a svg {
    width: 24px;
    height: 24px;
    vertical-align: middle;
}

.pagination .page-prev svg {
    margin-right: 8px; /* Іконка перед текстом у Previous */
}

.pagination .page-next svg {
    margin-left: 8px; /* Іконка після тексту у Next */
}

.pagination .page-number {
    min-width: 32px;
    text-align: center;
}
.latest-works #works-container {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap:20px;
}
#works-container .work-item {
	width: 100%;
}
/* ************************************************************** */
/* .container-mobile ul li.menu-item-has-children::after{
display: none;
}
.container-mobile ul li.menu-item-has-children {
	margin-bottom: 0;
}
 .container-mobile ul li.menu-item-has-children ul.sub-menu {
	display: flex;
	flex-direction: column;
	visibility: visible;
	position: relative;
	margin: 15px 0px 0px 0px;
	padding: 0px;
	opacity: 0.5;
	padding-left: 15px;
	background-color: transparent;
}
*/


/* ------------------------ */
.our-works .services-titles {
	justify-content: space-between;
}
.our-works .services-titles .title,
.our-works .services-titles .subtitle {
	width: 50%;
}
.our-works .services-titles .subtitle  {
	max-width: 514px;
}

/* filters */
.services-filter ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  padding: 0;
}

.services-filter .filter-btn {
  text-decoration: none;
  background: rgba(223, 223, 223, 1);
  padding: 20px 40px;
  border-radius: 8px;
 color: rgba(39, 64, 85, 0.5);
font-weight: 800;
font-size: 16px;
line-height: 1.4em;
text-transform: uppercase;
}
.services-filter ul li a {
	display: flex;
	align-items: center;
	gap:5px;
}
.services-filter .filter-btn.active,
.services-filter .filter-btn:hover {
  background: var(--themeBlue);
  color: var(--themeWhite);
}
.services-filter .filter-btn span {
color: var(--themeBlue);
font-weight: 800;
font-size: 14px;
padding: 2px 8px;
background: var(--themeWhite);
color: var(--themeBlue);
line-height: 1.4em;
border-radius: 4px;
text-transform: uppercase;
}
.services-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(3, 1fr);
  margin: 30px 0;
}

.service-item {
  transition: all 0.3s ease-in-out;
}
.service-item a,
.service-item a img{
	width: 100%;
}
.service-item a {
	overflow: hidden;
	border-radius: 12px;
}
.service-item a img {
	aspect-ratio: 438 / 420;
	object-fit: cover;
	border-radius: 12px;
	height: auto;
	transition: all 0.3s;
}
.service-item:hover a img {
	transform: scale(1.2);
	border-radius: 12px;
}
/* end of filters */

.contact-info-inner {
	background: url('../img/contact-info-block.jpg')center center no-repeat;
	background-size: cover;
	position: relative;
	border-radius: 24px;
	padding: 50px 40px;
	display: flex;
	gap:40px;
	justify-content: space-between;
}
.contact-info-inner .contact-text-block,
.contact-info-inner .contact-form-block {
	width: 50%;
	position: relative;
	z-index: 99;
}
.contact-info-inner .contact-text-block {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}
.contact-form-block {
	padding: 32px;
	border-radius: 24px;
	background: var(--themeBlue);
}
.contact-info-inner::before {
	content: '';
	position: absolute;
	top: 0;
	z-index: 0;
	left: 0;
	border-radius: 24px;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.7);
}
.contact-info-inner .contact-form-block .consultForm input,
.contact-info-inner .contact-form-block .consultForm textarea,
.contact-info-inner .contact-form-block .consultForm .message span{
	width: 100%;
}
.contact-info-inner .contact-form-block .consultForm .field,
.contact-info-inner .contact-form-block .consultForm {
	display: flex;
	gap:20px;
}

.contact-info-inner .contact-form-block .consultForm {
	flex-direction: column;
}

/* single service styles */
/* ************************************************ */
.single-hero {
	margin-top: -20px;
	padding-top: 20px;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
	position: relative;
	border-radius: 0 0 24px 24px;
	margin-bottom: 50px;
}
.single-hero::before {
	content: '';
	background: rgba(0, 0, 0, 0.6);
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0px;
	top:0px;
	border-radius: 0 0 24px 24px;
}
.single-hero .texts-hero {
	display: flex;
	flex-direction: column;
	gap:clamp(1.5625rem, 1.0417rem + 2.3148vw, 3.125rem);
}
.single-hero h1 {
	max-width: 750px;
	color: var(--themeWhite);
	margin-bottom: 14px;
}
.hero-text-description {
font-weight: 500;
display: inline-block;
margin-bottom: 32px;
font-size: 16px;
line-height: 1.6em;
max-width: 600px;
color: var(--themeWhite);
}
.single-hero h1 span {
	color: var(--gold);
}
.block-hero {
	padding: 50px 0px;
	display: flex;
	position: relative;
	z-index: 999;
	gap:40px;
	justify-content: space-between;
}
.block-hero .hero-texts {
	width: 55%;
}
.block-hero .hero-form {
	width: 41.9%;
}
.pin-message {
	display: inline-block;
	background-color: var(--themeGreen);
	padding: 3px 10px 3px 20px;
	color: var(--themeWhite);
	font-weight: 700;
	font-size: 16px;
	border-radius: 500px;
	line-height: 1.4em;
	position: relative;
}
.pin-message::before {
	content: '';
	background-color: var(--themeWhite);
	width: 5px;
	height: 5px;
	border-radius: 500px;
	position: absolute;
	left: 10px;
	top: 50%;
	transform: translateY(-50%);
}
.btn-bg-white{
    background: var(--themeWhite);
    border: 1px solid var(--themeWhite);
    font-size: clamp(0.75rem, 0.7083rem + 0.1852vw, 0.875rem);
    font-weight: 800;
    text-transform: uppercase;
    line-height: 1.4em;
    display: inline-flex;
    transition: all 0.3s;
    align-items: center;
    color: var(--themeBluee);
    border-radius: 500px;
	 padding: 5px 5px 5px 20px;
	 gap:20px;
}
.btn-bg-white:hover {
    background-color: var(--themeWhite);
}
.btn-bg-white svg {
	transition: all 0.3s;
}
.btn-bg-white:hover svg {
	transform: rotate(90deg);
}
.contact-form-block.single-page {
	max-width: 566px;
}
.contact-form-block.single-page .consultForm .line1,
.contact-form-block.single-page .consultForm .line2 {
	display: flex;
	gap:20px;
		flex-direction: row;
	}
.contact-form-block.single-page .consultForm {
	display: flex;
	flex-direction: column;
	gap:20px;
}
.contact-form-block.single-page .consultForm .field textarea,
.contact-form-block.single-page .consultForm .field input {
	font-size: 14px;
	padding:15px;
}
.contact-form-block.single-page .consultForm .field.send input {
	padding: 22px 15px;
}
.contact-form-block.single-page .consultForm .field.message textarea{
	max-height: 140px;
}
.container-reviews-items,
ul.review-links {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap:30px;
}
ul.review-links {
	gap:20px;
}
ul.review-links li a img {
	width: 100%;
}


.container-main-post-info {
	display: flex;
	gap:30px;
}
.main-post-images,
.main-post-texts  {
	width: 50%;
}
.main-post-images .image-links-list {
 display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  grid-template-areas:
    "one two"
    "one three";
}
.main-post-images .image-links-list li:first-of-type {
  grid-area: one;
  width: 100%;
}
.main-post-images .image-links-list li:first-of-type img {
	aspect-ratio: 320 / 644;
	width: 100%;
	border-radius: 12px;
	object-fit: cover;
	height: 100%;
}
.main-post-images .image-links-list li:nth-child(2) {
  grid-area: two;
}

.main-post-images .image-links-list li:nth-child(3) {
  grid-area: three;
}
.main-post-images .image-links-list li:nth-child(2) img,
.main-post-images .image-links-list li:nth-child(3) img {
aspect-ratio: 308 / 316;
width: 100%;
object-fit: cover;
height: auto;
border-radius: 12px;
}
.main-post-texts h2 {
margin-bottom: 24px;
color: var(--themeBlue);
}
.paragraph-text {
font-weight: 500;
font-size: 16px;
line-height:1.6em;
display: inline-block;
margin-bottom: 24px;
color: var(--themeBlue);
}
.main-post-texts .list-wrapper {
	background: rgba(238, 238, 238, 1);
	border-radius: 14px;
	padding: 32px;
	display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  list-style: none;
}
.main-post-texts .list-wrapper li{
	position: relative;
	padding-left: 30px;
font-weight: 600;
font-size: 18px;
line-height: 1.6em;
color: rgba(33, 55, 76, 1);
}
.main-post-texts .list-wrapper li:not(:last-of-type) {
	margin-bottom: 25px;
}
.main-post-texts .list-wrapper li::before{
	content: '';
	position: absolute;
	content: '';
	width: 20px;
	background: url('../img/icons/list-bullet-green-icon.svg');
	height: 20px;
	position: absolute;
	left: 0px;
	top: 50%;
	transform: translateY(-50%);

}
.service-include {
	background-position: center;
	background-size: cover;
	position: relative;
	border-radius: 24px;
	background-repeat: no-repeat;
}
.service-include::before {
	content: '';
	background: rgba(0, 0, 0, 0.6);
	position: absolute;
	top: 0px;
	left: 0px;
	border-radius: 24px;
	z-index: 1;
	width: 100%;
	height: 100%;
}
.container-include {
	position: relative;
	padding-block: 80px 100px;
	z-index: 99;
}
.container-include h2 {
	margin-bottom: 40px;
}
.container-include .swiper-slide {
	height: 100%;
}
.include-slider .swiper-button-prev,
.include-slider .swiper-button-next {
	background: var(--gold);
	transition: all 0.3s;
}
.include-slider .swiper-button-prev:hover,
.include-slider .swiper-button-next:hover {
	opacity: 0.7;
}
.include-item {
	max-width: 442px;
	border-radius: 20px;
	height: 100%;
	background: rgba(238, 238, 238, 1);
}
.include-slider .item-texts {
	border-radius: 0 0 20px 20px;
	padding: 40px 20px 20px 20px;
	min-height: 230px;
	background: rgba(238, 238, 238, 1);
}
.include-slider .swiper-pagination {
	padding-top: 25px;
}
.include-slider .swiper-pagination span.swiper-pagination-bullet {
	opacity:0.5;
}
.include-slider .swiper-pagination span.swiper-pagination-bullet:hover,
.include-slider .swiper-pagination span.swiper-pagination-bullet.swiper-pagination-bullet-active {
	opacity: 1;
}
.item-texts h3 {
font-weight: 700;
font-size: 20px;
line-height: 1.2em;
margin-bottom: 10px;
color: var(--themeBlue);
}
.item-texts .include-list li:not(:last-of-type) {
	margin-bottom: 6px;
}
.item-texts .include-list li{
	position: relative;
font-weight: 400;
font-size: 14px;
padding-left:20px ;
line-height: 1.6em;
}
.item-texts .include-list li::before {
	content: '';
	background: url('../img/icons/small-bulets.svg') center center no-repeat;
	width: 13px;
	height: 10px;
	position: absolute;
	left:0px;
	top:5px;
}

.include-item .item-top {
	width: 100%;
	aspect-ratio: 442 / 250;
	object-fit: cover;
	background-size:cover;
	background-repeat:no-repeat;
	background-position:center;
	border-radius: 20px;
	height: auto;
}
.include-inner {
	overflow: hidden;
	padding-top: 20px;
}
.include-slider {
	overflow: visible;
}
.include-slider-nav {
    position: absolute;
    top: -70px;
	 right: 50px;
}
.include-slider-nav .swiper-button-next {
	left: 0px;
}
.include-slider-nav .swiper-button-prev {
	left: -60px;
}
.process-cards-wrapper {
	display: grid;
	gap: 20px;
	grid-template-columns: repeat(4, 1fr);
}
.process-cards-wrapper .process-card {
	padding: 20px;
	border-radius: 24px;
	background: rgba(238, 238, 238, 1);
    display: flex;
	 min-height: 350px;
    flex-direction: column;
    justify-content: space-between;
}
.process-cards-wrapper .process-card h3 {
font-weight: 700;
font-size: 20px;
color: var(--themeBlue);
line-height: 1.2em;
}
.process-cards-wrapper .process-card .process-card__desc {
font-weight: 400;
font-size: 12px;
line-height: 1.4em;
}
.process-cards-wrapper .process-card .process-card__number {
	color: var(--themeBlue);
	font-weight: 500;
	font-size: 25px;
	line-height: 1.2em;
	letter-spacing: -0.02em;
	text-align: center;
	width: 64px;
	height: 64px;
	background: var(--themeWhite);
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 500px;
	border:1px solid var(--themeBlue);
}
.our-process-title {
	margin-bottom: 40px;
}
.our-process-content {
	display: flex;
	flex-direction: column;
	gap:40px;
}
.banner-block {
	display: flex;
}
.banner-block .banner-image {
	width: 37%;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}
.banner-block .banner-content {
	width: 63%;
}
.banner-block .banner-content h3 {
font-weight: 700;
font-size: clamp(1.625rem, 1.5417rem + 0.3704vw, 1.875rem);
line-height: 1.2em;
letter-spacing: -0.02em;
display: inline-block;
margin-bottom: 32px;
}
.banner-image,
.banner-content {
	border-radius: 24px;
}
.banner-content {
	background-color: var(--themeBlue);
	padding: clamp(1.25rem, 0.3333rem + 4.0741vw, 4rem);
}
.banner-block .banner-content .banner-content-text {
font-weight: 400;
color: var(--themeWhite);
font-size: 18px;
line-height: 1.4em;
margin-bottom: 48px;
}
.banner-block .banner-content .banner-content-text p:not(:last-of-type) {
	margin-bottom: 20px;
}
.banner-buttons {
	display: flex;
	gap:12px;
}
.before-after-list {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap:20px;
}
.before-after-list li img {
	aspect-ratio: 1 / 1;
	width: 100%;
	height: auto;
	border-radius: 12px;
	object-fit: cover;
}

/* ************************************************ */
/* End single service styles */
@media(max-width:1300px) {
.main-post-texts .list-wrapper {
		grid-template-columns: repeat(1, 1fr);
	}
}
@media(max-width:1200px) {
	.global-options-info .socials .footer-socials {
		flex-direction: column;
	}
	.global-options-info .socials .footer-socials li:not(:last-of-type) {
		margin-bottom: 15px;
	}
	.contact-info-inner .contact-form-block .consultForm .line1,
	.contact-info-inner .contact-form-block .consultForm .line2 {
		flex-direction: column;
	}
	.include-slider .item-texts {
		padding: 40px 15px;
	}
}
@media(max-width:1060px) {
	.services-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
}
@media(max-width:1024px) {
	.content-items {
		display: grid;
		gap: 50px;
		grid-template-columns: repeat(2,  1fr);
	}
	.list-columns {
		flex-direction: column;
	}
	.main-post-texts .list-wrapper {
		grid-template-columns: repeat(2, 1fr);
	}
	.about-inner .about-images img {
	aspect-ratio: 4 / 2;
}
	.about-inner {
		flex-direction: column;
	}
	.about-inner > div {
		width: 100%;
	}
	.why-choose .why-choose__item .image,
.why-choose .why-choose__item .texts{
	min-height: 350px;
}
.work-item {
padding: 18px;
}
.container-faq,
.container-reviews-items {
	flex-direction: column;
}
.container-faq > div {
	width: 100%;
}
.faq-accordion-container {
	max-width: unset;
}
.faq-titles h2 {
	max-width: 400px;
	text-align: center;
}
.faq-titles {
	display: flex;
	justify-content: center;
}
.why-choose-us-cards {
	grid-template-columns: repeat(2, 1fr);
}
.all-partners {
    grid-template-columns: repeat(2, 1fr);
}
.contact-info-inner {
	flex-direction: column;
}
.contact-info-inner .contact-text-block,
.contact-info-inner .contact-form-block {
	width: 100%;
}
.contact-text-block {
	gap:30px;
}
.global-options-info {
	flex-direction: row;
}
.container-main-post-info {
	flex-direction: column;
}
.container-main-post-info .main-post-images,
.container-main-post-info .main-post-texts {
	width: 100%;
}
.process-cards-wrapper {
	grid-template-columns: repeat(2, 1fr);
}
.before-after-list {
	grid-template-columns: repeat(2, 1fr);
}
}

@media(max-width:950px) {
	.block-hero {
		flex-direction: column;
	}
	.contact-form-block.single-page {
		max-width: unset;
	}
	.contact-form-block.single-page .consultForm .line1,
	.contact-form-block.single-page .consultForm .line2 {
		justify-content: space-between;
	}
	.contact-form-block.single-page .consultForm .line1 span,
	.contact-form-block.single-page .consultForm .line2 span {
		width: 50%;
	}
	.single-hero h1,
	.hero-text-description {
		max-width: unset;
	}
}
@media(max-width:900px) {
	.banner-block {
		flex-direction: column;
	}
	.banner-block .banner-image,
	.banner-block .banner-content {
		width: 100%;
	}
	.banner-block .banner-image {
		min-height: 300px;
	}
}
@media(max-width:870px) {
	.copyright-inner {
		flex-direction: column;
	}
	.services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}
}
@media(max-width:799px) {
	.hero-texts .homepage-slogans {
		flex-direction:column;
	}
}

@media(max-width:767px) {
    .cta-texts {
        gap:5px;
    }
	.cta-inner {
		padding: 70px 0px;
	 }
	 .block-content {
		padding: 50px 0px;
	 }
	 .service-pin-post {
		flex-direction: column;
		gap:30px;
	 }
	 .container-banner {
		padding: 25px;
	 }
	 .pin-post-phone a {
    width: 100%;
    justify-content: space-between;
}
	 .pin-post-card {
		max-width:unset;
		width: 100%;
	 }
	 .why-choose .why-choose__item,
	 .why-choose .why-choose__item:nth-child(2n) {
		flex-direction:column-reverse;
	 }
	 .why-choose .why-choose__item .image,
.why-choose .why-choose__item .texts{
	width: 100%;
	min-height:300px ;
}
.latest-works {
	flex-direction: column;
}
.latest-works > div {
	width: 100%;
}
.work-item {
padding: 12px;
}
.work-titles {
	flex-direction: column;
	gap:30px;
	align-items: center;
}
.work-titles > * {
	text-align: center;
	width: 100%;
}
.thumbnail-slider .swiper-slide {
    width: 60px;
    height: 60px;
}
.container-reviews {
	padding: 25px 15px;
}
.reviews-titles {
	flex-direction: column;
	gap:30px;
	align-items: center;
}
.get-a-consultation {
	padding: 25px 15px;
}
.after-request-content {
	flex-direction: column-reverse;
}
.after-request-content > div {
	width: 100%;
}
.main-about-texts {
	flex-direction: column;
	gap:30px;
}
.page-hero {
	padding: 30px 20px;
}
.main-about-texts .block-title,
.main-about-texts .main-text {
	width: 100%;
}
.timeline-slider .slider-main-info .slide.active {
	 flex-direction: column;
}
.timeline-slider .slider-main-info .slide.active .slide-image,
.timeline-slider .slider-main-info .slide.active .slide-texts {
	width: 100%;
}
.slider-year-points {
	overflow: auto;
}
.year-line {
	gap:25px;
}
.year-line::before {
	width: calc(100% + 100%);
}
.media-cards {
	flex-direction: column;
}
.media-cards .media-card {
	width: 100%;
}
.media-cards .media-card.card-2 {
	margin-top: 0px;
}
.partners-titles {
	flex-direction: column;
}
.partners-titles .title,
.partners-titles .subtitle {
	width: 100%;
	max-width: unset;
}
    .all-partners {
        grid-template-columns: repeat(1, 1fr);
    }
	 .latest-works #works-container {
    grid-template-columns: repeat(1, 1fr);
}
.services-block .services-titles {
	flex-direction: column;
	gap:15px;
}
.services-filter .filter-btn {
	padding:clamp(0.625rem, 0.4167rem + 0.9259vw, 1.25rem);;
}
.services-block .services-titles .title,
.services-block .services-titles .subtitle {
	width: 100%;
}
.services-block .services-titles .subtitle {
	max-width: unset;
}
.contact-info-inner,
.contact-form-block {
	padding: 30px 20px;
}
.include-slider-nav {
	display: none;
}
.before-after-list {
	grid-template-columns: repeat(1, 1fr);
}
.include-item {
	max-width: unset;
}
.map-embed__block iframe {
	max-height: 400px;
}
	.services-slider .my-prev,
	.services-slider .my-next {
		display:none!important;
	}
	.faq-accordion-title  {
		font-size:18px;
	}
	.faq-accordion-header {
		gap:15px;
	}
	.consultForm .field input,
.consultForm .field textarea {
padding: 14px 8px;
}
	.review-links {
		flex-direction:column;
	}
}
@media(max-width:690px) {
	.global-options-info {
	flex-direction: column;
}
}
@media(max-width:640px) {
	.main-post-texts .list-wrapper {
		grid-template-columns: repeat(1, 1fr);
	}
}
@media(max-width:620px) {
	.footer-contacts li a {
		font-size: 18px;
	}
	.content-items,
	.why-choose-us-cards {
		grid-template-columns: repeat(1,  1fr);
	}
	}
@media(max-width:560px) {
	.cta-action__block,
	.hero-button__block {
		flex-direction:column;
	}
	.hero-texts {
		display: flex;
		flex-direction: column;
		justify-content: center;
	}
	.action-description {
		align-items: center;
	}
	.services-grid {
    grid-template-columns: repeat(1, 1fr);
}
.contact-form-block.single-page .consultForm .line1,
.contact-form-block.single-page .consultForm .line2 {
	flex-direction: column;
}
	.contact-form-block.single-page .consultForm .line1 span,
	.contact-form-block.single-page .consultForm .line2 span {
		width: 100%;
	}
	.process-cards-wrapper {
	grid-template-columns: repeat(1, 1fr);
}
}
@media(max-width:510px) {
	.banner-buttons {
		flex-direction:column;
		align-items: center;
	}
	.banner-buttons .single-phone-button,
	.banner-buttons .single-phone-button a,
	.banner-buttons .cta-action__block,
	.banner-buttons  .cta-action__block button{
		width: 100%;
	}
	.banner-buttons .single-phone-button a,
	.banner-buttons  .cta-action__block button {
		display: flex;
		justify-content: space-between;
	}
}


/* single work pagination */
.page-template-template-works #services-ajax-wrapper .services-pagination{
    display: flex;
    justify-content: center;
    gap: 10px;
}
.page-template-template-works #services-ajax-wrapper .services-pagination > * {
	background:var(--themeBlue);
	padding:5px 15px;
	border-radius:4px;
	color:#FFFFFF;
	display:flex;
	justify-content:center;
	align-items:center;
	font-size:12px;
	transition:all 0.3s;
}
.page-template-template-works #services-ajax-wrapper .services-pagination > *:hover,
.page-template-template-works #services-ajax-wrapper .services-pagination > *.current{
	background:var(--gold);
}

/* tootle */

.container-mobile .menu-item-has-children.submenu-open .sub-menu {
    display: block;
    visibility: visible;
	min-width:unset;
    opacity: 1;
    position: relative;
}
.menu-item-has-children .sub-menu {
  display: none;
}
.container-mobile .menu-item-has-children {
	position:relative;
}
.container-mobile .menu-item-has-children button {
    position: absolute;
    right: 0px;
    top: 6px;
}
.menu-item-has-children button svg path{
	transition:all 0.3s;
	transform-origin:center;
}
.menu-item-has-children.submenu-open button svg path{
	transform:rotate(-90deg);
	
}

.global-button.hidden {
  opacity:0!important;
  pointer-events: none!important;
  transition: all 1.3s ease!important;
}
@media(max-width:786px) and (min-width:621px) {
	footer .phone-description {
		flex-direction:column;
		align-items:flex-start!important;
	}
}