* {
	font-family: "Rubik", arial, sans-serif;
}

/* Colors */

:root {
	--prime1: #f88f36;
	--prime2: #1ba8ed;
	--prime3: #004c82;
	--prime4: #f93a92;

	--text: #444;

	--col1: #ffd800;
	--col3: #2cc000;
	--col5: #ff6a00;
	--col4: #ed008c;
	--col2: #0096fa;


	--web-primary-color: var(--prime3);
	--web-primary-hover-color: #00486e;
	--web-links-color: #0372ac;
	--web-links-hover-color: #005888;
	--web-mobile-nav-bg: #1d252ae0;
	--web-side-nav-title-bg: #0372ac;
	--web-side-nav-title-text: #fff;


}

/* Bootstrap Override */

a {
	color: var(--web-links-color);

	-o-transition: .5s;
	-ms-transition: .5s;
	-moz-transition: .5s;
	-webkit-transition: .5s;
	transition: .5s;
}

a:hover,
a:focus {
	color: var(--web-links-hover-color);
}

.btn-primary {
	background: var(--web-primary-color);
	border: 1px solid var(--web-primary-color);
}

.btn-primary:hover,
.btn-primary:focus {
	background: var(--web-primary-hover-color);
	border: 1px solid var(--web-primary-hover-color);
}

.btn-outline-primary {
	color: var(--web-primary-color);
	border-color: var(--web-primary-color);
}

.btn-outline-primary:hover,
.btn-outline-primary:focus {
	background: var(--web-primary-hover-color);
	border-color: var(--web-primary-hover-color);
}

figure {
	margin: 0;
}

@media (min-width: 992px) {
	.table-responsive {
		display: table;
	}
}

.table {
	border: 1px solid var(--web-primary-color);
}

.table td,
.table th {
	border-top: 1px solid var(--web-primary-color);
}

.table thead th {
	border-bottom: 2px solid var(--web-primary-color);
	background: #e6f6ff;
}

.table-bordered td,
.table-bordered th {
	border: 1px solid var(--web-primary-color);
}

legend {
	font-size: 1rem;
}

.text-right {
	text-align: right !important;
}

.text-left {
	text-align: left !important;
}

.float-right {
	float: right !important;
}

.float-left {
	float: left !important;
}

@media (min-width: 1600px) {
	.container {
		min-width: 1540px;
	}
}


/* Template */

body {
	margin: 0;
	padding: 0;
	overflow-x: clip;
	background: #fff;
}

/* Navigation */

.header nav ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.header nav a.on,
.header nav li.on > span > a {
	font-weight: bold;
}

.header nav button {
	outline: none;
	border: none;
	background-color: #fff;
	color: var(--text);
	position: relative;

	&:hover {
		color: var(--prime2);
	}

	&::before {
		content: none;
		position: absolute;
		right: -0.5rem;
		width: 4px;
		height: 4px;
		background-color: var(--prime1);
		border-radius: 100vw;
		top: 50%;
		transform: translateY(-50%);
	}
}

