:root {
	--theme-block-margin-bottom: 1.5rem;
}

body {
	font-family: 'Montserrat', sans-serif;
	background-color: var(--bs-body-bg);
}

img {
	max-width: 100%;
	height: auto;
}

h2,
h3 {
	font-weight: 600;
}

.wrap {
	padding-top: 70px;
}

.container {
	max-width: 1200px;
}

.wp-block-media-text {
	margin-bottom: var(--theme-block-margin-bottom);
}

.wp-block-media-text img {
	border-radius: var(--theme-rounded);
}

.breadcrumbs {
	margin-top: 1rem;
}

.breadcrumb {
	font-size: 0.9rem;
}

.breadcrumb a {
	color: inherit;
}

a,
a:hover {
	color: var(--bs-primary);
}

/**
	Buttons
*/
.btn,
.wp-block-buttons .wp-block-button .wp-block-button__link {
	font-size: inherit !important;
	font-weight: 500 !important;
	padding: 0.5rem 1rem !important;
	box-shadow: none !important;
	border-radius: var(--theme-rounded-button) !important;
}

.btn a {
	color: #fff;
	text-decoration: none !important;
}

.btn-primary,
.wp-block-buttons .wp-block-button.is-style-bootstrap-primary .wp-block-button__link {
	color: var(--button_text_color) !important;
	background: var(--button_background_color) !important;
	border-color: transparent !important;
}

.wp-block-button {
	margin-bottom: 1rem !important;
}

.wp-block-hc-container {
	max-width: 1200px;
	padding-right: var(--bs-gutter-x, 0.75rem);
	padding-left: var(--bs-gutter-x, 0.75rem);
	margin-right: auto;
	margin-left: auto;
}

/**
	Table Style
 */
.wp-block-table {
	margin-bottom: var(--theme-block-margin-bottom);
}

.wp-block-table table {
	border-collapse: separate;
	border-spacing: 0;
	color: var(--bs-body-color);
	margin-bottom: 0;
}

.wp-block-table table tr th,
.wp-block-table table tr td {
	padding: 14px 14px 14px 24px;
	border: none;
	border-right: 1px solid var(--bs-body-color);
	border-bottom: 1px solid var(--bs-body-color);
}

.wp-block-table table tr th:first-child,
.wp-block-table table tr td:first-child {
	border-left: 1px solid var(--bs-body-color);
}

.wp-block-table table tr th {
	text-align: left;
	border-top: 1px solid var(--bs-body-color);
}

.wp-block-table table tr:first-child td {
	border-top: 1px solid var(--bs-body-color);
}

.wp-block-table table>*:first-child tr:first-child th:first-child,
.wp-block-table table>*:first-child tr:first-child td:first-child {
	border-top: 1px solid var(--bs-body-color);
	border-top-left-radius: var(--theme-rounded);
}

.wp-block-table table>*:first-child tr:first-child th:last-child,
.wp-block-table table>*:first-child tr:first-child td:last-child {
	border-top: 1px solid var(--bs-body-color);
	border-top-right-radius: var(--theme-rounded);
}

.wp-block-table table tr:last-child td:first-child {
	border-bottom-left-radius: var(--theme-rounded);
}

.wp-block-table table tr:last-child td:last-child {
	border-bottom-right-radius: var(--theme-rounded);
}

.wp-block-table table a {
	color: var(--bs-primary);
}

.wp-block-hc-alternate-group-section {
	padding: 30px;
	background: linear-gradient(270deg, var(--section_gradient_start) 0%, var(--section_gradient_end) 100%);
	border-radius: var(--theme-rounded-section);
	margin-bottom: var(--theme-block-margin-bottom);
}

.wp-block-hc-alternate-group-section.is-style-alternate-group-section-style2 {
	background: linear-gradient(90deg, var(--section_gradient_start) 0%, var(--section_gradient_end) 100%);
}

