@charset "UTF-8";
:root {
	--theme-color: #45405a;
	--theme-color-2: #504c61;
	--theme-color-dark: #282534;
	--theme-color-light: #868394;
	--theme-color-light-extra: #b7b4c0;
	--theme-color-violet: #5c3d84;
	/* --theme-color-green: #8dc96e; */
	/* --theme-color-green: #8bca69; */
	--theme-color-green: #75b055;
	--theme-color-green-n: #5da039;
	--theme-color-green-dark: #45405a; /*#70af4e;*/
	--theme-color-red: #b82626;
	--theme-border-color: #d7dee3;
	--theme-light-blue: #f3f5f7;
	--theme-light-gray: #f7f7f7;
	--theme-light-gray-2: #f8f8f8;
	--theme-light-gray-blue: #f5f7f9;
	--theme-light-gray-blue-dark: #e0e2e5;

	--input-font: Inter Medium;
	--input-color: #a8a7aa;
	--input-bg: #ffffff;
	--input-border-color: #a8a7aa;

	--input-selected-color: #45405a;
	--input-selected-bg: #ebf0f6;
	--input-selected-border-color: #45405a;

	--br-015: 0.15rem;
	--br-025: 0.25rem;
	--br-050: 0.5rem;
	--br-075: 0.75rem;
	--br-100: 1rem;

	--fw-500: 500;
	--fw-600: 600;

	--text-section-titles: #727d85;

	--theme-purple: #423b69;
}

body .modal-backdrop.show {
	opacity: 0.75;
}
#pm_chat .highlight_new {
	color: var(--theme-color) !important;
}

::placeholder {
	font-family: "Inter", sans-serif;
	font-size: 16px;
}
.form-control,
.form-control::placeholder {
	color: var(--input-color) !important;
	font-family: "Inter", sans-serif;
}
.form-control:hover,
.form-control:focus,
.form-control:hover::placeholder,
.form-control:focus::placeholder {
	color: var(--theme-color) !important;
}
.form-control:valid {
	color: var(--theme-color) !important;
}
.form-control:disabled {
	pointer-events: none;
}

@media screen and (max-width: 1450px) {
	::placeholder {
		font-size: 14px;
	}
}

body {
	font-family: "Poppins", sans-serif;
	overflow-x: hidden;
	line-height: 1.75;
	-webkit-font-smoothing: antialiased;
}

body > header {
	font-family: "Inter", sans-serif;
}
.body-for-guest .icms-header__top.d-none.d-lg-flex {
	background-color: #fff;
}

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
	font-weight: var(--fw-600);
	line-height: 1.3;
}

h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a,
.h1 a,
.h2 a,
.h3 a,
.h4 a,
.h5 a,
.h6 a,
a.h1,
a.h2,
a.h3,
a.h4,
a.h5,
a.h6,
.current-color {
	color: currentColor !important;
}
a.a-bordered,
main p a {
	border-bottom: 1px solid currentColor;
	text-decoration: none !important;
}

a.a-bordered:hover,
main p a:hover {
	border-bottom: 1px solid transparent;
	text-decoration: none !important;
}
form small,
form .small {
	font-size: 13.8px;
}
p:last-child {
	margin-bottom: 0;
}
.table thead th {
	font-weight: 600;
}
.fw-300 {
	font-weight: 300 !important;
}
.fw-400 {
	font-weight: 400 !important;
}
.fw-500 {
	font-weight: 500 !important;
}
.fw-600 {
	font-weight: 600 !important;
}
.fw-700 {
	font-weight: 700 !important;
}

.hidden {
	overflow: hidden;
}

.container,
.container-sm,
.container-md,
.container-lg,
.container-xl {
	max-width: 1300px;
}

[v-cloak]:not(.skeleton) {
	display: none !important;
}

.skeleton[v-cloak] {
	position: relative;
	overflow: hidden;
	border-radius: 0.25rem;
}

.skeleton[v-cloak] > * {
	opacity: 0;
}

.skeleton[v-cloak]::after {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	transform: translateX(-100%);
	background-image: linear-gradient(
		90deg,
		rgba(255, 255, 255, 0) 0,
		rgba(255, 255, 255, 0.2) 20%,
		rgb(242, 243, 244) 50%,
		rgba(255, 255, 255, 0)
	);
	animation: shimmer 1.7s infinite;
	content: "";
}

body blockquote,
body .bb_quote {
	margin: 2.5rem 0;
	padding: 0 30px;
	font-size: 21px;
	font-style: italic;
	font-weight: 500;
	line-height: 32px;
	background-color: transparent;
	border-left: 4px solid currentColor;
	color: currentColor;
}
body blockquote::before,
body .bb_quote::before {
	display: none;
}
@keyframes shimmer {
	100% {
		transform: translateX(100%);
	}
}
@media (max-width: 991.99px) {
	.icms-header__middle {
		padding-top: 4px;
	}
}
@media (max-width: 575.99px) {
	.container,
	.container-sm,
	.container-md,
	.container-lg,
	.container-xl {
		padding-right: 15px;
		padding-left: 15px;
	}

	.row {
		margin-right: -15px;
		margin-left: -15px;
	}

	.row.no-gutters {
		margin-right: 0;
		margin-left: 0;
	}

	.col-1,
	.col-2,
	.col-3,
	.col-4,
	.col-5,
	.col-6,
	.col-7,
	.col-8,
	.col-9,
	.col-10,
	.col-11,
	.col-12,
	.col,
	.col-auto,
	.col-sm-1,
	.col-sm-2,
	.col-sm-3,
	.col-sm-4,
	.col-sm-5,
	.col-sm-6,
	.col-sm-7,
	.col-sm-8,
	.col-sm-9,
	.col-sm-10,
	.col-sm-11,
	.col-sm-12,
	.col-sm,
	.col-sm-auto,
	.col-md-1,
	.col-md-2,
	.col-md-3,
	.col-md-4,
	.col-md-5,
	.col-md-6,
	.col-md-7,
	.col-md-8,
	.col-md-9,
	.col-md-10,
	.col-md-11,
	.col-md-12,
	.col-md,
	.col-md-auto,
	.col-lg-1,
	.col-lg-2,
	.col-lg-3,
	.col-lg-4,
	.col-lg-5,
	.col-lg-6,
	.col-lg-7,
	.col-lg-8,
	.col-lg-9,
	.col-lg-10,
	.col-lg-11,
	.col-lg-12,
	.col-lg,
	.col-lg-auto,
	.col-xl-1,
	.col-xl-2,
	.col-xl-3,
	.col-xl-4,
	.col-xl-5,
	.col-xl-6,
	.col-xl-7,
	.col-xl-8,
	.col-xl-9,
	.col-xl-10,
	.col-xl-11,
	.col-xl-12,
	.col-xl,
	.col-xl-auto {
		padding-right: 15px;
		padding-left: 15px;
	}

	.no-gutters > .col,
	.no-gutters > [class*="col-"] {
		padding-right: 15px;
		padding-left: 15px;
	}
}
body .modal-header {
	background-color: #fff;
	border-bottom: 1px solid #d9d8de;
	padding: 0.5rem 1rem;
}
body .modal-header .modal-title {
	color: var(--theme-color);
}
#pm_notices_list .alert-secondary {
	color: var(--theme-color);
	background-color: #f2f3f4;
	border-color: #d9d8de;
}
#pm_notices_list .text-muted {
	color: #5c656d !important;
}

.search-row .container, .search-row .container-sm, .search-row .container-md, .search-row .container-lg, .search-row .container-xl,
header .container, header .container-sm, header .container-md, header .container-lg, header .container-xl,
.body-for-community-all .container.container_brfore-content,
.body-for-community-all .container.container_content,
.body-for-community-all .breadcrumb-container .container
/* , .page-header .container, .breadcrumb-container .container */ {
	max-width: 1500px;
}

.breadcrumb-container {
	padding: 0;
	background-color: #f2f3f4;
	position: relative;
	height: 52px;
}
.mb-5.breadcrumb-container {
	margin-bottom: 50px !important;
}

.breadcrumb-container::before {
	content: "";
	height: 1px;
	background: linear-gradient(
		to bottom,
		rgba(0, 0, 0, 0.15) 0%,
		rgba(0, 0, 0, 0.08) 20%,
		rgba(0, 0, 0, 0.01) 70%,
		rgba(0, 0, 0, 0) 100%
	);
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
}

.breadcrumb-gna::after {
	display: none;
}

.breadcrumb-item.breadcrumb-gna.active {
	color: currentColor;
}

.breadcrumb-gna .breadcrumb-item + .breadcrumb-item::before {
	content: "»";
	color: currentColor;
}

@media (min-width: 992px) {
	.breadcrumb-gna {
		font-size: 1rem; /*1.25rem;*/
	}
}
@media (min-width: 1200px) {
	.mb-5.breadcrumb-container {
		margin-bottom: 78px !important;
		display: flex;
		align-items: center;
	}
}
.icms-footer__middle .container,
.icms-footer__middle .container-sm,
.icms-footer__middle .container-md,
.icms-footer__middle .container-lg,
.icms-footer__middle .container-xl {
	max-width: 1360px;
}

.for-body-blocker {
	overflow-x: hidden;
}
.find-help-page .for-body-blocker {
	overflow-x: initial;
}
.social-link {
	display: inline-flex;
	justify-content: center;
	align-items: center;
	border-radius: 50%;
	color: var(--theme-color);
	background-color: currentColor;
	width: 35px;
	height: 35px;
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
	margin-right: 15px;
}

.social-link:last-child,
.social-link.linkedin {
	margin-right: 0;
}

.social-link:hover {
	color: var(--theme-color-dark);
}

.social-link .icms-svg-icon {
	fill: #ffffff;
}

.green-button {
	/* background-color: var(--theme-color-green); */
	background-color: var(--theme-color-green-n);
	border-width: 0;
	border-radius: var(--br-025);
	color: #ffffff;
	font-family: "Poppins", sans-serif;
	font-size: 18px;
	height: 53px;
	width: 190px;
	display: inline-flex !important;
	justify-content: center;
	align-items: center;
	font-weight: var(--fw-600);
	text-transform: uppercase;
	transition: all 0.5s ease;
	outline: none !important;
}
.green-button.green-button_bg-theme {
	/* background-color: var(--theme-color); */
	background-color: var(--theme-purple);
}
.green-button.green-button_bordered {
	background-color: #fff;
	border: 2px solid #d6d6e7;
	color: var(--theme-color);
}
.green-button.green-button_bg-theme:hover,
.green-button.green-button_bg-theme:active,
.green-button.green-button_bordered:hover,
.green-button.green-button_bordered:active {
	background-color: var(--theme-color-green);
	border-color: var(--theme-color-green);
	color: #fff;
}
.green-button.green-button-sm {
	padding: 6px 12px;
	border-radius: var(--br-015);
	font-size: 1rem;
	text-transform: uppercase;
}

.green-button.green-button-xl {
	/* height: 58px; */
	width: 225px;
}

.green-button:hover {
	background-color: var(--theme-color-green-dark);
	transition: all 0.5s ease;
}
.green-button.green-button-theme {
	background-color: var(--theme-color);
}
.green-button.green-button-theme:hover {
	background-color: var(--theme-color-green);
}
a.green-button:hover {
	color: #ffffff;
	text-decoration: none;
	transition: all 0.5s ease;
}
.green-button.green-button-bordered {
	background-color: #fff;
	border-width: 1px;
	border-style: solid;
	border-color: currentColor;
	color: var(--theme-color-green);
}
.green-button.green-button-bordered:hover {
	background-color: #fff;
	color: var(--theme-color);
}
.green-button.green-button-bordered.green-button-theme {
	color: var(--theme-color);
}
.green-button.green-button-bordered.green-button-theme:hover {
	color: var(--theme-color-green);
}
.btn-uncheck {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0 13px;
	background-color: #caccca;
	border-color: #caccca;
	color: #fff;
	font-size: 0.75rem;
	height: 25px;
	border-radius: 0.25rem;
	text-decoration: none !important;
}
.btn-uncheck:hover,
.btn-uncheck:active {
	background-color: #b2b7bd !important;
	border-color: #b2b7bd !important;
	color: #fff !important;
}

.close.close-modal {
	display: flex;
	justify-content: center;
	align-items: center;
	color: #ffffff;
	text-shadow: none;
	background-color: var(--theme-color);
	width: 30px;
	height: 30px;
	border-radius: 50%;
	font-size: 1.75rem;
	font-weight: 500;
	opacity: 1;
	position: absolute;
	top: -15px;
	right: -15px;
	transition: 0.3s;
}

/* .close.close-modal:hover {
	transform: rotate(360deg);
} */

.modal_video .modal-content {
	padding: 15px;
}

.search-section form {
	display: flex;
	justify-content: space-between;
	position: relative;
	transition: 0.3s;
	flex-direction: column;
}

@media (min-width: 1200px) {
	.search-section form {
		flex-direction: row;
	}
}

.search-section form::before {
	content: "";
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 0;
	height: 0;
	background-repeat: no-repeat;
	background-image: url("data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iNzJweCIgaGVpZ2h0PSI3MnB4IiB2aWV3Qm94PSIwIDAgNzIgNzIiIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8dGl0bGU+R3JvdXA8L3RpdGxlPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9Ikdyb3VwIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSgtMC4wMDAwMDksIC0wLjAwMDAwOSkiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0zNS44MjAwMDkzLDQuNjcxODExNjdlLTA2IEMxNi4wNDAwMDkzLC0wLjAwOTk5MDY1MjAxIDAuMDEwMDA5MzQ4LDE2LjAyMDAwOTMgNC42NzE4MTE2N2UtMDYsMzUuODAwMDA5MyBDLTAuMDA5OTkwNjUyMDEsNTUuNTgwMDA5MyAxNi4wMjAwMDkzLDcxLjYxMDAwOTMgMzUuODAwMDA5Myw3MS42MjAwMTQgQzU1LjU4MDAwOTMsNzEuNjMwMDA5MyA3MS42MTAwMDkzLDU1LjYwMDAwOTMgNzEuNjIwMDA5MywzNS44MjAwMDkzIEM3MS42MjAwMDkzLDM1LjgxMDAwOTMgNzEuNjIwMDA5MywzNS44MTAwMDkzIDcxLjYyMDAwOTMsMzUuODAwMDA5MyBDNzEuNjIwMDA5MywxNi4wMzAwMDkzIDU1LjU5MDAwOTMsNC42NzE4MTE2N2UtMDYgMzUuODIwMDA5Myw0LjY3MTgxMTY3ZS0wNiBDMzUuODIwMDA5Myw0LjY3MTgxMTY3ZS0wNiAzNS44MjAwMDkzLDQuNjcxODExNjdlLTA2IDM1LjgyMDAwOTMsNC42NzE4MTE2N2UtMDYgWiBNMzUuODIwMDA5Myw2My4wMDAwMTU1IEMyMC43OTAwMDkzLDYzLjAxMDAwOTMgOC41OTAwMDkzNSw1MC44MzAwMDkzIDguNTgwMDAzMTksMzUuODAwMDA5MyBDOC41NzAwMDkzNSwyMC43NzAwMDkzIDIwLjc1MDAwOTMsOC41NzAwMDkzNSAzNS43ODAwMDkzLDguNTYwMDAzMTkgQzUwLjgxMDAwOTMsOC41NTAwMDkzNSA2My4wMTAwMDkzLDIwLjczMDAwOTMgNjMuMDIwMDA5MywzNS43NjAwMDkzIEM2My4wMjAwMDkzLDM1Ljc3MDAwOTMgNjMuMDIwMDA5MywzNS43OTAwMDkzIDYzLjAyMDAwOTMsMzUuODAwMDA5MyBDNjMuMDEwMDA5Myw1MC44MjAwMDkzIDUwLjg0MDAwOTMsNjIuOTkwMDA5MyAzNS44MjAwMDkzLDYzLjAwMDAxNTUgWiIgaWQ9IlNoYXBlIiBmaWxsPSIjQjgyNjI2Ij48L3BhdGg+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik00Mi40MDAwMDkzLDI5LjIyMDAwOTMgTDQyLjQwMDAwOTMsMTQuODYwMDA5MyBMMjkuMjQwMDA5MywxNC44NjAwMDkzIEwyOS4yNDAwMDkzLDIyLjU3MDAwOTMgTDI5LjI0MDAwOTMsMjIuNTcwMDA5MyBDMjguOTkwMDA5MywyOC40NjAwMDkzIDMzLjUwMDAwOTMsMzMuMzMwMDA5MyAzOS4xMTAwMDkzLDM1LjIyMDAwOTMgQzQwLjE4MDAwOTMsMzUuNTcwMDA5MyA0MS4yOTAwMDkzLDM1Ljc4MDAwOTMgNDIuNDEwMDA5MywzNS44NDAwMDkzIEw1Ni43NjAwMDkzLDM1Ljg0MDAwOTMgTDU2Ljc2MDAwOTMsMjkuMjIwMDA5MyBMNDIuNDAwMDA5MywyOS4yMjAwMDkzIFoiIGlkPSJQYXRoIiBmaWxsPSIjNDU0MDVBIj48L3BhdGg+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yOC40MzAwMDkzLDI5LjIyMDAwOTMgTDE0Ljg4MDAwOTMsMjkuMjIwMDA5MyBMMTQuODgwMDA5Myw0Mi4zODAwMDkzIEwyOS4yNDAwMDkzLDQyLjM4MDAwOTMgTDI5LjI0MDAwOTMsNTYuNzQwMDA5MyBMNDIuNDAwMDA5Myw1Ni43NDAwMDkzIEw0Mi40MDAwMDkzLDQyLjM4MDAwOTMgTDQyLjQwMDAwOTMsNDIuMzgwMDA5MyBDNDAuOTUwMDA5Myw0Mi40NDAwMDkzIDM5LjQ5MDAwOTMsNDIuMjUwMDA5MyAzOC4xMDAwMDkzLDQxLjgyMDAwOTMgQzMyLjY3MDAwOTMsNDAuMTYwMDA5MyAyOS4xMzAwMDkzLDM1LjA3MDAwOTMgMjguNDMwMDA5MywyOS4yMjAwMDkzIFoiIGlkPSJQYXRoIiBmaWxsPSIjNDU0MDVBIj48L3BhdGg+CiAgICAgICAgPC9nPgogICAgPC9nPgo8L3N2Zz4=");
	background-position: left center;
	background-size: cover;
	opacity: 0;
	transition: 0.3s;
}

.search-row.is_shadow .search-section form {
	padding-left: 65px;
}

.search-row.is_shadow .search-section form::before {
	width: 52px;
	height: 52px;
	opacity: 1;
}

/* ############ page-header ############################################################ */
.page-header {
	background-color: #f2f3f4;
	padding: 2rem 0;
	position: relative;
	margin-bottom: 40px;
}

.page-header.page-header-small {
	padding: 24px 0 !important;
}

.page-header.page-header-small .page-header-breadcrumbs {
	font-size: 1rem !important;
}

.page-header.page-header-small .page-header-breadcrumbs li + li {
	margin-left: 0.75rem;
}

.page-header-container {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-direction: column;
	text-align: center;
}
.page-header-hint,
.page-header-breadcrumbs {
	line-height: 1.3;
}

.page-header-hint {
	font-weight: 300;
}

.page-header-breadcrumbs ul {
	margin: 1rem 0 0;
}

.page-header-breadcrumbs li + li {
	margin-left: 11px;
}

.page-header-breadcrumbs li a {
	color: var(--theme-color);
}
.page-header-title {
	font-size: 30px;
	margin-top: 4px;
	margin-bottom: 3px;
}
.to-dashboard-link > .nav-link {
	position: relative;
}
.to-dashboard-link > .nav-link > .icms-svg-icon,
.nav-item.logout > .nav-link > .icms-svg-icon {
	display: none;
}
.view-profine > .nav-link::before {
	content: "";
	width: 24px;
	height: 24px;
	background: url("../images/user-circle.svg") no-repeat center / 100%;
	transition: 0.3s;
}
.to-dashboard-link > .nav-link::before {
	content: "";
	width: 24px;
	height: 24px;
	background: url("../images/community/dashboard.svg") no-repeat center / 100%;
	transition: 0.3s;
}
.my-feed > .nav-link::before {
	content: "";
	width: 24px;
	height: 24px;
	background: url("../images/community/my-feed.svg") no-repeat center / 100%;
	transition: 0.3s;
	border-width: 0 !important;
}
.nav-item.draft > .nav-link::before {
	content: "";
	width: 24px;
	height: 24px;
	background: url("../images/community/draft.svg") no-repeat center / 100%;
	transition: 0.3s;
}
.nav-item.draft > .nav-link .icms-svg-icon.w-16 {
	display: none;
}
.nav-item.settings-security > .nav-link::before {
	content: "";
	width: 24px;
	height: 24px;
	background: url("../images/community/settings.svg") no-repeat center / 100%;
	transition: 0.3s;
	border-width: 0 !important;
}
.nav-item.checklist > .nav-link::before {
	content: "";
	width: 24px;
	height: 24px;
	background: url("../images/community/icon-moderation.svg") no-repeat center / 100%;
	transition: 0.3s;
	border-width: 0 !important;
}
/* .nav-item.write-post > .nav-link::before {
	content: "";
	width: 24px;
	height: 24px;
	background: url("../images/community/write-post.svg") no-repeat center / 100%;
	transition: 0.3s;
	border-width: 0 !important;
} */
.nav-item.logout > .nav-link::before {
	content: "";
	width: 24px;
	height: 24px;
	background: url("../images/log-out-v2.svg") no-repeat center / 100%;
	transition: 0.3s;
}
.nav-item.cpanel > .nav-link::before {
	content: "";
	width: 24px;
	height: 24px;
	border-width: 0 !important;
	background: url("../images/cpanel.svg") no-repeat center / 100%;
	transition: 0.3s;
}
@media (min-width: 992px) {
	.page-header-container {
		flex-direction: row;
		text-align: left;
	}
	.page-header-hint,
	.page-header-breadcrumbs {
		font-size: 1.25rem;
	}
	.page-header-breadcrumbs ul {
		margin: 0;
	}
}

@media (min-width: 1200px) {
	.page-header {
		padding: 0;
		margin-bottom: 68px;
		height: 194px;
		display: flex;
		align-items: center;
	}
	.page-header.page-header-small {
		padding: 0 !important;
		height: 52px;
	}
	.page-header-title {
		font-size: 40px;
		line-height: 1;
		margin-top: 4px !important;
		margin-bottom: 0 !important;
	}
	.page-header-title.page-header-title-40 {
		font-size: 40px;
	}
	.page-header-hint {
		font-size: 1.5rem;
		line-height: 1;
		margin-top: 10px;
		margin-bottom: 3px !important;
	}
	.page-header-breadcrumbs {
		line-height: 1;
	}
	.page-header-title-block + .page-header-breadcrumbs {
		margin-top: -6px;
	}
	.page-header-small .page-header-breadcrumbs {
		padding-top: 0;
	}
}
.icms-user-menu__items.menu-personal > .nav-item.write-post {
	order: -11;
}
.icms-user-menu__items.menu-personal > li.my-feed {
	order: -10;
}
.icms-user-menu__items.menu-personal > li.view-user-profile {
	order: -9;
}
.icms-user-menu__items.menu-personal > li.settings-security {
	order: -8;
}
/* ############ input-group search-content ############################################################ */
.input-group.search-content {
	border-radius: 0.25rem;
	position: relative;
}

.input-group.search-content .form-control {
	border-width: 1px;
	padding-right: 3rem !important;
	font-family: "Inter", sans-serif;
}

.input-group.search-content .input-group-append {
	position: absolute;
	right: 0;
	top: 0;
	bottom: 0;
	z-index: 3;
}

.input-group.search-content .form-control::placeholder,
.input-group.search-content .btn {
	color: var(--input-color);
}

.input-group.search-content .btn:hover {
	color: var(--theme-color);
}

/* ############ HEADER ############################################################ */
.mobile-sticky {
	position: sticky;
	top: 0;
	/* box-shadow: 0 0 1.125rem rgba(0, 0, 0, 0.35); */
	border-bottom: 0.951px solid #d9dbde;
	padding-top: 0.25rem;
	padding-bottom: 0.25rem;
	z-index: 99;
	background-color: #ffffff;
	z-index: 1021;
}
.ad-space {
	background-color: var(--theme-light-gray-blue-dark);
	/* margin-top: -.25rem; */
	position: relative;
}
.ad-space-col .ad-space-banner {
	display: none;
	margin: 0.5rem auto;
}
.ad-space-col .ad-space-banner.active {
	display: block;
}
.ad-space-col .ad-space-banner.active img {
	display: block;
	margin: 0 auto;
}
.menu-header .nav-link {
	/* color: var(--theme-color); */
	color: #727d85;
	font-size: 14px;
	line-height: 12px;
	text-transform: uppercase;
	position: relative;
	font-weight: var(--fw-600);
}
.icms-header__top .dropdown-toggle::after,
.header_middle_2 .nav-item.dropdown .dropdown-toggle::after {
	display: inline-block;
	margin-left: 0.255em;
	vertical-align: initial;
	content: "";
	border-top: none;
	border-right: none;
	border-bottom: none;
	border-left: none;
	width: 10px;
	height: 10px;
	background: url("../images/arrow-icms-header__top.svg");
	margin-left: auto;
}
.icms-header__top .nav-item.dropdown:hover .dropdown-toggle::after,
.header_middle_2 .nav-item.dropdown:hover .dropdown-toggle::after,
.icms-header__top .nav-item.dropdown.show > .dropdown-toggle::after,
.header_middle_2 .nav-item.dropdown.show > .dropdown-toggle::after {
	transform: rotateX(180deg);
}
.header-social .social-link {
	width: 28px;
	height: 28px;
}
.close-ad-space {
	border-width: 0;
	display: inline-flex;
	justify-content: center;
	align-items: center;
	color: #ffffff;
	text-shadow: none;
	background-color: var(--theme-color);
	width: 30px;
	height: 30px;
	overflow: hidden;
	font-size: 1.75rem;
	font-weight: 500;
	line-height: 1;
	opacity: 1;
	position: absolute;
	top: 15px;
	right: 15px;
	transition: 0.3s;
}
.close-ad-space:hover {
	opacity: 0.75;
}
.close-ad-space span {
	transform: translateY(-2px);
}
/* @media (min-width: 768px) {
    .ad-space {
        min-height: 122px;
    }
} */
@media (min-width: 992px) {
	.ad-space {
		margin-top: 0;
	}
	.ad-space-col .ad-space-banner {
		margin: 1rem auto;
	}
}
/* ############ HEADER MENU ################################# */
.icms-header__middle .menu-main .nav-link {
	color: var(--theme-color) !important;
	position: relative;
}
.icms-header__middle .menu-main > .nav-item > .nav-link {
	display: inline-flex;
	align-items: center;
	gap: 4px;
}
.icms-header__middle .menu-main > .nav-item > .nav-link.dropdown-toggle::after {
	display: none;
}
.icms-header__middle .menu-main .donate {
	display: inline-flex;
	align-items: center;
	order: 6;
}
.icms-header__middle .menu-main .donate .nav-link {
	/* color: var(--theme-color-red) !important; */
	padding: 0 16px !important;
	transition: all 0.5s ease;
	height: 32px;
	border-radius: 8px;
	background-color: #d5efc8;
	color: #1e5700 !important;
	font-size: 17px;
	font-family: "Inter", sans-serif;
	text-transform: capitalize;
}
.icms-header__middle .menu-main .donate .nav-link:hover,
.icms-header__middle .menu-main .donate .nav-link:hover,
.icms-header__middle .menu-main .donate .nav-link.active {
	background-color: #5da039;
	color: #fff !important;
}
.icms-header__middle .menu-main .donate .nav-link::before {
	display: none;
}

.icms-header__top .menu-header .nav-link::before,
.icms-header__middle .menu-main .nav-link::before {
	content: "";
	height: 1.5px;
	width: 0;
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	/* background-color: currentColor; */
	background-color: var(--theme-color-green);
	transition: 0.3s;
}
.icms-header__top .menu-header .nav-link::before {
	bottom: 4px;
}
.icms-header__middle .menu-main .nav-link::before {
	bottom: 0;
}
/* .icms-header__top .menu-header .nav-link:not(.dropdown-toggle):hover::before, */
.icms-header__top .menu-header .nav-link.active::before,
.icms-header__middle .menu-main .nav-link:hover::before,
.icms-header__middle .menu-main .nav-item:hover > .nav-link::before,
.icms-header__middle .menu-main .nav-link.active::before,
.icms-frontpage .li-home .nav-link::before,
.icms-header__middle .menu-main > .nav-item:has(.dropdown-item.active) > .nav-link::before {
	width: 100%;
}

.icms-header__top .menu-header .nav-link.active::before,
.icms-header__middle .menu-main .nav-link.active::before,
.icms-frontpage .li-home .nav-link::before {
	/* background-color: currentColor; */
	background-color: var(--theme-color-green);
}
.icms-header__top .dropdown-menu {
	border-radius: 8зч;
	border: 1px solid v#D9DBDE;
	background-color: #fff;
	box-shadow:
		0 6px 16px 0 rgba(0, 0, 0, 0.08),
		0 3px 6px -4px rgba(0, 0, 0, 0.12),
		0 9px 28px 8px rgba(0, 0, 0, 0.05);
	padding: 4px;
}
.icms-header__top .dropdown-menu .dropdown-item {
	padding: 16px 8px;
	font-size: 16px;
	line-height: 18px;
	border-radius: 8px;
	color: var(--theme-color);
}
.icms-header__top .dropdown-menu .dropdown-item:hover {
	background-color: #f2f3f4;
}
.icms-header__top .dropdown-menu .dropdown-item.active {
	background-color: var(--theme-color);
	color: #fff;
}