@media (min-width: 1200px) {

	.header nav {
		padding-right: 13.5rem;
		height: 100%;
		display: flex;
		align-items: center;
	}

	.header nav > ul {
		margin: 0 auto;
		position: relative;
		height: 100%;
		display: flex;
		flex-wrap: wrap;
		align-items: center;
	}

	.header nav li:hover > ul {
		display: block;
	}

	.header nav > ul > li {
		display: inline-block;
		position: relative;
	}

	.header nav > ul > li > span > a {
		display: block;
		padding: 0.35rem 0;
		font-size: 1.2em;
		color: var(--text);
		position: relative;
		margin-inline-end: 1.5rem;
	}

	.header nav > ul > li > span > a:after {
		position: absolute;
		content: "";
		padding: 0;
		width: 4px;
		height: 4px;
		background-color: var(--prime1);
		display: inline-block;
		margin-inline: 0.75rem;
		border-radius: 100vw;
		top: 50%;
	}

	.header nav > ul > li:last-child > span > a:after {
		content: none;
	}

	.header nav > ul > li > span > a:hover,
	.header nav > ul > li:hover > span > a {
		color: var(--prime3);
	}

	.header nav > ul > li.on > span > a,
	.header nav > ul > li > span > a.on {
		color: var(--prime3);
	}

	.header nav > ul > li > ul {
		display: none;
		text-align: right;
		position: absolute;
		top: 100%;
		right: 0;
		z-index: 9999;
		width: 540px;
		background: rgba(255, 255, 255, 1);
		backdrop-filter: blur(5px);
		padding: 30px;
		border-radius: 0 0 20px 20px;
		backface-visibility: hidden;
		transform: translateZ(0);
		-webkit-font-smoothing: subpixel-antialiased;
		border-top: 4px solid var(--prime1);
		column-count: 2;
		box-shadow: 0 0 8px rgba(0, 0, 0, 0.1);
	}

	.header nav > ul > li > ul > li > span > a {
		font-size: 1.1rem;
		display: inline-block;
		padding-bottom: 0.95rem;
		width: 100%;
		color: var(--text);
		position: relative;
		line-height: 1.05;
		text-decoration: none;
	}

	.header nav > ul > li > ul > li > span > a::after {
		content: "";
		display: block;
		position: relative;
		bottom: -0.25rem;
		width: 30px;
		height: 1px;
		background-color: var(--prime1);
		right: 0;
		transition: all 0.2s ease;
	}



	.header nav > ul > li > ul > li > span > a:hover::after {
		width: 70px;
	}

	.header nav > ul > li > ul > li > span > a > em.arrow {
		content: '';
		font-family: 'FontAwesome';
		font-style: normal;
	}

	.header nav > ul > li > ul > li > span > a > em.arrow:before {
		content: '\f104';
	}
}



.flexrow {
	display: flex;
}

/* Header */

.header {
	background: #fff;
	color: var(--text);
	height: 87px;
	position: fixed;
	top: 0;
	right: 0;
	width: 100%;
	z-index: 99;
	display: flex;
	justify-content: space-between;

	-o-transition: .5s;
	-ms-transition: .5s;
	-moz-transition: .5s;
	-webkit-transition: .5s;
	transition: .5s;
	box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}

.header.offset {
	box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
}


.stack {
	z-index: 5;
	position: fixed;
	left: 0;
	top: 76px;

	& .shape {
		position: absolute;
		left: -180px;
		top: -5px;
		width: 320px;
		height: 200px;

		background-image: url(./images/stack.png?v=1);
		background-size: contain;
		background-repeat: no-repeat;
	}
}

/* Logo */

.header .logo {
	position: absolute;
	top: 15px;
	right: 30px;
	display: block;
	z-index: 3;
	width: 159px;
	height: 182px;
	background-color: transparent;
	border-radius: 100vw;
	display: flex;
	align-items: center;
	justify-content: center;
	filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.3));
}

.header .logo img {
	display: block;
	height: 100%;
	object-fit: cover;
}

/* Header Icons */

.header-side {
	height: 100%;
	position: relative;
	left: 1.5rem;
	display: flex;
	align-items: center;
	gap: 0.8rem;
}

.header .icon-btn {
	float: right;
	width: 40px;
	height: 40px;
	color: #fff;

	&:hover {
		box-shadow: 1px 5px 15px #bababa;
	}

	& > span {
		position: relative;
		width: 100%;
		height: 100%;
		display: block;
	}

	& img {
		width: 100%;
	}
}


.header .icon-btn.orgs {
	width: fit-content;
	height: unset;

	& img {
		max-height: 50px;
		width: unset;
		object-fit: contain;
	}
}

.header .icon-btn.orgs:first-of-type {
	width: 155px;

	& img {
		max-height: 40px;
	}
}

.header .icon-btn.orgs:nth-of-type(2) {
	width: 35px;
}



/* Header Search */