.wp-block-hc-alternate-group-section h2,
.wp-block-hc-alternate-group-section h3 {
	position: relative;
	margin-top: 30px;
	padding-top: 4px;
	margin-bottom: 16px;
}

.bef_b {
	position: relative;
	padding-top: 4px;
}

.bef_b:before,
.wp-block-hc-alternate-group-section h2:before,
.wp-block-hc-alternate-group-section h3:before {
	content: "";
	display: block;
	width: 50px;
	height: 3px;
	position: absolute;
	top: -4px;
	left: 0;
	background-color: var(--bs-primary);
}

.wp-block-hc-alternate-group-section h2.no_bef_b:before,
.wp-block-hc-alternate-group-section h3.no_bef_b:before {
	display: none;
}

.wp-block-hc-alternate-group-section ol {
	list-style: none;
	padding: 0;
	margin-bottom: 2rem;
	counter-reset: item;
}

.wp-block-hc-alternate-group-section ol li ol {
	margin-top: 1rem;
}

.wp-block-hc-alternate-group-section ul {
	list-style: none;
	padding: 0;
	margin-bottom: 2rem;
}

.wp-block-hc-alternate-group-section ul li ul {
	margin-top: 1rem;
}

.wp-block-hc-alternate-group-section ol>li,
.wp-block-hc-alternate-group-section ul>li {
	position: relative;
	padding-left: 40px;
	margin-bottom: 10px;
}

.wp-block-hc-alternate-group-section ul>li:last-child {
	margin-bottom: 0;
}

.wp-block-hc-alternate-group-section ol>li {
	counter-increment: item;
}

.wp-block-hc-alternate-group-section ol>li:last-child {
	margin-bottom: 0;
}

.wp-block-hc-alternate-group-section ol>li:before {
	position: absolute;
	left: 0;
	top: -2px;
	content: counter(item);
	display: flex;
	width: 27px;
	height: 27px;
	align-items: center;
	justify-content: center;
	font-size: 12px;
	border: 1px solid var(--bs-primary);
	color: var(--bs-primary);
	border-radius: 50%;
}

.wp-block-hc-alternate-group-section ul>li:before {
	content: "";
	position: absolute;
	left: 0;
	top: -2px;
	display: block;
	width: 27px;
	height: 27px;
	background-repeat: no-repeat;
}

.wp-block-hc-alternate-group-section .wp-block-image img {
	border-radius: var(--theme-rounded);
}

.wp-block-hc-alternate-group-section .wp-block-hc-alternate-group-section {
	padding: 0 0 20px;
	margin: 0;
	background: none;
}

.wp-block-hc-alternate-group-section .wp-block-hc-alternate-group-section:last-child {
	padding: 0;
}

.wp-block-hc-alternate-group-section ol.acf-radio-list li,
.wp-block-hc-alternate-group-section ul.acf-radio-list li {
	padding-left: 10px;
	margin: 0;
}

.wp-block-hc-alternate-group-section ol.acf-radio-list li:before,
.wp-block-hc-alternate-group-section ul.acf-radio-list li:before {
	display: none;
}

@media (max-width: 767px) {
	.wp-block-hc-alternate-group-section {
		padding: 30px 15px 15px;
	}

	.wp-block-hc-alternate-group-section h2,
	.wp-block-hc-alternate-group-section h3 {
		margin-bottom: 1rem;
	}

	.wp-block-hc-alternate-group-section ul,
	.wp-block-hc-alternate-group-section ol {
		margin-bottom: 1rem;
	}
}

/**
	Header
 */
header.header {
	position: fixed;
	left: 0;
	top: 0;
	right: 0;
	border-bottom: 1px solid #e9ecef;
	background-color: #fff;
	z-index: 20;
	background-color: var(--header_background_color);
}

header.header .header__container {
	position: relative;
	display: grid;
	grid-template-columns: auto 1fr auto;
	grid-gap: 50px;
	align-items: center;
	height: 70px;
	transition: .5s;
}