.icms-header__middle .menu-main .donate .nav-link.active::before {
	/* background-color: currentColor; */
	background-color: var(--theme-color-green);
}
.mobile-menu-container .menu-main {
	gap: 12px;
}
.mobile-menu-container .menu-main .dropdown-menu {
	background-color: #fff;
}
.mobile-menu-container .menu-main > .nav-item.dropdown {
	padding-left: 7px;
}
.mobile-menu-container .menu-main > .nav-item > .nav-link {
	padding: 10px 0 8px;
	line-height: 20px;
	border-bottom: 2px solid transparent;
}
.mobile-menu-container .menu-main > .nav-item > .nav-link.active,
.mobile-menu-container .menu-main > .nav-item:has(.dropdown-item.active) > .nav-link,
.icms-frontpage .mobile-menu-container .menu-main > .nav-item.li-home > .nav-link {
	border-color: var(--theme-color-green);
}
.mobile-menu-container .menu-main > .nav-item > .nav-link:hover,
.mobile-menu-container .menu-main > .nav-item > .nav-link:active,
.mobile-menu-container .menu-main > .nav-item > .nav-link:focus {
	outline: none !important;
	box-shadow: none !important;
}
.mobile-menu-button {
	width: 40px;
	height: 40px;
	padding: 8px 0 8px 10px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	position: relative;
	transform: translateX(-15px);
}

.mobile-menu-button span {
	width: 30px;
	height: 3px;
	background-color: var(--theme-color);
	transition: 0.3s;
}

.mobile-menu-button:hover span,
.mobile-menu-button.active span {
	background-color: var(--theme-color-dark);
}

.mobile-menu-container {
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	margin: 0 !important;
	transform: translateX(-150%);
	transition: 0.5s;
	background-color: #fff;
	z-index: 1039;
}

.mobile-menu-container.active {
	transform: translateX(0);
	right: 0;
}

/* .mobile-menu-container .menu-header .dropdown-menu {
	display: block;
	position: static !important;
	transform: none !important;
	border-width: 0;
	background-color: transparent;
	text-align: center;
	padding: 0 0 15px;
	margin: 0;
} */
.mobile-menu-container .menu-header .dropdown-menu.show {
	display: block;
	position: static !important;
	transform: none !important;
	border-width: 0;
	background-color: transparent;
	text-align: center;
	padding: 0 0 15px;
	margin: 0;
}
.mobile-menu-container .menu-header .dropdown-menu .dropdown-item {
	display: block;
	width: 100%;
	padding: 8px;
	clear: both;
	font-weight: 400;
	color: var(--theme-color);
	font-size: 18px;
	line-height: 1;
}
.mobile-menu-container .menu-header .dropdown-toggle {
	pointer-events: none;
}
.mobile-menu-container .menu-header .dropdown-toggle::after {
	display: none !important;
}
.mobile-menu-container .menu-header .nav-link.dropdown-toggle .nav-item-text {
	color: #727d85;
}
.mobile-menu-container .menu-header .nav-link.dropdown-toggle .nav-item-text:after {
	content: ":";
}
.mobile-menu-container .menu-header .dropdown-item {
	background-color: #fff;
	border-radius: 8px;
}
.mobile-menu-container .menu-header .dropdown-item.active,
.mobile-menu-container .menu-header .dropdown-item:active {
	color: var(--theme-color);
	background-color: #f2f3f4;
}

.col-mobile-menu {
	width: 100%;
	height: 100%;
	overflow-y: auto;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	padding: 30px;
	padding-right: 30px;
	padding-left: 30px;
	gap: 2rem;
}
.col-mobile-menu .mobile-social {
	order: 10;
}
.col-mobile-menu .nav.menu-main {
	width: 100%;
}
.col-mobile-menu .nav.menu-main .nav-item .nav-link {
	font-size: 19px;
	font-weight: 600;
}
.col-mobile-menu .menu-main > .nav-item > .nav-link {
	display: inline-flex;
	align-items: center;
	gap: 4px;
}
.col-mobile-menu .menu-main > .nav-item.donate > .nav-link {
	display: flex;
	justify-content: center;
	text-align: center;
}
.col-mobile-menu .menu-main > .nav-item > .nav-link.dropdown-toggle::after {
	display: none;
}
.col-mobile-menu .nav.menu-main .nav-item.donate {
	margin-top: 15px;
}
.col-mobile-menu .nav.menu-main .nav-item.donate .nav-link {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	height: 40px;
	padding: 0 14px;
	gap: 10px;
	color: #1e5700 !important;
	border-radius: 8px;
	background-color: #d5efc8;
	font-family: "Inter", sans-serif;
	font-size: 17px;
	font-weight: 600;
	line-height: 20px; /* 117.647% */
	text-transform: capitalize;
}
.col-mobile-menu .nav.menu-main .nav-item.donate .nav-link:hover,
.col-mobile-menu .nav.menu-main .nav-item.donate .nav-link:active,
.col-mobile-menu .nav.menu-main .nav-item.donate .nav-link.active {
	color: #fff !important;
	background-color: var(--theme-color-green) !important;
}

@media (orientation: portrait) {
	.col-mobile-menu {
		justify-content: center;
	}
}

.mobile-menu-button.mobile-menu-button-close {
	padding: 8px;
	transform: translateX(0);
}

.mobile-menu-button.mobile-menu-button-close span {
	position: absolute;
	width: 30px;
	height: 3px;
	top: 18px;
	left: 5px;
	background-color: var(--theme-color);
}

.mobile-menu-button.mobile-menu-button-close .first {
	transform: rotate(45deg);
}

.mobile-menu-button.mobile-menu-button-close .third {
	transform: rotate(-45deg);
}

.mobile-menu-button.mobile-menu-button-close .second {
	display: none;
}

.mobile-menu-container .nav-link {
	color: var(--theme-color) !important;
}

.mobile-menu-container .menu-main .nav-link {
	font-size: 1.25rem;
}

.mobile-menu-container .menu-header .nav-link {
	font-size: 18px;
	line-height: 1.5;
}
@media (max-height: 700px) {
	.col-mobile-menu {
		gap: 1.5rem;
	}
	.mobile-menu-container .menu-main .nav-link {
		padding: 0.25rem 1rem;
	}
}

/* .mobile-menu-container .nav-link.active span,
.icms-frontpage .mobile-menu-container .li-home .nav-link span {
    display: inline-block;
    padding-bottom: 1px;
    border-bottom: 2px solid rgba(255, 255, 255, .75);
} */

.mobile-menu-container .social-link {
	margin: 0 6px !important;
	color: #615a7d;
}

.icms-header__top a {
	color: var(--theme-color);
}
.icms-header__top #target-notices a:hover {
	color: #fff;
}

.icms-header__top .icms-user-menu__nickname.dropdown-toggle {
	cursor: pointer;
}

.icms-header__top .nav-item:hover a,
.icms-header__top a.active,
.icms-header__top .icms-user-menu__nickname.dropdown-toggle:hover,
.icms-header__top .nav-item:has(.active) > a {
	color: var(--theme-color-dark);
}

.icms-header__top .navbar-nav.icms-navbar-expanded:not(.flex-column) .nav-item:not(:first-child) {
	padding-left: 1.5rem;
}

.icms-header__top .navbar-nav.icms-navbar-expanded:not(.flex-column) .nav-item .nav-link {
	padding-left: 0;
}

.icms-header__top .avatar_nickname + .dropdown {
	margin-left: 1rem;
}

.icms-header__top .menu-header .nav-link.active {
	font-weight: 600 !important;
}
.mobile-menu-container .menu-main .li-home {
	order: -1;
}
@media (min-width: 992px) {
	.mobile-sticky {
		position: static;
		box-shadow: none;
		border-width: 0;
		padding-top: 0;
		padding-bottom: 0;
		transition: padding-top 0.3s;
	}
	.mobile-sticky.for_shadow {
		padding-top: 10px;
	}

	.icms-header__middle .navbar-expand-lg .navbar-nav.menu-main .nav-item {
		padding: 0;
	}
	.icms-header__middle .navbar-expand-lg .navbar-nav.menu-main .dropdown-item.active,
	.icms-header__middle .navbar-expand-lg .navbar-nav.menu-main .dropdown-item:active {
		background-color: var(--theme-color) !important;
	}
	.icms-header__middle .navbar-expand-lg .navbar-nav.menu-main > .nav-item {
		font-size: 17px;
		line-height: 20px;
	}
	.icms-header__middle .navbar-expand-lg .navbar-nav.menu-main > .nav-item.nav-item_for-tel-sep {
		pointer-events: none;
	}
	.icms-header__middle .navbar-expand-lg .navbar-nav.menu-main > .nav-item.nav-item_for-tel-sep .nav-link {
		color: #babad6 !important;
		font-weight: 500;
	}

	.icms-header__middle .navbar-expand-lg .navbar-nav.menu-main .nav-link {
		padding: 8px 0;
		font-weight: 600;
	}

	.icms-header__middle .navbar-expand-lg .navbar-nav.menu-main > .nav-item.dropdown > .nav-link.dropdown-toggle svg {
		transition: 0.3s;
	}
	.icms-header__middle
		.navbar-expand-lg
		.navbar-nav.menu-main
		> .nav-item.dropdown:hover
		> .nav-link.dropdown-toggle
		svg {
		transform: rotateX(180deg);
	}

	.icms-header__middle .navbar-expand-lg .navbar-nav.menu-main .nav-item.active span {
		color: var(--theme-color);
	}
	.icms-header__top {
		height: 40px;
		display: flex;
		align-items: center;
	}
	.body-for-logged .icms-header__top {
		height: 34px;
		padding-bottom: 2px;
	}
	.body-for-logged .icms-header__top + .icms-header__middle {
		margin-top: 6px;
	}
	.icms-header__top .dropdown .btn {
		padding-top: 0;
		padding-bottom: 0;
	}
	.body-for-logged .icms-header__top .icms-user-menu__nickname.dropdown-toggle::after {
		vertical-align: middle;
		border-top: 0em transparent;
		border-right: 0em transparent;
		border-bottom: 0em transparent;
		border-left: 0em transparent;
		background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAsAAAAHCAYAAADebrddAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAAYdEVYdFNvZnR3YXJlAFBhaW50Lk5FVCB2My4yMreRF30AAAB+SURBVChTY/j///9kIF7EgAMA5USB+BIQe4M4mUAMAjOh8nAAFBMC4vNA/AGIDWCCRUAMAr1gASAAsvmB+CQQfwZiS6gwBAAF6oAYBBqBmBOIDwPxNyC2hypBBUCJdiAGgXtA/BOIXaFS2AFQwQSoQj+oEH4AVKgFZSIBBgYAH858pQTP/FYAAAAASUVORK5CYII=");
		background-size: contain;
		width: 11px;
		height: 7px;
		transition: 0.3s;
	}
	.body-for-logged .icms-header__top .icms-user-menu__nickname.dropdown-toggle:hover::after {
		opacity: 0.7;
	}
	.body-for-logged .icms-header__top .show .icms-user-menu__nickname.dropdown-toggle::after {
		transform: rotateX(180deg);
	}
	.body-for-logged .icms-header__top {
		background-color: var(--theme-color);
		color: #fff;
	}
	.body-for-logged .icms-header__top .icms-user-menu__nickname.dropdown-toggle > .d-inline-block::before {
		content: "Welcome ";
	}
	.body-for-logged .icms-header__top .icms-user-menu__nickname.dropdown-toggle:hover {
		color: #c9c8ca;
	}
}
.menu-main .dropdown-menu {
	padding: 2px;
	overflow: hidden;
	border-radius: 8px;
	border: 1px solid #d9dbde;
	background-color: #fff;
	box-shadow:
		0 6px 16px 0 rgba(0, 0, 0, 0.08),
		0 3px 6px -4px rgba(0, 0, 0, 0.12),
		0 9px 28px 8px rgba(0, 0, 0, 0.05);
	min-width: 280px;
}
.menu-main .dropdown-menu > .nav-item + .nav-item {
	border-top: 1px solid #fff;
}
.menu-main .dropdown-menu .dropdown-item {
	padding: 16px 8px;
	border-radius: 8px;
}
.menu-main .dropdown-menu .dropdown-item.active {
	background-color: var(--theme-color);
	color: #fff;
}
.menu-main .dropdown-item:not(.active):hover,
.menu-main .dropdown-item:not(.active):focus {
	color: var(--theme-color);
	background-color: #f2f3f4;
}

/* ############ SEARCH ROW ############################################################ */
.search-row {
	background-color: #ffffff;
	/* padding: 8px 0 18px; */
	padding: 8px 0;
	margin-top: 15px;
	/* box-shadow: 0 10px 10px rgba(0, 0, 0, 0.125); */
	transition: 0.3s;
}
.icms-frontpage .search-row,
.wds-about-page .search-row,
.wds-pgh-page .search-row {
	box-shadow: 0 10px 10px rgba(0, 0, 0, 0);
}
.search-row.is_shadow {
	padding: 0.5rem 0;
	box-shadow: 0 10px 10px rgba(0, 0, 0, 0.15);
}

.search-row.is_shadow .green-button {
	padding: 7px 15px;
	/* font-size: 1rem; */
}
.search-row::after {
	content: "";
	position: absolute;
	top: 100%;
	width: 100%;
	height: 1px;
	background: rgba(0, 0, 0, 0);
}

.search-row.is_shadow::after {
	background: rgba(0, 0, 0, 0.035);
}
/* ############ FOOTER ############################################################ */
body .icms-footer__middle {
	font-size: 0.875rem;
	background-color: var(--theme-light-gray-2);
	color: var(--theme-color);
}

.icms-footer__middle .icms-widget__compact > .card-header {
	color: var(--theme-color);
	position: relative;
	font-size: 1.375rem;
	font-weight: 600;
}

.for-contacts .card-header,
.for-links .card-header {
	padding-bottom: 16px;
	margin-bottom: 38px;
}

.for-contacts .card-header::after,
.for-links .card-header::after {
	content: "";
	height: 2px;
	background-color: var(--theme-color-green);
	width: 50px;
	position: absolute;
	bottom: 0;
}
.icms-footer__middle .for-contacts .card-header a:hover {
	color: var(--theme-color-green) !important;
	text-decoration: none;
}
.icms-footer__middle .nav-item + .nav-item {
	margin-top: 0.25rem;
}

.icms-footer__middle .nav-link {
	color: var(--theme-color);
	display: inline-block;
	line-height: 1.3;
	padding: 0 0 0.1rem;
	border-bottom: 1px solid transparent;
}

.icms-footer__middle .nav-link:hover,
.icms-footer__middle .nav-link.active {
	color: var(--theme-color-dark);
	/* border-bottom: 1px solid currentColor; */
}

.footer-social {
	margin-top: 28px;
}

.footer-social .social-link {
	width: 28px;
	height: 28px;
}

.footer-top {
	background-color: var(--theme-light-gray-2);
}

.footer-mobile {
	padding-bottom: 30px;
}

.footer-mobile,
.footer-mobile p:last-child {
	padding-top: 0.5rem;
}
body .icms-footer__bottom {
	background-color: var(--theme-color);
	color: var(--theme-color-light-extra);
}
.copyright-text {
	font-size: 10px;
}

.copyright-text a {
	color: currentColor;
	position: relative;
	display: inline-block;
	text-decoration: none;
}
.copyright-text a::after {
	content: "";
	height: 1px;
	background-color: currentColor;
	position: absolute;
	bottom: 2px;
	left: 0;
	width: 100%;
	transition: 0.3s;
}
.copyright-text a:hover {
	color: #fff;
	text-decoration: none;
}

.footer-top .social-link {
	margin: 0 6px;
}

.icms-footer__middle .icms-widget__compact .h5.card-header {
	font-size: 22px;
}

.icms-widget__compact.footer-left-text .h5.card-header {
	margin-bottom: 0.75rem;
}
@media (min-width: 992px) {
	.body-for-logged .footer-left-text .footer-left-text-hint + p.d-none.d-lg-block {
		display: none !important;
	}
}
@media (min-width: 1200px) {
	.footer-left-text-hint {
		max-width: 440px;
	}

	.foot-about-us-text {
		padding-top: 15px;
	}

	.footer-social {
		margin-top: 37px;
	}

	.icms-footer__middle .for-links .nav-item + .nav-item {
		margin-top: 0.5rem;
	}
	.icms-footer__middle .for-accessibility-link {
		padding-top: 21px;
	}
	.body-for-logged .icms-footer__middle .for-accessibility-link {
		padding-top: 48px;
	}
}

body #scroll-top {
	display: inline-flex;
	justify-content: center;
	align-items: center;
	padding: 0;
	width: 58px;
	height: 58px;
	right: 98px;
	bottom: 20px;
	border-radius: 50%;
	background-color: var(--theme-color-green);
	border-color: var(--theme-color-green);
}

body #scroll-top:hover {
	background-color: var(--theme-color-green-dark);
	border-color: var(--theme-color-green-dark);
}
body #scroll-top {
	background-image: url("../images/arrow-up.png");
	background-repeat: no-repeat;
	background-position: center center;
}
body #scroll-top .icms-svg-icon {
	height: 1.1em;
	width: 1.1em;
	opacity: 0;
}
@media (max-width: 380px) {
	body #scroll-top {
		width: 46.4px;
		height: 46.4px;
		right: 76.4px;
		bottom: 15px;
	}
}

/* ############ FAQ LIST ############################################################ */
.faq-page .faq-list-container {
	margin-top: 15px;
}
.faq-page .icms-footer__middle {
	margin-top: 115px !important;
}
.faq-list .faq-list-title {
	margin-bottom: 40px;
}

.faq-list .faq-item + .faq-item {
	margin-top: 15px;
}

.faq-item h3.faq-question {
	font-size: 1rem;
	font-weight: 500;
	margin: 0;
}

.faq-item h3.faq-question a {
	color: currentColor;
	padding: 15px 45px 15px 15px;
	background-color: #ffffff;
	border: 1px solid #bebebe;
	border-radius: 4px;
	position: relative;
}

.faq-item h3.faq-question a:hover {
	color: currentColor;
	text-decoration: none;
}

.faq-item h3.faq-question a::after {
	content: "";
	width: 17px;
	height: 10px;
	/* background: url("../images/gnanow/icons/angle-down.png") center; */
	background: url("../images/gnanow/icons/angle-down.svg") center;
	position: absolute;
	top: calc(50% - 8px);
	right: 15px;
	transition: 0.3s;
}

.faq-item h3.faq-question a.active::after {
	transform: rotateX(180deg);
}

.faq-answer {
	padding: 1rem;
	font-size: 0.875rem;
	color: #4d4960;
}

@media (min-width: 992px) {
	.faq-list .faq-item + .faq-item {
		margin-top: 30px;
	}

	.faq-item h3.faq-question {
		font-size: 1.25rem;
	}

	.faq-item h3.faq-question a {
		padding: 30px 60px 30px 30px;
	}

	.faq-item h3.faq-question a::after {
		right: 30px;
	}

	.faq-answer {
		padding: 2.5rem;
		font-size: 1.125rem;
	}

	.faq-answer p + p {
		margin-top: 2rem;
	}
}
@media (min-width: 1366px) {
	.faq-list .faq-list-title {
		font-size: 40px;
	}
}
.find-help-page .fh-m-container {
	margin-bottom: 0;
}
/* ############ WD Get the Health Care desktop ############################################################ */
.get-health-care {
	position: relative;
	overflow-x: hidden;
}

/* .get-health-care::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 25%;
    background: linear-gradient(to top, rgba(92, 87, 110, 0.2) 0%, rgba(0, 0, 0, 0) 100%);
} */

.get-health-care-content {
	max-width: 1300px;
	margin: 0 auto;
	padding: 0 30px;
	display: flex;
	justify-content: space-between;
}

.get-health-care-text {
	margin-top: 6%;
}

.get-health-care-text .hipa {
	font-size: 18px;
	line-height: 28px;
	font-weight: 400;
	margin-top: 10px;
	padding-bottom: 4px;
}

.get-health-care-img {
	position: relative;
	flex: 0 0 470px;
	transform: translateX(8px);
}

.play-button-d {
	position: absolute;
	width: 160px;
	height: 160px;
	border-radius: 50%;
	left: 0%;
	top: 32%;
}
/* .ghc-buttons.ghc-buttons_new {
	display: flex;
	flex-direction: column;
} */
.ghc-buttons .green-button.green-button-xl {
	display: inline-flex !important;
	justify-content: center;
	align-items: center;
	/* width: 185px; */
	width: 297px;
	height: 53px;
}
.ghc-buttons .home-support-center-link {
	color: var(--theme-color);
	display: inline-block;
	padding-left: 11px;
	font-size: 14px;
}
.ghc-buttons .home-support-center-link .home-support-center-link__bold {
	font-weight: 600;
}
@media (min-width: 982px) {
	.ghc-buttons.ghc-buttons_new {
		margin-top: 16px;
	}
	.ghc-buttons .home-support-center-link {
		color: var(--theme-color);
		display: block;
		padding-left: 3px;
		padding-top: 12px;
		line-height: 1.1;
		font-size: 14px;
	}
	.home-support-center-link__for-tel {
		padding-top: 5px;
	}
	.ghc-buttons .green-button.green-button-xl {
		width: 211px;
		height: 53px;
		font-size: 18px !important;
		background-color: var(--theme-color);
		border: 2px solid var(--theme-color);
	}
	.ghc-buttons .green-button.green-button-xl + .green-button.green-button-xl {
		margin-left: 10px;
		width: 199px;
		background-color: #fff;
		border-color: #d6d6e7;
		color: var(--theme-color);
	}
	.ghc-buttons .green-button.green-button-xl:hover,
	.ghc-buttons .green-button.green-button-xl:active {
		background-color: var(--theme-color-green) !important;
		border-color: var(--theme-color-green) !important;
		color: #fff !important;
	}
	.ghc-buttons .home-support-center-link .home-support-center-link__bold {
		text-transform: uppercase;
	}
	.ghc-buttons .home-support-center-link .home-support-center-link__link {
		display: inline-block;
		border-bottom: 1px solid currentColor;
		font-weight: 600;
	}
	.ghc-buttons .home-support-center-link .home-support-center-link__link:hover,
	.ghc-buttons .home-support-center-link .home-support-center-link__link:active {
		text-decoration: none;
	}
}
@media (min-width: 1200px) {
	.mb-0.get-health-care-title {
		font-size: 50px;
		line-height: 55px;
		margin-top: 10px;
	}
}
@media (min-width: 1366px) {
	.mb-0.get-health-care-title {
		font-size: 64px;
		line-height: 70px;
		margin-top: 10px;
	}
	.get-health-care-text .hipa span {
		display: block;
	}
}
#get-health-care-m.get-health-care-m_new .ghc-m-buttons {
	align-items: stretch;
	padding-left: 12px;
	padding-top: 20px;
}
.get-health-care-m_new .get-health-care-m-content__h1,
.get-health-care-m_new .get-health-care-m-content__hipa {
	padding-left: 12px;
}
.get-health-care-m.get-health-care-m_new .for-ghc-m-buttons {
	gap: 12px;
	justify-content: space-around;
	padding-right: 12px;
	flex-direction: column;
}
.ghc-m-buttons .for-home-support-center-link {
	margin-top: 24px;
	line-height: 1.5;
	padding-right: 12px;
	padding-left: 16px;
	position: relative;
}
.ghc-m-buttons .for-home-support-center-link::before {
	content: "";
	background-color: var(--theme-color-green);
	width: 2px;
	position: absolute;
	left: 0;
	top: 6px;
	bottom: 1px;
}
.ghc-m-buttons .for-home-support-center-link div + div {
	margin-top: 16px;
}
.ghc-m-buttons .home-support-center-link {
	color: var(--theme-color);
	display: block;
	font-size: 11px;
	text-decoration: none !important;
}
.home-support-center-link__link {
	font-weight: 600;
	color: #4d63ac;
	border-bottom: 1px solid currentColor;
}
.ghc-m-buttons .home-support-center-link + .home-support-center-link {
	margin-top: 3px;
}
.ghc-m-buttons .home-support-center-link .home-support-center-link__bold {
	font-weight: 600;
}
#get-health-care-m.get-health-care-m_new .to-learn-more-m {
	margin-top: 9px;
}
.home-support-center-link-m_a {
	text-decoration: underline;
}
.home-support-center-link-m_tel {
	color: inherit;
}
/* @media (min-width: 360px) {
	.get-health-care-m.get-health-care-m_new .for-ghc-m-buttons .green-button {
		width: 219px;
	}
} */
@media (min-width: 375px) {
	/* .get-health-care-m.get-health-care-m_new .for-ghc-m-buttons {
		flex-direction: row;
	} */
	/* .get-health-care-m.get-health-care-m_new .for-ghc-m-buttons .green-button {
		width: 125px;
		height: 38px !important;
	} */
	.ghc-m-buttons .home-support-center-link {
		font-size: 14px;
	}
	#get-health-care-m.get-health-care-m_new .to-learn-more-m {
		margin-top: 47px;
	}
}
@media (min-width: 428px) {
	#get-health-care-m.get-health-care-m_new .to-learn-more-m {
		margin-top: 56px;
	}
}

@media (min-width: 1200px) {
	.get-health-care-title span {
		display: block;
	}
}

@media (min-width: 1366px) {
	.get-health-care-text h1 {
		font-size: 53px;
		margin-top: -17px !important;
	}
}

/* ############ WD Get the Health Care mobile ############################################################ */
.to-learn-more-parent {
	display: flex;
	justify-content: space-between;
	align-items: center;
	position: relative;
	margin-top: 8px;
	padding-right: 4px;
}
#get-health-care-m.get-health-care-m_new .to-learn-more-m {
	margin-top: 0 !important;
}
.get-health-care-m {
	position: relative;
}

.get-health-care-m::before {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	height: 25%;
	background: linear-gradient(to top, rgba(92, 87, 110, 0.15) 0%, rgba(0, 0, 0, 0) 100%);
}

.get-health-care-m-content {
	padding: 15px 5px 0;
	min-height: 449px;
	margin: 0 auto;
	position: relative;
	max-width: 390px;
}

.get-health-care-m h1 {
	font-size: 1.625rem;
	font-weight: 600;
	line-height: 1.05;
	margin-top: 10px;
	margin-bottom: 10px;
}

.get-health-care-m h1 span,
.to-learn-more-m span {
	display: block;
}
.get-health-care-m h1 + .hipa {
	line-height: 1.5;
}

.to-learn-more-m {
	margin-top: 0;
	padding-left: 8px;
	font-size: 17px;
	line-height: 22px;
}

.to-learn-more-m span:first-child {
	text-transform: uppercase;
	font-weight: 600;
}
.get-health-care-m.get-health-care-m_new_20260407 .green-button {
	height: 53px !important;
	font-size: 18px;
	width: 100%;
	border-radius: 8px;
	text-transform: none;
}
.get-health-care-m_new_20260407 .green-button.green-button_bordered {
	border-color: #6b6293;
}
.get-health-care-m_new_20260407 .green-button.green-button_bordered:hover,
.get-health-care-m_new_20260407 .green-button.green-button_bordered:active {
	border-color: var(--theme-color-green);
}
.get-health-care-title-hint-m {
	font-size: 22px;
	line-height: 24px;
	margin: 16px 0 20px 12px;
}
.get-health-care-m_new .get-health-care-m-content__hipa {
	line-height: 1.5;
}
.play-button-m {
	position: absolute;
	width: 80px;
	height: 80px;
	/* background: url("../images/gnanow/home/mobile/play-button-bg.png") no-repeat center / contain; */
	border-radius: 50%;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
}
@media (min-width: 360px) {
	.get-health-care-m h1 {
		font-size: 30px;
	}
	.to-learn-more-m {
		padding-left: 16px;
	}
	.get-health-care-m_new_20260407 .get-health-care-m .green-button {
		font-size: 18px !important;
	}
	.ghc-m-buttons {
		padding-top: 12px;
	}
}

@media (min-width: 375px) {
	.get-health-care-m h1 {
		font-size: 32px;
	}
	.get-health-care-m h1 + .hipa span {
		display: block;
	}
	.ghc-m-buttons {
		padding-top: 7px;
	}
	.to-learn-more-m {
		padding-left: 15px;
		margin-top: 53px;
	}
}
@media (min-width: 384px) {
	.to-learn-more-m {
		padding-left: 23px;
	}
}
/* ################# 20251125 ################################## */
@media (min-width: 390px) {
	.get-health-care-m h1 {
		font-size: 35px;
		line-height: 40px;
	}
	.get-health-care-m.get-health-care-m_new .for-ghc-m-buttons {
		gap: 12px;
	}
}

@media (min-width: 412px) {
	/* .to-learn-more-m {
        padding-left: 15px;
		margin-top: 40px;
    }
    .get-health-care-m .hipa {
		font-size: 19.58px;
		transform: translate(2px, 3px);
    }

    .get-health-care-m h1 {
		font-size: 32.71px;
		line-height: 1.180;
    }
	.get-health-care-m h1 span {
		transform: translateX(-5px);
	}
	.ghc-m-buttons {
		padding-top: 0;
	}
	.get-health-care-m .green-button {
		width: 170px;
		height: 50px;
		font-size: 20px;
		transform: translateY(-6px);
	} */
	/* .get-health-care-m .play-button-m {
		width: 110px;
		height: 110px;
		transform: translate(-43%, -11px);
	}

    .to-learn-more-m {
        font-size: 1.125rem;
    } */
}
@media (min-width: 428px) {
	.get-health-care-m .green-button {
		width: 190px;
	}
	.to-learn-more-m {
		padding-left: 23px;
	}
}
/* ############ WD Select The Type Advocate ############################################################ */
.sta {
	max-width: 1300px;
	margin: 0 auto;
	padding: 80px 30px 0;
	position: relative;
}
.sta_d .sta-hero__title {
	font-size: 40px;
	font-weight: 600;
	line-height: 48px; /* 120% */
}
.sta_d .sta-hero__text {
	line-height: 1.5;
	margin-top: 16px;
	margin-bottom: 32px;
}
.sta-title {
	font-size: 22px;
	/* color: #656262; */
	font-weight: 400;
	margin-bottom: 15px;
}