.header-search {
	position: fixed;
	top: 0;
	right: 0;
	z-index: 999999;
	width: 100%;
	background: #fff;
	height: 100px;
	border-bottom: 2px solid var(--prime1);
	box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);

	display: none;
}

.header-search .content {
	position: relative;
	height: 100%;
}

.header-search input {
	border: 0;
	background: #fff;
	width: 100%;
	font-size: 1.5em;
	padding: 30px;
	height: 100%;
	outline: none;
}

.header-search button {
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	width: 100px;
	background: none;
	border: 0;
	cursor: pointer;
}

.header-search button.submit {
	left: 101px;
	font-size: 30px;
	border-left: 1px solid #ddd;
	border-right: 1px solid #ddd;
}

.header-search button.submit:hover {
	color: var(--prime1);
}



/* Toggle Navigation Button */

a.toggle-nav {
	display: none;
}



/* Footer */

.footer {
	padding: 1.5rem 0;
}

.foo {
	background-color: #fff;
	padding: 0.5rem;

	& a {
		color: var(--text);
	}

	& .flexrow {
		justify-content: space-between;

		& .col {
			display: flex;
			flex-wrap: wrap;
			align-items: center;
			height: 100%;
			gap: 0.45rem;
		}

		& i {
			display: inline-block;
			font-size: 3px;
			color: var(--prime1);
		}

		& > div:last-child {
			justify-content: flex-end;
			text-align: left;

			& em {
				font-style: normal;
				color: var(--prime4);
			}
		}
	}

}

.footer p {
	margin: 0;
}

/* Breadcrumbs */

.breadcrumbs ul {
	list-style: none;
	margin: 0;
	padding: 0;
	line-height: 1;
}

.breadcrumbs ul > li {
	display: inline-block;
}

.breadcrumbs ul > li:after {
	font-family: 'FontAwesome';
	content: '\f104';
	padding: 0 5px;
	display: inline-block;
}

.breadcrumbs ul > li:last-child:after {
	content: '';
	padding: 0;
}

/* bNagish */

.bNagish-toggle {
	bottom: auto;
	top: 32px;
	left: 20px;
	width: 40px;
	height: 40px;
	background: #000;
	color: #fff;
	border-radius: 50%;
	display: none;
}

.bNagish-toggle em {
	font-size: 18px;
}

.bNagish-toggle:hover .text,
.bNagish-toggle:focus .text {
	padding: 3px;
	border-radius: 30px;
}


@media (max-width: 1199px) {
	.header .navigation {
		display: none;
	}

	a.toggle-nav {
		position: absolute;
		top: 25px;
		left: 30px;
		width: 40px;
		height: 40px;
		background: var(--prime2);
		color: #fff;
		display: block;
		padding: .6rem;
		text-align: center;
		border-radius: 7px;
	}

	a.toggle-nav em {
		font-size: 18px;
	}

	.header-side {
		margin-right: auto;
		left: 5.5rem;

		& a {
			display: none;
		}

		& a.accessibility {
			display: block;
		}
	}
}



/* Skip Ads */

.skip-ad {
	position: fixed;
	top: 0;
	right: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.5);
	z-index: 99999;
	display: flex;
	align-items: center;
	justify-content: center;
	backdrop-filter: blur(4px);
}

.skip-ad .skip-ad-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 15px;
}

.skip-ad .skip-ad-content {
	position: relative;
}

.skip-ad .skip-ad-content .msg {
	background: #fff;
	padding: 30px;
}

.skip-ad img {
	max-width: 100%;
	display: block;
	margin: 0 auto;
	border-radius: 3rem;
}

.skip-ad .skip-ad-close {
	position: absolute;
	top: -25px;
	left: -30px;
	width: 100%;
	text-align: left;
	color: #000;
}

.skip-ad #close-skip-ad {
	display: inline-block;
	padding: 10px 20px;
	border-radius: 3rem;
	background: #fff;
	color: #000;
	border: 2px solid #000;
}

.skip-ad #close-skip-ad:focus,
.skip-ad #close-skip-ad:hover {
	background: #000;
	color: #fff;
	border: 2px solid #fff;
}


