:root {
	--bg-color: #ffffff;
	--text-color: #1a1a1a;
	--menu-bg: #f8f9fa;
	--border-color: #dee2e6;
	--shadow-color: rgba(0, 0, 0, 0.1);
	--bg-header-page-other: #1e40af;
}

header.ro_obj,.home-hero, .ro_obj *::after,.ro_obj *::before,.ro_obj * {outline: none;list-style: none;margin: 0; padding: 0; background: transparent; border: 0; box-shadow: none;width: auto;height: auto;max-width: none;max-height: none;color: var(--text-color);border-radius:0;}
.ro_obj *::after,.ro_obj *::before {display: none;}
.ro_obj *:hover {outline: none;}
.ro_obj a {padding:8px;}


.ro_obj .header__cont {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 32px;
	padding:16px 8px;
	margin: 0 auto;
}
.ro_obj.header .header__logo-box-mob a, .ro_obj.header .header__logo-box a {
	font-size: 28px;
	font-weight: 700;
	text-decoration: none;
	display: flex;
    gap: 8px;
    align-items: center;
}
.header__logo-box img {
	max-width: 100%;
}
.header__logo-box-mob {
	display: none;
	margin: 16px;
}
.header__logo-box-mob img {
	max-width: 64px;
}

.ro_obj .burger-btn {
	display: none;
}

.mega_menu_burger-btn{display: flex;}
.simple_menu .mega_menu_burger-btn{display: none;}

.mega_menu_burger-btn,
.ro_obj .burger-btn {
	flex-direction: column;
	background: none;
	border: none;
	cursor: pointer;
	padding: 12px;
	border-radius: 4px;
	transition: background-color 0.3s;
}
.mega_menu_burger-btn span,
.ro_obj .burger-btn span {
	width: 25px;
	height: 2px;
	margin: 3px 0;
	transition: 0.3s;
	transform-origin: center;
}

.ro_obj .simple_menu .menu {
	position: sticky;
	top: 0;
	z-index: 999;
	display: flex;
	flex-direction: column;
}

.ro_obj .simple_menu .menu__list {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
}

.ro_obj .simple_menu .menu__list > li {
	position: relative;
}

.ro_obj .menu__list > li > a {
	text-decoration: none;
	padding: 8px 24px;
	display: block;
	transition: background-color 0.3s;
	font-weight: 500;
	white-space: nowrap;
}

.ro_obj .simple_menu .menu-item-has-children {
	position: relative;
}

.ro_obj .simple_menu .sub-menu {
	display: none;
	position: absolute;
	top: 100%;
	left: 0;
	background-color: var(--menu-bg);
	min-width: 220px;
	box-shadow: 0 5px 15px var(--shadow-color);
	border-radius: 0 0 6px 6px;
	list-style: none;
	z-index: 1000;
	border: 1px solid var(--border-color);
	border-top: none;
}

.ro_obj .simple_menu .sub-menu .sub-menu {
	left: 100%;
	top: 0;
	border-top: 1px solid var(--border-color);
	border-radius: 6px;
}

.ro_obj .simple_menu .menu-item-has-children:hover > .sub-menu {
	display: block;
	animation: fadeInUp 0.3s ease;
}

.ro_obj .simple_menu .sub-menu li {
	border-bottom: 1px solid var(--border-color);
}

.ro_obj .simple_menu .sub-menu li:last-child {
	border-bottom: none;
}

.ro_obj .sub-menu a {
	text-decoration: none;
	padding: 12px 20px;
	display: block;
	transition: background-color 0.3s;
	font-size: 0.95em;
}

.ro_obj .simple_menu .sub-menu a:hover {
	background-color: var(--hover-color);
}


.ro_obj .submenu-toggle {
	display: none;
	background: none;
	border: none;
	font-size: 18px;
	font-weight: bold;
	cursor: pointer;
	padding: 5px 12px;
	position: absolute;
	right: 10px;
	top: 24px;
	transform: translateY(-50%);
	transition: transform 0.3s ease;
	z-index: 2;
}

