:root {
	--color-text: #333;
	--color-primary: #005d91;
	--color-accent: #0085cf;
	--color-bg: #f5f5f5;
	--color-bg-soft: #f4f4f4;
	--color-white: #fff;
	--color-muted: #eee;
	--color-text-muted: #555;
	--color-border: #ddd;
	--color-table-head: #f2f2f2;
	--color-row-alt: #f9f9f9;
	--color-bg-hero: #f5f6f5;
	--color-bg-hero-rgb: 245, 246, 245;
	--radius-lg: 20px;
	--radius-md: 15px;
	--radius-sm: 10px;
	--radius-xs: 5px;
	--fs-xs: 12px;
	--fs-sm: 14px;
	--fs-base: 16px;
	--fs-lg: 18px;
	--fs-xl: 24px;
	--fs-xxl: 30px;
	--section-padding-y: 60px;
	--section-padding-y-sm: 40px;
	--shadow-soft: 0 0.5rem 1rem rgba(24, 26, 31, 0.03);
	--shadow-strong: 0 0.5rem 1rem rgba(24, 26, 31, 0.5);
	--anim-fast: 0.45s;
	--anim-ease: ease-out;
}

body {
	color: var(--color-text);
	font-family: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
	font-size: 1rem;
	line-height: 1.5;
	animation: page-fade var(--anim-fast) var(--anim-ease);
}
@keyframes page-fade {
	from { opacity: 0; }
	to { opacity: 1; }
}
@media (prefers-reduced-motion: reduce) {
	body {
		animation: none;
	}
}
img {
	max-width: 100%;
	height: auto;
}
section {
	padding: var(--section-padding-y) 0;
}
/* Пример стилизации обычной таблицы */
table {
    width: 100%; /* 100% ширины контейнера */
    border-collapse: collapse; /* Убирает двойные границы */

}

th, td {
    border: 1px solid var(--color-border); /* Граница ячейки */
    padding: 8px; /* Отступы в ячейке */
    text-align: left; /* Выравнивание текста */
}

th {
    background-color: var(--color-table-head); /* Фон заголовков */
    font-weight: bold;
}

/* Чередование цветов строк для лучшей читаемости */
tr:nth-child(even) {
    background-color: var(--color-row-alt);
}
.seo_text {
	font-size: var(--fs-sm);
}
.page_header {
	background: var(--color-bg);
}
.breadcrumbs {
	padding: 8px 0px;
}
.breadcrumbs__list {
	font-size: var(--fs-sm);
	font-weight: 300;
	
}
.breadcrumbs__list a {
	color: var(--color-text);
}
.breadcrumbs__list { display:flex; flex-wrap:wrap; gap:8px; list-style:none; padding:0; margin:0; }
.breadcrumbs__item::after { content:"/"; margin-left:8px; opacity:.5; }
.breadcrumbs__item:last-child::after { content:""; }
.breadcrumbs__link { text-decoration:none; }
.breadcrumbs__current { font-weight:500; }
.seo_text blockquote {
	background: var(--color-accent);
    color: var(--color-white);
    padding: 15px;
    border-radius: var(--radius-lg);
    border-right: 6px solid var(--color-primary);
    border-bottom: 6px solid var(--color-primary);
}
.seo_text h1 {
	font-size: 18px;
	font-weight: 700;
	/* text-align: center; */
	padding: 8px 16px;
	border-radius: 0px 0px 10px 10px;
	width: 100%;
	background: var(--color-primary);
	color: var(--color-white);
}
.seo_text h2 {
	font-size: 18px;
	font-weight: 700;
	/* text-align: center; */
	padding: 8px 16px;
	border-radius: 0px 0px 10px 10px;
	width: 100%;
	background: var(--color-primary);
	color: var(--color-white);
}
.seo_text h3, h4, h5, h6 {
	font-size: 16px;
	font-weight: 700;
	/* text-align: center; */
	/* padding: 8px 16px;
	border-radius: 0px 0px 5px 5px;
	width: 100%;
	background: var(--color-primary);
	color: var(--color-white); */
}