/* Mobile Navigation */

.mobile-navigation {
	position: fixed;
	top: 0;
	left: -300px;
	width: 300px;
	height: 100%;
	z-index: 91;

	transition: .5s;
	-o-transition: .5s;
	-ms-transition: .5s;
	-moz-transition: .5s;
	-webkit-transition: .5s;

	visibility: hidden;

	box-shadow: 0 0 0 rgba(0, 0, 0, 0);

	background: #fff;
	border-right: 2px solid #fff;
	box-shadow: 0 0 50px rgb(0 0 0 / 50%);
	backdrop-filter: blur(6px);
}

.mobile-navigation.open {
	left: 0;
	visibility: visible;
	box-shadow: 0 0 50px rgba(0, 0, 0, 0.5);
}

.mobile-navigation .content {
	width: 100%;
	height: 100%;
	overflow: auto;
	position: relative;
}

.mobile-navigation .content .head {
	width: 100%;
	text-align: left;
	margin-bottom: 1.4rem;
}

.mobile-navigation .content .head .button {
	padding: 10px 15px;
	background: #333;
	color: #fff;
	border: 0;
	font-size: 20px;
	margin: 1rem;
}

.mobile-navigation nav {
	margin: 1rem;
	background: #fff;
}

.mobile-navigation nav ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.mobile-navigation nav a {
	color: inherit;
}

.mobile-navigation nav a.on,
.mobile-navigation nav li.on > span > a {
	font-weight: bold;
}

.mobile-navigation nav button {
	display: none;
}

.mobile-navigation nav ul ul {
	display: none;
}

.mobile-navigation nav li {
	border-bottom: 1px solid #ddd;
}

.mobile-navigation nav li > span {
	display: block;
	position: relative;
}

.mobile-navigation nav ul ul {
	background: rgba(0, 0, 0, 0.02);
}

.mobile-navigation nav button {
	display: block;
	position: absolute;
	top: 0;
	right: 0;
	height: 100%;
}

.mobile-navigation nav a {
	display: block;
	padding: 15px;
	margin-right: 48px;
}

.mobile-navigation nav .toggle-sub-menu {
	display: block;
	position: absolute;
	top: 0;
	right: 0;
	width: 48px;
	overflow: hidden;

	font-size: 12px;

	padding: 0 15px;
	background: none;
	border: 0;
	background: rgba(232, 222, 252, 0.02);
	color: inherit;

	font-family: 'FontAwesome';
	font-style: normal;
}

.mobile-navigation nav .toggle-sub-menu:after {
	content: '\f053';
	color: var(--prime2);
}

.mobile-navigation nav .toggle-sub-menu.opened:after {
	content: '\f078';
	color: var(--prime2);
}

.mobile-navigation nav .toggle-sub-menu.no-sub-menu:after {
	content: '\f111';
	font-size: 50%;
	color: var(--prime2);
}

.mobile-navigation nav .toggle-sub-menu.external-link:after {
	content: '\f08e';
}

.mobile-navigation-search {
	position: relative;
	margin: 1rem;
}

.mobile-navigation-search input {
	display: block;
	width: 100%;
	padding: 1rem;
	background: #fff;
	border: 2px solid var(--prime2);
	border-radius: 10px;
}

.mobile-navigation-search button {
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	background: none;
	border: 0;
	padding: 0 1rem;
}

.mobile-navigation .content .head .button {
	background: #fff;
	color: rgb(43 43 43 / 100%);
}

.mobile-navigation .mobile-social {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	margin: 0 1rem;
	gap: 5px 16px;
	background: #fff;
}

.mobile-navigation .mobile-social .icon-btn {

	display: grid;
	place-content: center;
	padding: 5px;
	color: #fff;


	& span {
		display: flex;
		align-items: center;
		justify-content: center;


	}

	& img {
		max-width: 70%;
	}

	&.orgs:first-of-type img {
		max-width: 130px;
	}

	&.orgs + .orgs img {
		max-width: 50px;
	}
}