#sta-Tab {
	height: 320px;
	flex-wrap: nowrap;
	align-items: flex-start;
	border-width: 0;
	gap: 8px;
}

#sta-Tab.nav-tabs .nav-link {
	border-radius: 0;
}

#sta-Tab .nav-item {
	flex: 0 0 calc(20% - 6.4px);
}

#sta-Tab .nav-item .nav-link {
	background-color: #fff;
	/* border: 1.5px solid #d9d8de; */
	border: 1.5px solid #d9d8de;
	border-radius: 8px;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	height: 100%;
	padding: 40px 0;
	transition: all 0.5s ease;
	padding: 24px 18px 40px 22px;
	position: relative;
	min-height: 306px;
}
#sta-Tab .nav-item .nav-link::after {
	content: "";
	background-color: #fff !important;
	border-radius: 5px;
	height: 5px;
	position: absolute;
	bottom: -15px;
	left: 80px;
	right: 80px;
	left: 40px;
	right: 40px;
	transition: all 0.5s ease;
}
#sta-Tab .nav-item .nav-link:hover::after,
#sta-Tab .nav-item .nav-link:active::after,
#sta-Tab .nav-item .nav-link.active::after {
	background-color: #8bca69 !important;
	left: 40px;
	right: 40px;
}
#sta-Tab .nav-item .nav-link.active,
#sta-Tab .nav-item .nav-link.active:hover {
	background-color: #75b055 !important;
	border-color: #5b8b41 !important;
}
#sta-Tab .nav-item .nav-link:hover {
	border-color: #5b8b41 !important;
}
#sta-Tab .nav-item .nav-link.active h3,
#sta-Tab .nav-item .nav-link.active:hover h3,
#sta-Tab .nav-item .nav-link.active p,
#sta-Tab .nav-item .nav-link.active:hover p #sta-Tab .nav-item .nav-link:hover h3 {
	color: #fff !important;
}

/* #sta-Tab .nav-item .nav-link:hover {
    background-color: #b2b7bd;
    transition: all .5s ease;
} */

/* #sta-Tab .nav-item .nav-link.active {
    background-color: var(--theme-color-green);
    transition: all .5s ease;
}

#sta-Tab .nav-item .nav-link.active {
    border-radius: 2px;
    box-shadow: 0 0 7px rgba(0, 0, 0, .3);
    z-index: 6;
    padding: 60px 0;
} */

/* #sta-Tab .nav-item .nav-link::after {
    content: "";
    position: absolute;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
    width: 26px;
    height: 13px;
    overflow: hidden;
    background: url("../images/gnanow/icons/angle-down-white.png") no-repeat center / contain;
    transition: .3s;
    z-index: -1;
} */

/* #sta-Tab .nav-item .nav-link.active::after {
    content: "";
    position: absolute;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 20px;
    background: url("../images/gnanow/icons/animated-arrow-down.gif") no-repeat center / contain;
} */

/* #sta-Tab .nav-item .nav-link.active::after {
    bottom: 18px !important;
    z-index: 7;
}

#sta-Tab .nav-item .nav-link:hover::after {
    z-index: 7;
} */

#sta-Tab.nav-tabs .nav-item .nav-link::before {
	display: none !important;
}

#sta-Tab .nav-item .nav-link .nav-link-content {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	height: 100%;
	padding: 0;
	position: relative;
	gap: 24px;
	color: #5da039;
	transition: color 0.5s ease;
}
#sta-Tab .nav-item .nav-link.active .nav-link-content,
#sta-Tab .nav-item .nav-link.active:hover .nav-link-content {
	color: #fff;
}

/* #sta-Tab .nav-item + .nav-item .nav-link .nav-link-content {
    border-left: 1px solid #d8dbe1;
} */

/* #sta-Tab .nav-item + .nav-item .nav-link.active .nav-link-content,
#sta-Tab .nav-item + .nav-item .nav-link:hover .nav-link-content {
    border-left: 1px solid transparent;
} */

#sta-Tab .nav-item .nav-link img {
	height: 50px;
	transition: all 0.5s ease;
}
#sta-Tab .nav-item .nav-link.active img,
#sta-Tab .nav-item .nav-link:hover img {
	filter: brightness(500%);
}
/* @media(min-width: 1366px) {
	#sta-Tab .nav-item:nth-child(2) .nav-link img {
		margin-left: 8px;
	}
} */
#sta-Tab .nav-item .nav-link h3 {
	color: var(--theme-color);
	font-size: 16px;
	font-weight: 600;
	margin: 0;
}

/* #sta-Tab .nav-item .nav-link.active h3 {
    font-size: 24px;
    margin-top: 24px;
    transition: all .5s ease;
} */

#sta-Tab .nav-item .nav-link p {
	color: #5c656d;
	font-size: 12px;
	margin: 0;
	/* min-height: 80px; */
	line-height: 1.5;
	transition: color 0.5s ease;
}

/* #sta-Tab .nav-item .nav-link.active p {
    font-size: 15px;
    line-height: normal;
} */

/* #sta-Tab .nav-item .nav-link:hover img,
#sta-Tab .nav-item .nav-link.active img {
    filter: brightness(10);
} */

/* #sta-Tab .nav-item .nav-link:hover h3,
#sta-Tab .nav-item .nav-link.active h3,
#sta-Tab .nav-item .nav-link:hover p,
#sta-Tab .nav-item .nav-link.active p {
    color: #ffffff;
} */

.sta-tabs .tab-content {
	margin-top: 64px;
}

#myTabContent .tab-pane-content {
	display: flex;
	gap: 80px;
}

#myTabContent .tab-pane-content > div {
	flex: 0 0 calc(50% - 40px);
}

#myTabContent .tab-pane-content .tab-pane-content-text ul {
	padding: 0;
	margin: 0;
}
@media (min-width: 1440px) {
	#myTabContent .tab-pane-content .tab-pane-content-text ul {
		padding-right: 24px;
	}
}

#myTabContent .tab-pane-content .tab-pane-content-head h4 {
	font-size: 48px;
	line-height: 50px;
}

#myTabContent .tab-pane-content .tab-pane-content-head p {
	font-size: 18px;
	line-height: 26px;
	padding-bottom: 20px;
	padding-top: 4px;
	border-bottom: 1px solid #d9d8de;
}

#myTabContent .tab-pane-content .tab-pane-content-content {
	margin-top: 25px;
}

#myTabContent .tab-pane-content .tab-pane-content-content p {
	font-size: 16px;
	font-weight: 600;
	line-height: 24px;
	margin-bottom: 12px;
}

#myTabContent .tab-pane-content .tab-pane-content-content li {
	list-style: none;
	line-height: 1.5;
	padding-left: 26px;
	background: url("../images/check-green-n.svg") no-repeat left 6px;
}
#myTabContent .tab-pane-content .tab-pane-content-content li + li {
	margin-top: 12px;
}
#myTabContent .input-replacement {
	height: 53px;
	padding: 0 20px;
	border: 1px solid #a8a7aa;
	display: flex;
	align-items: center;
	border-radius: 4px;
	font-family: "Inter", sans-serif;
	color: #a8a7aa;
	font-size: 13px;
}
#myTabContent .input-replacement span span {
	font-weight: 700;
}
#myTabContent .search-section form input.pac-target-input {
	background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAA8AAAASCAYAAACEnoQPAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAAYdEVYdFNvZnR3YXJlAFBhaW50Lk5FVCB2My4yMreRF30AAAGBSURBVDhPjZPRR4NhFIfHGBEjRkREV13tKrrLiK5GtyMiYsSIiDEioquIiF2N/QExuoqI6A+I3UZERERE1PO8nX1LS/Xj8b3nd87e9zvn/Zb7qqXF2jhswyW8wjtcwx5MRNmoSM7DHTxBGzaCQ7gH/WqUD4VZhhc4g1LYmfDGwA3fYLgBQR764A/zYf8o8m7gG3y2wGIVPHUqGSi8C7D3LSiEXwBb2x8U9qCbAsR6ExyUfgcc3FGkze9AfxA8wHqsbeERWimJWK+AvU5GvABuXjRwkYbAczrisrFi7fXpVSKeiXjGwAGsRcKp+prpTRTrwUlzEXulxiUDh3KcKpFreIZdaIBt9CJt3pncDgKnmY2fpxM9Afv0LbpQjJwzuYG2sYY9ObROMn4RNS1ww9mwkrkMntQMa0TkamCvjbCGwqxHsh5WJrwquHl23yMi2QQ3qIWlVwG/wD/bsvgA7MvTvBaHeQq/fveZKPQP4GkO8hzSt/0vUeyVeEVXMBb2N+VyH7DS0ya8BoGLAAAAAElFTkSuQmCC");
	background-color: #ebf0f6;
	border-color: #45405a !important;
	outline: 1px solid #a09cac;
	color: #45405a !important;
}
#myTabContent .search-section form input.pac-target-input.form-control::placeholder {
	color: #45405a !important;
}
@media (min-width: 1024px) {
	#myTabContent .input-replacement {
		font-size: 14px;
	}
}
@media (min-width: 1200px) {
	#sta-Tab .nav-item .nav-link h3 {
		font-size: 18px;
		line-height: 26px;
		font-weight: 600;
		transition: all 0.5s ease;
	}

	#sta-Tab .nav-item .nav-link p {
		font-size: 16px;
		line-height: 1.5;
		margin-top: -8px;
	}
	/* #sta-Tab .nav-item .nav-link.active p {
        font-size: 15px;
    } */
}

@media (min-width: 1449.999px) {
	#myTabContent .input-replacement {
		font-size: 16px;
	}
}
@media (min-width: 1800px) {
	/* .get-health-care-img img {
        transform: translateX(28px);
    } */

	#myTabContent .tab-pane-content .tab-pane-content-content li + li {
		margin-top: 0.5rem;
	}
}

.tab-pane-content-video .fh-m-img,
.fh-m-list .fh-m-img {
	position: relative;
}
.tab-pane-content-video .fh-m-img img {
	display: block;
	box-shadow: 0 0 1px 0 rgba(178, 183, 189, 0.932) inset;
	border-radius: 8px;
}

.fh-m-img__video {
	position: absolute;
	left: 25px;
	right: 25px;
	bottom: 20px;
	height: 80px;
}
.fh-m-img__video-button {
	width: 80px;
	height: 80px;
	background-color: #8bca69;
	border-radius: 50%;
	padding-left: 7px;
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	transition: 0.3s;
	z-index: 2;
}
.fh-m-img:hover .fh-m-img__video-button,
.fh-m-img:active .fh-m-img__video-button {
	background-color: var(--theme-color);
}
.fh-m-img .fh-m-img__video-button svg {
	transition: 0.3s;
}
.fh-m-img:hover .fh-m-img__video-button svg,
.fh-m-img:active .fh-m-img__video-button svg {
	transform: scale(0.9);
}
.fh-m-img__video-t-l {
	background-color: #fff;
	border-radius: 200px;
	width: 100%;
	padding: 6px 56px;
	position: relative;
	height: 62px;
}
.fh-m-img__video-title {
	color: var(--theme-color);
	text-align: center;
	font-size: 18px;
	font-weight: 600;
	line-height: 24px;
	padding-left: 23px;
	transition: 0.3s;
}
/* .fh-m-img:hover .fh-m-img__video-title,
.fh-m-img:active .fh-m-img__video-title {
    color: var(--theme-color-green);
} */
.fh-m-img__video-logo {
	width: 50px;
	height: 50px;
	border-radius: 50%;
	position: absolute;
	right: 6px;
	top: 50%;
	transform: translateY(-50%);
}
@media (max-width: 991.99px) {
	.fh-m-list .fh-m-img__video {
		left: 5px;
		right: 5px;
		bottom: 5px;
		height: 48px;
	}
	.fh-m-list .fh-m-img__video-button {
		width: 48px;
		height: 48px;
		border-radius: 50%;
		padding-left: 3px;
	}
	.fh-m-list .fh-m-img__video-t-l {
		border-radius: 120px;
		padding: 4px 35px;
		height: 42px;
	}
	.fh-m-list .fh-m-img__video-title {
		font-size: 14px;
		line-height: 16px;
		padding: 0 28px;
	}
	.fh-m-list .fh-m-img__video-logo {
		width: 31px;
		height: 31px;
		right: 4px;
	}
}
@media (max-width: 376px) {
	.fh-m-list .fh-m-img__video-title {
		font-size: 13px;
		line-height: 15px;
	}
}
@media (max-width: 360px) {
	.fh-m-list .fh-m-img__video-title {
		font-size: 12px;
		line-height: 14px;
	}
}
/* ############ BLOGS ITEM ############################################################### */
.blogs_list_item .ft_html,
.blogs_item .ft_html {
	font-size: 1.125rem;
}

.blogs_list_item .f_title h3 {
	font-size: 2.5rem;
}

.blogs_list_item .f_photo .value a,
.blogs_item .f_photo .value a {
	display: block;
}

.blog_info_social {
	border-bottom: 1px solid #b9b9bb;
}
@media (max-width: 575.99px) {
	.blog_info_social .info {
		font-size: 13px;
	}
}
.blog_info_social .sep {
	padding-left: 0.5rem;
	padding-right: 0.5rem;
}

.blog_info_social a,
.blog_info_social button {
	color: currentColor;
	border-width: 0;
	background-color: transparent !important;
}

.blog_info_social .social a,
.blog_info_social .social button {
	width: 30px;
	height: 30px;
	margin-left: 0.7rem;
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
	opacity: 0.9;
	transition: 0.3s;
}

.blog_info_social .social a:hover,
.blog_info_social .social button:hover {
	transform: translateY(-2px);
	opacity: 1;
}

.blog_info_social .social .bis-facebook {
	background-image: url("../images/gnanow/icons/social/facebook.png");
}

.blog_info_social .social .bis-twitter {
	background-image: url("../images/gnanow/icons/social/twitter.png");
}

.blog_info_social .social .bis-linkedin {
	background-image: url("../images/gnanow/icons/social/linkedin.png");
}

.blog_info_social .social .bis-viber {
	background-image: url("../images/gnanow/icons/social/viber.png");
}
.blog_info_social .social .button-copy-link {
	background-image: url("../images/gnanow/icons/social/share.png");
	border-radius: 8px;
}

.blogs_item .item-photo a,
.blogs_item .item-photo img {
	display: block;
}

.blogs_item .item-photo a {
	max-height: 435px;
	overflow: hidden;
}

.blogs_item .item-photo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* .blogs_item .ft_html blockquote {
    margin: 1.5rem 0;
    padding: 1.5rem 1%;
    background-color: #ffffff;
    border-width: 0;
	position: relative;
	text-align: center;
    font-weight: var(--fw-600);
    font-style: italic;
    line-height: 1.3;
}

.blogs_item .ft_html blockquote::before {
    content: "";
}

.blogs_item .ft_html blockquote::before,
.blogs_item .ft_html blockquote::after {
    content: "";
    position: absolute;
    left: 50%;
    width: 50%;
    transform: translateX(-50%);
    height: 1px;
    background-color: #acabae;
}

.blogs_item .ft_html blockquote::before {
    top: 0;
}

.blogs_item .ft_html blockquote::after {
    bottom: 0;
} */

.blogs_item .ft_html h1,
.blogs_item .ft_html h2,
.blogs_item .ft_html h3,
.blogs_item .ft_html h4,
.blogs_item .ft_html .h1,
.blogs_item .ft_html .h2,
.blogs_item .ft_html .h3,
.blogs_item .ft_html .h4,
.blogs_item .ft_html p {
	margin-bottom: 2rem;
}

.blogs_item .ft_html b,
.blogs_item .ft_html strong {
	font-weight: var(--fw-600);
}

.blogs_list .blogs_list_item + .blogs_list_item {
	margin-top: 3.5rem;
}

.blogs_list .blogs_list_item .f_content {
	color: #6f6b7f;
}
.content_list_aside .item-title a:hover,
.blogs_list_item h2 a:hover {
	color: #6f6b7f !important;
	color: var(--theme-color-green) !important;
}
/* @media (min-width: 576px) {
	.blogs_item .ft_html blockquote {
		padding: 1.5rem 3%;
	}
}
@media (min-width: 992px) {
	.blogs_item .ft_html blockquote {
		margin: 2rem 0;
		padding: 2rem 5%;
		font-size: 20px;
	}
} */
@media (min-width: 1200px) {
	.blog_info_social {
		height: 70px;
	}
	/* .blogs_item .item-photo,
	.blogs_item .item-photo a {
	  height: 435px;
	  overflow: hidden;
	} */
	.blogs_item .item-photo img .blogs_item .item-photo a img {
		width: 100%;
		/* height: 100%;
	  object-fit: cover; */
	}
	/* .blogs_item .ft_html blockquote {
		padding: 2rem 7.5%;
		font-size: 30px;
	} */
}

/* ############ WD BLOG LIST ############################################################ */
.blog-title-row h3 {
	text-align: center;
}
.blog-title-row .form-control {
	width: calc(100vw - 60px);
}
.search-content-blogs .form-control {
	border-radius: 0.25rem !important;
}
.search-content-blogs .form-control:hover,
.search-content-blogs .form-control:focus {
	border: 1px solid #45405a;
	outline: 1px solid #a09cac;
	background-color: #ebf0f6;
	box-shadow: none;
}
.search-content-blogs .input-group-append .btn {
	color: #656178;
	background: url("../images/loupe.png") no-repeat center;
}
.search-content-blogs .input-group-append .btn:hover {
	opacity: 0.85;
}
.search-content-blogs .input-group-append .btn svg {
	opacity: 0;
}
@media (min-width: 444px) {
	.blog-title-row .search-content-blogs {
		width: 380px;
	}
}
@media (min-width: 768px) {
	.blog-title-row .search-content-blogs {
		width: calc(100vw - 60px);
	}
}
@media (min-width: 992px) {
	.blog-title-home {
		padding: 22px 0;
	}
	.blog-title-row .form-control {
		width: 280px;
	}
}
@media (min-width: 1280px) {
	.blog-title-row .form-control {
		width: 455px;
	}
	.input-group.search-content.search-content-blogs {
		padding: 1px;
	}
	.input-group.search-content.search-content-blogs .form-control:focus::placeholder {
		color: var(--theme-color);
	}
}
.wd-blog-list-item {
	padding: 1.75rem 1.5rem 2.5rem;
	background-color: #fff;
	border: 1px solid #a8a7aa;
	outline: 0 solid var(--theme-color-green);
	border-radius: 0.25rem;
	margin: 0 auto 2rem;
	max-width: 380px;
	position: relative;
	transition: 0.3s;
}

.wd-blog-list-item:hover {
	border-color: var(--theme-color-green);
	box-shadow: 0 0 7px rgba(0, 0, 0, 0.1);
}
.wd-blog-list-item::before {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	border: 1px solid #fff;
	border-radius: 0.25rem;
	transition: 0.3s;
}
.wd-blog-list-item:hover::before {
	border-color: var(--theme-color-green);
}

.wd-blog-list-item .item-photo {
	border-radius: 0.25rem 0.25rem 0 0;
	overflow: hidden;
}

.wd-blog-list-item .item-photo img {
	display: block;
	border-radius: 0.1rem;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: 0.5s;
}

.wd-blog-list-item:hover .item-photo img {
	transform: scale(1.17, 1.2) translateY(-0.5rem);
}

.wd-blog-list-item .item-info_bar {
	position: relative;
}
.wd-blog-list-item .item-info_bar .bi_user {
	position: relative;
	z-index: 5;
}

.wd-blog-list-item .item-info_bar .bi_date_pub {
	font-size: 0.75rem;
	color: #949498;
	font-weight: var(--fw-500);
}

.wd-blog-list-item .item-info_bar .bi_user a {
	color: var(--theme-color);
	font-weight: var(--fw-500);
}

.wd-blog-list-item .item-title {
	font-size: 1.5rem;
	font-weight: var(--fw-600);
}

.wd-blog-list-item:hover .item-title a {
	color: var(--theme-color-dark);
	text-decoration: underline;
}

@media (min-width: 768px) {
	.wd-blog-list {
		display: flex;
		flex-wrap: wrap;
		justify-content: space-between;
	}

	.wd-blog-list-item {
		display: inline-flex;
		flex-direction: column;
		margin: 0 0 2rem;
		flex: 0 0 48%;
	}
}

@media (min-width: 992px) {
	.blog-title-row h3 {
		text-align: left;
	}

	.wd-blog-list-item {
		flex: 0 0 30%;
		margin-bottom: 3rem;
		max-width: 30%;
	}
}

@media (min-width: 1200px) {
	.wd-blog-list-item {
		flex: 0 0 31.5%;
		max-width: 31.5%;
		margin-bottom: 4rem;
	}
}

/* ############ WD BLOG LIST IN Aside ############################################################ */
.icms-widget__compact .h5.card-header {
	font-size: 1.5rem;
	font-weight: var(--fw-600);
	margin-bottom: 1.75rem;
}

.content_list_aside .cla_item {
	line-height: 1.35;
}

.content_list_aside .cla_item + .cla_item {
	margin-top: 30px;
	padding-top: 30px;
	border-top: 1px solid #b9b9bb;
}

.cla_item .item-photo {
	flex: 0 0 93px;
	margin-right: 16px;
}

.cla_item .item-photo a,
.cla_item .item-photo img {
	display: block;
	width: 100%;
	height: 100%;
}

.cla_item .item-user a {
	color: currentColor;
	font-size: 0.875rem;
}
.cla_item .item-text {
	margin-top: -5.5px;
}
.cla_item .item-title {
	font-size: 1.125rem;
}
.cla_item .item-date {
	font-size: 0.75rem;
	color: #949498;
	font-weight: 500;
	margin-top: 0.25rem;
}
.wd_podcast_list .cla_item .item-text {
	margin-top: 10px;
}
.wd_podcast_list .cla_item .item-date.sep {
	margin-left: 0.5rem;
	margin-right: 0.5rem;
}
@media (max-width: 390px) {
	.cla_item .item-title {
		font-size: 1rem;
		line-height: 1.2;
	}
}
/* ############ WD Get help ############################################################ */
@media (max-width: 991.99px) {
	.fh-m-container + .home-get-help {
		background-color: #e4e5e7;
		margin-top: 40px;
		padding-bottom: 16px;
	}
}
.home-get-help-img img {
	width: 100%;
}
.home-get-help-title,
.home-get-help-text,
.home-get-help-buttons {
	padding-left: 15px;
	padding-right: 15px;
}
.home-get-help-title {
	font-size: 26px;
	line-height: 32px;
}
.home-get-help-text {
	line-height: 1.5;
}
.home-get-help-buttons .green-button.green-button-xl {
	width: 186px;
}
@media (max-width: 991.99px) {
	.home-get-help-buttons .green-button.green-button-xl {
		width: 100%;
		padding: 0;
	}
}
@media (min-width: 992px) {
	.home-get-help {
		/* background: #e3e5e7 url("../images/gnanow/home/get-help.jpg") no-repeat left center / contain; */
		background: #e3e5e7 url("../images/gnanow/home/get-help-1920.jpg") no-repeat top center / cover;
		min-height: 400px;
		display: flex;
		align-items: center;
		margin: 3rem 0 0;
	}
	.home-get-help-content {
		padding-left: 53%;
		padding-right: 1rem;
	}
}

@media (min-width: 1200px) {
	.home-get-help {
		min-height: 500px;
		margin: 4rem 0 0;
		line-height: 1.5;
	}

	.home-get-help-buttons {
		padding-top: 0.5rem;
	}
}

@media (min-width: 1366px) {
	.home-get-help-content {
		padding-left: 57%;
	}
}

@media (min-width: 1440px) {
	.home-get-help-content {
		padding-left: 55%;
	}
}

@media (min-width: 1600px) {
	.home-get-help {
		min-height: 550px;
		margin: 5rem 0 0;
	}

	.home-get-help-content {
		padding-left: 53%;
	}
}

@media (min-width: 1800px) {
	.home-get-help {
		min-height: 629px;
		margin: 100px 0 0;
	}

	.home-get-help-content {
		padding-left: 52%;
	}

	/* .home-get-help-title {
        font-size: 2.5rem;
    } */

	.home-get-help-buttons {
		padding-top: 1rem;
	}

	/* .home-get-help-buttons .green-button.green-button-xl {
        padding: 12px 41px;
    } */
}

/* ############ ABOUT ############################################################ */
.about-title {
	font-size: 1.5rem;
}
.about-content-first {
	padding: 0 15px;
	display: flex;
	flex-direction: column-reverse;
}
.about-content-first-img {
	margin: 0 -30px;
}

.about-content-first .green-button.green-button-xl,
.about-content-third-buttons .green-button,
.about-content-fifth-buttons .green-button {
	width: 250px;
}
@media (min-width: 576px) {
	.about-content-first {
		padding: 0 30px;
	}
}
@media (min-width: 992px) {
	.about-content-first .green-button.green-button-xl,
	.about-content-third-buttons .green-button,
	.about-content-fifth-buttons .green-button {
		width: 290px;
	}
	.about-content-first {
		flex-direction: row;
		align-items: center;
	}

	.about-content-first-img {
		margin: 0;
	}

	.about-content-first-text {
		flex: 0 0 45%;
		padding: 2rem 0;
	}

	.about-content-first-img {
		flex: 0 0 55%;
	}

	.about-content-first-hint {
		width: 70%;
	}
	.about-content-first-hint {
		font-size: 0.875rem;
	}
}

@media (min-width: 1200.1px) {
	.about-title {
		font-size: 1.5rem;
	}

	.about-content-first-hint {
		font-size: 18px;
	}
}

@media (min-width: 1366px) {
	.about-content-first-text {
		flex: 0 0 40%;
		padding: 2rem 0;
		transform: translateX(22px);
	}

	.about-content-first-img {
		flex: 0 0 60%;
	}

	.about-content-first-hint {
		width: 70%;
	}

	.about-title {
		font-size: 2rem;
	}
}

@media (min-width: 1440px) {
	.about-content-first {
		max-width: 1400px;
		margin-left: auto;
		margin-right: auto;
	}
}

@media (min-width: 1600px) {
	.about-title {
		font-size: 2.5rem;
	}

	.about-content-first-text {
		flex: 0 0 49%;
		padding: 4rem 0;
	}

	.about-content-first-img {
		flex: 0 0 58%;
	}
}

@media (min-width: 1800px) {
	.about-content-first-text {
		flex: 0 0 48%;
		padding: 5rem 0;
		transform: translateX(0);
	}
	.about-content-first-img {
		flex: 0 0 70%;
	}
	.about-content-first-buttons {
		padding-top: 1rem;
	}
}
/* ############ ABOUT OUR STORY #################### */
.about-content-our-story {
	background-color: #f6f7f9;
	padding: 40px 16px;
	margin: 0 -16px;
	line-height: 24px;
}
.about-content-our-story > div {
	max-width: 390px;
	margin-left: auto;
	margin-right: auto;
}
.about-content-our-story__text {
	margin-top: 24px;
}
.about-content-our-story__l-title {
	color: #908f98;
	font-size: 18px;
	font-style: normal;
	font-weight: 500;
	line-height: 24px;
	letter-spacing: 0.72px;
	text-transform: uppercase;
}
.about-content-our-story__l-text div + div {
	margin-top: 24px;
}
.about-content-our-story__r {
	margin-top: 32px;
}
.about-content-our-story__r-img img {
	border-radius: 8px;
}
.about-content-our-story__r-text {
	margin-top: 28px;
	padding-left: 32px;
	border-left: 2px solid #423b69;
}
.about-content-our-story__r-title {
	font-size: 20px;
}
.about-content-our-story__r-hint {
	margin-top: 16px;
	font-size: 14px;
	line-height: 20px; /* 142.857% */
	letter-spacing: 0.56px;
	text-transform: uppercase;
}
@media (min-width: 1024px) {
	.about-content-our-story {
		background-color: #f6f7f9;
		padding: 100px 16px;
		margin: 0;
		line-height: 24px;
	}
	.about-content-our-story > div {
		max-width: 1242px;
	}
	.about-content-our-story__text {
		gap: 64px;
		justify-content: space-between;
	}
	.about-content-our-story__text > div {
		flex: calc(50% - 32px);
	}
	.about-content-our-story__r {
		margin-top: 0;
	}
}
@media (min-width: 1280px) {
	.about-content-our-story {
		padding: 100px 0;
	}
	.about-content-our-story__r {
		display: flex;
		align-items: flex-start;
		gap: 28px;
	}
	.about-content-our-story__r-text {
		margin-top: 0;
	}
	.about-content-our-story__r-img {
		flex: 0 0 140px;
	}
	.about-content-our-story__r-title {
		font-size: 26px;
		line-height: 32px;
	}
	.about-content-our-story__r-hint {
		margin-top: 24px;
		font-size: 16px;
		line-height: 20px; /* 125% */
		letter-spacing: 0.64px;
	}
}
/* ############ ABOUT SECOND #################### */
.about-content-second-header {
	background: url("../images/gnanow/about/1-having-m.png") no-repeat bottom center;
	background-size: 100% auto;
	min-height: 400px;
	color: #454057;
	overflow: hidden;
	margin-left: -15px;
	margin-right: -15px;
	padding: 15px;
}
@media (min-width: 480px) {
	.about-content-second-header {
		/* background-image: url("../images/gnanow/about/1-having-d.png") no-repeat bottom center; */
		background-size: 100% auto;
	}
}

.about-content-second-header h2 {
	font-size: 16px;
	margin-left: auto;
	margin-right: auto;
}

.about-content-second-title-hint {
	font-size: 14px;
}