header.header .logo {
	max-width: 175px;
}

header.header .logo img {
	max-height: 50px;
	width: auto;
}

header.header .primary_menu_desktop_ver>ul {
	display: flex;
	justify-content: center;
	list-style: none;
	margin: 0;
	padding: 0;
}

header.header .primary_menu_desktop_ver>ul>li {
	padding: 5px 10px;
}

header.header .primary_menu_desktop_ver>ul>li>a {
	position: relative;
	display: block;
	font-size: .9rem;
	font-weight: 500;
	text-decoration: none;
	color: var(--header_menu_text_color);
}

header.header .primary_menu_desktop_ver>ul>li.current-menu-item>a,
header.header .primary_menu_desktop_ver>ul>li.current-menu-ancestor>a,
header.header .primary_menu_desktop_ver>ul>li>a.show-dropdown,
header.header .primary_menu_desktop_ver>ul>li>a:hover {
	color: var(--header_menu_text_color_hover);
}

header.header .primary_menu_desktop_ver>ul>li:last-child {
	margin-right: 0;
}

header.header .primary_menu_desktop_ver .dropdown-menu {
	transform: translateY(10px);
}

header.header .primary_menu_desktop_ver>ul>li ul>li a.dropdown-toggle:after {
	transform: rotate(-90deg);
}

header.header .primary_menu_desktop_ver>ul>li ul>li.dropdown:hover ul {
	display: block;
}

header.header .primary_menu_desktop_ver .dropdown-menu .dropdown-item {
	font-size: .85rem;
	color: initial !important;
}

header.header .primary_menu_desktop_ver .dropdown-menu .dropdown-item.active,
header.header .primary_menu_desktop_ver .dropdown-menu .dropdown-item:active {
	background-color: inherit;
}

header.header .primary_menu_desktop_ver .dropdown-menu .dropdown-item:focus,
header.header .primary_menu_desktop_ver .dropdown-menu .dropdown-item:hover {
	background-color: #e9ecef !important;
}

header.header .primary_menu_mobile_ver>ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

header.header .primary_menu_mobile_ver>ul>li {
	position: relative !important;
}

header.header .primary_menu_mobile_ver>ul>li>a {
	display: block;
	padding: 8px;
	margin-right: 45px;
	text-decoration: none;
}

header.header .primary_menu_mobile_ver>ul>li a:after {
	display: none !important;
}

header.header .primary_menu_mobile_ver>ul>li .arrow {
	position: absolute;
	top: 5px;
	right: 0;
	width: 30px;
	height: 30px;
	display: flex;
	align-items: center;
	justify-content: center;
}

header.header .primary_menu_mobile_ver>ul>li .arrow:after {
	content: "";
	display: inline-block;
	vertical-align: 0.255em;
	border-top: 0.3em solid;
	border-right: 0.3em solid transparent;
	border-bottom: 0;
	border-left: 0.3em solid transparent;
}

header.header .primary_menu_mobile_ver>ul>li .arrow.show:after {
	transform: rotate(180deg);
}

header.header .primary_menu_mobile_ver>ul>li ul>li .arrow {
	top: 0;
	color: #316E92;
}

header.header .primary_menu_mobile_ver .dropdown-menu {
	position: relative;
	top: 0 !important;
	flex-direction: column;
	border: none;
	margin-bottom: -1px;
	margin-left: -16px;
	margin-right: -16px;
	padding-left: 25px;
	padding-right: 25px;
	border-radius: 0;
}

header.header .primary_menu_mobile_ver .dropdown-menu li {
	width: 100%;
}

header.header .primary_menu_mobile_ver .dropdown-menu li>.dropdown-item {
	font-size: .9rem;
	color: initial !important;
}

header.header .primary_menu_mobile_ver .dropdown-menu .dropdown-item.active,
header.header .primary_menu_mobile_ver .dropdown-menu .dropdown-item:active,
header.header .primary_menu_mobile_ver .dropdown-menu .dropdown-item:focus,
header.header .primary_menu_mobile_ver .dropdown-menu .dropdown-item:hover {
	background-color: inherit !important;
}