/* Page * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */


/* Page Header */

.page-header {
	height: 120px;
	display: flex;
	align-items: center;
	background-repeat: no-repeat;
	background-position: center center;
	margin-bottom: 5.75rem;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
	top: 80px;

	position: relative;

	z-index: 1;
	background-image: none !important;

	background-color: var(--prime3);
}



/* Page Content */

.page-content {
	background: #fff;
	margin-bottom: 3rem;
}





.page-content-head {
	background: rgb(from var(--web-primary-color) r g b / 0.9);
	color: #fff;
	padding: 0.5rem;
	width: 100%;
	position: relative;
	padding-right: 12.75rem;
	/* margin-top: auto; */
}




.page-content-head h1 {
	margin: 0;
	font-weight: 500;
	font-size: calc(2vw + 1rem);
	line-height: 0.9;
}

.page-content-head a {
	color: rgba(255, 255, 255, 0.8);
	font-size: 1.2rem;
}

.page-content-head button {
	display: none;
}



.page-content-body {
	padding: 1.5rem;
	min-height: 20rem;
}



.page-content-nav {
	display: none;
}



.page-content-nav ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.page-content-nav ul > li {
	border-bottom: 1px solid #ddd;
}

.page-content-nav ul > li a {
	display: block;
}

/* Social Sharing Buttons */

.social-share {
	font-size: 16px;
	text-align: center;
}

.social-share .h6 {
	font-size: 1.3rem;
}

.social-share a {
	min-width: 40px;
	text-align: center;
	display: inline-block;
}

/* InPage Navigation */

.sub-pages-nav.outside {
	margin-top: 1rem;
	margin-bottom: 2rem;
}

/* START OF GRID */

.sub-pages-nav ul {
	list-style: none;
	padding: 0;
	margin: 0 -1rem;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(min(100%, 420px), 1fr));
	max-width: 100%;
}

.sub-pages-nav ul > li {
	position: relative;
	padding: 0.5rem;
}

.sub-pages-nav ul > li > span {
	height: 100%;
}

.sub-pages-nav ul > li::after {
	content: "";
	content: none;
	position: absolute;
	right: 10px;
	height: calc(90% - 1rem);
	background: var(--prime1);
	top: 50%;
	transform: translateY(-50%);
	width: 5px;
	border-radius: 0 50px 50px 0;
}

.sub-pages-nav ul > li:nth-child(5n + 1) a .icon {
	background: var(--col1);
}

.sub-pages-nav ul > li:nth-child(5n + 2) a .icon {
	background: var(--col2);
}

.sub-pages-nav ul > li:nth-child(5n + 3) a .icon {
	background: var(--col3);
}

.sub-pages-nav ul > li:nth-child(5n + 4) a .icon {

	background: var(--col4);
}

.sub-pages-nav ul > li:nth-child(5n + 5) a .icon {
	background: var(--col5);
}

.sub-pages-nav a {
	height: inherit;
	display: block;
	color: var(--text);
	font-size: 1.4rem;
	border: none;
	padding: 2px;
	background-color: #fff;
	border-radius: 18px;
	box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.sub-pages-nav a .icon {
	height: 100%;
}

.sub-pages-nav li a {
	position: relative;
	display: flex;
}

.sub-pages-nav li a .fa-external-link {
	color: var(--prime7);
	font-size: 0.8rem;
	margin-top: 5px;
	position: absolute;
	left: 0.5rem;
}

.sub-pages-nav li a:hover {
	border-color: var(--prime2);
	box-shadow: 0 0 9px rgba(172, 172, 172, 0.2);

	& .arrow {
		inset-inline-end: 9px;
		color: var(--prime2);
	}
}

.sub-pages-nav a .icon {
	position: relative;
	border-radius: 0 15px 15px 0;
	padding: 0;
	width: 22px;
}

.sub-pages-nav a > span {
	display: table-cell;
	vertical-align: middle;
	padding: 1.1rem 0.75rem;
	width: 98%;

	@media (max-width: 387px) {
		white-space: normal;
		overflow: hidden;
		text-overflow: initial;
	}
}

.sub-pages-nav .arrow {
	font-family: "FontAwesome";
	font-style: normal;
	float: left;
	margin-right: 10px;
	color: #b6b6b6;
	position: absolute;
	inset-inline-end: 15px;
	transition: all 0.2s ease-out;
}

.sub-pages-nav.with-icons ul {
	margin: 0;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(min(100%, 240px), 1fr));
}