.about-content-second-items {
	margin-top: -51px;
}

.about-content-second-items > div {
	background-color: #ffffff;
	background-position: center 35px;
	background-repeat: no-repeat;
	border: 1px solid #bfbec1;
	border-radius: 0.5rem;
	padding: 160px 30px 30px;
	width: 320px;
	max-width: 90%;
	margin: 0 auto 2rem;
}

.about-content-second-items > div h3 {
	font-size: 1.375rem;
	margin-bottom: 1.5rem;
}

.about-content-second-items .first-item {
	background-image: url("../images/gnanow/about/11-having.png");
}

.about-content-second-items .second-item {
	background-image: url("../images/gnanow/about/12-having.png");
}

.about-content-second-items .third-item {
	background-image: url("../images/gnanow/about/13-having.png");
}

.about-content-second-items .fourth-item {
	background-image: url("../images/gnanow/about/14-having.png");
}
@media (min-width: 360px) {
	.about-content-second-header {
		min-height: 430px;
	}
	.about-content-second-header h2 {
		font-size: 18px;
		margin-top: 5px;
		margin-bottom: 5px;
	}

	.about-content-second-title-hint {
		font-size: 16px;
	}
}
@media (min-width: 375px) {
	.about-content-second-header {
		min-height: 440px;
	}
	.about-content-second-header h2 {
		margin-bottom: 8px;
	}
	.about-content-second-title-hint {
		font-size: 17px;
	}
	.about-content-second-items {
		margin-top: -54px;
	}
}
@media (min-width: 428px) {
	.about-content-second-header {
		min-height: 550px;
	}
	.about-content-second-header h2 {
		font-size: 21px;
		margin-top: 8px;
		margin-bottom: 7px;
	}

	.about-content-second-title-hint {
		font-size: 19px;
	}

	.about-content-second-items {
		margin-top: -72px;
	}
}
@media (min-width: 480px) {
	.about-content-second-header {
		min-height: 600px;
	}
	.about-content-second-header h2 {
		font-size: 24px;
		margin-top: 10px;
	}

	.about-content-second-title-hint {
		font-size: 22px;
	}

	.about-content-second-items {
		margin-top: -82px;
	}
}
@media (min-width: 576px) {
	.about-content-second-header {
		min-height: 700px;
		margin-left: 0;
		margin-right: 0;
	}
	.about-content-second-header h2 {
		font-size: 28px;
		margin-top: 17px;
		margin-bottom: 11px;
	}

	.about-content-second-title-hint {
		font-size: 25px;
	}

	.about-content-second-items {
		margin-top: -104px;
	}
}
@media (min-width: 640px) {
	.about-content-second-header {
		min-height: 800px;
	}
	.about-content-second-header h2 {
		font-size: 32px;
		margin-top: 20px;
		margin-bottom: 10px;
	}

	.about-content-second-title-hint {
		font-size: 28px;
	}

	.about-content-second-items {
		margin-top: -112px;
	}
}
@media (min-width: 768px) {
	.about-content-second-header {
		min-height: 900px;
	}
	.about-content-second-header h2 {
		font-size: 38px;
		margin-top: 26px;
		margin-bottom: 15px;
	}
	.about-content-second-title-hint {
		font-size: 32px;
	}
	.about-content-second-items {
		margin-top: -132px;
		display: flex;
		flex-wrap: wrap;
		justify-content: center;
	}

	.about-content-second-items > div {
		margin: 0 1rem 2rem;
	}
}
@media (min-width: 800px) {
	.about-content-second-header {
		min-height: 1000px;
	}
	.about-content-second-header h2 {
		font-size: 40px;
	}
	.about-content-second-items {
		margin-top: -135px;
	}
}
@media (min-width: 950px) {
	.about-content-second-header {
		margin-left: 0;
		margin-right: 0;
		min-height: 1090px;
		padding: 35px;
	}
	.about-content-second-header h2 {
		max-width: 100%;
		font-size: 48px;
		margin-top: 20px;
		line-height: 1.2;
		margin-bottom: 25px;
	}
	.about-content-second-title-hint {
		font-size: 40px;
	}
	.about-content-second-items {
		margin-top: -165px;
	}
}
@media (min-width: 992px) {
	.about-content-second-header {
		margin-left: 0;
		margin-right: 0;
		min-height: 1030px;
		padding: 35px;
	}
	.about-content-second-header h2 {
		max-width: 100%;
		font-size: 50px;
		margin-top: 23px;
		margin-bottom: 26px;
	}
	.about-content-second-items {
		margin-top: -170px;
	}
	.about-content-second-items > div {
		font-size: 15px;
	}

	.about-content-second-items > div h3 {
		font-size: 1.25rem;
	}
}
@media (min-width: 1024px) {
	.about-content-second-header {
		/* background: url("../images/gnanow/about/1-having1.jpg") no-repeat top center; */
		background: #fff url("../images/gnanow/about/1-having-d.png") no-repeat top center;
		background-size: auto 100%;
		height: 860px;
		min-height: 860px;
	}
	.about-content-second-header h2 {
		font-size: 40px;
		max-width: 100%;
		margin-top: 35px !important;
		margin-bottom: 0;
		line-height: 1.2;
	}
	.about-content-second-title-hint {
		font-size: 25px;
	}
	.about-content-second-items {
		margin-top: -165px;
	}
	.about-content-second-items > div {
		max-width: calc(25% - 40px);
	}
}

@media (min-width: 1400px) {
	.about-content-second-items > div {
		font-size: 1rem;
	}

	.about-content-second-items > div h3 {
		font-size: 1.375rem;
	}
}

@media (min-width: 1600px) {
	.about-content-second-header {
		min-height: 861px;
	}
}

/* ############ ABOUT THIRD && FOURTH #################### */
.about-content-third,
.about-content-fourth {
	max-width: 428px;
	padding-left: 15px;
	padding-right: 15px;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 30px;
	display: flex;
	flex-direction: column-reverse;
}

.about-content-third-img,
.about-content-fourth-img {
	margin-bottom: 20px;
}

@media (min-width: 992px) {
	.about-content-third,
	.about-content-fourth {
		max-width: 1440px;
		padding-left: 30px;
		padding-right: 30px;
		margin-bottom: 0;
	}

	.about-content-third {
		flex-direction: row;
		margin-top: 3rem;
	}

	.about-content-fourth {
		flex-direction: row-reverse;
		margin-top: 15px;
	}

	.about-content-third > div,
	.about-content-fourth > div {
		flex: 0 0 50%;
	}

	.about-content-third-text,
	.about-content-fourth-img {
		padding-right: 15px;
	}

	.about-content-fourth-text,
	.about-content-third-img {
		padding-left: 15px;
	}

	.about-content-third-text,
	.about-content-fourth-text {
		display: flex;
		flex-direction: column;
		justify-content: center;
		font-size: 13px;
	}

	.about-content-third-img,
	.about-content-fourth-img {
		margin-bottom: 0;
	}

	.about-content-third-img img,
	.about-content-fourth-img img {
		display: block;
		width: 100%;
		height: 100%;
		object-fit: cover;
	}
}

@media (min-width: 1200px) {
	.about-content-third,
	.about-content-fourth {
		max-width: 1440px;
		padding-left: 30px;
		padding-right: 30px;
	}

	.about-content-third-text,
	.about-content-fourth-text {
		font-size: 1rem;
	}

	.about-content-third {
		margin-top: 4rem;
	}
}

@media (min-width: 1366px) {
	.about-content-third-text,
	.about-content-fourth-text {
		font-size: 1.125rem;
	}

	.about-content-third {
		margin-top: 5rem;
	}

	.about-content-third-text {
		padding-right: 60px;
	}

	.about-content-fourth-text {
		padding-left: 60px;
	}
}

@media (min-width: 1600px) {
	.about-content-third {
		margin-top: 7rem;
	}

	.about-content-third-text > h2,
	.about-content-fourth-text > h2 {
		font-size: 2.5rem;
		margin-bottom: 1rem;
	}
}

/* ############ ABOUT FIFTH #################### */
.about-content-fifth-content {
	max-width: 428px;
	padding-left: 15px;
	padding-right: 15px;
	margin-left: auto;
	margin-right: auto;
}

.about-content + .faq-list-container {
	background-color: var(--theme-light-gray-blue);
	margin: 20px -15px 0;
	padding-top: 30px;
	padding-bottom: 50px;
}

.about-content + .faq-list-container .faq-list {
	max-width: 428px;
	padding-left: 30px;
	padding-right: 30px;
}

.about-content + .faq-list-container .faq-list .faq-list-title {
	margin-bottom: 20px;
}

.about-content-fifth-img {
	margin-bottom: 20px;
}
@media (min-width: 576px) and (max-width: 991.99px) {
	#mobile_device_type .about-content + .faq-list-container .faq-list {
		max-width: 100%;
		padding-left: 45px;
		padding-right: 45px;
	}
	#mobile_device_type .about-content-third,
	#mobile_device_type .about-content-fourth,
	#mobile_device_type .about-content-fifth-content {
		max-width: 686px;
	}
	#mobile_device_type .about-content-third img,
	#mobile_device_type .about-content-fourth img,
	#mobile_device_type .about-content-fifth-content img {
		max-width: 428px;
		margin: 0 auto;
		display: block;
	}
}

@media (min-width: 992px) {
	.about-content-fifth {
		background: #ecebee url("../images/gnanow/about/4-ethical.jpg") no-repeat top center / cover;
		padding: 50px 0;
		margin-top: 50px;
	}

	.about-content-fifth-content {
		max-width: 1440px;
		padding-left: 30px;
		padding-right: 30px;
	}

	.about-content-fifth-text {
		width: 40%;
	}

	.about-content + .faq-list-container {
		background-color: #ffffff;
		margin-top: 75px;
	}

	.about-content + .faq-list-container .faq-list {
		max-width: 1300px;
	}

	.about-content + .faq-list-container .faq-list .faq-list-title {
		margin-bottom: 30px;
	}
}

@media (min-width: 1200px) {
	.about-content-fifth {
		padding: 100px 0;
		margin-top: 100px;
	}

	.about-content-fifth-content {
		max-width: 1300px;
	}

	.about-content + .faq-list-container {
		margin-top: 100px;
	}
}

@media (min-width: 1280px) {
	.about-content + .faq-list-container .faq-list {
		padding-left: 30px;
		padding-right: 30px;
	}
}
@media (min-width: 1366px) {
	.about-content-fifth-text {
		font-size: 1.125rem;
	}
}
@media (min-width: 1440px) {
	.about-content-fifth {
		padding: 150px 0;
	}
}

@media (min-width: 1600px) {
	.about-content-fifth-text > h2,
	.about-content + .faq-list-container .faq-list-title {
		font-size: 2.5rem;
		margin-bottom: 1rem;
	}

	.about-content + .faq-list-container {
		margin-top: 120px;
	}

	.about-content + .faq-list-container .faq-list .faq-list-title {
		margin-bottom: 40px;
	}
}

/* ############ PJH ############################################################ */
.pjh .green-button {
	text-transform: none;
	padding: 0;
	width: 250px;
	height: 58px;
}

.pjh-first {
	position: relative;
}

.pjh-first-content {
	margin: 0 -15px;
	display: flex;
	flex-direction: column-reverse;
	position: relative;
	z-index: 1;
}

.pjh-first-text {
	padding: 0 15px;
	position: relative;
	z-index: 1;
}
.pjh .green-button {
	text-transform: uppercase;
}
.donate-head__hints.donate-head__hints_pjh {
	font-size: 14px;
	line-height: 1;
	display: flex;
	flex-direction: column;
	gap: 8px;
	margin-top: 10px;
	line-height: normal;
	max-width: 536px;
}
.donate-head__hints.donate-head__hints_pjh a span {
	text-decoration: underline;
}
.donate-head__hints.donate-head__hints_pjh a:hover span {
	text-decoration: none;
}

@media (min-width: 576px) {
	.pjh-first-content {
		margin: 0 auto;
		/* max-width: 428px; */
	}
}

@media (min-width: 992px) {
	.pjh-first::after {
		content: "";
		position: absolute;
		left: 0;
		right: 0;
		bottom: -50px;
		height: 50px;
		box-shadow: 0 0 213px rgba(92, 87, 110, 0.2, 0.75);
		z-index: 1;
	}

	.pjh-first-content {
		flex-direction: row;
		max-width: 1340px;
		padding: 0 30px;
		align-items: center;
	}

	.pjh-first-text {
		flex: 0 0 45%;
		padding: 2rem 0;
	}

	.pjh-first-img {
		flex: 0 0 55%;
	}
	.pjh .pjh-first .green-button {
		width: 420px;
		height: 54px;
	}
}
@media (min-width: 1200px) {
	.pjh .pjh-first .green-button {
		width: 505px;
		height: 54px;
		font-size: 20px;
		gap: 0.25em;
	}
	.pjh .pjh-third .green-button,
	.pjh .pjh-fourth .green-button,
	.pjh .pjh-sixth .green-button {
		height: 54px;
	}
}
@media (min-width: 1366px) {
	.pjh-first-text {
		flex: 0 0 50%;
		padding: 100px 0;
	}
	.pjh-first-img {
		flex: 0 0 50%;
		margin-left: 0;
	}
	.pjh-first-img img {
		position: absolute;
		bottom: 0;
		right: -75px;
		width: 760px;
	}
	.pjh-first-text .pjh-title {
		font-size: 46px;
		line-height: 50px;
		margin: 0;
	}
	.pjh-first-hint,
	.pjh-first-buttons {
		margin-top: 32px;
	}
}
@media (max-width: 991.99px) {
	.pjh-first-img {
		background: linear-gradient(360deg, rgba(143, 153, 161, 0.32) -2.7%, rgba(255, 255, 255, 0) 43.35%);
		margin: 5px -15px 0;
		height: 238px;
		overflow: hidden;
	}
	.pjh-first-img img {
		transform: translateX(53px);
		margin: 5px auto;
	}
	.pjh-first-text {
		padding: 32px 16px 40px;
	}
	.pjh-first-text .pjh-title {
		font-size: 32px;
		line-height: 38px;
		margin: 0;
	}
	.pjh-first-text .pjh-first-hint {
		line-height: 24px;
	}
	.pjh .pjh-first-text .green-button {
		width: 358px;
		height: auto;
		max-width: 100%;
		min-height: 78px;
		gap: 7px;
		padding: 10px 15px;
		font-size: 20px;
		line-height: 1;
	}
	.donate-head__hints.donate-head__hints_pjh {
		text-align: left;
	}
}
@media (max-width: 575.99px) {
	.pjh-first-text .h2.pjh-title {
		font-size: 30px;
		padding: 0 5% 10px;
	}
}
/* ############ PJH SECOND #################### */
.pjh-second {
	background-color: #5c576e;
	color: #ffffff;
	margin: 0 -15px;
	position: relative;
	z-index: 2;
}

.pjh-second-content {
	padding: 0 30px;
	margin: 0 auto;
	max-width: 428px;
}

.pjh-second-title {
	text-align: center;
	font-size: 1.375rem;
}

.pjh-second-items {
	font-size: 1.125rem;
}

.pjh-second-items .item > div {
	padding-left: 33px;
	background: url("../images/check-green.png") no-repeat left center;
}

@media (min-width: 576px) {
	.pjh-second {
		margin: 0;
	}
}

@media (min-width: 992px) {
	.pjh-second-content {
		max-width: 1300px;
		padding-top: 15px;
		padding-bottom: 15px;
	}

	.pjh-second-title {
		font-size: 1.75rem;
	}

	.pjh-second-items {
		display: flex;
		justify-content: space-between;
	}

	.pjh-second-items .item {
		flex: 1 1 auto;
		padding: 0 1rem 0 0;
		font-size: 0.75rem;
	}
}

@media (min-width: 1200px) {
	.pjh-second-items .item {
		font-size: 0.875rem;
	}
}

@media (min-width: 1366px) {
	.pjh-second-content {
		padding-top: 30px;
		padding-bottom: 30px;
	}

	.pjh-second-title {
		font-size: 2.5rem;
		margin-bottom: 3rem !important;
	}

	.pjh-second-items .item {
		font-size: 1rem;
	}
}

@media (min-width: 1600px) {
	.pjh-second-content {
		padding: 45px 0;
		transform: translateX(30px);
	}

	.pjh-second-title {
		font-size: 2.5rem;
		margin-bottom: 3.5rem !important;
	}

	.pjh-second-items {
		padding-left: 0;
	}

	.pjh-second-items .item {
		font-size: 1.25rem;
		flex: 1 1 auto;
	}
}

/* ############ PJH THIRD #################### */
.pjh-third {
	padding: 40px 15px;
}
.pjh-third-title {
	font-size: 26px;
	line-height: 32px;
	margin: 0 auto 28px;
	text-align: center;
}
.pjh-third-items {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 32px;
}
.pjh-third-items > div {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	gap: 28px;
}
.pjh-third-item-text {
	max-width: 285px;
}
.pjh-third-item-text h3 {
	font-size: 20px;
	line-height: 24px;
	text-align: center;
}
.pjh-third-item-text p {
	line-height: 24px;
	text-align: center;
	margin: 20px 0 0;
}
.pjh-third-buttons {
	margin-top: 28px;
}
.pjh-third-buttons .green-button {
	line-height: 1.2;
	height: 54px;
	width: 100%;
	max-width: 390px;
}
@media (min-width: 390px) {
	.pjh-third-buttons .green-button {
		font-size: 20px;
	}
}
@media (min-width: 992px) {
	.pjh-third {
		padding: 80px 15px;
	}
	.pjh-third-items {
		flex-direction: row;
		align-items: flex-start;
		justify-content: center;
		gap: 0;
	}
}
@media (min-width: 1200px) {
	.pjh-third-items {
		gap: 32px;
	}
}

/* ############ PJH FOURCH #################### */
.pjh-fourth {
	background-color: #f2f3f4;
}
.pjh-fourth-text {
	line-height: 1.5;
	position: relative;
}
@media (max-width: 992px) {
	.pjh-fourth {
		margin: 0 -15px;
	}
	.pjh-fourth-content {
		max-width: 390px;
		margin: 0 auto;
		padding: 0 0 40px;
	}
	.pjh-fourth-text {
		padding: 0 15px;
	}
	.pjh-fourth-text {
		margin-top: -73px;
	}
}
@media (min-width: 992px) {
	.pjh-fourth {
		width: 100%;
		max-width: 100%;
		/* background-size: auto 100%; */
		background-color: #f2f3f4;
		/* background-color: #f1f2f4; */
	}

	.pjh-fourth-title {
		margin-bottom: 32px;
	}

	.pjh-fourth-content {
		max-width: 1440px;
		margin: 0 auto;
		padding: 100px 104px;
		display: flex;
		justify-content: flex-end;
		align-items: center;
		background: url("../images/gnanow/pjh/join-laptop-img-d-n.png") no-repeat left center / auto 100%;
		min-height: 706px;
	}

	.pjh-fourth-text {
		flex: 0 0 50%;
		font-size: 0.75rem;
		min-height: 550px;
	}
}

@media (min-width: 1200px) {
	.pjh-fourth-text {
		flex: 0 0 50%;
		font-size: 1rem;
		margin-right: 10px;
	}
}

/* ############ PJH FOURCH ACC #################### */
.pjh-fourth-title {
	font-size: 26px;
	line-height: 32px;
	margin-bottom: 32px;
}
@media (min-width: 1200px) {
	.pjh-fourth-title {
		font-size: 40px;
		line-height: 52px;
	}
}
.pjh-fourth-text__item {
	gap: 10px;
	background-color: #fff;
	border-radius: 8px;
	border: 1.5px solid #d9d8de;
	line-height: 1.5;
	transition: 0.3s;
}
.pjh-fourth-text__item.active,
.pjh-fourth-text__item:has(.pjh-fourth-text__item-title:hover) {
	border-color: var(--theme-color-green);
}
.pjh-fourth-text__item + .pjh-fourth-text__item {
	margin-top: 12px;
}
.pjh-fourth-text__item-title {
	font-size: 20px;
	line-height: 24px;
	margin: 0;
	position: relative;
	padding: 24px;
	cursor: pointer;
}
.pjh-fourth-text__item-title::after {
	content: "";
	position: absolute;
	right: 24px;
	top: 50%;
	transform: translateY(-50%);
	width: 28px;
	height: 28px;
	transition: 0.3s;
	/* background: url("/templates/gnanownew/images/gnanow/icons/angle-down-green.png") center no-repeat; */
	background: url("/templates/gnanownew/images/gnanow/icons/angle-down-green.svg") center no-repeat;
}
.pjh-fourth-text__item.active .pjh-fourth-text__item-title::after {
	transform: translateY(-50%) rotateX(180deg);
}
.pjh-fourth-text__item-content {
	display: none;
	margin-top: -24px;
	padding: 10px 50px 24px 24px;
	pointer-events: none;
}
.pjh-fourth-text__item.active .pjh-fourth-text__item-content {
	display: block;
}

/* ############ PJH FIFTH #################### */
.pjh-fifth {
	max-width: 390px;
	margin: 0 auto;
	padding: 40px 0;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 28px;
}
.pjh-fifth-text {
	line-height: 1.5;
	display: flex;
	flex-direction: column;
	gap: 28px;
}
.pjh-fifth-text > * {
	margin: 0 !important;
}
.pjh-fifth-title {
	font-size: 26px;
	line-height: 32px;
}
@media (min-width: 992px) {
	.pjh-fifth {
		flex-direction: row;
		gap: 48px;
		align-items: center;
		padding: 100px 0;
		max-width: 1240px;
	}
	.pjh-fifth > div {
		flex: 0 0 calc(50% - 24px);
	}
	.pjh-fifth-text {
		font-size: 18px;
		line-height: 28px;
		gap: 18px;
	}
	.pjh-fifth-title {
		font-size: 40px;
		line-height: 52px;
		padding-bottom: 10px;
	}
}
@media (min-width: 1140px) {
	.pjh-fifth {
		gap: 80px;
	}
	.pjh-fifth > div {
		flex: 0 0 calc(50% - 40px);
	}
}

/* ############ PJH SIXTH #################### */
@media (max-width: 991.99px) {
	.pjh-sixth {
		margin: 0 -15px;
		padding: 0 0 40px;
		background-color: #6c697e;
		color: #fff;
	}
	.pjh-sixth-content {
		max-width: 390px;
		margin: 0 auto;
	}
	.pjh-sixth-text {
		padding: 0 15px;
		margin-top: -35px;
		display: flex;
		flex-direction: column;
		gap: 28px;
		font-size: 18px;
		line-height: 24px;
	}
	.pjh-sixth-text > * {
		margin: 0 !important;
	}
	.pjh-sixth a {
		color: rgba(255, 255, 255, 1);
	}
	.pjh-sixth a:hover,
	.pjh-sixth a:active {
		color: rgba(255, 255, 255, 0.8);
	}
	.pjh-sixth-title {
		font-size: 26px;
		line-height: 32px;
		margin-bottom: 1rem;
	}
	.pjh-sixth-buttons {
		margin-top: 2rem;
	}
	.pjh .pjh-sixth-buttons .green-button {
		width: 100%;
		font-size: 20px;
	}
}
@media (max-width: 991.99px) {
	.pjh .pjh-sixth-buttons .green-button {
		width: 360px;
		max-width: 100%;
	}
}
@media (min-width: 992px) {
	.pjh-sixth {
		width: 100%;
		max-width: 100%;
		/* background: #6c697e url("../images/gnanow/pjh/6.jpg") no-repeat -95px center / contain; */
		background: linear-gradient(0deg, #6c697e 0%, #6c697e 100%), #f2f3f4;
		/* background-color: #635f74; */
		position: relative;
	}

	.pjh-sixth-title {
		margin-bottom: 0;
		font-size: 40px;
		line-height: 52px;
	}

	.pjh-sixth-content {
		max-width: 1440px;
		margin: 0 auto;
		padding: 80px 100px;
		display: flex;
		justify-content: flex-end;
		align-items: center;
		background: url("../images/gnanow/pjh/6-d.png") no-repeat left center / auto 100%;
	}

	.pjh-sixth-text {
		flex: 0 0 620px;
		font-size: 18px;
		line-height: 28px;
		color: #ffffff;
		display: flex;
		flex-direction: column;
		gap: 32px;
	}
	.pjh-sixth-text > * {
		margin: 0 !important;
	}

	.pjh-sixth-text .a-bordered {
		color: currentColor;
	}
	.pjh .pjh-sixth-buttons .green-button {
		width: 360px;
		height: 54px;
		font-size: 20px;
	}
}
main.for-body-blocker:has(.pjh) + .icms-footer__middle.mt-auto {
	margin-top: 0 !important;
}
.pjh + .faq-list-container {
	background-color: #fff;
	margin: 0 -15px;
	padding: 40px 15px;
}

.pjh + .faq-list-container .faq-list {
	max-width: 360px;
	padding-left: 0;
	padding-right: 0;
}
@media (max-width: 991.99px) {
	.container.faq-list {
		max-width: 360px !important;
		padding-left: 0 !important;
		padding-right: 0 !important;
	}
}
/* @media (min-width: 576px) and (max-width: 991.99px) {
	#mobile_device_type .pjh-first-content {
		margin: 0 auto;
		max-width: 100%;
		padding-left: 15px;
		padding-right: 15px;
	}
	#mobile_device_type .pjh + .faq-list-container .faq-list {
		max-width: 100%;
		padding-left: 30px;
		padding-right: 30px;
	}
	#mobile_device_type .pjh-fourth {
		max-width: 100%;
		padding: 1rem 30px 0;
	}
	#mobile_device_type .pjh-fourth img {
		display: block;
		margin-left: auto;
		margin-right: auto;
	}
	#mobile_device_type .pjh-fifth {
		max-width: 100%;
		padding-left: 30px;
		padding-right: 30px
	}
	#mobile_device_type .pjh-fifth img {
		max-width: 371px;
		display: block;
		margin-left: auto;
		margin-right: auto;
	}
	#mobile_device_type .pjh-sixth {
		max-width: 100%;
		padding-left: 30px;
		padding-right: 30px
	}
	#mobile_device_type .pjh-sixth img {
		max-width: 371px;
		display: block;
		margin-left: auto;
		margin-right: auto;
	}
} */
@media (min-width: 768px) and (max-width: 991.99px) {
	.pjh-second-content {
		max-width: 100%;
	}
	#mobile_device_type .pjh-second-items .item {
		display: flex;
		justify-content: space-between;
	}
	#mobile_device_type .pjh-second-items .item > div {
		flex: 0 0 calc(50% - 30px);
	}
}
@media (min-width: 992px) and (max-width: 1199.99px) {
	#mobile_device_type .pjh-fifth > div {
		flex: 0 0 calc(50% - 45px);
	}
	#mobile_device_type #target-profile {
		max-width: 100%;
	}
	#mobile_device_type #target-profile .text-nowrap {
		white-space: initial !important;
	}
}
@media (min-width: 992px) {
	/* .pjh + .faq-list-container {
        background-color: #ffffff;
        margin: 0;
        padding: 0;
    } */

	.pjh + .faq-list-container .faq-list {
		max-width: 1300px;
		padding-left: 30px;
		padding-right: 30px;
	}
}
@media (min-width: 1366px) {
	/* .pjh + .faq-list-container {
        margin: 120px 0 75px;
    } */
	.pjh + .faq-list-container .faq-list .faq-list-title {
		font-size: 2.5rem;
		margin-bottom: 40px;
	}
}
/* ############ PJH REGISTER #################### */
.pjh-register {
	background-color: #f2f3f4;
}
@media (max-width: 981.99px) {
	.pjh-register {
		padding: 40px 0;
		background-color: #f2f3f4;
	}
	.pjh-register__content {
		max-width: 390px;
		margin: 0 auto;
	}
}
@media (max-width: 576px) {
	.pjh-register {
		padding: 40px 15px;
		background-color: #f2f3f4;
		margin: 0 -15px;
	}
}
.pjh-register__text-title {
	font-size: 26px;
	line-height: 32px;
}
.text-center.text-lg-left.pjh-register__hint {
	line-height: 1.5;
	margin-top: 28px;
}
.pjh-register__form {
	background-color: #fff;
	border: 1.5px solid #d9d8de;
	border-radius: 12px;
	max-width: 358px;
	padding: 32px 20px;
	margin: 32px auto 0;
}
.pjh-register__text-title_form {
	font-weight: 500;
	font-size: 24px;
	line-height: 28px;
	margin-bottom: 19px;
}
.pjh-register form .buttons {
	margin-top: 20px !important;
}
.pjh-register form .buttons .btn {
	width: 100%;
	height: 44px !important;
	font-size: 16px;
}
.pjh-register form .field + .field {
	margin-top: 12px;
}
.pjh-register__form-footer {
	margin-top: 20px;
	text-align: center;
}
.pjh-register__form-footer-sm {
	font-size: 10px;
	line-height: 1;
}
.pjh-register__form-footer-sm a {
	text-decoration: underline;
}
.pjh-register__form-footer-sm a:hover {
	text-decoration: none;
}
.pjh-register__form-footer-or,
.pjh-register__form-footer-log {
	margin-top: 20px;
	font-weight: 600;
	line-height: 1.5;
}
.pjh-register__form-footer-or {
	position: relative;
}
.pjh-register__form-footer-or::before {
	content: "";
	background-color: #d9d8de;
	height: 1px;
	position: absolute;
	top: 50%;
	left: 0;
	right: 0;
	transform: translateY(-50%);
}
.pjh-register__form-footer-or span {
	position: relative;
	display: inline-block;
	padding: 0 20px;
	background: #fff;
}
.pjh-register__join.pjh-register__join_bottom {
	margin-top: 32px;
	font-weight: 500;
	gap: 12px;
}
.faq-list-container.faq-list-container__pjh {
	padding-top: 40px;
	padding-bottom: 40px;
}
.faq-list-container.faq-list-container__pjh .faq-list .faq-list-title {
	margin-bottom: 28px;
}
.pjh-register__form .form-control {
	height: 48px;
}
.pjh-register__form form .field label,
.pjh-register__form .form-group.field.ft_hidden {
	display: none;
}
@media (min-width: 992px) {
	.faq-list-container.faq-list-container__pjh {
		padding-top: 100px;
		padding-bottom: 100px;
		margin-bottom: 0;
	}
	.faq-list-container.faq-list-container__pjh .faq-list .faq-list-title {
		margin-bottom: 40px;
	}
	.pjh-register__text {
		flex: 0 0 calc(100% - 560px);
	}
	.pjh-register__form {
		max-width: 480px;
		flex: 0 0 480px;
		padding: 44px 32px;
		margin: 0;
	}
	.pjh-register__text-title_form {
		font-weight: 500;
		font-size: 24px;
		line-height: 28px;
		margin-bottom: 8px;
	}
	.pjh-register {
		padding: 80px 80px 80px 100px;
		background: #f2f3f4 url("../images/gnanow/gna-logo-circle-715x715.png") no-repeat center center;
		min-height: 770px;
	}
	.pjh-register__content {
		align-items: center;
		justify-content: space-between;
		max-width: 100%;
		margin: 0 auto;
		gap: 40px;
		/* padding-left: 30px;
        padding-right: 30px; */
	}
	.pjh-register__text {
		gap: 48px;
	}
	.pjh-register__text > * {
		margin: 0 !important;
	}
	.pjh-register__text-title {
		font-size: 40px;
		line-height: 52px;
	}
	.pjh-register__hint {
		font-size: 18px;
	}
	.pjh-register__join {
		gap: 12px;
	}
}
@media (min-width: 1366px) {
	.pjh-register__content {
		padding-left: 0;
		padding-right: 80px;
		max-width: 1260px;
	}
}
/* ############ FIND HELP ############################################################ */
.fh-m-item {
	line-height: 1.5;
	max-width: 390px;
	margin-left: auto;
	margin-right: auto;
}
@media (max-width: 991.99px) {
	.fh-m-item {
		max-width: 358px;
	}
}
.fh-m-container {
	margin: 0 -15px 30px;
}
.page-header.page-header-fhm {
	background-color: #fff;
	margin-bottom: 0;
	padding: 5px 0;
}
.fhm-buttons {
	margin-bottom: 17px;
}
.fhm-buttons .green-button.green-button-fhm {
	height: 60px;
	font-size: 22px;
	font-weight: 600;
}
.fh-m-list-title {
	margin: 0 0 20px;
	font-size: 23px;
}
@media (min-width: 375px) {
	.fh-m-list-title {
		font-size: 24px;
	}
}
@media (min-width: 428px) {
	.page-header-fhm .page-header-title {
		font-size: 37px;
	}
	.fh-m-list-title {
		font-size: 30px;
	}
}
.fh-m-item-title {
	font-size: 19px;
	line-height: 22px;
}