.ro_obj .close-btn {
	display: none;
	background: none;
	border: none;
	font-size: 28px;
	cursor: pointer;
	position: absolute;
	top: 15px;
	right: 15px;
	padding: 5px;
	z-index: 1002;
	transition: color 0.3s;
}

.ro_obj .overlay {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.5);
	z-index: 998;
}

@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(10px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes slideInLeft {
	from {
		transform: translateX(-100%);
	}
	to {
		transform: translateX(0);
	}
}


@media (max-width: 1000px) {
	.ro_obj.header {
		padding-top: 8px;
		margin-bottom:  16px;
	}

	.ro_obj .simple_menu .header__cont {
		padding: 0px 8px;
	}

	.header__logo-box-mob {
		display: flex;
		justify-content: center;
	}

	.ro_obj .simple_menu .burger-btn {
		display: flex;
	}

	.ro_obj .simple_menu .menu {
		position: fixed;
		top: 0;
		left: -100%;
		width: 90%;
		max-width: 350px;
		height: 100vh;
		overflow-y: auto;
		transition: left 0.4s ease;
		padding: 60px 0 20px;
		background-color: var(--menu-bg);
		box-shadow: 0 2px 10px var(--shadow-color);
	}

	.ro_obj .simple_menu .menu.active {
		left: 0;
		animation: slideInLeft 0.4s ease;
	}

	.ro_obj .simple_menu .menu__list {
		flex-direction: column;
		gap: 0;
		align-items: stretch;
	}

	.ro_obj .simple_menu .menu__list > li {
		border-bottom: 1px solid var(--border-color);
	}

	.ro_obj .simple_menu .menu__list > li > a {
		padding: 15px 20px;
	}

	.ro_obj .submenu-toggle {
		display: block;
	}

	.ro_obj .simple_menu .menu-item-has-children ul.sub-menu:not(.active) {
		display: none;
	}

	.ro_obj .simple_menu .sub-menu.active {
		display: block;
		position: static;
		box-shadow: none;
		border: none;
		border-radius: 0;
		animation: none;
		padding-left: 8px;
	}

	.ro_obj .simple_menu .sub-menu .sub-menu {
		background-color: var(--bg-color);
		margin-left: 20px;
		border-left: 2px solid var(--border-color);
	}

	.ro_obj .simple_menu .sub-menu a {
		padding: 12px 20px;
	}

	.ro_obj .simple_menu .close-btn {
		display: block;
	}

	.ro_obj .simple_menu .menu__list a:hover,
	.ro_obj .simple_menu .sub-menu a:hover {
		background-color: transparent;
	}

	.ro_obj .simple_menu body.menu-open {
		overflow: hidden;
	}

	.ro_obj .simple_menu .overlay.active {
		display: block;
		animation: fadeInUp 0.3s ease;
	}
}

@media (max-width: 480px) {
	.ro_obj .simple_menu .menu {
		width: 100%;
		max-width: none;
	}

	.ro_obj .simple_menu .burger-btn {
		padding: 10px;
	}

	.ro_obj .simple_menu .menu__list > li > a {
		padding: 12px 15px;
	}
}


/*____________breadcrumbs___________*/


.ro_obj .breadcrumbs-site ul{
	display: flex;
	flex-wrap: wrap;
	gap: 2px 8px;
	margin: clamp(16px, 10vw, 94px) 0 0;
}

.ro_obj .breadcrumbs-site a {
	text-decoration: none;
	padding: 0;
}
.ro_obj .breadcrumbs-site a:hover{
	color: var(--text-color);
	background-color: transparent;
	transform: none;
}

.ro_obj .breadcrumbs-site li{
	display: flex;
}
.ro_obj .breadcrumbs-site :is(span, a){
	font-size: 16px;
	font-weight: 400;
}

.ro_obj .breadcrumbs-site span{color: var(--gst-text-color);}
.ro_obj .breadcrumbs-site a span {color: var(--gst-link-color);}
.ro_obj .breadcrumbs-site a:hover span  {color: var(--gst-link-hover-color);}

.ro_obj .breadcrumbs-site li::after {
	display: inline;
	content: var(--gst-breadcrumb-separator);
	padding-left: 8px;
}

.ro_obj .breadcrumbs-site li:last-child:after {
	content: "";
	padding-left: 0;
}



/*____________footer-menu___________*/

.main-navigation-site-footer ul {
	display: flex;
	flex-wrap: wrap;
	gap: 4px 32px;
	justify-content: center;
	margin: 32px 0;
}


/*_________404___________*/
.page-404 {margin: 64px 0;}
.page-404 p{text-align: center;}
.page-404__num {font-size: 20vw;line-height: 1;color: var(--gst-accent-color);}
.page-404 a {color: var(--gst-link-color);}
.page-404 a:hover {color: var(--gst-link-hover-color);}

/*_________header-page-other___________*/

.ro_obj.header-page-other {
	padding-left: 8px;
	padding-right: 8px;
	padding-top: clamp(16px, 3vw, 128px);
	padding-bottom: clamp(16px, 3vw, 128px);
	display: flex;
	flex-direction: column;
	background-color: var(--gst-accent-color);
	align-items: center;
}

.ro_obj.header-page-other :is(a, p, h1, span), 
.ro_obj.header-page-other .breadcrumbs-site a span,
.ro_obj.header-page-other li::after {
	color: #fff;
}
.ro_obj.header-page-other :is( p, h1) {
	margin: 0 auto;
	padding: 8px;
	max-width: 1000px;
}
.ro_obj.header-page-other h1 {
	background: linear-gradient(135deg, #fff, #fff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}


/*_________home-hero___________*/

.home-hero {
	padding-top: clamp(24px, 12vw, 180px);
	padding-bottom: clamp(24px, 12vw, 180px);
	background-color: var(--gst-accent-color);
	position: relative;
	max-width: 1920px;
	margin: 0 auto;
}
.home-hero--has-img::before{
	content: '';
	position: absolute;
	height: 100%;
	width: 100%;
	background-color: #00000063;
	top: 0;
	z-index: 1;
}
.home-hero .container {
	padding-left: 8px;
	padding-right: 8px;
	max-width: 1000px;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	position: relative;
	z-index: 2;
}

.home-hero--align-left .container {align-items: flex-start}
.home-hero--align-center .container {align-items: center;}
.home-hero--align-right .container {align-items: flex-end;}

.home-hero h1{
	margin-bottom: 32px;
	font-size: clamp(32px, 4.5vw, 48px);
	line-height: 1.2;
}


/*_________wp-block-image___________*/
.wp-block-image {
	max-width: 100%;
	height: auto;
	margin: 24px 0;
}

.wp-block-image :is(img, figcaption) {
	display: block;
	max-width: 100%;
	height: auto;
}

.wp-element-caption{
	font-size: 14px;
	margin-top: 8px;
	font-style: italic;
}

.nav-toc{margin: 32px 0;}
.nav-toc :is(ul, ol){padding-left: 32px;}
.nav-toc li a {color: var(--gst-link-color);font-style: 16px;text-decoration: none;font-weight: 500;}
.nav-toc li a:hover {color: var(--gst-link-hover-color);}

.ro_obj .breadcrumbs_cont,
.main__container {
	max-width: var(--gst-container-width);
	margin: 0 auto;
	padding: 0 8px;
}

.main__container :is(ul, ol){
	padding-left: 32px;
	margin: 16px 0;
}
.main__container p{margin: 16px 0;}
.main__container :is(h2,h3,h4,h5,h6){margin: 32px 0 16px;}

.main__container :is( figure, img) {
	max-width: var(--gst-image-container-width);
	margin: 32px 0;
}
.main__container h1 ~ figure:first-of-type , 
.main__container h1 ~ img:first-of-type, 
.main__container h1 ~ figure:first-of-type img {
	max-width: 100%;
}

.footer_cont {
	max-width: 1200px;
	margin: 0 auto;
}

.nav-toc h2 {
	padding: 16px;
}