.sub-pages-nav.with-icons li a {
	flex-direction: column;
	align-items: center;
	padding-block: 2rem;
}

.sub-pages-nav.with-icons a .icon {
	height: 100%;
	position: relative;
	border-radius: 0 15px 15px 0;
	padding: 0;
	width: 75px;
	background-color: transparent !important;
}

.sub-pages-nav.with-icons a > span {
	text-align: center;
}

.sub-pages-nav.with-icons a:hover {
	transform: scale(1.1);
}


.sub-pages-nav .arrow {
	font-family: "FontAwesome";
	font-style: normal;
	color: #555;
}

.sub-pages-nav .arrow:before {
	content: "\f104";
}

.sub-pages-nav.with-icons a .icon {
	height: 90px;
	margin-bottom: 0.5rem;
	display: block;
	position: relative;

	& img {
		max-width: 100%;
		max-height: 90px;
		position: absolute;
		top: 50%;
		left: 50%;
		margin-right: -50%;
		transform: translate(-50%, -50%);
	}
}






/** with-pics **/

.sub-pages-nav.with-pics {
	& ul {
		display: block;
		list-style: none;
		padding: 0;
		margin: 0;

		& li {
			padding: 1rem;
			width: 33.33%;
			float: right;
			position: relative;
		}


		& a {
			display: block;
			background: #fff;
			color: var(--text);
			text-align: right;
			font-size: 1.2rem;
			line-height: 1.1rem;
			position: relative;
			box-shadow: 2px 10px 12px rgb(0 0 0 / 9%);
			border-radius: 0;
			overflow: hidden;

			&:hover {
				transform: scale(1.05);
			}
		}

		& .icon {
			padding-bottom: 81.25%;
			margin-bottom: .5rem;
			display: block;
			position: relative;
			overflow: hidden;
			width: 100%;
			border-top-left-radius: 20px;
			border-top-right-radius: 20px;
			border-radius: 0;

			& img {
				width: 100%;
				position: absolute;
				inset: 0;
				margin: auto;

			}
		}

		& li a .icon {
			background-color: transparent;
		}

		& .info {
			min-height: 100px;
			display: block;
			padding: 1rem;
		}

		& .name {
			display: block;
			font-weight: bold;
			color: var(--text);
		}

		& .description {
			display: block;
			color: #555;
			margin: 10px 0;
		}

		& .read-more {
			display: block;
			text-align: right;

			& > span {
				display: inline-block;
				background: var(--prime2);
				color: #fff;
				padding: 2px 10px;
				border-radius: 10px;
			}
		}
	}
}


@media (max-width:1200px) {
	.sub-pages-nav.with-pics ul {
		& li {
			width: 49.33%;
		}
	}
}

@media (max-width:767px) {
	.sub-pages-nav.with-pics ul {
		& li {
			width: 100%;
		}
	}
}

/* Mode Table Of Contents */

.toc-container {
	border: 1px solid #ddd;
	background: #f1f1f1;
	display: inline-block;
	padding: .5rem;
}

.toc-toggle a span {
	display: none;
}

.toc-toggle a:before {
	content: 'הצג';
}

.toc-container.active .toc-toggle a:before {
	content: 'הסתר';
}

.toc-expendable {
	display: none;
}

.toc-expendable ol {
	margin: 0;
	margin-top: 1rem;
}

/* InPage Style - Rich Content */

.rich-content h2,
.rich-content h3,
.rich-content h4,
.rich-content h5,
.rich-content h6 {
	margin-bottom: 1rem;
	font-weight: bold;
}