.fh-m-item-title a {
	background-color: #fff;
	border: 1.5px solid #d9d6de;
	border-radius: 8px;
	color: var(--theme-color) !important;
	text-decoration: none !important;
	position: relative;
	padding: 0 40px 0 20px;
	height: 90px;
	align-items: center;
}

.fh-m-item-title a.active,
#desktop_device_type .fh-m-item-title a:active {
	background-color: var(--theme-color-green);
	border-color: #5b8b41;
	color: #fff !important;
}
#desktop_device_type .fh-m-item-title a:hover {
	border-color: #5b8b41;
}

.fh-m-item-title a::after {
	content: "";
	width: 17px;
	height: 10px;
	background: url("../images/gnanow/icons/angle-down-green.png") center;
	position: absolute;
	top: calc(50% - 5px);
	right: 20px;
	transition: 0.3s;
}

.fh-m-item-title a.active::after {
	transform: rotateX(180deg);
	filter: brightness(10);
}

.fh-m-item-img {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 50px;
	height: 50px;
	margin-right: 20px;
	transition: 0.3s;
	color: #5da039;
}
.fh-m-item-title .active .fh-m-item-img {
	color: #fff;
}
.fh-m-item-title .fh-m-item-img img {
	transition: inherit;
}
.fh-m-item-title .fh-m-item-img img {
	max-height: 100%;
}

.fh-m-text-head {
	margin-top: 1.5em;
}

/* #mobile_device_type .fh-m-text-head,
#mobile_device_type .fh-m-content {
    padding-left: 10px;
	padding-right: 10px;
} */
/* #mobile_device_type .fh-m-text {
	padding: 0 12px;
} */
@media (max-width: 991.99px) {
	#mobile_device_type .fh-m-text {
		margin-left: auto;
		margin-right: auto;
		padding: 0 12px;
	}
}
.fh-m-text-head h4 {
	font-size: 30px;
	line-height: 32px;
}

.fh-m-content {
	margin-top: 20px;
	padding-top: 20px;
	border-top: 1.2px solid #d9d8de;
}

.fh-m-content p {
	font-weight: var(--fw-600);
}

.fh-m-content ul {
	padding: 0;
	list-style: none;
}
.fh-m-content ul li {
	padding-left: 26px;
	background: url("../images/check-green-n.png") no-repeat left 1px;
}

.fh-m-content li + li {
	margin-top: 0.75em;
}

/* .fh-m-item .green-button {
    text-transform: none;
 }*/
.fh-m-list-title {
	margin: 50px -15px 30px;
}
/* @media (min-width: 375px) {
    .fh-m-item-title {
        font-size: 20px;
    }
} */

@media (min-width: 428px) {
	/* .fh-m-item-title {
        font-size: 22px;
    } */
	.fh-m-item-title a::after {
		right: 20px;
	}
	.fh-m-item-img {
		width: 60px;
		height: 60px;
		margin-right: 15px;
	}
	.fh-m-item-title .fh-m-item-img img {
		max-height: 100%;
	}
}

@media (min-width: 576px) {
	.fh-m-container {
		margin: 0 0 30px;
	}

	.fh-m-list-title {
		margin: 50px -30px 30px;
	}
}

/* ############ DONATION ############################################################ */
.donation-body {
	max-width: 725px;
	margin-left: auto;
	margin-right: auto;
	color: #4d4960;
}

.donation-body button,
.donation-body input,
.donation-body select {
	border-radius: 4px;
	font-family: "Inter", sans-serif;
}

.donation-body .donate-form-buttons button {
	font-family: "Poppins", sans-serif;
}

.donation-body button {
	border-width: 0;
	padding: 5.75px 15px;
	font-size: 20px;
	min-width: 120px;
	border-width: 0;
	background-color: var(--theme-color);
	color: #ffffff;
}
.donation-body .checkbox-text-lablel {
	font-family: "Poppins", sans-serif;
	font-size: 16px;
	line-height: 24px;
	cursor: pointer;
}
.donation-body .input-title {
	margin-bottom: 8px;
}
.donation-body .w-725 {
	width: 725px;
	max-width: 100%;
}

.donation-body button.b-active,
.donation-body button:hover,
.donation-body .green-button.green-button-xl {
	background-color: var(--theme-color-green);
}

.donation-body .green-button.green-button-xl:hover {
	background-color: var(--theme-color-green-dark);
}

.donation-body .donate-frequency-button,
.donation-body .donate-value-button {
	font-family: "Inter", sans-serif;
	font-weight: var(--fw-600);
	margin: 3px 0;
	width: 100%;
}

.text-field-donation.w-input {
	width: 100%;
}

.donation-body .w-input {
	padding: 7.5px 15px;
}

.donation-body .w-725 .w-input {
	padding: 14px 15px;
}

.donation-body input {
	border: 1px solid var(--input-color);
	color: var(--theme-color);
	outline: none !important;
}
.donation-body .custom-control-label::before {
	border-color: var(--input-color);
}

.donation-body input:hover,
.donation-body input:focus {
	border-color: var(--theme-color);
	box-shadow: inset 0 0 0 1px #45405a !important;
	background-color: #ebf0f6;
	color: var(--theme-color);
}

.donation-body input::placeholder {
	color: var(--input-color) !important;
	/* font-size: 15px;
    font-weight: 300; */
	font-size: 16px;
	font-weight: 400;
	opacity: 1 !important;
}

.donation-body input:hover::placeholder,
.donation-body input:focus::placeholder {
	color: #6e757c !important;
}
.donation-body .card-wrap {
	border: 1px solid var(--input-color);
	padding: 19.6px 15px;
	border-radius: 4px;
}

.donation-body .card-wrap:hover {
	border-color: var(--theme-color);
}

.form-help-text {
	font-size: 12px;
	margin-top: 5px;
}
.form-help-text + label.mt-4 {
	margin-top: 25px !important;
	margin-bottom: 12px;
}

.donate-form-buttons button {
	width: 48%;
	padding: 12px 25px !important;
	text-transform: uppercase;
	font-weight: 600;
	transition: 0.3s;
}

.donate-form-buttons .save-donate-form {
	background-color: #caccca;
	color: #747474;
}

.donate-form-buttons .save-donate-form:hover {
	background-color: #b7bab7;
	color: #3e3d3d;
}

.text-field-donation.w-input {
	margin-top: 3px;
}

/* ############ Terms of Use ############################################################ */
.terms-sub-title {
	display: block;
	margin-top: 3rem;
	font-size: 20px;
	font-weight: 600;
}
.terms-of-use-page .search-row.sticky-top,
.terms-of-use-page .mobile-sticky {
	position: static !important;
}
.donate-value .text-field-donation.not-empty {
	border-color: var(--theme-color) !important;
	/* box-shadow: inset 0 0 0 1px #45405a !important;
	background-color: #ebf0f6 !important; */
	color: var(--theme-color) !important;
}
.donation-body {
	padding-top: 32px;
}
@media (min-width: 992px) {
	.donation-body {
		max-width: 100%;
		padding-top: 64px;
	}
	.donation-body .input-title {
		margin-bottom: 7px;
	}
	.donation-body .donate-frequency-button,
	.donation-body .donate-value-button {
		margin: 3px 5px 3px 0;
		width: 120px;
	}
	.text-field-donation.w-input {
		width: auto;
		margin-top: 0;
		/* transform: translateY(-1px); */
	}
	.donate-form-buttons button {
		width: 208px;
		padding: 15.25px 40px !important;
	}
	.donate-form-buttons .green-button.green-button-xl {
		height: 54px;
		width: 217px;
	}
	.donate-form-buttons .mr-lg-3.save-donate-form {
		margin-right: 17px !important;
	}
	.mt-5.field-label-donate-form-main {
		margin-top: 40px !important;
	}
}
@media (min-width: 1200px) {
	.donation-body .donate-frequency-button,
	.donation-body .donate-value-button {
		width: 120px;
	}
	.donation-body .donate-frequency-button {
		margin: 6px 17px 0 0;
	}
	.donation-body .donate-value-button {
		margin: 7px 17px 0 0;
	}
	.donate-value .text-field-donation.w-input {
		width: 292px;
		padding: 6.5px 15px;
		/* transform: translate(0); */
	}
	.mt-5.field-label-donate-form {
		margin-top: 76px !important;
	}
	.donate-value + .mt-5.field-label-donate-form {
		margin-top: 103px !important;
	}
	.card-wrap + .mt-5.field-label-donate-form {
		margin-bottom: 3px;
	}
	.field-label-donate-form + div .text-field-donation.w-input + .mt-4.input-title {
		margin-top: 32px !important;
	}
	.mt-4.donate-form-buttons {
		margin-top: 55px !important;
	}
}

.blob {
	background: black;
	border-radius: 50%;
	box-shadow: 0 0 0 0 rgba(0, 0, 0, 1);
	height: 110px;
	width: 110px;
	position: relative;
	border: 1px solid rgba(69, 64, 90, 0);
}

.blob::before,
.blob::after {
	content: "";
	border-radius: 50%;
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
}

.blob::before {
	width: 95px;
	height: 95px;
	border: 1px solid rgba(69, 64, 90, 0);
}

.blob::after {
	width: 80px;
	height: 80px;
	border: 2px solid rgba(69, 64, 90, 0);
}

.blob,
.blob::before,
.blob::after {
	transition: 0.3s;
}

.blob {
	transition-delay: 0.2s;
}

.blob::before {
	transition-delay: 0.3s;
}

.blob::after {
	transition-delay: 0.4s;
}

.blob:hover {
	transition-delay: 0.4s;
	border-color: rgba(69, 64, 90, 0.3);
}

.blob:hover::before {
	transition-delay: 0.3s;
	border-color: rgba(69, 64, 90, 0.7);
}

.blob:hover::after {
	transition-delay: 0.2s;
	border-color: rgba(69, 64, 90, 1);
}

.blob.purple {
	background: url("../images/gnanow/home/mobile/play-button-bg-sm.png") no-repeat center;
	box-shadow: 0 0 0 0 rgba(69, 64, 90, 1);
}

@keyframes pulse-purple {
	0% {
		box-shadow: 0 0 0 0 rgba(139, 202, 105, 0.9);
	}

	50% {
		box-shadow: 0 0 0 45px rgba(139, 202, 105, 0);
	}

	100% {
		box-shadow: 0 0 0 0 rgba(139, 202, 105, 0);
	}
}
@keyframes pulse-purple-m {
	0% {
		box-shadow: 0 0 0 0 rgba(139, 202, 105, 0.9);
	}

	50% {
		box-shadow: 0 0 0 15px rgba(139, 202, 105, 0);
	}

	100% {
		box-shadow: 0 0 0 0 rgba(139, 202, 105, 0);
	}
}
@keyframes fadeInUps {
	from {
		opacity: 0;
		transform: translate3d(0, 150px, 0);
	}

	to {
		opacity: 1;
		transform: none;
	}
}

.fadeInUps {
	animation-name: fadeInUps;
}

.play-button:not(.play-button-m)::before {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 112px;
	height: 112px;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	/* background-image: url("../images/gnanow/home/play-button-bg-before.png");
    background-color: rgba(69, 64, 90, .1); */
	background-image: url("../images/gnanow/home/play-btn-bg-before.png");
	background-color: rgba(139, 202, 105, 0.1);
	border-radius: 50%;
	transition: 1s;
	z-index: 0;
	animation: pulse-purple 2s infinite;
	animation-delay: 1.25s;
}
.play-button.play-button-m {
	background-image: none;
}
.play-button.play-button-m::before {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	left: 0;
	bottom: 0;
	background-size: 100%;
	background-position: center;
	background-repeat: no-repeat;
	background-image: url("../images/gnanow/home/play-btn-bg-before.png");
	background-color: rgba(139, 202, 105, 0.1);
	/* background-image: url("../images/gnanow/home/play-btn-bg-before.png");
    background-color: rgba(139, 202, 105, .1); */
	border-radius: 50%;
	transition: 1s;
	z-index: 0;
	animation: pulse-purple-m 2s infinite;
	animation-delay: 1.25s;
}
/* ############ 1800px width ############################################################ */
@media (min-width: 1800px) {
	/* .container, .container-sm, .container-md, .container-lg, .container-xl,
    .get-health-care-content, .sta, .about-content + .faq-list-container .faq-list,
    .about-content-fifth-content, .pjh-second-content,
    .pjh-fourth-content, .pjh-fifth, .pjh-sixth-content, .pjh + .faq-list-container .faq-list {
        max-width: 1360px;
    } */
	.pjh-first-content {
		max-width: 1375px;
	}
	.search-row .container, .search-row .container-sm, .search-row .container-md, .search-row .container-lg, .search-row .container-xl,
    header .container, header .container-sm, header .container-md, header .container-lg, header .container-xl,
	.body-for-community-all .container.container_brfore-content,
	.body-for-community-all .container.container_content,
	.body-for-community-all .breadcrumb-container .container,
    .about-content-third, .about-content-fourth
	/* , .page-header .container, .breadcrumb-container .container, */ {
		max-width: 1500px;
	}

	.about-content-first {
		max-width: 1460px;
		margin-left: auto;
		margin-right: auto;
	}

	.about-content-third,
	.about-content-fourth {
		padding-left: 60px;
		padding-right: 60px;
	}

	.icms-footer__middle .container,
	.icms-footer__middle .container-sm,
	.icms-footer__middle .container-md,
	.icms-footer__middle .container-lg,
	.icms-footer__middle .container-xl {
		max-width: 1450px;
	}
}

/* FORMS ############################################################################### */
form label,
form::placeholder {
	font-family: "Inter", sans-serif;
}
.search-section form {
	display: grid;
	grid-gap: 10px;
	/* grid-template-columns: 415px 1fr 310px 190px; */
	grid-template-columns: 1fr 1fr 1fr 205px;
	font-family: "Inter", sans-serif;
}
/* @media (min-width: 1440px) {
	.search-section form {
		grid-template-columns: 1fr 1fr 1fr 205px;
	}
}
@media (min-width: 1600px) {
	.search-section form {
		grid-template-columns: 1fr 1fr 1fr 205px;
	}
} */
.search-row.is_shadow .search-section form {
	grid-template-columns: 415px 1fr 310px 125px;
}
.search-section .green-button {
	text-transform: none;
}
.search-row .white-space-nowrap {
	transition: 0.3s;
	display: inline-block;
	overflow: hidden;
	white-space: nowrap;
}

.search-row.is_shadow .white-space-nowrap {
	/* width: 77px; */
	width: 65px;
}

@media screen and (max-width: 1280px) {
	/* .search-section form {
		grid-template-columns: 375px 1fr 270px 180px;
	} */

	.search-row.is_shadow .search-section form {
		grid-template-columns: 375px 1fr 270px 120px;
	}

	.search-section button {
		padding: 13px 26px;
	}

	.search-section .active-step input::placeholder,
	.search-section .active-step .select2-selection__placeholder {
		font-size: 14px;
	}
}

@media screen and (max-width: 1440px) and (max-height: 900px) {
	.get-health-care-text {
		margin-top: 50px;
	}

	/* .get-health-care-img {
        flex: 0 0 430px;
    } */

	.search-section input::placeholder,
	.search-section .select2-selection__placeholder {
		font-size: 14px;
	}
}

.search-section form input,
.search-section form select {
	max-height: 53px;
	border-radius: 4px;
	border: 1px solid #a8a7aa;
	padding: 20px 20px 20px 40px;
	color: #a8a7aa;
	font-size: 16px;
	font-weight: 500;
	line-height: 1;
	width: 100%;
	font-family: Inter, sans-serif;
}

.search-section .active-step input,
.search-section .active-step select,
.search-section .active-step .select2-selection--single {
	background-color: #ebf0f6;
	border: 1px solid #45405a;
	outline: 1px solid #a09cac;
	font-size: 16px;
	line-height: 1;
	font-weight: 500;
	font-family: Inter, sans-serif;
}

.search-section .active-step input::placeholder,
.search-section .active-step .select2-selection__placeholder,
.search-section .active-step .pac-target-input,
.search-section .active-step .pac-target-input::placeholder {
	color: #45405a !important;
}

.select2-container--default.select2-container--disabled .select2-selection--single,
.search-section form input:disabled {
	background-color: #fff;
}

.select2-container--default.select2-container--disabled .select2-selection--single .select2-selection__arrow b {
	opacity: 0.6;
}

.select2-container--default.select2-container--disabled .select2-selection--single .select2-selection__rendered {
	color: var(--input-color);
}

.search-section form input::-webkit-input-placeholder {
	color: #a8a7aa;
	font-size: 16px;
	font-weight: 400;
}

.search-section form input::-moz-placeholder {
	color: #a8a7aa;
	font-size: 16px;
	font-weight: 400;
}

.search-section form input:-ms-input-placeholder {
	color: #a8a7aa;
	font-size: 16px;
	font-weight: 400;
}

.search-section form input:-moz-placeholder {
	color: #a8a7aa;
	font-size: 16px;
	font-weight: 400;
}
.search-section form input::placeholder {
	color: #a8a7aa;
	opacity: 1;
}
.search-section form .active-step input::placeholder {
	color: #45405a;
}
.search-section button {
	max-height: 53px;
	display: flex;
	width: 100%;
}
.search-row .search-section .green-button {
	background-color: var(--theme-purple);
	border-radius: 8px;
	border: 2px solid #463c72;
}
.search-row .search-section .green-button:hover {
	background-color: var(--theme-color-green);
	border-color: var(--theme-color-green);
}
.search-section form input:focus {
	border: 1px solid #45405a;
	outline: 1px solid #45405a;
	background-color: #ebf0f6;
	box-shadow: none;
}

.search-section form input {
	background-repeat: no-repeat;
	background-position: 15px center;
	background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAA8AAAASCAMAAACzQHQ9AAAAS1BMVEUAAACvn6+oqKqoqKqop6qpp6uqpaqop6qop6qnp6unp6mopquopqqop6qoqKqppqmop6qnp6qnp6qop6qnp6enp6uppqmop6qop6qADZ/cAAAAGXRSTlMAEG/P/38w3/CggHCQ4O9QsMBgvyBAX5/QexyPDgAAAIxJREFUeNpNi4WBwzAUQ+XEzOHsP+nJcG3fZxCIWFYpVyUw0MY6H2LKZYy59otwsi/ShonLPOySqRyHaicPVAcE6ZyMgDeA3Rnc7/LEJQF5QTB6c3End/S45n1zQMzLnSsQEiMLLqR0LIk3YR9MPCVAkXGMuwyz7qM4DGJb6Mxx4uT+Geciv/jFvQKdP0YpBX/e4WVWAAAAAElFTkSuQmCC);
}
.search-section form .active-step input {
	background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAA8AAAASCAYAAACEnoQPAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAAYdEVYdFNvZnR3YXJlAFBhaW50Lk5FVCB2My4yMreRF30AAAGBSURBVDhPjZPRR4NhFIfHGBEjRkREV13tKrrLiK5GtyMiYsSIiDEioquIiF2N/QExuoqI6A+I3UZERERE1PO8nX1LS/Xj8b3nd87e9zvn/Zb7qqXF2jhswyW8wjtcwx5MRNmoSM7DHTxBGzaCQ7gH/WqUD4VZhhc4g1LYmfDGwA3fYLgBQR764A/zYf8o8m7gG3y2wGIVPHUqGSi8C7D3LSiEXwBb2x8U9qCbAsR6ExyUfgcc3FGkze9AfxA8wHqsbeERWimJWK+AvU5GvABuXjRwkYbAczrisrFi7fXpVSKeiXjGwAGsRcKp+prpTRTrwUlzEXulxiUDh3KcKpFreIZdaIBt9CJt3pncDgKnmY2fpxM9Afv0LbpQjJwzuYG2sYY9ObROMn4RNS1ww9mwkrkMntQMa0TkamCvjbCGwqxHsh5WJrwquHl23yMi2QQ3qIWlVwG/wD/bsvgA7MvTvBaHeQq/fveZKPQP4GkO8hzSt/0vUeyVeEVXMBb2N+VyH7DS0ya8BoGLAAAAAElFTkSuQmCC);
}

.search-section form select {
	padding: 12px 20px 12px 40px;
}

.select2-container--default .select2-selection--single {
	height: 53px;
	border-radius: 4px;
	border: 1px solid #a8a7aa;
	padding: 12px 20px 12px 40px;
	color: #45405a;
	font-size: 16px;
	font-weight: 400;
}

.select2-container--default.select2-container--open .select2-selection--single {
	border: 1px solid #45405a;
	outline: 1px solid #a09cac;
	background-color: #ebf0f6;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
	height: 53px;
	position: absolute;
	top: 0;
	right: 5px;
	width: 20px;
}

.select2-container--default .select2-selection--single .select2-selection__arrow b {
	border-color: #333333 #333333 transparent transparent;
	border-style: solid;
	border-width: 2px 2px 0 0;
	height: 8px;
	left: 50%;
	margin-left: -8px;
	margin-top: -6px;
	position: absolute;
	top: 50%;
	width: 8px;
	transform: rotate(135deg);
}

.select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b {
	border-color: #333333 #333333 transparent transparent;
	border-width: 2px 2px 0 0;
	transform: rotate(-45deg);
}

.search-section .form-field__advocate .select2-selection--single {
	background-repeat: no-repeat;
	background-position: 15px center;
	background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABIAAAASCAYAAABWzo5XAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAAYdEVYdFNvZnR3YXJlAFBhaW50Lk5FVCB2My4yMreRF30AAAHPSURBVDhPfZRPRIRBGIeXJSI6RURERESniCUiOkVERKeIJSKWiE7RaYmIiE4pderUKSIiIiI6RUREREREPc/0ft/uauvH45v5zTvzzb93Cs10sH/YBatwAW/wCVewAYMR9rcIKsIafMEz7EAF5sFBHsBBq9AW3RpFQzucgjNYgNbw+6A3BSHKM+BPbqAj7Jowj+AVhqPu8lyasxM7pgH9grM7h6JeEpVpcMojYemdwT1Mwihcwy2kjnwH4QPKqYOicgl7Uc3+6CzGwtLrCW8oLL1NeISilW4woBTtesPh9YSl1xreZFh6A+GVrEyBG5yvlbKd9Kph6S2BS+kKK4m6M6pYWIS78HPhzYF/8/6I5Uo058Jzw6sWluHXQAq/BNuwBflB1AvfQ0kDzcI71I4RUR+HFXAgsTwBLRGSRN1rsGQh2+wR8GaX4Sk8v9nSMs+75m03tj+8n4OiYOAxnETDHvSlxjrheS1MFTfdK3MAP8cfAZ5c9repZP4jYjx2l2Sf2oVUGKaIOZRfuL9EjDMztjFFFEYLuDynbdI2bGomfPfQmZt7nWE3igY30CfCU3yBXfAJqX9Gsj1s/ozUiyAzfx3cUAe0s0lrbjVZeqHwDaK/7vwu3+OAAAAAAElFTkSuQmCC);
}
.search-section .form-field__advocate.active-step .select2-selection--single {
	background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABIAAAASCAMAAABhEH5lAAAATlBMVEUAAABIQFhGQFlFQFpFQFpEQFxAQGBFQFpFQFlGQFpFQFpEQFpFQFpFQFpFQFpGQFpFQFlGQFlFQFpFQFlFQFpEQFtFQFpEQFpEQVpFQFoMwOxoAAAAGnRSTlMAII/P/0AQ4KCAkK/wYDCwv1DA0N9w739Pb2/NhIAAAACxSURBVHjaRZCBasQgEEQn7hg10e1FE9P+/4+2u81xD5DhAYOzcJYgpISIN2tgyqVsifv6GKkNUAValX/3VRXrixTFkl5mDkagjyMOAZQNwOjAYtqffD4h0josKRWNAFADcFXz6UKZphpFeFnqBYUwYt4iHnW4Ou4/vi2xeH2brL1XztvrMfadWX1poezJv1pNOJrYfND8qNlhrGP+wGlzvE+x8Qz3HU5mN86SBzk2hfELg2MHSeGD3LAAAAAASUVORK5CYII=);
}

.search-section .form-field__category .select2-selection--single,
.search-section .form-field__category input {
	background-repeat: no-repeat;
	background-position: 15px center;
	background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABIAAAASCAMAAABhEH5lAAAARVBMVEUAAACvn6+oqKqop6qoqKmnp6qop6qop6qoqKqnp6eop6qppqmqpaqnp6upp6unp6qnp6mqpqqnp6uopquoqKqop6qopqosvhUJAAAAF3RSTlMAEG+/j8DwsM8g/1AwQH9ggD+gcO/QkIg25JoAAACQSURBVHjafc8FlgQhDEXRl2YCk9+krWT/Oy0bV/QeNAE7lVKe7BPw6u61QDvwDKEzcFbnQGxIAaBM5Qt+XzLAPi+hi2EX2bFkJwVctZcr3KBJN4DIzIAX9pf53uEF9xdepQotdujloh4ZoKQ+MnNQ8P53f8PHUv639JJ2Kt7STnCVUkaHNu6YABvcfTBgx2ys2QYH28ePP7IAAAAASUVORK5CYII=);
}
.search-section .form-field__category.active-step .select2-selection--single,
.search-section .form-field__category.active-step input {
	background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABIAAAASCAYAAABWzo5XAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAAYdEVYdFNvZnR3YXJlAFBhaW50Lk5FVCB2My4yMreRF30AAAF/SURBVDhPrZTRR4NhFMbHGDFGxK7GGGOMEWNE3YzoKiI+uo3ddhsRI6I/ILrqqqvoqtsYXUX/SkRE1O9595x6s8ZSh5+95znPe75973t8JcVwo6jCGCbw4N9TqCUDwXoJjuAO5LmHM1i2JZlu4Q1kCJRPbJHnCt5dC17hEcoyNECGofekIF+33oOa14XLKchXrfeVrDlpuJ5CuXXVu153XU5BHg/Y+tdGAydN11OQRyPVF2qkG9Oh6QbSLVnTrenA6zDTiHXcovRWiCPQJok5B66XQeNRdX4N4RlL+wyEFuzBvn+nT/khqHXs61j6CsQmFDCwNBPUdG67EA9ruzQNhPzVnqACeh0N4Yo92qizjFcKjqOJTl6GC9CA1TNdRl2/mj7DJcgT6Nz0B5ra0Adt+PY3yfNGba97LqcgD8+mknkDmTf602T/ulFM8LbrKchj4vVasWHH5RTkGgPp/RBuLOSfiEU+Iy+gz0glTBr3QzjPOIE0yQrW8z5sjEep9AHQhT5SNhPtsQAAAABJRU5ErkJggg==);
}

.form-control {
	display: block;
	width: 100%;
	height: 53px;
	padding: 12px 20px;
	font-size: 16px;
	font-weight: 400;
	color: #45405a;
	border: 1px solid #a8a7aa;
	background-clip: padding-box;
	border-radius: 4px;
	transition: all 0.15s ease-in-out;
	box-shadow: none;
}