header.header .dropdown-toggle:after {
	display: inline-block;
	margin-left: 0.255em;
	vertical-align: 0.255em;
	content: "";
	border-top: 0.3em solid;
	border-right: 0.3em solid transparent;
	border-bottom: 0;
	border-left: 0.3em solid transparent;
}

header.header .mobile-menu-button {
	display: none;
	position: absolute;
	top: 24px;
	right: 0;
	width: 26px;
	height: 24px;
	cursor: pointer;
}

header.header .mobile-menu-button span {
	position: absolute;
	left: 0;
	display: block;
	width: 100%;
	height: 3px;
	background-color: var(--bs-primary);
	border-radius: 2px;
}

header.header .mobile-menu-button span:nth-child(1) {
	top: 2px;
}

header.header .mobile-menu-button span:nth-child(2) {
	top: 10px;
}

header.header .mobile-menu-button span:nth-child(3) {
	top: 18px;
}

header.header .offcanvas {
	max-width: 300px;
	background: var(--mobile_menu_bg);
	border-radius: 15px 0 0 15px;
}

header.header .offcanvas .buttons {
	position: relative;
	top: 0;
	grid-template-columns: repeat(2, auto);
	margin-bottom: 10px;
}

header.header .offcanvas-header {
	position: relative;
	padding: 4px 10px;
	min-height: 73px;
	border-bottom: 1px solid #e9ecef;
}

header.header .offcanvas-header .custom-logo-link {
	max-width: 175px;
}

header.header .offcanvas-header .btn-close {
	position: absolute;
	top: 27px;
	right: 25px;
	background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='44' height='44' fill='%23adb5bd' class='bi bi-x' viewBox='0 0 16 16'%3E%3Cpath d='M4.646 4.646a.5.5 0 0 1 .708 0L8 7.293l2.646-2.647a.5.5 0 0 1 .708.708L8.707 8l2.647 2.646a.5.5 0 0 1-.708.708L8 8.707l-2.646 2.647a.5.5 0 0 1-.708-.708L7.293 8 4.646 5.354a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E") center/2.5em auto no-repeat;
	opacity: 1;
}

body.admin-bar header.header {
	top: 32px;
}

@media (max-width: 991px) {
	header.header .header__container.out {
		margin-top: -70px;
	}

	header.header .primary_menu_desktop_ver {
		display: none;
	}

	header.header .mobile-menu-button {
		display: block;
	}
}

@media (max-width: 600px) {
	body.admin-bar .header.header {
		top: 0;
	}
}

footer.footer {
	padding-top: 20px;
	padding-bottom: 20px;
	color: var(--footer_text_color);
	background-color: var(--footer_bg_color);
}

footer.footer .footer__container {
	position: relative;
	display: grid;
	grid-template-columns: auto 1fr;
	grid-gap: 50px;
	align-items: center;
	margin-bottom: 20px;
}

footer.footer .footer__container .custom-logo-link {
	max-width: 100px;
}

footer.footer .footer__container .custom-logo-link .custom-logo {
	max-height: 50px;
	width: auto;
}

footer.footer .footer__container nav ul {
	display: flex;
	justify-content: center;
	list-style: none;
	margin: 0;
	padding: 0;
}

footer.footer .footer__container nav ul li {
	padding: 5px 10px;
}

footer.footer .footer__container nav ul li a {
	position: relative;
	display: block;
	font-size: .9rem;
	text-decoration: none;
	color: var(--footer_link_color);
}

footer.footer .footer_text {
	font-size: .8rem;
	text-align: center;
	margin-bottom: 10px;
	opacity: .5;
}