.btn_1 {
	font-size: 18px;
	font-weight: 600;
	border-radius: var(--radius-lg);
	border: 0px solid var(--color-accent);
	background: var(--color-accent);
	color: var(--color-white);
	padding: 8px 8px 8px 20px;
	transition: 0.3s;
    line-height: 1.1;
}
.btn_1:hover {
	background: var(--color-primary);
}
.secton_header .menu-menu-container > ul {
	list-style: none;
	display: flex;
	padding: 0px;
	margin: 0px;
	gap: 10px;
	font-size: 14px;
	z-index:  100500;
	flex-wrap: wrap;
	row-gap: 6px;
	justify-content: center;
}
.secton_header .menu-menu-container a {
	color: var(--color-text);
	font-weight: 500;
	text-decoration: none;
	padding: 8px 6px;
	transition: 0.3s;
	line-height: 1.2;
}
.secton_header .menu-menu-container a:hover {
	border-bottom: 3px solid var(--color-accent);
	transition: all 0.2s;
	
}
.secton_header .menu-menu-container .current-menu-item {
	border-bottom: 3px solid var(--color-accent);
	
	transition: all 0.2s;
}
.secton_header .menu-menu-container .sub-menu .current-menu-item {
	background: var(--color-accent);	
}
.secton_header .menu-menu-container .sub-menu .current-menu-item a {
	color: var(--color-white);
}
.secton_header .contact {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 16px;
}
.secton_header .contact ul {
	display: flex;
	flex-direction: column;
	gap: 2px;
}
.secton_header .contact .btn_1 {
	white-space: nowrap;
}
.secton_header .contact ul {
	list-style: none;
	padding: 0px;
	margin: 0px;

	font-size: 14px;
	font-weight: 500;
}
.secton_header .contact ul span {
	font-weight: 700;
	font-size: 18px;
}
.secton_header .logo img {
	display: block;
	width: 100%;
	max-width: 80px;
	height: auto;
}
.main-navigation {
	position: relative;
}
.menu-toggle {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	border-radius: var(--radius-sm);
	font-size: 14px;
	font-weight: 600;
}
.menu-toggle i {
	font-size: 20px;
	line-height: 1;
}
.rotating {
    display: inline-block; /* обов’язково для transform */
    animation: spin 2s linear infinite;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.section_1 {
	background-image: url(/wp-content/uploads/2026/01/header_2.jpg);
    background-size: contain;
    background-repeat: no-repeat;

    background-position: center right;
    background-color: var(--color-bg-hero);
}
@media (min-width: 992px) {
	.section_1 {
		background-image:
			linear-gradient(
				90deg,
				var(--color-bg-hero) 0%,
				var(--color-bg-hero) 55%,
				rgba(var(--color-bg-hero-rgb), 0.85) 62%,
				rgba(var(--color-bg-hero-rgb), 0.0) 72%
			),
			url(/wp-content/uploads/2026/01/header_2.jpg);
		background-size: cover;
	}
}
.section_1 .align-items-center {
	min-height: 500px;
}
.section_1 .content h1 {
	font-size: 2.5rem;
	font-weight: 900;
}
.section_1 .content p {
	font-size: var(--fs-xl);
	font-weight: 500;
}
.section_1 .item .title {
	font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    padding: 0px;
    margin: 0px;
}
.section_1 .item  {
	font-size: var(--fs-sm);
    font-weight: 400;
}
.title_section {
	
	font-size: var(--fs-xxl);
    font-weight: 900;
	margin-bottom: 40px;
}
.section_services a {
	color: var(--color-text);
	text-decoration: none;
	transition: 0.1s;
}
.section_services {
	
	
}
.section_services .content {
	padding: 20px;
    background-color: var(--color-white);
    display: flex;
    justify-content: space-around;
    box-shadow: var(--shadow-soft);
    border-radius: var(--radius-lg);
	gap: 20px;
}
.section_services .general {
	width: 40%;
	display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.section_services .general a {
	text-transform: uppercase;
	font-size: 20px;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 16px;
	color: var(--color-text);	
	width: 100%;
	transform: scaleY(1.);
}
.section_services .general .title {
	text-align: center;
}
.section_services .general .title span {
	color: var(--color-primary);
}
.section_services .general .title p{
	font-size: var(--fs-base);
	padding: 4px 0px;
	border-radius: 0px 0px 5px 5px;
	margin-top: 4px;
	width: 100%;
	background: var(--color-primary);
	color: var(--color-white);
}
.section_services ul {
	width: 60%;
	list-style: none;
	padding: 0px;
	color: var(--color-text);
	font-size: var(--fs-base);
	line-height: 1.4;
}
.section_services ul li {
	margin-bottom: 6px;
}
.section_services ul a:hover {
	font-weight: 700;
}
.contact_forma {
    margin-top: 20px;
    padding: 30px;
    background-color: var(--color-white);
    display: flex;
    justify-content: space-around;
    box-shadow: var(--shadow-soft);
    border-radius: var(--radius-lg);
    font-size: 18px;
    align-items: center;
}
.contact_forma .title {
    font-size: 18px;
	text-align: center;
	font-weight: 700;
	margin-bottom: 6px;
}
.contact_forma p {
    font-size: 14px;
	text-align: center;
}
.contact_forma .text ul {
	width: auto;
    display: flex;
    list-style: none;
    justify-content: space-evenly;
    padding: 0px;
    margin-bottom: 0px;
}
.contact_forma .text a {
    color: var(--color-text);
    font-weight: 700;
    text-decoration: none;
    font-size: 18px;
}
.section_2 .title_section {
	/* color: var(--color-white); */
}

.section_2 .content_left {
	padding: 20px;
	
    /* background-color: var(--color-bg-soft);
    box-shadow: var(--shadow-soft);
    border-radius: var(--radius-lg); */
}
.section_2 .content_left ul {
	list-style: none;
	padding: 0px;
	margin: 0px;
	font-size: 18px;
	columns: 2;
}
.section_2 .content_left ul li {
	margin-bottom: 6px;
}
.section_2 .content_left ul a {
	color: var(--color-white);
	text-decoration: none;
	transition: 0.1s;
	padding: 4px 6px;
	border-radius: var(--radius-sm);
	font-size: 18px;
}
.section_2 .content_left ul a:hover {
	background: var(--color-accent);
	color: var(--color-white);
	font-weight: 700;
}
.section_2 .content_left i {
	margin-right: 8px;
}
.content_right {
	display: flex;
    flex-wrap: wrap;
	/* color: var(--color-white); */
}
.content_right .item {
	width: 25%;
    display: flex;
    flex-direction: column;
    align-items: center;
	padding: 0px 20px;
	margin-bottom: 20px;
}
.content_right a {
	font-size: 18px;
	line-height: 1.2;
	font-weight: 700;
	color: var(--color-text);
	text-decoration: none;
}
.content_right i {
	font-size: 84px;
	margin-bottom: 0px;
	color: var(--color-accent);
}

.section_3 {
    position: relative;
    padding: 120px 0;
    overflow: hidden;

    background-image: url("https://promaquaengineering.seoandreylubimov.xyz/wp-content/uploads/2026/01/1-scaled.jpg");
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

/* СИНИЙ ПОЛУПРОЗРАЧНЫЙ ОВЕРЛЕЙ */
.section_3 .overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 93, 145, 0.8); /* var(--color-accent) */
    z-index: 0;
}

/* Контент поверх всего */
.section_3 .content-fix {
    position: relative;
    z-index: 2;
}

/* Косые края */
.section_3::before {
    content: "";
    position: absolute;
    top: -160px;
    left: 0;
    width: 100%;
    height: 160px;
    background: var(--color-bg-soft);
    transform: skewY(3deg);
    transform-origin: left;
    z-index: 1;
}

.section_3::after {
    content: "";
    position: absolute;
    bottom: -70px;
    left: 0;
    width: 100%;
    height: 160px;
    background: var(--color-bg-soft);
    transform: skewY(3deg);
    transform-origin: left;
    z-index: 1;
}
.section_3 .align-items-center {
	min-height: 300px;
}
/* Текст */
.section_3 .content {
    color: var(--color-white);
}

.section_3 .title_section {
	margin-bottom: 20px;
	color: var(--color-white);
}
.section_4 .content i {
    font-size: 48px;
    text-align: center;
    display: block;
    margin: auto;
	color: var(--color-accent);
}
.section_4 .content {
	position: relative;
	text-align: center;
	margin-bottom: 20px;
}
.section_4 .content .title {
	font-size: 18px;
	font-weight: 700;
}
.section_4 .btn_1 {
	margin-top: 20px;
	margin: auto;
    display: flow;
}
.section_4 .content:before {
	content: "\F27B";
    font-family: 'bootstrap-icons';
    font-size: 120px;
    position: absolute;
    right: -80px;
    opacity: 0.4;
    color: var(--color-primary);
}
.section_4 .col-md-3:nth-of-type(4) .content:before {
    content: unset;
}
.section_5 .content {
	padding: 20px;
    background-color: var(--color-white);
    display: flex;
    justify-content: space-around;
    box-shadow: var(--shadow-soft);
    border-radius: var(--radius-lg);
    gap: 20px;
    font-size: 14px;
    align-items: center;
	    flex-direction: column;
}
.section_5 h3 {
	font-size: 18px;
	font-weight: 700;
}
.section_5 h3:hover {
	color: var(--color-primary);
}
.section_5 ul {
	padding: 0px;
	margin: 0px;
	list-style: none;	
}
.section_5 ul strong{
	padding: 0px;
	margin: 0px;
	list-style: none;	
	color: var(--color-primary);
	font-weight: 700;
}
.section_5 a {
	color: var(--color-text);
	text-decoration: none;
	font-weight: 700;
}
.section_5 .image, .block {
	width: 100%;
}
.section_5 .image img {
	border-radius: var(--radius-lg);
	aspect-ratio: 4 / 3;
	width: 100%;
	height: auto;
	object-fit: cover;
}
.link_all {
	display: flex;
    justify-content: space-between;
    align-items: flex-start;
}
.link_all a {
	font-size: var(--fs-sm);
	font-weight: 600;
	border-radius: var(--radius-lg);
	border: 0px solid var(--color-accent);
	background: var(--color-accent);
	color: var(--color-white);
	padding: 8px 8px 8px 20px;
	transition: 0.3s;
    line-height: 1.1;
	margin: 6px 0px;
	text-decoration: none;
}
.link_all a:hover {
	background: var(--color-primary);
}
.section_news .content {
	width: 100%;
	height: 300px;
	padding: 20px;
    background-color: var(--color-white);
    display: flex;
    box-shadow: var(--shadow-soft);
    border-radius: var(--radius-lg);    
    font-size: var(--fs-sm);
    flex-direction: column;
    justify-content: flex-end;
	background-size: cover;
	background-position: center;
	position: relative;
	
}
.section_news .content::before {
	content: '';
	width: 100%;
	height: 100%;
	position: absolute;
	background: rgb(0, 93, 145, 0.6);
	left: 0;
	top: 0;
	border-radius: var(--radius-lg);
	z-index: 0;
}
.section_news .content a {
	z-index: 1;
	text-decoration: none;
	padding: 0px;
	font-size: 14px;
	font-weight: 700;
	color: var(--color-white);
	
}
.section_news .content .info {
	z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.section_news .content .info ul {
	display: flex;
	margin: 0px;
	padding: 0px;
	list-style: none;
	padding: 4px 8px;
	background: rgb(255, 255, 255, 0.4);
	color: var(--color-white);
	border-radius: var(--radius-sm);
	gap: 10px;
	font-size: 12px;
}
.section_news .content h2 {
	font-size: 18px;
	font-weight: 700;
	color: var(--color-white);
	margin-bottom: 15px;
}
.section_news .content .btn {
	background: var(--color-accent);
	padding: 0px 6px;
	font-size: 14px;
	font-weight: 600;
}
.section_footer {
	padding: 60px 0px;
	color: var(--color-white);
}
.section_footer ul {
	list-style: none;
	padding: 0px;
	margin: 0px;
}
.section_footer .title {
	font-weight: 700;
	font-size: 20px;
}
.section_footer .content_contact a {
	color: var(--color-white);
	text-decoration: none;
}
.section_footer .content_contact .messenger{
	display: flex;
	gap: 10px;
}
.section_footer .content_contact .tm-social {
	display: flex;
	gap: 10px;
}
.section_footer .content_contact .tm-social i {
	font-size: 25px;
}
.section_footer .content_contact img {
	width: 25px;
	height: 25px;

}
.section_footer ul {
	margin-bottom: 1rem;
}
.menu .sub-menu {
	list-style: none;
	display: none;
	position: absolute;
	left: 0;
	top: 100%;
	min-width: 280px;
    box-shadow: 0 0.5rem 1rem rgba(24, 26, 31, 0.08);
    background: var(--color-primary);
	border: 2px solid var(--color-primary);
    border-radius: 0px 0px 8px 8px;
	padding: 6px 0px;
	z-index: 1000;
}
.menu .sub-menu .sub-menu {
	left: 100%;
	top: 0;
}
.menu .sub-menu a {
	font-size: 14px;
	color: var(--color-white);
	border: 0px;
}
.menu .sub-menu li {
	padding: 4px 12px;
	border-radius: 0px 0px 5px 5px;
	height: auto;
}
.menu .sub-menu li:hover{
	background: var(--color-white);
	border: 0px;
}
.menu .sub-menu li:hover a  {
	color: var(--color-text);
	border: 0px;
}
.menu li:hover > .sub-menu {
	display: block;
}
.menu li {
	position: relative;
}
.menu > li {
	position: relative;
	height: 50px;
	display: flex;
    align-items: center;
	transition: all 0.1s;
}
.menu a {
	transition: all 0.1s;
}
.section_page_1 .images {
	text-align: center;
}
/* .section_page_1 .title span {
	color: var(--color-primary);
} */
.section_page_1 .seo_text h1 {
	font-size: 24px;
	font-weight: 700;
	text-align: center;
}
.section_page_1 .seo_text h2:first-of-type {
	font-size: 18px;
	font-weight: 700;
	text-align: center;
	padding: 8px 0px;
	border-radius: 0px 0px 5px 5px;
	width: 100%;
	background: var(--color-primary);
	color: var(--color-white);
}
.section_page_1 .pp-table {
	margin-top: 20px;
    padding: 30px;
    background-color: var(--color-white);
    box-shadow: var(--shadow-soft);
    border-radius: var(--radius-lg);
    font-size: 14px;
	font-weight: 700;
}
.section_page_1 .pp-table h2 {
	font-size: 18px;
    margin-bottom: 20px;
    font-weight: 700;
    display: flex;
    justify-content: center;
    flex-direction: column;
}
.section_page_1 .pp-table h2 span {
	font-weight: 300;
}
.section_page_1 .pp-table h3 {
	font-size: 18px;
    margin-bottom: 20px;
    font-weight: 700;
    display: flex;
    justify-content: center;
    flex-direction: column;
}
.section_page_1 .pp-table h3 span {
	font-weight: 300;
}
.section_page_1 .pp-table ul {
	list-style: none;
	margin: 0px;
	padding: 0px;
}
.section_page_1 .pp-table ul li {
	display: flex;
	border-bottom: 1px dotted var(--color-text);
	justify-content: space-between;
	margin-bottom: 8px;
	font-weight: 400;
	text-align: right;
	
}
.section_page_1 .pp-table ul li strong {
	font-weight: 700;
}
.pp-table table {
	font-size: 16px;
	font-weight: 400;
}
.pp-table table p {
	margin: 0px;
}
.position-sticky {
	position: -webkit-sticky;
    position: sticky;
	top: 24px;
}
.section_page_2 .content {
	display: flex;
    flex-wrap: wrap;
}
.section_page_2 .item a {
	width: 100%;
}
.section_page_2 .item img {
	aspect-ratio: 4 / 3;
	width: 100%;
	height: auto;
	object-fit: cover;
}
.section_page_2 .item {
	width: 33%;
	padding: 5px;
	display: flex;
    justify-content: center;
    align-items: center;
}
.section_prodacts .content {
	padding: 20px;
	background-color: var(--color-white);
	box-shadow: var(--shadow-soft);
    border-radius: var(--radius-lg);
	margin-bottom: 30px;
	transition: all 0.3s;
}
.section_prodacts .content:hover {
	transform: translateY(-10px);
	box-shadow: var(--shadow-strong);
}
.section_prodacts .content img {
	border-radius: var(--radius-lg);
	aspect-ratio: 4 / 3;
	width: 100%;
	height: auto;
	object-fit: cover;
	margin-bottom: 20px;
}
.section_prodacts .content h3 {
	font-size: 18px;
	font-weight: 700;
	margin-bottom: 20px;
	color: var(--color-text);
}
.section_prodacts .content h3:hover {
	color: var(--color-primary);
}
.section_prodacts .content a {
	text-decoration: none;
	color: var(--color-white);
	transition: all 0.1s;
}
.section_prodacts .content a:hover {
	color: var(--color-white);
}
/* .section_prodacts .content .btn {
	color: var(--color-white);
}
.section_prodacts .content .btn:hover {
	color: var(--color-white);
} */
.section_project .info {
	background: var(--color-white);
    padding: 15px;
    border-radius: var(--radius-lg);
	margin-bottom: 20px;
}
.section_project .info ul {
	padding: 0px;
    margin: 0px;
    list-style: none;

}
.section_project .info ul li {
	margin-bottom: 8px;
}
.section_project .info ul strong{
	text-transform: uppercase;
    font-size: 18px;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 20px;
    color: var(--color-primary);
}


.section_activities h1 {
	font-size: 24px;
}
.section_activities .content {
	padding: 20px;
    background-color: var(--color-white);
    display: flex;
    justify-content: space-around;
    box-shadow: var(--shadow-soft);
    border-radius: var(--radius-lg);
    gap: 20px;
    font-size: 14px;
	margin-bottom: 20px;
    align-items: center;
	    flex-direction: column;
}
.section_activities .content .image, .block {
	width: 100%;
}
.section_activities .content .image img {
	border-radius: var(--radius-lg);
	aspect-ratio: 4 / 3;
	width: 100%;
	height: auto;
	object-fit: cover;
}
.section_activities h3 {
	font-size: 18px;
	font-weight: 700;
}
.section_activities h3:hover {
	color: var(--color-primary);
}
.section_activities ul {
	padding: 0px;
	margin: 0px;
	list-style: none;	
}
.section_activities ul span{
	padding: 0px;
	margin: 0px;
	list-style: none;	
}
.section_activities a {
	color: var(--color-text);
	text-decoration: none;
	font-weight: 700;
}
.section_activities .right h2 {
	font-size: 24px;
	font-weight: 700;
	text-align: center;
	margin-bottom: 20px;
}
.section_activities .right .link_all {
	display: flex;
    justify-content: center;
    align-items: flex-start;
}
.section_activities .right .link_all a {
	color: var(--color-white);
}
/* .section_project .content {
    display: grid;
    grid-template-columns: repeat(2, 4fr);
    gap: 20px;
}
.section_project .item {
    width: 100%;
}
.section_project .item:nth-child(3n + 4) {
    grid-column: span 2;
}
.section_project  .item img {
    width: 100%;
    display: block;
} */

.section_project .content{
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* 4 колонки */
  gap: 20px;
}

.section_project .item{
  width: 100%;
}
@media (max-width: 992px){
  .section_project .content{ grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px){
  .section_project .content{ grid-template-columns: repeat(2, 1fr); }
  
}
@media (max-width: 480px){
  .section_project .content{ grid-template-columns: 1fr; }
}

.section_project .item img{
  width: 100%;
  display: block;
  aspect-ratio: 1 / 1;      /* чтобы было визуально "4x4" одинаковыми */
  object-fit: cover;         /* обрезка без растяжения */
}

/* УБРАТЬ / отключить это правило, если нужна строгая 4x4 */
.section_project .item:nth-child(3n + 4){
  grid-column: auto; /* или просто удалить весь блок */
}

/* СИНИЙ ПОЛУПРОЗРАЧНЫЙ ОВЕРЛЕЙ */
.section_project_1 .overlay {
    position: absolute;
    inset: 0;
    background: var(--color-white); /* var(--color-accent) */
    z-index: 0;
}
.section_project_1 {
	position: relative;
	padding: 120px 0px;
    overflow: hidden;
}
/* Контент поверх всего */
.section_project_1 .content-fix {
    position: relative;
    z-index: 2;
}

/* Косые края */
.section_project_1::before {
    content: "";
    position: absolute;
    top: -160px;
    left: 0;
    width: 100%;
    height: 160px;
    background: var(--color-bg);
    transform: skewY(3deg);
    transform-origin: left;
    z-index: 1;
}

.section_project_1::after {
    content: "";
    position: absolute;
    bottom: -70px;
    left: 0;
    width: 100%;
    height: 160px;
    background: var(--color-bg);
    transform: skewY(3deg);
    transform-origin: left;
    z-index: 1;
}

.section_services_2 .seo_text {
	columns: 2;
}
.section_services_2 .services h2 {
	font-size: 18px;
	font-weight: 700;
	color: var(--color-text);
}
.section_services_2 .services h2 span{
	color: var(--color-primary);
}
.section_services_2 .services ul {
	list-style: none;
	padding: 0px;
	margin: 0px;
}
.section_services_2 .services ul li {
	margin-bottom: 6px;
}
.section_services_2 .services ul li a {
	font-size: 16px;
	font-weight: 500;
	color: var(--color-text);
	text-decoration: none;
	transition: all 0.1s;
}
.section_services_2 .services ul li a:hover {
	font-weight: 700;
	color: var(--color-primary);
}
.section_services_1 .title {
	font-size: 24px;
    font-weight: 700;
    text-align: center;
    padding: 8px 16px;
    border-radius: 0px 0px 10px 10px;
    width: 100%;
    background: var(--color-primary);
    color: var(--color-white);
	margin-bottom: 20px;
}
.section_services_1 .image img {
	border-radius: var(--radius-lg);
	aspect-ratio: 3 / 2;
	width: 100%;
	height: auto;
	object-fit: cover;
	box-shadow: var(--shadow-soft);
}
/* Білий фон каруселі + округлення */
 .carousel-thumbs {
  background: var(--color-white);
  border-radius: 12px;
  overflow: hidden;
  padding: 10px;
}

/* СЛАЙД: щоб фото повністю поміщалось */
 .carousel-thumbs .carousel-item {
  background: var(--color-white);
}

 .carousel-thumbs .carousel-item img{
  width: 100%;
  aspect-ratio: 4 / 3;
  height: auto;
  object-fit: contain;  /* ВАЖЛИВО: без обрізки */
  display: block;
  background: var(--color-white);
}

/* КРАПКИ (індикатори) — трохи нижче, щоб не перекривали фото */
 .carousel-thumbs .carousel-indicators{
  position: static;      /* переносимо під фото */
  margin: 10px 0 0;
}

 .carousel-thumbs .carousel-indicators [data-bs-target]{
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background-color: rgba(0, 133, 207, 0.35);
}

 .carousel-thumbs .carousel-indicators .active{
  background-color: rgba(0, 133, 207, 0.95);
}

/* Сині стрілочки */
 .carousel-control-blue .carousel-control-prev-icon,
 .carousel-control-blue .carousel-control-next-icon {
  background-color: rgba(0, 133, 207, 0.95);
  border-radius: 50%;
  background-size: 55% 55%;
  width: 42px;
  height: 42px;
}

/* Зручна зона кліку */
 .carousel-control-prev,
 .carousel-control-next{
  width: 12%;
}

/* МІНІАТЮРИ */
 .carousel-thumbnails{
  display: flex;
  gap: 10px;
  margin-top: 12px;
  overflow-x: auto;
  padding-bottom: 6px;
}

 .carousel-thumbnails .thumb{
  border: 2px solid transparent;
  padding: 0;
  background: var(--color-white);
  border-radius: var(--radius-sm);
  flex: 0 0 auto;
  width: 86px;
  height: 60px;
  cursor: pointer;
}

 .carousel-thumbnails .thumb img{
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  background: var(--color-white);
  border-radius: 8px;
}

 .carousel-thumbnails .thumb.active{
  border-color: rgba(0, 133, 207, 0.95);
}
 .content_my_way h2 {
	font-size: 18px;
    font-weight: 700;
    /* text-align: center; */
    padding: 8px 16px;
    border-radius: 0px 0px 10px 10px;
    background: var(--color-primary);
    color: var(--color-white);
}
 .content_my_way p {
	font-size: 16;
	margin-bottom: 4px;
}
.section_services_1 .content_my_way h2 {
	font-size: 18px;
    font-weight: 700;
    /* text-align: center; */
    padding: 8px 16px;
    border-radius: 0px 0px 10px 10px;
    background: var(--color-primary);
    color: var(--color-white);
}
.section_services_1 .content_my_way p {
	font-size: 16;
	margin-bottom: 4px;
}
.section_single .content {
	width: 100%;
	height: 300px;
	padding: 20px;
    background-color: var(--color-white);
    display: flex;
    box-shadow: var(--shadow-soft);
    border-radius: var(--radius-lg);    
    font-size: 14px;
    flex-direction: column;
    justify-content: flex-end;
	background-size: cover;
	background-position: center;
	position: relative;
	
}
.section_single .content::before {
	content: '';
	width: 100%;
	height: 100%;
	position: absolute;
	background: rgb(0, 93, 145, 0.6);
	left: 0;
	top: 0;
	border-radius: var(--radius-lg);
	z-index: 0;
}
.section_single .content a {
	z-index: 1;
	text-decoration: none;
	padding: 0px;
	font-size: 14px;
	font-weight: 700;
	color: var(--color-white);	
}
.section_single .content .info {
	z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.section_single .content .info ul {
	display: flex;
	margin: 0px;
	padding: 0px;
	list-style: none;
	padding: 4px 8px;
	background: rgb(255, 255, 255, 0.4);
	color: var(--color-white);
	border-radius: var(--radius-sm);
	gap: 10px;
	font-size: 12px;
}
.section_single .content .title {
	font-size: 32px;
	z-index: 1;
	font-weight: 700;
	color: var(--color-white);
	margin-bottom: 50px;
	text-align: center;
}

/* ====== Pro Fancybox Gallery (WP [gallery]) ====== */
.pro-gallery{
  display: grid;
  gap: 14px;
  margin: 0;
}

/* Поддержка стандартных классов WP: gallery-columns-2/3/4... */
.pro-gallery.gallery-columns-1{ grid-template-columns: 1fr; }
.pro-gallery.gallery-columns-2{ grid-template-columns: repeat(2, 1fr); }
.pro-gallery.gallery-columns-3{ grid-template-columns: repeat(3, 1fr); }
.pro-gallery.gallery-columns-4{ grid-template-columns: repeat(4, 1fr); }

@media (max-width: 992px){
  .pro-gallery.gallery-columns-4,
  .pro-gallery.gallery-columns-3{ grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 520px){
  .pro-gallery{ grid-template-columns: 1fr; }
}

.pro-gallery__item{
  margin: 0;
}

.pro-gallery__link{
  display: block;
  background: var(--color-white);
  border-radius: var(--radius-lg);                 /* как у карточек в теме */
  overflow: hidden;
  box-shadow: var(--shadow-soft); /* как в теме */
  border: 2px solid transparent;
  transition: .2s ease;
}

.pro-gallery__img{
  width: 100%;
  aspect-ratio: 4 / 3;
  height: auto;
  object-fit: cover;                   /* можно заменить на contain если нужно без обрезки */
  display: block;
}

.pro-gallery__link:hover{
  transform: translateY(-4px);
  border-color: rgba(0, 133, 207, 0.55); /* фирменный акцент */
  box-shadow: 0 0.5rem 1rem rgba(24, 26, 31, 0.12);
}

/* Подпись (если используешь caption) */
.pro-gallery__caption{
  font-size: 14px;
  padding: 10px 12px;
  background: var(--color-white);
}
/* стандартная WP gallery */
.gallery .gallery-icon a{
  display:block;
  overflow:hidden;
  border-radius: var(--radius-lg);
}

.gallery .gallery-icon img{
  width:100%;
  aspect-ratio: 4 / 3;
  height: auto;
  object-fit: cover;   /* или contain */
  display:block;
}


.contact_page {
	padding: 60px 0px;
	color: var(--color-muted);
}
.contact_page ul {
	list-style: none;
	padding: 0px;
	margin: 0px;
}
.contact_page .title {
	font-weight: 700;
	font-size: 20px;
}
.contact_page .content {
	padding: 20px;
	border-radius: var(--radius-lg);
}
.contact_page .content_contact a {
	color: var(--color-muted);
	text-decoration: none;
}
.contact_page .content_contact .messenger{
	display: flex;
	gap: 10px;
}
.contact_page .content_contact .tm-social {
	display: flex;
	gap: 10px;
}
.contact_page .content_contact .tm-social i {
	font-size: 25px;
}
.contact_page .content_contact img {
	width: 25px;
	height: 25px;

}
.map iframe {
	border-radius: var(--radius-lg);
}
.wpcf7 input {
	padding: 6px 12px;
    border-radius: var(--radius-md);
    margin-bottom: 10px;
    width: 100%;
}
.wpcf7 .btn_1 {
	width: 100%;
	padding: 6px 12px;
    border-radius: var(--radius-md);
    margin-bottom: 10px;
    line-height: 1.5;
}

@media (max-width: 992px) {
	.secton_header .menu-menu-container > ul {
		flex-direction: column;
		align-items: flex-start;
	}
	.secton_header .contact {
		flex-direction: column;
		align-items: flex-start;
		gap: 10px;
		margin-top: 10px;
	}
	.secton_header .contact ul {
		display: flex;
		flex-direction: column;
		gap: 4px;
	}
	.section_1 {
		background-position: center;
		background-size: cover;
	}
	.section_1 .align-items-center {
		min-height: auto;
		padding: 40px 0;
	}
	.section_services .content {
		flex-direction: column;
	}
	.section_services .general,
	.section_services ul {
		width: 100%;
	}
	.contact_forma {
		flex-direction: column;
		text-align: center;
		gap: 16px;
	}
	.contact_forma .text ul {
		flex-direction: column;
		gap: 6px;
	}
	.content_right .item {
		width: 50%;
		padding: 0 10px;
	}
	.section_services_2 .seo_text {
		columns: 1;
	}
	.section_3 {
		background-attachment: scroll;
	}
	.section_single .content .info {
		flex-direction: column;
		align-items: flex-start;
		gap: 8px;
	}
	.menu-item-has-children .sub-menu {
		position: static;
		width: 100%;
		box-shadow: none;
	}
	.menu-item-has-children:hover .sub-menu {
		top: auto;
	}
	.menu-item-has-children.focus > .sub-menu {
		display: block;
	}
}

@media (max-width: 768px) {
	.sub-menu {
		color: var(--color-text)!important;
		background: #f5f5f5!important;
	}
	.content_right .item {
		width: 100%;
	}
	.section_prodacts_2 .content_right .item {
		width: 50%;
	}
	.section_prodacts_2 .content_right {
		justify-content: center;
	}
	.section_1 {
		position: relative;
	}
	.section_1::before {
		content: "";
		position: absolute;
		inset: 0;
		background: rgba(0, 93, 145, 0.65);
		z-index: 0;
	}
	.section_1 > .container {
		position: relative;
		z-index: 1;
	}
	.section_1,
	.section_1 .content,
	.section_1 .content h1,
	.section_1 .content p,
	.section_1 .item,
	.section_1 .item .title {
		color: var(--color-white);
	}
	.section_1 .content p {
		opacity: 0.9;
	}
	.section_4 .content {
		margin-bottom: 80px;
	}
	.section_4 .content:before {
		top: auto;
		right: 50%;
		bottom: -100px;
		font-size: 80px;
		transform: translateX(50%) rotate(90deg);
	}
	.section_4 .col-md-3:last-child .content:before {
		content: unset;
	}
	.section_2 .content_left ul {
		columns: 1;
	}
	.section_project_1 {
		padding: 80px 0;
	}
	.section_project_1::before {
		top: -120px;
		height: 120px;
	}
	.section_project_1::after {
		bottom: -60px;
		height: 120px;
	}
	.section_1 .content h1 {
		font-size: 2rem;
	}
	.section_1 .content p {
		font-size: 18px;
	}
}

@media (max-width: 520px) {
	section {
		padding: var(--section-padding-y-sm) 0;
	}
	.title_section {
		font-size: 24px;
	}
	.contact_forma {
		padding: 20px;
	}
	.section_2 .content_left ul a {
		font-size: 16px;
	}
	.section_single .content .title {
		font-size: 24px;
		margin-bottom: 20px;
	}
}

.offcanvas .menu {
	list-style: none;
	padding: 0;
	margin: 0;
}
.offcanvas .menu li {
	display: block;
	height: auto;
	margin: 0;
}
.offcanvas .menu > li {
	border-bottom: 1px solid var(--color-muted);
}
.offcanvas .menu a {
	display: block;
	padding: 10px 0;
	color: var(--color-text);
	text-decoration: none;
	font-weight: 600;
}
.offcanvas .menu .current-menu-item > a {
	color: var(--color-primary);
}
.offcanvas .menu .menu-item-has-children {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
}
.offcanvas .menu .menu-item-has-children > a {
	flex: 1;
	padding-right: 8px;
}
.offcanvas .submenu-toggle {
	border: 0;
	background: transparent;
	color: var(--color-text);
	padding: 6px 8px;
	line-height: 1;
}
.offcanvas .submenu-toggle i {
	transition: transform 0.2s ease;
}
.offcanvas .menu .menu-item-has-children.is-open > .submenu-toggle i {
	transform: rotate(180deg);
}
.offcanvas .menu .sub-menu {
	display: none;
	position: static;
	width: 100%;
	padding: 0 0 8px 12px;
	margin: 0;
	list-style: none;
}
.offcanvas .menu .menu-item-has-children.is-open > .sub-menu {
	display: block;
}
.offcanvas .menu .sub-menu a {
	padding: 6px 0;
	font-weight: 500;
	color: var(--color-text-muted);
}
.offcanvas .menu .sub-menu .sub-menu {
	padding-left: 12px;
}
.offcanvas-contact {
	margin-top: 20px;
	padding-top: 16px;
	border-top: 1px solid var(--color-muted);
}
.offcanvas-contact ul {
	list-style: none;
	padding: 0;
	margin: 0 0 12px;
}
.offcanvas-contact li {
	margin-bottom: 6px;
}
.offcanvas-contact a {
	color: var(--color-text);
	text-decoration: none;
	font-weight: 600;
}

@media (max-width: 992px) {
	.secton_header {
		padding: 10px 0;
	}
	.secton_header .logo img {
		max-width: 64px;
	}
}