.form-control:hover,
.form-control:focus {
	border: 1px solid #45405a;
	outline: 1px solid #a09cac;
	background-color: #ebf0f6;
}

.form-control {
	width: 100%;
}

.field label {
	color: #4d4960;
	font-size: 16px;
	display: block;
	margin-bottom: 10px;
	line-height: 1;
}

.field + .field {
	margin-top: 40px;
}

.field .hint {
	line-height: 1.2;
	margin-top: 3px;
}

.custom-control-input:checked ~ .custom-control-label::before {
	border: 1px solid #949498;
	background-color: #ffffff;
}

.custom-radio .custom-control-input:checked ~ .custom-control-label::after {
	background-image: none;
	background-color: var(--theme-color-green);
	border-radius: 40px;
	width: 10px;
	height: 10px;
	top: 5px;
	left: -21px;
}

.chosen-container-multi .chosen-choices {
	padding: 9px;
	box-shadow: none;
	height: 53px !important;
}

.chosen-container-active .chosen-choices {
	border-color: #45405a;
	background-color: #ebf0f6;
}

.chosen-container-single .chosen-single {
	height: 53px;
	border-color: #a8a7aa;
	line-height: 53px;
}

.chosen-container-active.chosen-with-drop .chosen-single {
	border-color: #45405a;
	background-color: #ebf0f6;
}

.chosen-container-single .chosen-single abbr {
	top: 14px;
	right: 30px;
}

.select2-results__option {
	margin: 6px;
	padding: 11px 5px 11px 15px;
	background-color: #f1f1f1;
}

.select2-container--default .select2-results__option--selected {
	background-color: #45405a !important;
	color: #fff !important;
	cursor: default;
}

/* .select2-container--default .select2-results__option--highlighted.select2-results__option--selectable {
    background-color: #45405a;
} */
.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable {
	background-color: #f1f1f1;
	color: var(--theme-color);
}
.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable:hover {
	background-color: #45405a;
	color: #fff;
}

.error .select2-container--default .select2-selection--single {
	border-color: #fd2d2d;
}
.search-section .select2-container--default .select2-selection--single .select2-selection__placeholder {
	color: var(--input-color);
}
.search-section .error input,
.search-section .error select {
	border-color: #fd2d2d;
}

.select2-container--default .select2-results > .select2-results__options {
	max-height: 400px;
}
.modal_search .select2-container--default .select2-results > .select2-results__options {
	max-height: 290px;
}
@media (max-height: 800px) {
	.select2-container--default .select2-results > .select2-results__options {
		max-height: 350px;
	}
	.select2-container--default .select2-results > .select2-results__options[id*="select2-language"] {
		max-height: 350px;
	}
}
form .error-message {
	display: none;
	color: #fd2d2d;
	font-size: 14px;
	font-weight: 400;
}

form .error .error-message {
	display: block;
}
form .reguired_field > label::after {
	font-size: 16px;
	font-weight: 400;
}
form .reguired_field_asterisks {
	color: #f04124;
	font-size: 16px;
	font-weight: 400;
	display: inline-block;
}
form .big-title .reguired_field_asterisks {
	transform: translateY(-5px);
}
form .reguired_field > .ft_checkbox > label::after {
	content: "*";
	color: #f04124;
	padding-left: 0.5rem;
}
.pac-container {
	z-index: 1100;
}
#mobile_device_type > .select2-container--open {
	width: auto !important;
}
@media screen and (max-width: 1450px) {
	.search-section form input,
	.search-section form select,
	.search-section .active-step input,
	.search-section .active-step select,
	.search-section .active-step .select2-selection--single,
	.search-section form input::placeholder,
	.select2-container--default .select2-selection--single {
		font-size: 14px;
	}
}

@media screen and (max-width: 1024px) {
	.search-section form {
		grid-template-columns: 1fr 1fr 210px 190px;
		grid-gap: 10px;
	}
}

@media screen and (max-width: 768px) {
	.search-section form {
		grid-template-columns: 1fr;
		grid-gap: 10px;
	}
}

@media (min-width: 576px) {
	.form-inline .input-group,
	.form-inline .custom-select {
		width: 100%;
		overflow: hidden;
	}
}
.form-advocates__fset-desc-slug {
	font-weight: 700;
}
.form-advocates__fset-desc-slug b {
	font-weight: 400;
	color: #3898ec;
}

.company-stepts {
	margin: 44px 0 50px calc(-1 * calc(100% / 6) / 2 + 26px);
	text-align: justify;
	position: relative;
	display: flex;
	align-items: center;
	padding: 0;
	counter-reset: step;
}

.company-stepts.first {
	margin-left: calc(-1 * calc(100% / 6) / 2 + 60px);
}

.company-stepts__item {
	float: left;
	width: calc(100% / 6);
	position: relative;
	text-align: center;
}

.company-stepts__item::before {
	display: inline-flex;
	width: 52px;
	height: 52px;
	background-color: #eef3f8;
	border-radius: 100px;
	border: 3px solid #fff;
	align-items: center;
	justify-content: center;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
	font-size: 21px;
	font-weight: 600;
	color: #999;
	z-index: 10;
	position: relative;
	content: counter(step);
	counter-increment: step;
}

.company-stepts__item.active::before {
	content: "";
	display: inline-flex;
	background-color: var(--theme-color-green);
	color: #fff;
	width: 116px;
	height: 116px;
	border-radius: 150px;
	border: 3px solid #fff;
	align-items: center;
	justify-content: center;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
	font-size: 21px;
	font-weight: 600;
	z-index: 10;
	position: relative;
	background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAALIAAACiCAMAAADSgmfBAAABMlBMVEUAAACLyGmKymmLxWiNyGmLymmLymmLymmIzGaNymuLymmLymmLyWyLy2uLymmLymmMyGeKyWmLymmg1IXi8tmSzXKLymmKy2iLymn4/Pb////p9eOLy2mKyWmLy2iLymmSyG3//wCLymm23qHT68eA/4CKymqZzGaLyWiLymmS222KymiKyGeKymqL0XSLymiKymmPz3CLymm33qGLymmLymiLymmLy2mGyWuLymmOxnGMy2mo146MymmPzGaLymrM6L2Jzmyh1IWMy2mLymmLymiOzWqJyGqLymmKymmLyWqv25jb7tCMy2mLymmLymmLymmLymiKymiMymiKymmLy2mLymma0Xzw+OyLy2mKy2eMyGnF5LSLymnF5bSLymmAv4CMyWqMymmLy2mMymmLyWg2nt9pAAAAZnRSTlMALscWOPH/3h5D9uUhT/rpKlX9////72L+////cD2E8g4Blv//AqQFsOwHvCVIC8HdEMz/2prV0ROtCb7/yRnX/xr/quLjJEH0mYD//0n4j/t9aVuBRPf//7lKM//C/7YEnZSNfEJ8ZoJQAAACAElEQVR42u3Yg5JkWxBG4Sz9bdu2jXvHtm29/ytMVO9WNsLIHbO+cIXWcWYZMgcAAAAAAAAAAAAAAAAAAIBCsWR5KVdUU2s5qauX1NBo+WhqVlVLq+WirV3q6OySuguWh55eqaOvf6BLqpQtB4M6KO7vH+iQ6ocsvuFUXNUpaWTUghsblzSRiie7cjjLU9PV4v5UrBzu5ZlZXzxXsODmF3xxw6JFsGSXWl7xxau1Qd4H01N2sbV1SZOpeEPSZskCGNuSNDtjFylt++KdXQtgZk9VC/t2Xm2NLy6OWgD7/0n6/+KcxQZXXD2sANauHDxdkxdd9MKc1JWK+zbSzRPA1WuSrqeXgTZvnB3o1TWQim9KujVlAezeVrryqfnOXTtx774vfmAxPJT0KA0Pj7ukloIdefLUFz8LNVTeTM1uFG577otfhBrdXXN93clAn4oHqsUvgy1Irrm56fRAn37r7Qm3hrrm9lf22hc/b7No3ryV3qW74H2HpA++WB8tnvKp91mH5Ivvx1xBPnWfavZLU+WTxdTacro5jxWkseGk+bNbQaJyc+ZJcfA/DdM074q3Sxbb2s5Jc1pB1iy60WJqditIcPtfJH11K0h4898kbfS7FSS677ckvXMrSHhj06r6MWYZ+Snpl+VlXL8tN3/sXwcAAAAAAAAAAAAAAAAAAIC/RnBMHdUZ9r0AAAAASUVORK5CYII=);
	background-position: center;
	background-repeat: no-repeat;
}

.company-stepts__item.complete::before {
	content: "";
	background-color: var(--theme-color-green);
	background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAARCAMAAADwppwCAAAA21BMVEUAAAD////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////erRKmAAAASXRSTlMABYt3Bo///nYJmP2HH5ylJQqhmQgmiBwPlgckyLsdEqyRMsy+HhSvjmG/swIBdPnCGrSDcvrEuvx+bHpmYPT4cV7x921Y9WplOFzraQAAAKhJREFUeNpsywWaggAUReE3o9JdttiN3e3+NyX32XHI+/NB3/39J+hXyZQgSj9cVgRBUDX9yw0BmdaH2w6762H4QfruGZM9m8PIF4RiibiwzF5hr9bi13oDr80WeztJqMOjq8few5sY9ImLBkPs0Tic4KlOI7o3m0MWS9xX67ujDf/Dvn062t2+qNKro/0BfjzRV+fLnNjYnF2whamrm6k7kMIm44HKBwDgyQ6aUoJCcwAAAABJRU5ErkJggg==);
	background-position: center;
	background-repeat: no-repeat;
}

.company-stepts__item::after {
	width: 100%;
	height: 3px;
	content: "";
	position: absolute;
	background-color: #d9d9d9;
	top: 50%;
	left: -50%;
}

.company-stepts__item.active + .company-stepts__item::after,
.company-stepts__item.complete + .company-stepts__item::after {
	background-color: var(--theme-color-green);
}

.company-stepts__item:first-child::after {
	content: none;
}

.company-stepts__item-title {
	position: absolute;
	color: #45405a;
	font-size: 18px;
	font-weight: 500;
	bottom: -46px;
	left: 50%;
	transform: translateX(-50%);
	width: 90px;
	text-align: center;
}

.company-stepts__item.active .company-stepts__item-title {
	color: var(--theme-color-green);
	font-size: 26px;
	font-weight: 600;
	bottom: -54px;
}

.company-stepts__item.complete .company-stepts__item-title {
	color: var(--theme-color-green);
}

.company-stepts + form {
	margin-top: 80px;
}

form .buttons .btn {
	display: flex;
	width: 208px;
	height: 62px;
	align-items: center;
	justify-content: center;
	color: #747474;
	font-size: 19px;
	font-weight: 600;
	text-transform: uppercase;
	border-radius: var(--br-025);
	border: none;
}
form .buttons .btn {
	display: flex;
	width: 208px;
	height: 62px;
	align-items: center;
	justify-content: center;
	color: #747474;
	font-size: 19px;
	font-weight: 600;
	text-transform: uppercase;
	border-radius: var(--br-025);
	border: none;
}
form .buttons .btn-secondary {
	background-color: #c6c6c6;
}
.my-profile form .buttons .btn-secondary {
	color: #fff;
}
.my-profile form .buttons .btn-secondary:hover {
	background-color: #b3b3b3;
}

form .buttons {
	display: flex;
	align-items: center;
	flex-direction: row-reverse;
	justify-content: left;
	margin-top: 80px !important;
}
form .buttons .btn:hover,
form .buttons .btn:focus {
	box-shadow: none !important;
}

form .buttons .btn-primary {
	background-color: var(--theme-color-green);
	color: #fff;
}
form .buttons .btn-primary:hover,
form .buttons .btn-primary:focus {
	background-color: var(--theme-color);
	color: #fff;
}

form .buttons .btn-warning {
	background-color: #caccca;
	border-color: #caccca;
	color: #fff;
}
form .buttons .btn-warning:hover,
form .buttons .btn-warning:active {
	background-color: #b2b7bd !important;
	border-color: #b2b7bd !important;
	color: #fff;
}
form .buttons #save-btn-step.btn-warning {
	background-color: var(--theme-color) !important;
	border-color: var(--theme-color) !important;
	color: #fff;
}
form .buttons #save-btn-step.btn-warning:hover,
form .buttons #save-btn-step.btn-warning:active {
	background-color: var(--theme-color-green) !important;
	border-color: var(--theme-color-green) !important;
}
form .buttons .btn + .btn {
	margin-right: 15px;
}

form .without-tabs fieldset {
	padding: 0;
	border-radius: 0;
	border: none;
}

form .without-tabs fieldset + fieldset {
	margin-top: 50px;
}

form .without-tabs fieldset legend {
	color: #45405a;
	font-size: 24px;
	font-weight: 600;
	display: block;
	margin: 0 0 25px 0;
	padding: 0;
	line-height: 1;
}

form .form-advocates__fset-desc {
	color: #45405a;
	font-size: 16px;
	font-weight: 400;
	font-style: normal;
	letter-spacing: normal;
	line-height: 25px;
	margin-top: 15px;
}
form .form-advocates__fset-desc a {
	text-decoration: none !important;
	display: inline-block;
	position: relative;
}
form .form-advocates__fset-desc a::after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: 2px;
	height: 1px;
	background-color: currentColor;
}
form .form-advocates__fset-desc a:hover::after {
	background-color: transparent;
}
form #fset_folder_1 .form-advocates__fset-desc {
	margin-top: 6px;
}
form .form-advocates__fset-example {
	background-color: #f1f4f8;
	/* padding: 30px; */
	padding: 24px 28px 40px;
	margin: 15px 0 50px;
}
form #fset_folder_1 .form-advocates__fset-example {
	margin-top: 12px;
}
form .form-advocates__fset-example-title {
	color: #4d4960;
	font-size: 18px;
	font-weight: 700;
	display: block;
	margin-bottom: 25px;
}
form #tab-folder_1 #fset_folder_1 .form-advocates__fset-example-title {
	margin-bottom: 21px;
}
form #tab-folder_1 #fset_folder_1 .form-advocates__fset-example-content {
	line-height: 1.2;
}

form .form-advocates__fset-example-content {
	color: #3898ec;
	font-size: 16px;
	font-weight: 400;
}
form #f_problem_or_condition_hint .form-advocates__fset-example-title {
	color: #4d4960;
	font-size: 18px;
	font-weight: 700;
	display: block;
	margin-bottom: 16px;
}
form #f_problem_or_condition_hint .form-advocates__fset-example-content {
	color: var(--theme-color);
}
form .field label {
	color: #4d4960;
	font-size: 16px;
	line-height: 1.2;
	display: block;
	margin-bottom: 13px;
}
.form-gsf-parent__form label[for$="_fgsf_in"] {
	display: none;
}
#advocates_form .form-control {
	height: 59px;
}
#advocates_form .form-control.textarea {
	height: 167px;
}
@media (min-height: 768px) {
	#advocates_form #f_help_text .form-control.textarea {
		height: 210px;
	}
	#advocates_form #f_advocate_story .form-control.textarea {
		height: 276px;
	}
}
#advocates_form .field + .field {
	margin-top: 35px;
}
form#advocates_form .child_field {
	padding-left: 0;
}
#advocates_form .custom-checkbox .custom-control-label::before {
	top: 1px;
}
#advocates_form .custom-checkbox .custom-control-label::after {
	top: 2px;
	background-size: 13px 12px;
}
#advocates_form .custom-control.custom-checkbox + .form-control {
	margin-top: 10px;
}
#advocates_form .without-tabs fieldset legend + .form-group,
#advocates_form #fset_folder_4 .form-advocates__fset-desc,
#advocates_form #fset_folder_14 .form-advocates__fset-desc,
#advocates_form #fset_folder_16 .form-advocates__fset-desc,
#advocates_form #fset_folder_17 .form-advocates__fset-desc,
#advocates_form #fset_folder_20 .form-advocates__fset-desc {
	margin-top: -6px;
}
#advocates_form #f_problem_or_condition_hint .form-advocates__fset-example {
	margin-bottom: 35px;
}
#advocates_form .field + #f_training_or_certification.field,
#advocates_form .field + #f_support_group_experiences.field {
	margin-top: 27px;
}
#advocates_form .field + #f_details_about_personal_journey.field {
	margin-top: 18px;
}
#advocates_form #f_details_about_personal_journey label {
	line-height: 2;
	margin-bottom: 22px;
}
#advocates_form .tab-pane + #tab-folder_4.tab-pane {
	margin-top: 42px;
}
#advocates_form #tab-folder_4 .form-advocates__fset-example {
	margin: 30px 0 47px;
}
#advocates_form #tab-folder_4 #f_slug {
	margin-top: 11px;
}
#advocates_form #tab-folder_4 #f_slug label {
	margin-bottom: 21px;
}
#advocates_form #tab-folder_4 .form-advocates__fset-example-title {
	padding-top: 5px;
	margin-bottom: 10px;
}
/* step-6 */
@media (min-width: 1024.01px) {
	.form-inner.form-inner-step-6 {
		padding-top: 84px;
	}
}
#advocates_form #fset_folder_20 .form-group.ft_image {
	margin-top: 58px;
}
#advocates_form #fset_folder_20 #f_photo.field + .field {
	margin-top: 42px;
}
#advocates_form #fset_folder_18 .form-advocates__fset-desc {
	margin-top: 18px;
}
#advocates_form #fset_folder_18 #f_is_agree_pacb.form-group {
	margin-top: 29px;
}
#advocates_form .tab-pane + #tab-folder_19.tab-pane {
	margin-top: 48px;
}
#advocates_form #fset_folder_19 .form-advocates__fset-desc {
	margin-top: 6px;
	margin-bottom: 33px;
}
#advocates_form #fset_folder_19 .form-advocates__fset-desc + legend {
	margin-bottom: 27px;
}
#advocates_form .field + #f_insurance_carrier_name.field {
	margin-top: 15px !important;
}
#f_insurance_carrier_name::before {
	content: "Please provide your liability insurance details below.";
	display: block;
	margin-bottom: 35px;
}
#advocates_form .tab-pane + #tab-folder_20.tab-pane {
	margin-top: 47px;
}
#advocates_form #f_is_agree_tuse .hint {
	line-height: 1.5;
}
#advocates_form #f_is_agree_tuse .advocates-form-hint.mb-3 {
	margin-bottom: 35px !important;
}
.form-inner.form-inner-step-6 .tab-pane + #tab-folder_.tab-pane {
	margin-top: 24px;
}
/* step-6 end */
form .form-group {
	margin-bottom: 0;
}

form .tab-pane + .tab-pane {
	margin-top: 50px;
}

form .ft_list label {
	color: #45405a;
	font-size: 18px;
	margin-bottom: 20px;
	line-height: 1.2;
	display: block;
}

form .custom-radio {
	display: flex;
	align-items: center;
	min-height: auto;
}

form .custom-radio + .custom-radio {
	margin-top: 15px;
}

form .custom-radio label {
	margin-bottom: 0;
	color: #4d4960;
	font-size: 16px;
	line-height: 1.2;
}

form .custom-control-label::before {
	top: 2px;
}

form .buttons .btn.btn-danger {
	color: rgba(255, 255, 255, 0.8);
}

/* .icms-header__top .nav-link:hover::before {
    width: 0 !important;
} */

.icms-header__top .nav-item.is-active .nav-link:hover::before {
	width: 100% !important;
}

.wd-blog-list-item a:hover,
.wd-blog-list-item:hover .item-title a {
	text-decoration: none;
}

.select2-container {
	width: 100% !important;
}
.tab-content .search-section-title {
	font-size: 18px;
	line-height: 1.5;
	margin-bottom: 15px;
}
.tab-content .search-section form {
	display: flex;
	gap: 10px;
}
.tab-content .search-section form .green-button {
	flex: 0 0 186px;
}
.for-search-all-tipes-link {
	margin-top: 15px;
	font-size: 14px;
	line-height: 1;
}
@media (min-width: 992px) {
	.tab-pane-form .for-search-all-tipes-link {
		margin-top: 20px;
		font-size: 16px;
		line-height: 22px;
	}
}
.modal_search .search-section.skeleton .green-button {
	text-transform: none;
}

body #myTabContent .search-section form input.pac-target-input {
	background-color: #fff;
	box-shadow: none !important;
}

.select2-dropdown {
	border: 1px solid #eeeeee;
}

.select2-results__option {
	margin: 7px 10px;
}

.select2-results__options {
	margin: 6px 0;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
	color: var(--input-color);
}

.select2-container--default .select2-selection--single .select2-selection__arrow b {
	border-color: #999 #999 transparent transparent;
}

.active-step .select2-selection__arrow b {
	border-color: #333333 #333333 transparent transparent !important;
}
/* custom-checkbox ############################################################################### */
form .form-group {
	margin-top: 15px;
}
.custom-control.custom-checkbox {
	height: 25px;
	display: flex;
	align-items: center;
	padding-left: 30px;
}
.custom-control.custom-checkbox + .custom-control.custom-checkbox {
	margin-top: 10px;
}
.custom-control.custom-checkbox label {
	color: #4d4960;
	font-size: 16px;
	line-height: 1.2;
	display: block;
	margin-bottom: 0;
}
.custom-checkbox .custom-control-label::before {
	border-radius: 0;
	box-shadow: none !important;
	top: 0;
	left: -30px;
	width: 19px;
	height: 19px;
}
.custom-checkbox .custom-control-input:checked ~ .custom-control-label::before {
	border: 1px solid var(--theme-color-green);
	background-color: var(--theme-color-green);
}
.custom-checkbox .custom-control-label::after {
	top: 1px;
	left: -28px;
	background-size: 12px;
	background-repeat: no-repeat;
	background-position: center;
}
/* custom-radio */
.custom-control.custom-radio {
	padding-left: 30px;
}
.custom-radio .custom-control-label::before {
	left: -30px;
	top: 0;
	width: 18px;
	height: 18px;
	box-shadow: none !important;
}
.custom-radio .custom-control-input:checked ~ .custom-control-label::after {
	left: -26px;
	top: 4px;
	width: 10px;
	height: 10px;
}
/* pagination #################################################################### */
.pagination {
	padding: 50px 0 0;
	justify-content: center;
}

.pagination .page-link {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 50px;
	height: 50px;
	border: 1px solid #a8a7aa;
	border-radius: 100px;
	font-size: 18px;
	text-decoration: none;
	color: #a8a7aa;
}
.page-item.active .page-link {
	z-index: 3;
	color: #ffffff;
	background-color: #4d63ac;
	border-color: #4d63ac;
}
.pagination .page-item.active .page-link {
	background-color: #45405a;
	border-color: #45405a;
}
.pagination .page-item:last-child .page-link {
	border-top-right-radius: 100px;
	border-bottom-right-radius: 100px;
}
.pagination .page-item + .page-item {
	margin-left: 15px;
}

.pagination .page-item:first-child .page-link {
	border-radius: 200px;
}

.page-item-prev .page-link,
.page-item-next .page-link {
	border: none;
	width: auto;
}

.page-item-prev .page-link:hover,
.page-item-next .page-link:hover {
	background-color: #fff;
	box-shadow: none;
}
.page-item-prev .page-link span {
	padding-right: 0.25rem;
}
.page-item-next .page-link span {
	padding-left: 0.25rem;
}
@media screen and (max-width: 767.99px) {
	.page-item.disabled {
		display: none;
	}
}
@media screen and (max-width: 460px) {
	.pagination .page-link {
		width: 38px;
		height: 38px;
		font-size: 14px;
	}

	.pagination .page-item + .page-item {
		margin-left: 7px;
	}

	.page-item-prev .page-link,
	.page-item-next .page-link {
		border: none;
		width: auto;
	}
}
@media screen and (max-width: 390px) {
	.page-item-prev .page-link span,
	.page-item-next .page-link span {
		display: none;
	}
}
/* ############ Search Modal ############################################################ */
@media screen and (max-width: 575.999px) {
	.modal-lg-m {
		margin: 1.5rem !important;
		width: calc(100% - 3rem) !important;
	}
}
.modal_search-content {
	padding: 30px 0 10px;
}
.unsure-link {
	text-decoration: underline;
}
.unsure-link:hover {
	text-decoration: none;
}
.unsure-link {
	display: inline-block;
	line-height: 1.3;
}
@media (min-width: 576px) {
	.modal_search-content {
		padding: 36px 28px 16px;
	}
	.unsure-link,
	.unsure-link:hover {
		text-decoration: none;
	}
	.unsure-link {
		border-bottom: 1px solid currentColor;
	}
}
/* ############ Find help form ############################################################ */
.fh-basic {
	font-size: 20px;
	text-align: center;
	margin: 85px 0 76px;
	line-height: 1;
}
/* @media (min-width:1440px) {
	.fh-basic {
		padding-left: 95px
	}
	.fh-slider-container {
		padding-left: 45px;
	}
} */
.fh-basic .fh-basic-bold {
	font-weight: 700;
}
.fh-basic a {
	color: currentColor;
	text-decoration: none;
	display: inline-block;
}
.fh-basic a .watch {
	border-bottom: 1px solid currentColor;
}
.fh-basic a:hover .watch {
	border-color: transparent;
}
.fh-basic a .fh-basic-img {
	margin-left: 10px;
}
.sp-content {
	display: flex;
	justify-content: space-between;
}
.sp-title {
	font-size: 34px;
	color: var(--theme-color-green);
	margin-bottom: 5px;
}
@media (min-width: 1366px) {
	.sp-title {
		line-height: 1;
		margin-bottom: 10px;
	}
}
.sp-title-hint {
	font-size: 20px;
	line-height: 1.3;
	width: 70%;
	margin-bottom: 14px;
}
.sp-bold {
	font-size: 18px;
	margin-bottom: 8px;
}
.sp-list {
	padding-left: 15px;
	margin-bottom: 0;
}
.sp-list li {
	line-height: 1.3;
	width: 60%;
}
.sp-list li + li {
	margin-top: 10px;
}
.sp-content-form {
	padding: 60px 45px 35px;
	border: 1px solid #9996a5;
	border-radius: 6px;
	flex: 0 0 585px;
	display: flex;
	flex-direction: column;
}
.sp-content-form h4 {
	text-align: center;
	font-size: 28px;
	color: #5d576d;
}
.form.spc-form {
	display: flex;
	flex-direction: column;
	gap: 10px;
	margin-top: 35px;
}
.form.spc-form input,
.form.spc-form .green-button {
	flex: 0 0 53px;
	border-radius: 4px;
	width: 100%;
}
.form.spc-form input {
	background-repeat: no-repeat;
	background-position: 15px center;
	border: 1px solid #a8a7aa;
	padding: 12px 20px 12px 40px;
	font-family: "Inter", sans-serif;
	font-size: 16px;
	line-height: 1;
}
.form.spc-form .readonly,
.form.spc-form .readonly::placeholder {
	font-weight: 500;
	color: #a8a7aa;
}
.form.spc-form .readonly {
	pointer-events: none;
	background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABIAAAASCAMAAABhEH5lAAAARVBMVEUAAACvn6+oqKqop6qoqKmnp6qop6qop6qoqKqnp6eop6qppqmqpaqnp6upp6unp6qnp6mqpqqnp6uopquoqKqop6qopqosvhUJAAAAF3RSTlMAEG+/j8DwsM8g/1AwQH9ggD+gcO/QkIg25JoAAACQSURBVHjafc8FlgQhDEXRl2YCk9+krWT/Oy0bV/QeNAE7lVKe7BPw6u61QDvwDKEzcFbnQGxIAaBM5Qt+XzLAPi+hi2EX2bFkJwVctZcr3KBJN4DIzIAX9pf53uEF9xdepQotdujloh4ZoKQ+MnNQ8P53f8PHUv639JJ2Kt7STnCVUkaHNu6YABvcfTBgx2ys2QYH28ePP7IAAAAASUVORK5CYII=);
}
.form.spc-form .pac-target-input,
.form.spc-form .pac-target-input::placeholder {
	color: #45405a;
	font-family: "Inter", sans-serif;
}
.form.spc-form .pac-target-input {
	background-color: #ebf0f6;
	/* background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAA8AAAASCAMAAACzQHQ9AAAAS1BMVEUAAACvn6+oqKqoqKqop6qpp6uqpaqop6qop6qnp6unp6mopquopqqop6qoqKqppqmop6qnp6qnp6qop6qnp6enp6uppqmop6qop6qADZ/cAAAAGXRSTlMAEG/P/38w3/CggHCQ4O9QsMBgvyBAX5/QexyPDgAAAIxJREFUeNpNi4WBwzAUQ+XEzOHsP+nJcG3fZxCIWFYpVyUw0MY6H2LKZYy59otwsi/ShonLPOySqRyHaicPVAcE6ZyMgDeA3Rnc7/LEJQF5QTB6c3End/S45n1zQMzLnSsQEiMLLqR0LIk3YR9MPCVAkXGMuwyz7qM4DGJb6Mxx4uT+Geciv/jFvQKdP0YpBX/e4WVWAAAAAElFTkSuQmCC); */
	background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAA8AAAASCAYAAACEnoQPAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAZlJREFUeNqM018opFEYx/EZJtSEuZStzaYkiTIKra2h9kZytRHlSrkWF24ktXf+3FLsXmEmiW2T9mbRUv5EEfKnJDfIDYWLVQbfp36vTpoppz6dec/7PnOec85z/F8jLT6n+VGOdnxDAAsYxl88uR+nOL8zsYE5rCOCCkxiAGf44AYH1AdxihH0vZnhANNo0jcfceUGz2IUvb7kbUqZriEfz/ZQoHW6gTY2higqnfEYrlHjrblVgXF9EMah0l3EH22e1zrR5aVdj2bnZVSbtaJnCz7BL02wgzo7GZu5CDfOBlrKW86fnSMDIT3/V59qwZfI0sAjbpHrBAfV36tPUx+34HlUOR9bgfxDGYpVHIN40PtCbNpuW5o/8BvjNqAjsXNeUro9Cvbadwx5u72NO83oNSuKbKSrup41/gXVmHGLpBYXOqLlJEWSp6MLa29ea9vKrVRrLUkQmIM9NGI30cXYx2ct45MzHlJgh8464a2ytooGHGm2oGbqx8+36QQSpGhH14ZjLSemTfO9J9jahO63rb872TV7EWAA9E1Zgeg/v4MAAAAASUVORK5CYII=);
	border: 2px solid #45405a;
	font-size: 16px;
	outline: none;
}
@media (max-width: 1365px) {
	.sp-title {
		font-size: 28px;
	}
	.sp-title-hint {
		font-size: 16px;
		margin-bottom: 5px;
	}
	.sp-bold {
		font-size: 15px;
		margin-bottom: 5px;
	}
	.sp-list li {
		font-size: 14px;
	}
	.sp-content-form {
		padding: 35px 45px 25px;
		flex: 0 0 500px;
	}
	.sp-content-form h4 {
		font-size: 24px;
	}
	.form.spc-form {
		margin-top: 20px;
	}
}
@media (max-width: 1199.99px) {
	.sp-content-form {
		padding: 35px 30px 25px;
		flex: 0 0 400px;
	}
	.sp-content-form h4 {
		font-size: 22px;
	}
}
/* PJH colors */
.pjh-first-text .pjh-title {
	color: #453f5a;
}
.pjh-first-text .pjh-first-hint {
	color: #444059;
}
.pjh-third-items .pjh-third-item-text h3,
.pjh-third-items .pjh-third-item-text p {
	color: #444059;
}
.pjh-fourth .pjh-fourth-title {
	color: #4a475a;
}
.pjh-fourth .pjh-fourth-text h2,
.pjh-fourth .pjh-fourth-text p {
	color: #4d4861;
}
.pjh-fifth .pjh-fifth-text p,
.pjh-fifth .pjh-fourth-buttons .story-link {
	color: #46425b;
}