footer.footer .footer_logos_police {
	display: flex;
	justify-content: space-around;
	gap: 32px;
	flex-wrap: wrap;
	border-top: 1px solid var(--footer_text_color);
	border-bottom: 1px solid var(--footer_text_color);
	padding: 24px 0;
	margin-bottom: 24px;
	opacity: .5;
}

footer.footer .footer_logos_police img {
	max-height: 36px;
}

footer.footer .copyright {
	font-size: .8rem;
	text-align: center;
	opacity: .5;
}

@media (max-width: 991px) {
	footer.footer {
		text-align: center;
	}

	footer.footer .footer__container {
		grid-template-columns: none;
		grid-gap: 24px;
	}

	footer.footer .footer__container nav ul {
		display: block;
	}

	footer.footer nav ul li {
		font-size: 1rem;
	}

	footer.footer .footer_logos_police {
		justify-content: center;
		gap: 16px;
	}
}

/**
	welcome-section
 */
.welcome-section {
	margin-top: 20px;
	margin-bottom: 40px;
	padding: 20px;
	background: linear-gradient(270deg, var(--section_gradient_start) 0%, var(--section_gradient_end) 100%);
	border-radius: var(--theme-rounded-section);
}

.welcome-section .welcome-section__container {
	position: relative;
	display: grid;
	grid-template-columns: 1.5fr 1fr;
	grid-gap: 80px;
}

.welcome-section .welcome-section__container.full-width {
	grid-template-columns: none;
}

/*.welcome-section .welcome-section__container:before {
	content: "";
	position: absolute;
	width: 273px;
	height: 119px;
	right: 0;
	bottom: 0;
	background-repeat: no-repeat;
}*/

.welcome-section .welcome-section__container h1 {
	font-weight: 700;
	margin-bottom: 20px;
	margin-top: 0;
	padding-top: 10px;
}

.welcome-section .welcome-section__container .description {
	font-size: 14px;
}

.welcome-section .welcome-section__container .buttons {
	display: flex;
	flex-wrap: wrap;
	margin-top: 20px;
}

.welcome-section .welcome-section__container .buttons a {
	display: flex;
	align-items: center;
	margin-right: 10px;
	margin-top: 10px;
	border-radius: 50px;
}

.welcome-section .welcome-section__container .buttons a img {
	max-width: 70px;
	margin-right: 8px;
}

.welcome-section .welcome-section__container .image img,
.welcome-section .welcome-section__container .image-mob img {
	border-radius: var(--theme-rounded);
}

.welcome-section .welcome-section__container .image-mob {
	display: none;
}

.welcome-section .welcome-section__container .image-mob img {
	margin: 0 auto 20px auto;
	display: block;
}

.home-page .welcome-section {
	margin-top: 40px;
}

@media (max-width: 991px) {
	.welcome-section .welcome-section__container .image-mob {
		display: block;
	}

	.welcome-section .welcome-section__container .image {
		display: none;
	}

	.welcome-section {
		margin-top: 0;
		margin-bottom: 20px;
		padding: 30px 15px 15px;
	}

	.welcome-section .welcome-section__container {
		grid-template-columns: none;
		grid-gap: 35px;
	}

	/*.welcome-section .welcome-section__container:before {
		bottom: -55px;
	}*/
}

@media (max-width: 600px) {
	.welcome-section .welcome-section__container .buttons a {
		width: 100%;
		justify-content: center;
	}
}

/* plugin luckywp-table-of-contents */
.lwptoc {
	margin: 15px 0 !important;
}

.lwptoc .lwptoc_i {
	padding: 14px 18px 7px;
	color: inherit !important;
	background: linear-gradient(90deg, var(--bs-secondary) 0%, transparent 100%) !important;
	border-radius: var(--theme-rounded) !important;
}

.lwptoc_toggle_label {
	border: none !important;
	background: none !important;
	padding: 0 !important;
	outline: none !important;
	cursor: pointer;
	color: inherit;
}

.lwptoc .lwptoc_i DIV A {
	color: inherit !important;
}

/**
	Bottom Panel
 */