.rich-content h2 {
	color: var(--prime3);
}

.rich-content h3 {
	color: var(--text);
}

.rich-content h4 {
	color: var(--text);
}

.rich-content h5 {
	color: var(--text);
}

.rich-content h6 {
	color: var(--text);
}


.rich-content .contact-man {
	display: block;
	color: inherit;
	border-bottom: 3px solid #d8d8d8;
	background: #f1f1f1;
	padding: 1rem;
}

.rich-content .contact-man .contact-name {
	font-size: 1.5rem;
	font-weight: bold;
}


/* Media Prints * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */

/* Media Print */

@media print {
	.page-content {
		margin: 0 !important;
		padding: 0 !important;
		border: 0 !important;
	}

	.header,
	.blocks-skip,
	#bNagish,
	.mobile-navigation-container,
	.page-header,
	.social-share,
	.footer,
	.skip {
		display: none;
	}
}

/* Card */

.card {}

.card-header {
	background: var(--prime3);
	color: #fff;
}

.card-header h2 {
	color: inherit;
	margin: 0;
	font-size: 1.3rem;
}

.card-body {
	background: #f1f1f1;
}

/* InPage form category group */

.form-category-group {
	background: #f1f1f1;
	border-right: 3px solid #2d55aa;
	padding: .75rem;
	margin-bottom: 1.5rem;
}

.form-category-group .form-category-group {
	background: #fff;
}

.form-category-group a {
	color: inherit;
}

.form-category-group .tofes-link {
	display: inline-block;
	padding: .1rem .6rem;
	border-radius: 2rem;
	border: 1px solid #ddd;
	background: #fff;
	margin-left: .5rem;
	margin-bottom: .8rem;
}


/* page event */

.page-event-promo {
	display: block;
	padding: 1rem;
	color: #000;
	margin: 15px 0;
	background: #f1f1f1;
	border-bottom: 3px solid #d8d8d8;
	box-shadow: 0 0 30px rgb(0 0 0 / 5%);
}

.page-event-promo:hover,
.page-event-promo:focus {
	text-decoration: none;
	color: #fff;
	transform: scale(1.1);
	background: #0c97ff;
	border-bottom: 3px solid #2d55aa;
}

.page-event-promo h3 {
	height: 4.5rem;
	font-size: 1.2rem;
	color: #2d55aa;
	overflow: hidden;
}

.page-event-promo:hover h3,
.page-event-promo:focus h3 {
	color: #fff;
}

.page-event-promo .date {
	background: #199cff;
	color: #fff;
	padding: 0 5px;
	border-radius: 2rem;
}

.page-event-promo:hover .date,
.page-event-promo:focus .date {
	color: #199cff;
	background: #fff;
}

.page-events .more {
	text-align: left;
}

/* InPage phonebook */

.page-phonebook-category {
	margin: 15px 0;

	-o-transition: .5s;
	-ms-transition: .5s;
	-moz-transition: .5s;
	-webkit-transition: .5s;
	transition: .5s;

	border: 1px solid #E2E6EF;
	border-radius: 20px;
}

.page-phonebook-category-title h3 {
	color: #0372ac;
	background: #fff;
	margin: 0;
	padding: 0.5rem 1rem;
	font-size: 1.2rem;
	-o-transition: .5s;
	-ms-transition: .5s;
	-moz-transition: .5s;
	-webkit-transition: .5s;
	transition: .5s;
	cursor: pointer;
}

.page-phonebook-category-title h3:before {
	content: '\f196';
	font-family: 'FontAwesome';
	padding-left: .5rem;
}

.page-phonebook-category.opened .page-phonebook-category-title h3:before {
	content: '\f147';
	font-family: 'FontAwesome';
	padding-left: .5rem;
}

.page-phonebook-category-title h3:hover,
.page-phonebook-category.opened .page-phonebook-category-title h3 {
	background-color: #0372ac;
	color: #fff;
}