@media (max-width: 767.99px) {
	.mobile-sticky {
		padding-top: 3px;
		padding-bottom: 3px;
	}
	.breadcrumb-container {
		padding: 6px 0 0 10px !important;
		height: 32px;
	}
	.breadcrumb-container .breadcrumb {
		padding: 0;
	}
	.aslm-breadcrumbs ul.text-truncate {
		padding-left: 8px;
	}
}
@media (max-width: 428px) {
	.icms-header__middle .navbar-brand.mr-3 {
		transform: translate(2px, 2px);
	}
	.icms-header__middle .navbar-brand img {
		width: 206px;
		height: 52px;
	}
	.mobile-menu-button {
		transform: translate(-7px, 1px);
	}
}
@media (min-width: 992px) {
	#get-health-care {
		height: 633px;
		overflow: hidden;
		background: linear-gradient(0deg, rgba(143, 153, 161, 0.19) 0%, rgba(255, 255, 255, 0) 71.36%), #fff;
	}
}
@media (min-width: 1200px) {
	#get-health-care {
		/* height: 620px; */
		height: 633px;
	}
}
@media (min-width: 1366px) {
	#myTabContent {
		min-height: 497px;
	}
}
@media (min-width: 1441px) {
	#get-health-care {
		height: 676px;
	}
}
@media (min-width: 1800px) {
	#myTabContent {
		min-height: 475px;
	}
}
.wow {
	visibility: hidden;
}
.sta-tabs .tab-content .tab-pane .tab-pane-content {
	overflow: hidden;
}
/* .sta-tabs .tab-content .tab-pane .tab-pane-content .tab-pane-content-text,
.sta-tabs .tab-content .tab-pane .tab-pane-content .tab-pane-content-video,
.sta-tabs .tab-content .tab-pane .tab-pane-form {
	position: relative;
}
.sta-tabs .tab-content .tab-pane .tab-pane-content .tab-pane-content-text {
	transform: translateX(-50px);
}
.sta-tabs .tab-content .tab-pane .tab-pane-content .tab-pane-content-video {
	transform: translateX(50px);
}
.sta-tabs .tab-content .tab-pane .tab-pane-form {
	transform: translateY(50px);
}
.sta-tabs .tab-content .tab-pane.active.show .tab-pane-content .tab-pane-content-text {
	transform: translateX(0);
	transition: .5s;
	transition-delay: .5s;
}
.sta-tabs .tab-content .tab-pane.active.show .tab-pane-content .tab-pane-content-video {
	transform: translateX(0);
	transition: .5s;
	transition-delay: .5s;
}
.sta-tabs .tab-content .tab-pane.active.show .tab-pane-form {
	transform: translateY(0);
	transition: .5s;
	transition-delay: .5s;
} */
.sta-tabs .tab-content .tab-pane .tab-pane-content,
.sta-tabs .tab-content .tab-pane .tab-pane-form {
	transform: translateY(25px);
	opacity: 0;
}
.sta-tabs .tab-content .tab-pane.active.show .tab-pane-content,
.sta-tabs .tab-content .tab-pane.active.show .tab-pane-form {
	transform: translateY(0);
	opacity: 1;
	transition: 0.5s;
}
.wd-contact-us-page main aside form .tab-pane + .tab-pane {
	margin-top: 0;
}
.wd-contact-us-page main aside form .field + .field {
	margin-top: 20px;
}
.wd-contact-us-page main aside form .buttons {
	margin-top: 22px !important;
}
.wd-contact-us-page main aside form .buttons .btn {
	height: 53px;
}
.wd-contact-us-page main aside form #tab-1 > fieldset > .form-group:first-child {
	margin-top: 10px;
}
@media (min-width: 768px) {
	.wd-contact-us-page main article.col-lg {
		flex: 0 0 290px;
	}
	.wd-contact-us-page main article.col-lg + aside.col-lg-4 {
		flex: 0 0 calc(100% - 290px);
		max-width: calc(100% - 290px);
	}
	.wd-contact-us-page main aside form {
		max-width: 700px;
	}
}
@media (min-width: 1240px) {
	.wd-contact-us-page main article.col-lg {
		flex: 0 0 320px;
	}
	.wd-contact-us-page main article.col-lg + aside.col-lg-4 {
		flex: 0 0 calc(100% - 320px);
		max-width: calc(100% - 320px);
	}
}
@media (min-width: 1500px) {
	.wd-contact-us-page main article.col-lg {
		flex: 0 0 330px;
	}
	.wd-contact-us-page main article.col-lg + aside.col-lg-4 {
		flex: 0 0 calc(100% - 330px);
		max-width: calc(100% - 330px);
	}
}
@media (min-width: 1800px) {
	.wd-contact-us-page main article.col-lg {
		flex: 0 0 350px;
	}
	.wd-contact-us-page main article.col-lg + aside.col-lg-4 {
		flex: 0 0 calc(100% - 350px);
		max-width: calc(100% - 350px);
	}
}
.fade.modal_video .modal-body .tab-container-video {
	opacity: 0 !important;
	transition: 0.3s;
	transition-delay: 1s;
}
.fade.modal_video.show .modal-body .tab-container-video {
	opacity: 1 !important;
}
.modal_video .modal-body {
	padding: 0;
}
.modal_video .close.close-modal {
	z-index: 2;
}
/* modal_gratitude */
.modal_gratitude .close.close-modal {
	width: 34px;
	height: 34px;
	top: -17px;
	right: -17px;
}
.modal_gratitude .close.close-modal {
	font-size: 2rem;
}
.modal_gratitude .modal-dialog {
	max-width: 702px;
}
.modal_gratitude .modal-body {
	border-radius: 10px;
}
.modal_gratitude_text {
	background-color: #eef5f6;
	padding: 40px 25px;
}
.modal_gratitude_text h2,
.modal_gratitude_text p {
	line-height: 1;
}
.modal_gratitude_text h2 {
	margin-bottom: 35px;
	position: relative;
	padding-top: 145px;
}
.modal_gratitude_text h2::before {
	content: "";
	width: 120px;
	height: 120px;
	background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADAAAAAhCAYAAACfiCi5AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAAYdEVYdFNvZnR3YXJlAFBhaW50Lk5FVCB2My4yMreRF30AAAMzSURBVFhH1Zf5TxNBFMf5ez3wvqKJolGjgKBAVQIiiiKJEIkxENEoEOUoUGhpoZxCaQs9aOl9P/ctr01fO223ZQnlm3x+aee7876bmZ15NY1TtXBa6NTXwZpHD61z1zK/nZoAbxcfQjDmA5QrZIeXupvy76ciQI/pKYTjQbn4tLwRJ7Qv3Kn+AJ+WmiCWjFDZXCbXVHUH6F9pg3gyRuVyrXsM0DRTxUtocLUdEqk4lctl3p+DZ9rz8riqDDC00Q2pVJLK5TI4J6BBezYztuoCjPzrlcpMHVabI93eKNRPn2HjqyrAmOULlZqvSduw0FM1ASasQ1RqvsZ3BoUe5MQD4JKY3f1FpeYqBT+3+oS+NCcaADej3vGHiuXCTTy8+V7oy4YF+GhqyNskx4b2HCy5Z6hcrmQqAV/XOsS+HDIBRi0DkjUF83tj0HDMIfAAwkuZSHhwDaxohD4RcoC/1m9kP5TRNcm+tWrSPHMBtg6WaSauWDIKfcvNQl8haqbt38nOtbKvy5x2avFi9jJY/es0A1ckEYIPpnqhrxg1n80tcnKRNrxG+Y2JjOWCd/i94DY9mSsU90P34iOhrxTyEupdaoRoIkyP47L4VuH57CWhWSl4d8c7vEj+mBfeGOqEPiVkNnGP8Yl05w7QY7lsgU1ombuaZ1YC3tm9ERc9iQt/x/9FPqWwz2iX4QEEYgf0eC5nyAoa3Q1mLgW2gL6oh57A5Q7b4dX8LaGvHFgApFN/Dw6ibpqGyx3ehdfzt9n4QmS3gLlyBC3Qprsu9JVLXgAEi/REHDQdF4br0N/N82QjagHTsvk3pOV4ReirBGEARCNtPGfIRtNyBaSN12W4L/QVawG3fWbpq3ZR6KuUggGQVmnj7ga2aHqukLTh3xkfs/H95tItYPZ4NSgaAMHDZ8e/RmVw4eGD9yccp7QFVJuSARA8zDa9JiqHCw9BrX1EcQuoNooCIPgGVz0LVJYyiVpAtVEcQEZ6kybXNJVXXIVaQLUpL4AELocFxziVKVaxFlBtyg6A4LLQ2n9Qudkq3QKqTUUB0mT3EUpbQLU5UgDk9/aA/PlU2gKqzZEDIEe9UVZOLfwHd9F+LYWIDCYAAAAASUVORK5CYII=");
	background-color: var(--theme-color-green);
	background-position: center;
	background-repeat: no-repeat;
	border-radius: 50%;
	border: 5px solid #fff;
	color: #fff;
	position: absolute;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	display: inline-flex;
	justify-content: center;
	align-items: center;
}
.modal_gratitude_text p {
	font-size: 20px;
	font-weight: 500;
}
.modal_gratitude_text p span + span {
	margin-top: 12px;
}
@media (min-width: 992px) {
	.modal_gratitude_text {
		background-color: #eef5f6;
		padding: 60px 25px 25px;
		height: 450px;
		width: 670px;
	}
	.modal_gratitude_text p {
		font-size: 26px;
	}
	.modal_gratitude_text p span {
		display: block;
	}
}
/* MY PROFILE */
#target-profile .navbar-nav li {
	border-radius: 0.25rem;
	transition: 0.3s;
	padding-bottom: 1px;
	padding-top: 1px;
}
#target-profile .navbar-nav li + li {
	border-top: 1px solid #e2dfee;
}
#target-profile .navbar-nav li.is-active {
	border-color: var(--theme-color-green);
}
#target-profile .nav-link > .counter.badge {
	margin-left: 0.5em;
	background-color: var(--theme-color);
	transition: inherit;
	padding: 0 8px;
	font-size: 1em;
	display: inline-flex;
	justify-content: center;
	align-items: center;
	min-width: 27px;
	height: 27px;
	border-radius: 50%;
	font-weight: 500;
}
#target-profile .nav-link:hover > .counter.badge {
	background-color: var(--theme-color-green);
}
.menu-profile a {
	color: var(--theme-color);
	border-radius: 0.25rem;
	display: flex;
	align-items: center;
	padding-left: 0.5rem !important;
	padding-right: 0.5rem !important;
}
.menu-profile a:hover {
	color: var(--theme-color-green);
}
.menu-profile a.active {
	background-color: var(--theme-color-green);
	color: #fff;
	font-weight: 600;
}
#accordion_training .card-header {
	padding: 0;
}
#accordion_training .card-header .btn {
	padding: 0;
	padding: 1.125rem 2rem;
	position: relative;
}
#accordion_training .card-header .btn:focus,
#accordion_training .card-header .btn.focus {
	box-shadow: none;
}
#accordion_training .card-header .btn::after {
	content: "";
	background-image: url("../images/gnanow/icons/angle-down.png");
	background-position: center;
	background-repeat: no-repeat;
	background-size: 100% 100%;
	height: 6px;
	width: 11px;
	right: 28px;
	position: absolute;
	top: calc(50% - 2px);
	transition: 0.3s;
}
#accordion_training .card-header .btn.active:not(.collapsed) {
	color: #222;
}
#accordion_training .card-header .btn.active:not(.collapsed)::after {
	transform: rotateX(180deg);
}
.profile-banner {
	padding: 23px 25px;
	display: block;
	color: var(--theme-color);
	background-color: #f7f7f8;
	border: 1px solid #e8e9ea;
	border-radius: 0.25rem;
	position: relative;
	margin-top: -3px;
}
.profile-banner-head {
	font-size: 22px;
	font-weight: 600;
	line-height: 1.2;
}
.profile-banner-text {
	font-weight: 300;
	margin-top: 10px;
	line-height: 1.4;
	padding-left: 3px;
}
.stretched-link.profile-banner-link {
	color: var(--theme-color);
	font-weight: 600;
	margin-top: 10px;
	display: block;
	padding-left: 3px;
}
.stretched-link.profile-banner-link:hover {
	text-decoration: none;
}
.stretched-link.profile-banner-link > span {
	display: inline-block;
	position: relative;
}
.stretched-link.profile-banner-link > span::after {
	content: "";
	background-color: var(--theme-color);
	width: 0;
	height: 1px;
	position: absolute;
	left: 0;
	bottom: 2px;
	opacity: 0;
	transition: 0.3s;
}
.stretched-link.profile-banner-link:hover > span::after {
	width: 100%;
	opacity: 1;
}
/* ########## member_badge ################################ */
/* .user-badge {
	padding-left: 1px;
} */
.user-badge-title {
	padding-top: 2px;
	margin-left: -2px;
}
.user-badge .badge-container {
	padding-top: 3px;
}
.badge-img h4 + p {
	padding-top: 8px;
}
.member_badge_img {
	margin-top: 33px;
}
.member_badge_img img {
	display: block;
	max-width: 265px;
}
.badge-img .badge-code {
	margin-top: 28px;
}
.badge-container code {
	font-family: Courier, "Courier New", SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
	font-size: 15px;
	line-height: 1.675;
}
.badge-container .badge-img code {
	margin-top: 2px;
}
.badge-video {
	margin-top: 32px;
}
.badge-video h4 + p {
	padding-top: 5px;
}
.badge-video_img {
	margin-top: 22px;
}
.badge-video_img > a {
	display: inline-block;
	transition: 0.3s;
}
.badge-video_img > a:hover {
	text-decoration: none;
}
.badge-video_img img {
	transition: 0.3s;
}
.badge-video_img img:hover {
	transform: scale(1.025);
}
.fap-page .icms-footer__middle {
	margin-top: 70px !important;
}
@media (min-width: 1366px) {
	.wds-pgh-page .icms-footer__middle {
		margin-top: 40px !important;
	}
}
.application_verification form .fs-0875 {
	font-size: 0.875rem;
}
.application_verification form h2 > span {
	display: inline-block;
}
.application_verification form label {
	font-weight: 500;
}
.application_verification form .custom-control.custom-checkbox {
	height: auto;
}
.application_verification form .buttons {
	margin-top: 50px !important;
}
.application_verification form .buttons .btn {
	height: 53px;
}
/* new phone fields ######################################################################## */
form .form-advocates__fset-example.default_display {
	background-color: inherit;
	padding: 0;
	margin: 0;
}
form .form-advocates__fset-example.default_display .form-advocates__fset-example-title {
	font-size: 16px;
	font-weight: 600;
	margin-bottom: 0;
}
form .form-advocates__fset-example.default_display .form-advocates__fset-example-content {
	color: #4d4960;
	font-size: 14px;
	font-weight: 400;
	line-height: 24px;
}
form .tab-pane + #tab-folder_7.tab-pane {
	margin-top: 56px;
}
form .without-tabs #fset_folder_7 > legend {
	display: none !important;
}
form #f_phone_number.field label {
	color: #45405a;
	font-family: inherit;
	font-size: 24px;
	font-weight: 600;
	display: block;
	margin: 0 0 25px 0;
	padding: 0;
	line-height: 1;
}
form #f_phone_number.reguired_field > label::after {
	font-size: 16px;
	padding-left: 6px;
	display: inline-block;
	transform: translateY(-4px);
}
form #f_i_understand_that_my_number.field label,
form #f_i_agree_to_receive_sms.field label {
	font-weight: 500 !important;
}
form .field + #f_shelding_your_number.field,
form .field + #f_real_time_client.field {
	margin-top: 20px !important;
}
form .field + #f_i_understand_that_my_number.field,
form .field + #f_i_agree_to_receive_sms.field {
	margin-top: 15px !important;
}
form .field + #f_i_understand_that_my_number.field .custom-control.custom-checkbox,
form .field + #f_i_agree_to_receive_sms.field .custom-control.custom-checkbox,
#f_is_agree_pacb.field .custom-control.custom-checkbox,
form .field + #f_solar_only.field .custom-control.custom-checkbox {
	height: auto !important;
}
/* field_error ######################################################################## */
form .field_error {
	position: relative;
}
form .field_error::before,
form .field_error > legend,
form .field_error .hint,
form .field_error .hint legend,
form .field_error > label,
form .field_error > .icms-forms-hint,
form .field_error > .icms-forms-hint .hint > legend,
form .field_error > .icms-forms-hint .hint > label,
form .field_error > .custom-control > label,
form .field_error > .hint.text-muted.small,
#f_geo_practice_area.field_error .hint.text-muted.small {
	color: var(--danger) !important;
}
form .field_error .invalid-feedback {
	padding: 5px 10px;
	background-color: var(--danger);
	display: inline-flex;
	align-items: center;
	font-size: 12px;
	color: #fff !important;
	line-height: 1.2;
	border-radius: 4px;
	box-shadow: 2px 2px 4px #772618;
	position: absolute;
	right: 0;
	bottom: 0;
}
form .field_error.ft_image .invalid-feedback {
	bottom: 50%;
	transform: translateY(50%);
}
form .field_error .invalid-feedback::before {
	content: "!";
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 16px;
	width: 16px;
	height: 16px;
	font-size: 13px;
	font-weight: 600;
	border-radius: 2px;
	background-color: #fff;
	color: var(--danger);
	font-weight: 600;
	margin-right: 5px;
}
form .field_error .invalid-feedback::after {
	content: "";
	width: 0;
	height: 0;
	position: absolute;
}
form .field_error.ft_caption,
form .field_error.ft_string,
form .field_error.ft_text,
form .field_error.ft_place,
form .field_error.ft_checkbox,
form .field_error.ft_twilio {
	padding-bottom: 35px;
}
form .field_error.ft_caption .invalid-feedback::after,
form .field_error.ft_string .invalid-feedback::after,
form .field_error.ft_text .invalid-feedback::after,
form .field_error.ft_place .invalid-feedback::after,
form .field_error.ft_twilio .invalid-feedback::after,
form .field_error.ft_checkbox .invalid-feedback::after {
	border-left: 7px solid transparent;
	border-right: 7px solid transparent;
	border-bottom: 7px solid var(--danger);
	left: 10px;
	top: -7px;
}

form .field_error.ft_list .invalid-feedback {
	bottom: 5px;
}
form .field_error.ft_list .invalid-feedback::after,
form .field_error.ft_image .invalid-feedback::after {
	border-top: 7px solid transparent;
	border-bottom: 7px solid transparent;
	border-right: 7px solid var(--danger);
	position: absolute;
	left: -7px;
	top: 50%;
	transform: translateY(-50%);
}
/* field_error end ######################################################################## */

form .big-title {
	/* display: inline-block; */
	color: #45405a;
	font-family: "Poppins", sans-serif;
	font-size: 24px;
	font-weight: 600;
	margin: 0 0 25px 0;
	padding: 0;
	line-height: 1;
}
form .field_error .big-title,
form .without-tabs fieldset .field_error legend {
	color: var(--danger) !important;
}
form .without-tabs #fset_folder_3 > legend {
	color: #45405a !important;
}
#fset_folder_2 > legend,
#fset_folder_8 > legend,
#fset_folder_9 > legend,
#fset_folder_10 > legend {
	display: none;
}
#f_geo_practice_area {
	display: flex;
	flex-direction: column;
}
#f_geo_practice_area > label {
	order: -1;
	margin-bottom: 0;
}
#f_geo_practice_area > label .big-title {
	margin-bottom: 5px;
}
#f_is_agree_pacb {
	display: flex;
	flex-direction: column;
}
#f_is_agree_pacb .icms-forms-hint {
	order: -1;
}
#f_is_agree_pacb .icms-forms-hint {
	order: -1;
}
#f_geo_practice_area .icms-forms-hint .big-title {
	margin-bottom: 12px;
}
#f_speciality_id > label .big-title {
	margin-bottom: 12px;
}
#f_is_agree_pacb .icms-forms-hint .big-title {
	margin-bottom: 12px;
}
#f_how_did_you .big-title {
	margin-bottom: 17px;
}
#f_is_offer_teleadvocacy_services label .big-title,
#f_is_offer_free_initial_consultation label .big-title {
	margin-bottom: 0;
}
#f_is_agree_pacb .advocates-form-hint .big-title {
	margin-bottom: 5px;
}
#f_speciality_id.field_error .icms-forms-hint .invalid-feedback {
	position: absolute;
	top: 205px;
	right: 0;
	height: 26px;
}
form #f_geo_practice_area.reguired_field > label::after,
form #f_is_offer_teleadvocacy_services.reguired_field > label::after,
form #f_is_offer_free_initial_consultation.reguired_field > label::after {
	display: inline-block;
	transform: translateY(-5px);
}
#f_photo.field_error .widget_image_single .qq-upload-button {
	box-shadow: 0 0 0 6px var(--danger) inset !important;
}

/* ### phone modal ###################################################### */
.modal-dialog.modal-dialog_phone {
	width: 600px;
	max-width: 90%;
	margin: 1.75rem auto;
}
.modal_video .modal-body.modal-body_phone {
	border-radius: var(--br-050);
	padding: 15px;
}
.phone-modal-content {
	background-color: #eef5f7;
	padding: 30px 20px 20px;
}
.phone-modal-text {
	line-height: 1.3;
}
.phone-modal-title {
	font-size: 15px;
	font-weight: 600;
}
.phone-modal-hint {
	font-size: 14px;
	margin-top: 5px;
}
.for-gb-phone-modal {
	margin-top: 15px;
}
.gb-phone-modal {
	width: 100%;
	font-size: 14px;
	font-weight: 500 !important;
	height: 43px;
}
.advocates-item .header .form-link.for-phone-modal {
	margin-top: 39px !important;
}
.advocates-list_sidebar .form-link.for-phone-modal {
	margin-top: 44px !important;
}
@media (min-width: 375px) {
	.phone-modal-title {
		font-size: 16px;
	}
	.phone-modal-hint {
		font-size: 15px;
	}
	.gb-phone-modal {
		font-size: 16px;
	}
}
@media (min-width: 992px) {
	.phone-modal-content {
		padding: 65px 55px 55px;
	}
	.phone-modal-title {
		/* font-size: 20px; */
		font-size: 18px;
	}
	.phone-modal-hint {
		/* font-size: 18px; */
		font-size: 16px;
	}
	.for-gb-phone-modal {
		margin-top: 40px;
	}
	.gb-phone-modal {
		font-size: 19px;
		height: 53px;
	}
}

/* ### wrapper-collapse ###################################################### */
h3.wrapper-collapse__title {
	font-size: 18px;
	margin: 0 -1px !important;
}
.wrapper-collapse__title-switch {
	display: flex !important;
	align-items: center;
	padding: 10px 30px 10px 15px;
	min-height: 50px;
	color: currentColor;
	background-color: #fff;
	border: 1px solid var(--theme-border-color);
	position: relative;
	text-decoration: none;
}
.wrapper-collapse__title-switch {
	border-radius: var(--br-025) var(--br-025) 0 0;
}
.wrapper-collapse__title-switch.collapsed {
	border-radius: var(--br-025);
}
.wrapper-collapse__title-switch:hover,
.wrapper-collapse__title-switch:active {
	color: var(--theme-color) !important;
	border-color: var(--theme-color-light-extra);
	text-decoration: none;
}
.wrapper-collapse .wrapper-collapse__title-switch::after {
	content: "";
	width: 11px;
	height: 6px;
	background: url("/templates/gnanownew/images/gnanow/icons/angle-down.png");
	background-position: center right;
	background-repeat: no-repeat;
	background-size: contain;
	position: absolute;
	top: calc(50% - 2px);
	right: 13px;
	transition: 0.3s;
}
.wrapper-collapse:has(.wrapper-collapse__body.collapsing) .wrapper-collapse__title-switch::after,
.wrapper-collapse:has(.wrapper-collapse__body.show) .wrapper-collapse__title-switch::after {
	transform: rotateX(180deg);
}
.wrapper-collapse__body {
	padding: 15px;
}
.wrapper-collapse:has(.wrapper-collapse__body.p-0) .wrapper-collapse__title-switch:not(.collapsed) {
	border-bottom-left-radius: 0;
	border-bottom-right-radius: 0;
}

/* ### community ###################################################### */
.forum-title-hint.forum-title-hint_home {
	font-size: 28px;
}
/* ### community end ###################################################### */

/* ############ DONATE NEW ############################################################ */
.donate-new .donation-body {
	color: #4c4960;
}
.donate-new .input-group-text {
	color: inherit;
	background-color: #e9ecef;
}
.donate-new .donation-body .w-725 .w-input {
	padding: 17px 15px;
}
.donate-new .page-header-title > span {
	display: block;
}
.input-group_text-field-donation {
	flex-wrap: nowrap;
}
.input-group_text-field-donation .input-group-text {
	padding: 0 15.525px;
	border-color: var(--input-color);
}

.donation-body .input-group_text-field-donation:has(.not-empty) input {
	border-color: var(--theme-color);
	box-shadow: inset 0 0 0 1px #45405a !important;
	background-color: #ebf0f6;
	color: var(--theme-color);
}
.input-group_text-field-donation:hover .input-group-text,
.input-group_text-field-donation:has(:focus) .input-group-text,
.input-group_text-field-donation:has(.not-empty) .input-group-text {
	border-color: var(--theme-color);
	box-shadow: inset 0 0 0 1px #45405a !important;
}
.input-group_text-field-donation .text-field-donation.w-input {
	margin-top: 0;
	border-radius: 0;
	padding: 17px 15px;
}
.input-group_text-field-donation:hover .input-group-prepend .input-group-text,
.input-group_text-field-donation:has(:focus) .input-group-prepend .input-group-text {
	border-right-width: 0;
}

.input-group_text-field-donation:hover .text-field-donation.w-input {
	border-color: var(--theme-color);
	box-shadow: inset 0 0 0 1px #45405a !important;
	background-color: #ebf0f6;
	color: var(--theme-color);
}

.input-group_text-field-donation .input-group-append .input-group-text {
	border-left-width: 0;
	background-color: #fff;
}
.input-group_text-field-donation:hover .input-group-append .input-group-text,
.input-group_text-field-donation:has(:focus) .input-group-append .input-group-text,
.input-group_text-field-donation:has(.not-empty) .input-group-append .input-group-text {
	background-color: #ebf0f6;
}
.input-group_text-field-donation .input-group-append {
	position: relative;
}
.input-group_text-field-donation .input-group-append:before {
	content: "";
	width: 5px;
	background-color: #fff;
	position: absolute;
	top: 2px;
	bottom: 2px;
	left: -3px;
}
.input-group_text-field-donation:hover .text-field-donation.w-input,
.input-group_text-field-donation:hover .input-group-append:before,
.input-group_text-field-donation:has(:focus) .input-group-append:before,
.input-group_text-field-donation:has(.not-empty) .input-group-append:before {
	background-color: #ebf0f6;
}
.donation-body input.w-checkbox-input {
	width: 18px;
	height: 18px;
	vertical-align: middle;
	margin-right: 8px;
}
@media (min-width: 1200px) {
	.input-group_text-field-donation {
		display: inline-flex;
		width: 545px;
	}
	.input-group_text-field-donation .text-field-donation.w-input {
		width: 440px;
		flex: 0 0 440px;
	}
	.donation-body .donate-frequency .donate-frequency-button {
		width: 140px;
	}
}
.pay-wallets__walet img {
	cursor: pointer;
	transition: 0.3s ease-in-out;
}
.pay-wallets__walet img:hover {
	transform: scale(1.025);
}