.bottom_panel {
	position: fixed;
	left: 0;
	bottom: 0;
	right: 0;
	display: none;
	align-items: center;
	gap: 10px;
	padding: 10px 16px;
	background-color: var(--bs-body-bg);
	border-top: 1px solid rgba(255, 255, 255, 0.5);
	z-index: 10;
	transition: .5s;
}

.bottom_panel.apps a {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-grow: 1;
	padding: 5px 15px;
	gap: 10px;
	font-size: 12px;
	font-weight: 600;
	line-height: normal;
	text-decoration: none;
	color: var(--bs-primary);
	border: 1px solid var(--bs-primary);
	border-radius: var(--theme-rounded-button);
}

.bottom_panel.bonus .bonus {
	width: 50%;
	font-size: 14px;
	text-align: left;
	line-height: normal;
	color: var(--footer_bonus_text_color);
}

.bottom_panel.bonus .bonus b {
	color: var(--bs-success);
}

.bottom_panel.bonus a {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-grow: 1;
	padding: 10px 15px;
	gap: 10px;
	font-size: 12px;
	font-weight: 600;
	line-height: normal;
	color: var(--button_text_color);
	text-decoration: none;
	background: var(--button_background_color);
	border-radius: var(--theme-rounded-button);
}

@media (max-width: 991px) {
	.bottom_panel {
		display: flex;
		transform: translateY(70px);
	}

	.bottom_panel.show {
		transform: translateY(0px);
	}
}

/**
	TOC Navigation
 */
.toc_navigation {
	display: flex;
	height: 48px;
	border-top: 1px solid #e9ecef;
}

.toc_navigation .container {
	display: flex;
	align-items: center;
	position: relative;
}

.toc_navigation .min-title {
	font-size: 12px;
	font-weight: 600;
	padding-right: 10px;
}

.toc_navigation .items {
	display: flex;
	gap: 8px;
	overflow-x: auto;
	-ms-overflow-style: none;
	scrollbar-width: none;
	list-style: none;
	margin: 0;
	padding: 0;
}

.toc_navigation .items::-webkit-scrollbar {
	display: none;
}

.toc_navigation .items .item:last-child {
	padding-right: 8px;
}

.toc_navigation .items .item a {
	display: flex;
	align-items: center;
	font-weight: 500;
	text-decoration: none;
	padding: 3px 10px;
	line-height: normal;
	white-space: nowrap;
	color: var(--bs-body-color);
	border: 1px solid #e7e7e7;
	border-radius: var(--theme-rounded-button);
}

.toc_navigation .items .item a.active {
	color: var(--bs-primary);
	border-color: var(--bs-primary);
}

.toc_navigation .items .item a .icon {
	width: 28px;
	height: 28px;
	margin-right: 5px;
}

.toc_navigation .items .item a .name {
	font-size: 13px;
}

.toc_navigation .progress-container {
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 2px;
	padding-left: 12px;
	padding-right: 12px;
	background-color: transparent;
}

.toc_navigation .progress-container .progress-bar {
	width: 0;
	height: 2px;
	background-color: var(--bs-primary);
	transition: .3s;
}

@media (max-width: 991px) {
	.toc_navigation {
		display: none;
	}

	.toc_navigation.show {
		display: flex;
	}

	.toc_navigation .container {
		padding-right: 0;
	}

	.toc_navigation .progress-container {
		padding-left: 0;
		padding-right: 0;
	}
}

.fasc-rounded-medium {
	border-radius: var(--theme-rounded) !important;
}

.header__buttons-holder {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	justify-content: end;
}

.header-mobile__buttons-holder {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	justify-content: center;
	margin: 20px 0 0 0;
}

.header__buttons-holder a {
	display: flex;
	align-items: center;
}

.header__buttons-holder img {
	max-width: 70px;
	margin-right: 8px;
}

@media (max-width: 991px) {
	.header__buttons-holder {
		display: none;
	}
}