.page-phonebook-category-body {
	display: none;
	background-color: #fff;
	border: 1px solid #0372ac;
}

.page-phonebook-category.opened .page-phonebook-category-body {
	display: block;
	padding: 1rem;
}

.page-phonebook .phonebook h2 {
	border-bottom: 1px solid #ddd;
	color: #0372ac;
	padding: 10px 0;
	font-size: 1.2em;
	margin: 0;
}

.page-phonebook .phonebook.active > h2 {
	padding: 10px;
}

.page-phonebook .phonebook h2 a {
	color: inherit;
}

.page-phonebook .phonebook.active {
	margin-bottom: 15px;
	border: 1px solid #0372ac;
	box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.1);
}

.page-phonebook .phonebook.active > h2 {
	background: #0372ac;
	color: #fff;
}

.page-phonebook .phonebook > h2 > a > em:before {
	content: '\f137';
}

.page-phonebook .phonebook.active > h2 > a > em:before {
	content: '\f13a';
}

.page-phonebook .phonebook .info {
	background: #f1f1f1;
	padding: 15px;
}


.page-phonebook .phonebook .info:focus {
	outline: 0;
}

.page-phonebook .phonebook .info p {
	margin: 0 0 20px 0;
}

.page-phonebook .member {
	border-bottom: 1px solid #ddd;
	padding-bottom: 15px;
	margin-bottom: 15px;
}

.page-phonebook .pic {
	float: right;
	margin-left: 10px;
}

.page-phonebook .pic img {
	display: block;
	max-width: 100px;
}

.page-phonebook .contact-info a {
	color: inherit;
}

.page-phonebook .fa-stack {
	font-size: 100%;
}

.page-phonebook .phone .fa-stack {
	color: var(--prime3);
}

.page-phonebook .mobile .fa-stack {
	color: var(--prime3);
}

.page-phonebook .email .fa-stack {
	color: var(--prime3);
}

.page-phonebook .fax .fa-stack {
	color: var(--prime3);
}

.page-phonebook .fa-mobile {
	font-size: 130%;
}

.page-phonebook .fa-envelope {
	font-size: 90%;
}

.page-phonebook .fa-fax {
	font-size: 90%;
}

.page-phonebook .contact-info {
	float: right;
}

@media (min-width: 768px) {
	.page-phonebook .contact-info {
		width: 50%;
	}
}


@media (max-width: 991px) {
	.bNagish-toggle {
		top: auto;
		bottom: 12px;
		left: 20px;
	}

	.page-header {
		top: 0;
		height: 125px;
	}

	.header .logo {
		width: 100px;
		height: 100px;
	}

	body {
		padding-top: 87px;
		/* header height */
	}

	.page-content {
		margin: 0;
	}

	.page-content-head {
		padding: 1rem;
	}

	.page-content-head button {
		display: block;
		background: none;
		border: 0;
		padding: 0;
		position: absolute;
		left: 15px;
		bottom: 1rem;
		color: #fff;
		font-size: 2rem;
	}

	.page-content-head button em:before {
		content: "\f13a";
	}

	.page-content-head button.opened em:before {
		content: "\f139";
	}

	.page-content-nav {
		display: block;
		margin: 2rem -15px;
		background-color: #fff;
	}



	.header-search input {
		font-size: 1.2rem;
		padding: .5rem 1rem;
	}

	.header-search button {
		width: 50px;
		padding: .5rem 1rem;
	}

	.header-search button.submit {
		left: 51px;
		font-size: 18px;
	}

	.page-content-body {
		padding: 1rem;
	}

	.stack .shape {
		top: 4px;
		width: 150px;
		left: -75px;
		height: 120px;
	}

	.foo {
		& .flexrow {
			justify-content: center;
			flex-direction: column;

			& .col {
				justify-content: center;
				text-align: center;
			}

			& > div:last-child {
				justify-content: center;
				text-align: center;
			}
		}
	}

}




@media (max-width: 767px) {
	.page-phonebook .contact-info {
		margin-left: 5px;
	}


}