.donation-body .w-725.input-group {
	margin-top: 3px;
}
.donation-body .w-725.input-group .text-field-donation.w-input {
	margin-top: 0;
}
.input-group_append-only .input-group-append {
	width: 130px;
	flex: 0 0 130px;
}
.input-group_append-only .input-group-append .input-group-text {
	width: 100%;
	flex: 0 0 100%;
	gap: 20px;
	padding-left: 23px;
}
.input-group_append-only .text-field-donation.w-input {
	width: calc(100% - 130px);
	flex: 0 0 calc(100% - 130px);
	border-radius: 4px 0 0 4px;
}

.place-of-residence {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.place-of-residence > div {
	width: calc(50% - 10px);
	flex: 0 0 calc(50% - 10px);
}
.place-of-residence > div {
	width: calc(50% - 10px);
	flex: 0 0 calc(50% - 10px);
}
.place-of-residence > div > .text-field-donation.w-input {
	width: 100%;
}
.enter-your-card {
	position: relative;
	overflow: hidden;
	text-align: center;
	max-width: 358px;
	font-size: 14px;
	line-height: 20px;
}
.enter-your-card::before {
	content: "";
	background-color: #ddd;
	height: 1px;
	position: absolute;
	left: 0;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
}
.enter-your-card span {
	background-color: #fff;
	display: inline-block;
	padding: 0 15px;
	position: relative;
}
.pay-wallets {
	display: flex;
	flex-direction: column;
	gap: 11px;
	margin-top: 20px;
	padding-bottom: 3px;
}
.pay-wallets__walet {
	border-radius: 8px;
}
.donation-amount {
	border-top: 1px solid #ddd;
	padding-top: 20px;
	padding-bottom: 20px;
	margin-top: 36px;
}
.donation-amount__title {
	font-size: 16px;
	line-height: 24px;
}
.donation-amount__value {
	margin-top: 7px;
	display: flex;
	align-items: center;
}
.donation-amount__value-currency-name {
	font-size: 14px;
	font-family: "Inter";
	font-weight: 500;
	color: #bababa;
}
.donation-amount__value-currency-value {
	font-size: 20px;
	line-height: 24px;
	font-weight: 500;
	margin-left: 12px;
}
.btn-outline-secondary.dropdown-toggle.dropdown-toggle_donation::after {
	display: none;
}
.btn-outline-secondary.dropdown-toggle.dropdown-toggle_donation {
	width: 100%;
	flex: 0 0 100%;
	gap: 20px;
	padding-left: 23px;
	display: flex;
	gap: 20px;
	align-items: center;
	background-color: #e9ecef;
	border: 1px solid var(--input-border-color);
	width: 100%;
	height: 100%;
	color: inherit;
	font-size: 16px;
	font-weight: 400;
}
.btn-outline-secondary.dropdown-toggle.dropdown-toggle_donation:focus {
	background-color: #e9ecef;
	border-color: var(--input-border-color);
	color: inherit;
	outline: none;
	box-shadow: none;
}
.btn-outline-secondary.dropdown-toggle.dropdown-toggle_donation:hover,
.input-group-append.show .btn-outline-secondary.dropdown-toggle.dropdown-toggle_donation {
	background-color: var(--theme-color);
	border-color: var(--theme-color);
	color: #fff;
	outline: none;
	box-shadow: none;
}
.btn-outline-secondary.dropdown-toggle.dropdown-toggle_donation .ul-marker-svg {
	transition: 0.3s ease-in-out;
}
.btn-outline-secondary.dropdown-toggle.dropdown-toggle_donation:hover .ul-marker-svg,
.input-group-append.show .btn-outline-secondary.dropdown-toggle.dropdown-toggle_donation .ul-marker-svg {
	filter: brightness(10);
}
.input-group-append.show .btn-outline-secondary.dropdown-toggle.dropdown-toggle_donation:focus .ul-marker-svg {
	transform: rotateX(180deg);
}
.donation-body {
	font-size: 16px;
	line-height: 24px;
}
.donation-body button {
	font-size: 18px;
	height: 43px;
	font-weight: 600;
}
.donation-body .h4 {
	font-size: 24px !important;
	line-height: 28px !important;
}
@media (min-width: 390px) {
	.donation-body .form-help-text {
		font-size: 14px;
		line-height: 16px;
		display: flex;
		align-items: center;
		gap: 4px;
	}
}
.donation-body .w-checkbox {
	display: flex;
	gap: 14px;
}
.donation-body .w-checkbox .w-checkbox-input {
	appearance: none;
	-webkit-appearance: none;
	position: relative;
	width: 18px;
	height: 18px;
	flex: 0 0 18px;
	margin: 0;
	transform: translate(2px, 4px);
	border: 1px solid #767678;
	border-radius: 2px;
	background-color: #fff;
	cursor: pointer;
	transition: 0.15s ease-in-out;
}
.donation-body .w-checkbox .w-checkbox-input:checked {
	background-color: var(--theme-color-green);
	border-color: var(--theme-color-green);
	background-image: url("../images/check-white-12x10.png");
	background-position: center;
	background-repeat: no-repeat;
}
.donation-body .w-checkbox:hover .w-checkbox-input,
.donation-body .w-checkbox .w-checkbox-input:hover,
.donation-body .w-checkbox .w-checkbox-input:focus {
	box-shadow: none !important;
}

.is_in_honor-switchable {
	padding: 18px 24px;
	border: 0 solid #ddd;
	border-radius: 4px;
	background-color: var(--theme-light-gray-2);
	display: none;
	width: 725px;
	max-width: 100%;
	margin-top: 16px;
	position: relative;
	overflow: hidden;
}
.is_in_honor-switchable > div + div {
	margin-top: 20px;
}
.is_in_honor-parent:has(.donate-checkbox_anonymously:checked) + .is_in_honor-switchable,
#for_type_donation_radio__2:has(#type_donation_radio__2:checked) + .is_in_honor-switchable,
#for_type_donation_radio__3:has(#type_donation_radio__3:checked) + .is_in_honor-switchable {
	border-width: 1px;
	display: block;
}
.type-of-donation,
.tribute-name {
	display: flex;
	flex-direction: column;
	gap: 10px;
}
.donation-body .custom-control-input:checked ~ .custom-control-label::before {
	border-color: var(--theme-color-green);
}
.donate-form__first {
	display: flex;
	flex-direction: column;
	gap: 24px;
}
.donation-body .h4 {
	margin-bottom: 16px;
}
.input-title_top-marg {
	margin-top: 20px;
}
.donation-body .donate-frequency-button + .donate-frequency-button,
.donation-body .donate-value-button + .donate-value-button {
	margin-top: 9px;
}
.donate-form__honor-parent-parent {
	padding: 8px 0 0 4px;
}

/* ######### donate-form__second  ######################### */
.donate-form__second {
	margin-top: 64px;
	gap: 19px;
}
@media (min-width: 992px) {
	.donate-form__second {
		margin-top: 100px;
	}
}
#donate-form:has(.payment-info-show) .donate-form__second {
	padding-bottom: 31px;
	border-bottom: 1px solid #ddd;
}
.donate-form__second-fields,
.donate-form__second-addresses {
	gap: 24px;
}
.donate-form__second-addresses {
	padding-top: 2px;
}
.donate-form__second-fields .place-of-residence .place-of-residence__group:nth-child(3),
.donate-form__second-fields .place-of-residence .place-of-residence__group:nth-child(4) {
	margin-top: 24px;
}

.donate-form__second-fields .text-field-donation.w-input {
	margin-top: 0;
}
.donate-form__second-fields .donate-form__second-fields-field_company {
	margin-top: -5px;
}
@media (max-width: 991.99px) {
	.donate-form__second-fields .donate-form__second-fields-field_company {
		margin-top: -23px;
	}
}
@media (min-width: 390px) {
	.donation-body .donate-form__second-fields .form-help-text {
		margin-top: 8px;
	}
}

/* ######### donate-form__third  ######################### */
.donate-form__third {
	/* gap: 27px; */
	margin-top: 26px;
}
.donation-body .h4 {
	font-size: 24px !important;
	line-height: 28px !important;
}
.donate-form__subtitle {
	font-size: 18px;
	font-weight: 500;
	line-height: 24px;
}
.donate-form__third .enter-your-card {
	max-width: 335px;
}
@media (min-width: 992px) {
	.pay-wallets__walet {
		max-width: 335px;
	}
}
.donate-form__third__third,
.cardholder {
	gap: 20px;
}
.donate-form__third__third {
	padding-top: 6px;
}
.donate-form__third__third .text-field-donation.w-input {
	margin-top: 0;
}
.cardholder-elem.cardholder-elem_check {
	padding-top: 2px;
}
/* ######### donate-form-buttons  ######################### */
.donate-form-buttons {
	padding-top: 32px;
	padding-bottom: 80px;
}
@media (max-width: 991.99px) {
	.donation-body .donate-form-buttons button.green-button-xl {
		height: 49px;
		width: 100%;
	}
}

/* ######### 2025_07_24 correction  ######################### */
@media (min-width: 992px) {
	.text-field-donation.w-input.w-992-100 {
		width: 100%;
	}
}
@media (min-width: 1200px) {
	.donate-new .page-header {
		height: 218px;
		margin-bottom: 41px;
	}
	.donate-new .page-header-title {
		font-size: 40px;
		line-height: 44px;
		margin-top: 4px !important;
		margin-bottom: 0 !important;
	}
	.donate-new .page-header-hint {
		font-weight: 400;
	}
	.donate-new .page-header-title-block + .page-header-breadcrumbs {
		margin-top: 0;
	}
	.donate-new .donate-text-before {
		font-size: 16px;
		line-height: 24px;
	}
	.donate-new .donate-text-before {
		padding-bottom: 38px !important;
		margin-bottom: 17px !important;
		border-bottom: 1px solid #ddd;
	}
	.donate-new .donation-body .donate-frequency-button {
		margin: 2px 17px 0 0;
	}
	.donate-form__want-to-help {
		padding-top: 11px;
	}
	.donate-new .input-group_text-field-donation .text-field-donation.w-input {
		width: 438px;
		flex: 0 0 438px;
	}
	.input-group_text-field-donation .input-group-text {
		padding: 0 16.525px 0 14.525px;
	}
	.donation-body .donate-form__want-to-help .h4 {
		margin-bottom: 9px;
	}
	.donation-body .input-title.input-title_other-amoun {
		margin-top: 25px;
	}
	.donate-form__honor-parent.is_in_honor-parent {
		padding-top: 10px;
	}
	.donate-new .donate-form__honor-parent-parent {
		padding: 8px 0 0 2px;
	}
	.donation-body .w-checkbox .w-checkbox-input {
		transform: translate(2px, 2px);
	}
	#donate-form:has(.payment-info-show) .donate-form__second {
		padding-bottom: 47px;
	}
	.donate-form__second-fields {
		gap: 25px;
	}
	.donate-new .donation-body .w-725 {
		width: 720px;
		max-width: 100%;
	}
	.donate-form__second-fields-field_al2 {
		padding-top: 2px;
	}
	.donate-form__second-fields .place-of-residence .place-of-residence__group:nth-child(3),
	.donate-form__second-fields .place-of-residence .place-of-residence__group:nth-child(4) {
		margin-top: 26px;
	}
	.donate-form__second-fields .donate-form__second-fields-field_company {
		margin-top: -7px;
	}
	.donate-form__second-fields .donate-form__second-fields-field_company .w-checkbox {
		margin-bottom: 9px;
	}
	.donate-form__third {
		/* gap: 35px; */
		margin-top: 42px;
	}
	.donation-body .form-help-text {
		gap: 8px;
		position: relative;
		top: 1px;
	}
	.pay-wallets {
		margin-top: 21px;
		gap: 14px;
	}
	.donate-form__third__second {
		padding-top: 3px;
	}
	.cardholder {
		gap: 21.5px;
	}
	.cardholder .cardholder-elem.cardholder-elem_check {
		padding-left: 2px;
	}
	.donation-amount__value-currency-value {
		margin-left: 10px;
	}
	.donation-amount {
		/* margin-top: 31px; */
		width: 720px;
		margin-top: 53px;
	}
	.payment-info-show + .donation-amount {
		width: 100%;
	}
	.donate-form-buttons {
		padding-top: 40px;
		padding-bottom: 0;
	}
	.donate-new .icms-footer__middle {
		margin-top: 96px !important;
	}
}

.acknowledgment__child {
	display: none;
	margin-top: 20px;
	flex-direction: column;
	gap: 20px;
}
.acknowledgment:has(.acknowledgment__checkbox:checked) .acknowledgment__child {
	display: flex;
}
.acknowledgment__child-fieds {
	display: flex;
	flex-direction: column;
	gap: 20px;
}
.acknowledgment__child-fieds {
	padding-bottom: 6px;
}

#payment-info.d-none.payment-info-show {
	display: block !important;
}

/* ######### 2025_07_29 correction  ######################### */
#donate-form .input-group.w-725.input-group_append-only:has(.input-group-append.d-none) .text-field-donation.w-input {
	width: 100%;
	flex: 0 0 100%;
	border-radius: 4px;
}

/* ######### 2025_08_19 correction  ######################### */
/* .donate-form__first {
	display: flex;
	flex-direction: column;
	gap: 24px;
	padding-bottom: 23px;
	border-bottom: 1px solid #ddd;
} */
.acknowledgment__child .acknowledgment__child-fieds-field_acknowledgee-name .input-title .required-asterik {
	opacity: 1;
	visibility: visible;
	transition: 0.3s;
}
.acknowledgment__child:has(.acknowledgment__child-check__checkbox:checked)
	.acknowledgment__child-fieds-field_acknowledgee-name
	.input-title
	.required-asterik {
	opacity: 0;
	visibility: hidden;
}
form .is_in_honor-switchable_n + .custom-radio {
	margin-top: 15px;
}
.type-donation-hint {
	gap: 10px;
}
.type-donation-hint span:first-child {
	flex: 0 0 20px;
}
.type-donation-hint img {
	display: block;
	width: 20px;
	height: 20px;
}
/* ####### REVIEWS LIST ############################################### */
.reviews-list {
	gap: 32px;
}
.reviews-list__item {
	gap: 28px;
	background-color: #fff;
	border: 1px solid #d9dbde;
	border-radius: 8px;
	flex: 0 0 100%;
	padding: 24px 24px 12px;
}
@media (min-width: 768px) {
	.reviews-list__item {
		flex: 0 0 calc(50% - 16px);
	}
}
@media (min-width: 1200px) {
	.reviews-list__item {
		flex: 0 0 calc(33.333% - 22px);
	}
}
.reviews-list__item-f_rating_m {
	gap: 4px;
	color: #c1c0be;
}
.reviews-list__item-f_content {
	line-height: 24px;
}
.reviews-list__item-footer_full {
	padding: 20px 0;
	gap: 16px;
	border-top: 1px solid #d9dbde;
}
.reviews-list__item-footer {
	padding: 20px 0;
	gap: 2px;
	border-top: 1px solid #d9dbde;
}
.reviews-list__item-footer_full .reviews-list__item-footer {
	padding: 0;
	border-width: 0;
	gap: 12px;
}
/* .reviews-list__item-f_your_name {
	font-size: 18px;
    font-weight: 600;
    line-height: 24px;
} */
.reviews-list__item-f_your_name a {
	color: inherit;
	display: block;
	font-size: 18px;
	font-weight: 600;
	line-height: 1.25;
}
.reviews-list__item-f_city {
	line-height: 20px;
	font-size: 14px;
	color: var(--text-section-titles, #727d85);
}
.reviews-list__item-f_acronym {
	font-size: 14px;
	line-height: 1.25;
}
.reviews-list__item-f_specialty {
	display: flex;
	flex-direction: column;
	gap: 4px;
}
.reviews-list__item-f_specialty .field-title {
	font-size: 12px;
	font-weight: 600;
	line-height: 1;
	text-transform: uppercase;
}
.reviews-list__item-f_specialty .field-value {
	font-size: 14px;
	line-height: 1;
}

.icms-svg-icon.w-19.icon-star {
	width: 19px;
	height: 18px;
}
.for-icon-star_fdc700 {
	color: #fdc700;
}
@media (max-width: 576px) {
	.pjh-reviews {
		margin-left: -15px;
		margin-right: -15px;
	}
}
.wd-reviews-list {
	background-color: #f2f3f4;
	padding: 40px 0;
}
.wd-reviews-list__title {
	font-size: 26px;
	line-height: 32px;
	text-align: center;
	margin-bottom: 32px;
}
.wd-reviews-list__title span {
	display: block;
}
@media (min-width: 1200px) {
	.wd-reviews-list {
		padding: 80px 0;
	}
	.wd-reviews-list__title {
		font-size: 40px;
		line-height: 52px;
		margin-bottom: 48px;
	}
}

.dropdown-menu.icms-user-menu__items.menu-personal,
.dropdown-menu.icms-user-menu__items.menu-personal ul {
	padding: 0;
	border-radius: 8px;
	border: 1px solid #d9d8de;
	background-color: #fff;
	box-shadow:
		0 6px 16px 0 rgba(0, 0, 0, 0.08),
		0 3px 6px -4px rgba(0, 0, 0, 0.12),
		0 9px 28px 8px rgba(0, 0, 0, 0.05);
	flex-direction: column;
}
.icms-header__top .dropdown-menu.icms-user-menu__items.icms-menu-hovered.menu-personal.show {
	display: flex !important;
	flex-direction: column;
}
.dropdown-menu.icms-user-menu__items.menu-personal ul.dropdown-menu > li:first-child {
	border-top-color: transparent;
}
.community-user__ai + .icms-menu-hovered.icms-user-menu__items.menu-personal {
	border-width: 0 !important;
	box-shadow: none !important;
}
.dropdown-menu.icms-user-menu__items.menu-personal .nav-item {
	border-top: 1px solid #d9d8de;
	padding: 0;
	cursor: default;
}
/* .dropdown-menu.icms-user-menu__items.menu-personal .nav-item:first-child {
	border-width: 0;
	padding-top: 7px;
} */
.dropdown-menu.icms-user-menu__items.menu-personal .nav-item .nav-link,
.dropdown-menu.icms-user-menu__items.menu-personal .nav-item .dropdown-item {
	padding: 15px 17px;
	font-size: 15px;
	line-height: 22px;
	color: var(--theme-color);
	display: flex;
	align-items: center;
	gap: 10px;
	text-align: left;
	/* border: 1.3px solid #fff; */
	/* border-radius: 4px; */
	border-width: 0;
	border-radius: 0;
}
.dropdown-menu.icms-user-menu__items.menu-personal .nav-item.join-gna-now .nav-link {
	min-width: 228px;
	text-align: center;
	justify-content: center;
	color: #fff;
	text-decoration: none;
	background-color: var(--theme-color-green);
	border-color: var(--theme-color-green);
}
.dropdown-menu.icms-user-menu__items.menu-personal .nav-item.join-gna-now .nav-link:hover,
.dropdown-menu.icms-user-menu__items.menu-personal .nav-item.join-gna-now .nav-link:active,
.dropdown-menu.icms-user-menu__items.menu-personal .nav-item.join-gna-now .nav-link.active {
	color: #fff;
	background-color: var(--theme-color);
	border-color: var(--theme-color);
}
/* .dropdown-menu.icms-user-menu__items.menu-personal .nav-item.view-profine .nav-link {
	min-width: 228px;
	text-align: center;
	justify-content: center;
	color: #5c3d84;
	text-decoration: none;
	background-color: #fff;
	border-color: #5c3d84;
} */
@media (min-width: 1200px) {
	.dropdown-menu.icms-user-menu__items.menu-personal .nav-item.view-profine .nav-link,
	.dropdown-menu.icms-user-menu__items.menu-personal .nav-item.to-dashboard-link .nav-link,
	.dropdown-menu.icms-user-menu__items.menu-personal .nav-item.join-gna-now .nav-link {
		min-width: 290px;
	}
}
.dropdown-menu.icms-user-menu__items.menu-personal .nav-item.view-profine .nav-link.active,
.dropdown-menu.icms-user-menu__items.menu-personal .nav-item.to-dashboard-link .nav-link.active {
	background-color: #f2f3f4;
}
.dropdown-menu.icms-user-menu__items.menu-personal .nav-item .nav-link .icms-svg-icon.w-16,
.dropdown-menu.icms-user-menu__items.menu-personal .nav-item .dropdown-item .icms-svg-icon.w-16 {
	width: 24px;
	height: 20px;
	fill: #5c3d84;
}
.dropdown-menu.icms-user-menu__items.menu-personal.dropleft .dropdown-toggle::before {
	border-top: 10px solid transparent;
	border-right: 10px solid #5c3d84;
	border-bottom: 10px solid transparent;
}
.dropdown-menu.icms-user-menu__items.menu-personal.dropleft .dropdown-menu {
	top: -0.5px;
	border-radius: 8px 0 0 8px;
}
.dropdown-menu.icms-user-menu__items.menu-personal .nav-item:hover > .nav-link,
.dropdown-menu.icms-user-menu__items.menu-personal .nav-item .nav-link:focus,
.dropdown-menu.icms-user-menu__items.menu-personal .nav-item:hover > .dropdown-item,
.dropdown-menu.icms-user-menu__items.menu-personal .nav-item .dropdown-item:focus,
.dropdown-menu.icms-user-menu__items.menu-personal .nav-item .dropdown-item.active,
.dropdown-menu.icms-user-menu__items.menu-personal .nav-item .dropdown-item:active,
.dropdown-menu.icms-user-menu__items.menu-personal .nav-item:has(.dropdown-item.active) > .nav-link {
	color: #5c3d84;
	text-decoration: none;
	background-color: #f2f3f4;
	/* border-color: #5c3d84; */
}
.dropdown-menu.icms-user-menu__items.menu-personal .nav-item .nav-link > .counter.badge {
	background-color: #b62525;
}
body#mobile_device_type .wd-user-avatar .dropdown-divider {
	display: none !important;
}
body#mobile_device_type:has(.wd-user-avatar .dropdown-menu.icms-user-menu__items.show) {
	overflow: hidden;
}
body#mobile_device_type .wd-user-avatar .dropdown-menu.icms-user-menu__items {
	max-height: calc(100vh - 16px);
	overflow-y: auto;
}
body#mobile_device_type:has(.wd-user-avatar .dropdown-menu.icms-user-menu__items.show) .row-bottom-fixed::before {
	content: "";
	position: fixed;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background-color: rgba(0, 0, 0, 0.75);
	z-index: 99;
}
body#mobile_device_type .wd-user-avatar .dropdown-menu.icms-user-menu__items .dropdown-menu {
	position: static;
	box-shadow: none;
	border-radius: 0;
	background-color: #fff;
	width: 100%;
	overflow-x: auto;
}
body#mobile_device_type .wd-user-avatar .dropdown-menu.icms-user-menu__items .dropdown-menu li a {
	padding-left: 54px;
	white-space: initial !important;
}
body#mobile_device_type .wd-user-avatar .dropdown-menu.icms-user-menu__items .dropdown-menu.show {
	box-shadow: -2px -2px 5px rgba(0, 0, 0, 0.3);
	/* overflow-y: auto; */
}
body#mobile_device_type:has(.icms-header__top .dropdown-menu.icms-user-menu__items.menu-personal.show) {
	overflow: hidden;
}
body#mobile_device_type .icms-header__top .dropdown-menu.icms-user-menu__items.menu-personal.show {
	margin-left: -150%;
	max-height: calc(100vh - 50px);
	overflow-y: auto;
}
body#mobile_device_type
	.icms-header__top:has(.avatar_nickname + .dropdown)
	.dropdown-menu.icms-user-menu__items.menu-personal.show {
	margin-left: -115%;
}
body#mobile_device_type .icms-header__top .dropdown-menu.icms-user-menu__items.menu-personal.show .dropdown-menu.show {
	min-width: 100%;
	position: static;
}
body#mobile_device_type
	.icms-header__top
	.dropdown-menu.icms-user-menu__items.menu-personal
	.dropdown-menu
	.dropdown-item.text-nowrap {
	white-space: initial !important;
}

body#mobile_device_type:has(.icms-header__top .dropdown-menu.icms-user-menu__items.menu-personal.show)
	header.mobile-sticky::before {
	content: "";
	position: fixed;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background-color: rgba(0, 0, 0, 0.75);
	z-index: 99;
}
body#mobile_device_type
	.icms-header__top
	.dropdown-menu.icms-user-menu__items.menu-personal.show
	.dropdown-menu.show
	.dropdown-divider {
	display: none;
}
.community-user__ai {
	padding: 20px 16px;
	gap: 4px;
	cursor: default;
}
.community-user__ai .community-user__name {
	font-size: 16px;
	font-weight: 600;
	line-height: 24px;
}
.community-user__ai .community-user__since {
	color: #5c656d;
	font-size: 14px;
	line-height: normal;
	margin-top: 2px;
}
.community-user__ai .community-user__avatar,
.community-user__ai .community-user__avatar img,
.community-user__ai .icms-profile-avatar__default.avatar__inlist,
.community-user__ai .icms-profile-avatar__default.avatar__inlist svg {
	width: 60px;
	height: 60px;
	flex: 0 0 60px;
	border-radius: 50%;
}
.content_list_exclusive_wd {
	position: relative;
}
.lock-items-list {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	padding: 16px;
	border-radius: 12px;
	border: 1.3px solid #f2f3f4;
	background: rgba(247, 248, 248, 0.8);
	backdrop-filter: blur(6px);
	z-index: 16;
}
.lock-items-list_svg {
	width: 48px;
	height: 48px;
	flex: 0 0 48px;
	background: rgba(247, 248, 248, 1);
	border-radius: 12px;
}
.lock-items-list_text {
	font-size: 16px;
	line-height: 22px;
	margin-top: 12px;
}
.lock-items-list_button {
	margin-top: 20px;
}
.lock-items-list_button .green-button {
	font-size: 16px;
	line-height: 1.5px;
	height: 43px;
	padding: 0 16px;
}

/* #################### 2026.04.06 ########################################################### */
@media (min-width: 992px) {
	/* .get-health-care-text.get-health-care-text__2026 {
		margin-top: 60px;
	} */
	.get-health-care-title-hint {
		font-size: 32px;
		line-height: 30px;
		margin-top: 28px;
	}
	body .get-health-care-text .hipa {
		font-size: 18px;
		line-height: 26px;
		font-weight: 400;
		margin-top: 28px;
		padding-bottom: 0;
	}
	body .ghc-buttons.ghc-buttons_new {
		margin-top: 28px;
	}
	body .ghc-buttons .home-support-center-link {
		border-left: 2px solid #5da039;
		margin-top: 32px;
		padding-left: 24px;
		padding-top: 0;
		line-height: 22px;
		font-size: 16px;
	}
	body .ghc-buttons .green-button.green-button-xl {
		width: auto;
		text-transform: initial;
		padding-left: 48px;
		padding-right: 48px;
		border-radius: 8px;
	}
	body .ghc-buttons .green-button.green-button-xl + .green-button.green-button-xl {
		width: auto !important;
		border: 2px solid #6b6293;
	}
	.ghc-buttons .green-button.green-button-xl + .green-button.green-button-xl:hover,
	.ghc-buttons .green-button.green-button-xl + .green-button.green-button-xl:active {
		border-color: var(--theme-color-green) !important;
	}
	.ghc-buttons .home-support-center-link__link.home-support-center-link__link_tel {
		color: var(--theme-color);
		font-weight: 400 !important;
		border-width: 0 !important;
	}
	.ghc-buttons .home-support-center-link__link.home-support-center-link__link_tel:hover,
	.ghc-buttons .home-support-center-link__link.home-support-center-link__link_tel:active {
		text-decoration: underline !important;
	}
	body .ghc-buttons .home-support-center-link .home-support-center-link__bold {
		text-transform: initial;
	}
	.home-support-center-link__second {
		margin-top: 10px;
	}
	.choose-the-type {
		font-size: 18px;
		line-height: 28px;
		margin-top: 40px;
	}

	body .get-health-care-content {
		position: relative;
	}
	.get-health-care-text {
		margin-top: 82px;
		flex: 0 0 800px;
		position: relative;
		z-index: 2;
	}
	body .get-health-care-img {
		transform: translate(0, 0);
		flex: 0 0 494px;
		position: absolute;
		right: 22px;
		top: 22px;
		width: 494px;
		height: 712px;
	}
	.get-health-care-img img {
		width: 100%;
	}
	body #get-health-care {
		height: auto;
		padding-bottom: 149px;
		background: linear-gradient(0deg, rgba(143, 153, 161, 0.19) 0%, rgba(255, 255, 255, 0) 32.07%), #fff;
	}
	body .play-button-d {
		left: 201px;
		top: 316px;
	}

	body #myTabContent .tab-pane-form {
		margin-top: 32px !important;
		padding: 28px 24px;
		background-color: #f7f8f8;
		border-radius: 8px;
	}

	/* ###################### get help ############################################# */
	.home-get-help-n-container {
		padding: 0 100px;
		max-width: 1440px;
		position: relative;
	}
	.home-get-help-n-img {
		position: absolute;
		top: 0;
		bottom: 0;
		right: 0;
	}
	.home-get-help-n-img img {
		height: 100%;
	}
	.d-flex.flex-column.home-get-help-n-content {
		gap: 32px;
		padding: 88px 0;
		width: 580px;
		position: relative;
		z-index: 2;
		line-height: 1.5;
	}
	.mb-0.home-get-help-n-title {
		font-size: 40px;
		line-height: 52px;
	}
	.home-get-help-n-buttons .green-button.green-button-xl {
		width: auto;
		text-transform: initial;
		padding-left: 48px;
		padding-right: 48px;
		border-radius: 8px;
	}
	.home-get-help-n__first {
		background-color: #f2f3f4;
		margin-top: 100px;
	}
	.home-get-help-n__first > .container {
		display: flex;
		justify-content: flex-end;
	}
	.home-get-help-n__first .home-get-help-n-content {
		width: 606px;
		flex: 0 0 606px;
	}
	.home-get-help-n__first .home-get-help-n-img {
		left: 0;
		right: auto;
	}
}
