* {
	font-family: "Noto Sans Hebrew", arial, sans-serif;
}

/* Colors */

:root {
	--prime1: #10796f;
	--prime2: #f8d318;
	--prime3: #f1ba29;
	--prime4: #828d8f;
	--prime5: #222;

	--faqPrimaryColor: var(--prime1);

	--web-primary-color: var(--prime1);
	--web-primary-hover-color: oklch(from var(--prime1) calc(l - 0.1) c h);
	--web-links-color: #0330ac;
	--web-links-hover-color: #005888;
	--web-mobile-nav-bg: #1d252ae0;
	--web-side-nav-title-bg: #0372ac;
	--web-side-nav-title-text: #fff;




	--text: #444;
}

/* 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: #000;
}


.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 oklch(from var(--prime1) calc(l - 0.2) c h);
}

.btn-outline-primary {
	color: var(--web-primary-color);
	border-color: oklch(from var(--prime1) calc(l - 0.2) c h);
}

.btn-outline-primary:hover,
.btn-outline-primary:focus {
	background: oklch(from var(--prime1) calc(l - 0.2) c h);
	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: #d9efea;
}

.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;
	}
}

.flexrow {
	display: flex;
}


/* Template */

body {
	margin: 0;
	padding: 0;

	background: #fff;
}

/* Navigation */
.header nav {
	display: flex;
	padding-right: 1rem;
	height: 100%;
}

.header > nav ul {
	list-style: none;
}

.header nav > ul {
	height: 100%;
	padding: 0;
	margin: 0;
	text-align: center;
	position: relative;
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	width: calc(50% - 100px);
}

.header nav > ul > li:last-child::after {
	content: none;
}

.header nav > ul > li::after {
	content: "";
	position: absolute;
	margin: 0;
	width: 5px;
	height: 5px;
	background: var(--prime2);
	left: -2px;
	border-radius: 50px;
	top: 50%;
	transform: translateY(-50%);
}

.header nav > ul > li > span > a.on {
	font-weight: bold;
	color: var(--prime1);
	color: var(--text);
}

.header nav button {
	display: none;
}

@media (min-width: 1550px) {
	.header nav {
		display: flex;
		padding: 0 4rem 0 1rem;
		height: 100%;
		width: calc(50% - 150px);
	}

	.header nav > ul {
		margin: auto 1rem auto auto;
	}
}

@media (min-width: 1200px) {
	.header nav > ul {
		position: relative;
		height: 100%;
		padding: 0;
		text-align: center;
		display: flex;
		align-items: center;
		flex-wrap: wrap;
		width: 100%;
	}

	.header nav li:hover > ul {
		display: block;
	}

	.header nav > ul > li {
		position: relative;
		display: flex;
		align-items: center;
		padding: 1.25rem 1rem;
	}

	.header nav > ul > li > span > a {
		display: block;
		padding: 0.35rem 0;
		font-size: 1.2em;
	}

	.header nav > ul > li a {
		color: var(--text);
		display: block;
		font-size: 1.2rem;
		margin-inline: 0;
		position: relative;
		font-weight: 400;
	}

	.header nav > ul > li:last-child::after {
		content: none;
	}

	.header nav > ul > li::after {
		content: "";
		position: absolute;
		margin: 0;
		width: 5px;
		height: 5px;
		background: var(--prime2);
		left: -2px;
		border-radius: 50px;
		top: 50%;
		transform: translateY(-50%);
	}

	.header nav > ul > li > span > a.on {
		font-weight: bold;
		color: var(--prime1);
	}

	.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 {}

	.header nav > ul > li.on > span > a,
	.header nav > ul > li > span > a.on {
		color: var(--prime1);
	}

	.header nav > ul > li > ul {
		display: none;
		border-radius: 18px;
		text-align: right;
		position: absolute;
		top: 100%;
		width: 475px;
		right: 0;
		z-index: 90;
		background: #fff;
		color: #000;
		padding: 1rem;
		-webkit-box-shadow: 5px -1px 9px -3px #000000;
		box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
		padding: 1.5rem 2rem 0.5rem;
		column-count: 2;

		backface-visibility: hidden;
		/* transform: translate(-50%, 0); */
		-webkit-font-smoothing: subpixel-antialiased;
	}

	.header nav > ul > li > ul::before {
		content: "";
		position: absolute;
		width: 100%;
		height: 5px;
		top: 0;
		right: 0;
		z-index: 1;
		filter: drop-shadow(0px 5px 7px rgba(0, 0, 0, 0.513));
	}

	.header nav > ul > li > ul::after {
		content: "";
		width: 0;
		height: 0;
		border: 10px solid transparent;
		border-top: 0;
		border-bottom: 10px solid #fff;
		top: -10px;
		right: 50px;
		z-index: 1;
		position: absolute;
		filter: drop-shadow(0px -17px 10px rgba(0, 0, 0, 0.13));
	}

	.header nav li:hover > ul {
		display: block;
	}

	.header nav > ul > li > ul > li::marker {
		content: none;
	}



	.header nav > ul > li > ul > li {
		padding: 5px 0 10px;
	}

	.header nav > ul > li > ul > li > span > a {
		font-size: 1.1rem;
		padding-top: 0.25rem;
		padding-bottom: 1rem;
	}

	.header nav > ul > li > ul > li > span > a:hover {
		color: var(--prime1);
		font-weight: 500;
	}

	.header nav > ul > li > ul > li > span > a::after {
		position: absolute;
		content: "";
		bottom: 0.15rem;
		width: 35px;
		height: 1px;
		right: 0;
		background-color: rgb(from var(--prime5) r g b / 0.25);
	}

	.header nav > ul > li > ul > li:last-child:last-child > span > a::after {
		content: none;
	}

	.header nav > ul > li > ul > li > span > a > em.arrow {
		content: "";
		content: none;
	}

	.header nav > ul > li > ul > li > span > a > em.arrow:before {
		content: none;
	}
}

@media (max-width: 1400px) {
	.header nav > ul > li > span > a {
		font-size: 1.1em;
	}
}

@media (max-width: 1199px) {
	.header .navigation {
		display: none;
	}
}

/* Header */
.header-shadow {
	height: 90px;
	position: fixed;
	inset: 0;
	width: 100%;
	z-index: 2;
	transition: all 0.2s ease;
}

.header-shadow.offset-shadow {
	opacity: 0;
	height: 0;
}

.header {
	background: rgb(255 255 255 / 100%);
	color: #000;
	height: 70px;
	position: fixed;
	top: 0;
	right: 0;
	width: 100%;
	z-index: 99;
	display: flex;
	align-items: center;

	-o-transition: 0.5s;
	-ms-transition: 0.5s;
	-moz-transition: 0.5s;
	-webkit-transition: 0.5s;
	transition: 0.5s;
	filter: drop-shadow(3px -4px 16px var(--prime1));
}

.header.offset {
	box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
}



/* Logo */

.header .logo {
	width: 165px;
	position: absolute;
	inset: 0;
	bottom: 0;
	margin: auto;
	display: block;
	z-index: 3;
	display: flex;
	align-items: center;
	height: 100%;
}

.header .logo::before {
	content: "";
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	bottom: -66px;
	width: 300px;
	height: 150px;
	background-image: url(./images/header_shape.png);
	background-size: contain;
	background-position: bottom;
	background-repeat: no-repeat;
	z-index: -1;
}

.header.offset .logo::before {
	background-size: 190px;
	bottom: 0;
	filter: none;
	content: none;
}

.header .logo img {
	z-index: 1;
	display: block;
	width: 100%;
	margin: auto;
	margin-top: 30px;
	transition: all 0.2s ease;
}

.header.offset .logo img {
	margin-top: 14px;
	width: 70%;
}

/* Header Icons */

.header .icon-btn {
	width: 37px;
	height: 37px;
	background-repeat: no-repeat;
	background-position: center;
	border-radius: 5px;
	background-size: cover;
	transition: all 0.3s ease-in;
	display: inline-block;
	border: none;
	outline: none;
	position: relative;
	color: var(--prime1);


	& span {
		display: flex;
		justify-content: center;
		align-items: center;
		width: 100%;
		height: 100%;
	}

	& i {
		font-size: 1.4rem;
		margin-bottom: 0;
		transition: all 0.2s ease;
	}

	&:hover {
		transform: scale(1.02);
		text-decoration: none;
		background-color: rgb(from var(--prime1) r g b / 0.2);
	}

	&:focus-within {
		border: 2px solid #000;
	}
}

.header .icon-btn.smart-nav {
	padding: 5px;
	background-color: var(--prime1);
	width: 140px;
	border-radius: 5px;
	color: var(--prime2);
	font-size: 1.2rem;

	& .offset {
		inset: 0;
		color: #fff;
		position: relative;
	}

	& i {
		margin-left: 12px;
	}
}

.header a.label {
	font-size: 1rem;
	width: fit-content;
	padding: 5px 0.75rem;
	transition: all 0.2s ease;

	& i {
		font-size: 16px;
		margin-left: 5px;
	}

	&:hover {
		color: #fff !important;
		background-color: var(--prime4);
	}
}

.lang-btn:hover .sub {
	display: block;
	width: 212px;
	direction: ltr;
	text-align: left;
	border-radius: 0 1rem 1rem 1rem;
}

.lang-btn .sub {
	z-index: 99;
	position: absolute;
	top: 25px;
	left: 50%;
	transform: translateX(-50%);
	background: transparent;
	box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
	padding: 0.5rem;
	backdrop-filter: blur(4px);
	display: none;
}

/**/
.shelf {
	z-index: 3;
	display: flex;
	flex-direction: column;
	position: absolute;
	width: 405px;
	height: 200px;
	padding: 2.5rem 1.5rem;
	background-color: #fff;
	border-radius: 16px;
	left: -450px;
	left: 45px;
	top: 90px;
	z-index: 1;
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transform: translateY(-12px);
	transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;

	&::after {
		content: "";
		width: 0;
		height: 0;
		border: 13px solid transparent;
		border-top: 0;
		border-bottom: 13px solid #fff;
		top: -12px;
		right: 150px;
		z-index: 1;
		position: absolute;
		filter: drop-shadow(0px -17px 10px rgba(0, 0, 0, 0.13));
	}
}

.shelf.open {
	left: 45px;
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
	transform: translateY(0);
}

.shelf .wrap {
	height: 100%;
	display: flex;
	flex-direction: column;
	align-items: start;
	justify-content: space-between;
	position: relative;

	&::after {
		content: '\f72b';
		position: absolute;
		left: 0;
		top: -20px;
		width: 95px;
		height: 110px;
		font-family: "Font Awesome 7 Free";
		font-weight: 900;
		font-size: 4.7rem;
		color: var(--prime2);
		z-index: -1;
		opacity: 0.25;
	}
}

.shelf .parag {
	padding-right: 1.2rem;
	color: var(--site1);
	display: flex;
	flex-direction: column;
}

.shelf img {
	width: 45px;
}

.shelf span {
	line-height: 1;
	font-size: 0.82em;
}

.shelf a {
	color: var(--site1);
	font-weight: 700;
	font-size: 2rem;
}

.shelf .closeout {
	position: absolute;
	right: -1.8rem;
	top: 0;
	color: #fff;
	z-index: 1;
	width: 20px;
	height: 20px;
	display: block;
}


/* Fast Nav */

.fast-nav {
	width: 100%;
}

.fast-nav.slide {
	left: 0;
	display: block;
}

.fast-nav .closer {
	position: absolute;
	right: -25px;
	width: 110%;
	top: 0;
	text-align: right;
}

.fast-nav .closer span {
	color: #fff;
}

.fast-nav .title {
	text-align: right;
	margin-bottom: 2.75rem;
	font-size: 1.7rem;
	color: var(--prime1);
	font-weight: 750;
}

.fast-navigation .form-group {
	margin-bottom: 1rem;
}


.fast-navigation h2 {
	font-weight: bold;
	margin: 0;
	margin-bottom: 5px;
	font-size: 14px;
}

.fast-navigation:after {
	clear: both;
	display: block;
	content: "";
}

.fast-navigation select {
	border: 1px solid var(--prime1);
	margin-left: 2px;
	background: #fff;
	padding: 5px 10px;
	border: 1px solid rgba(from var(--prime1) r g b / 0.2);
	border-radius: 10px;
	font-size: 1.14rem;
	font-weight: 500;
	height: 45px;
	width: 205px;
}

.fast-navigation label[for="smart_nav_select"] {
	padding: 0 1rem;
	margin-top: -9px;
	margin-right: 3px;
	font-size: 0.9rem;
	font-weight: 500;
}

.fast-navigation label[for="mobile_smart_nav_select"] {
	margin-top: -42px;
	margin-right: 87px;
}

.fast-navigation button {
	background: var(--prime1);
	border: 0;
	border-radius: 10px;
	color: #fff;
	font-weight: 700;
	width: fit-content;
	text-align: center;
	padding: 8px 35px;
	margin-top: 1rem;
	margin-right: auto;
	font-size: 1.25rem;
	font-weight: 500;
	transition: all 0.2s ease-in;

	& i {
		font-size: 1rem;
	}
}

.fast-navigation button:hover {
	transform: scale(1.02);
}


/* Fast Nav */

.fast-navigation {
	padding: 1rem 0;
	border-radius: 0 0 2rem 2rem;
	color: #fff;
	width: fit-content;
	margin: 0;
	max-width: 277px;
}

.fast-navigation:after {
	clear: both;
	display: block;
	content: "";
}

@media (min-width: 992px) {

	.fast-navigation > label,
	.fast-navigation > select {

		display: block;
	}


}

.fast-navigation label {
	background: transparent;
	border-radius: 0;
	padding: 5px 10px;
	border: 0;
	background-color: #fff;
	font-weight: 400;
	font-size: 15px;
	padding: 3px 5px;
	margin-top: -3px;
	margin-right: 12px;
	height: 24px;
	position: absolute;
	color: var(--prime1);
	z-index: 1;
	font-size: 0.9rem;
	font-weight: 500;
}



.fast-navigation > label,
.fast-navigation > select,
.fast-navigation > span {
	display: block;
	border-radius: 0.35rem;
	width: 100%;
}


.fast-navigation .smart-nav-sub > button {
	display: block;
	border-radius: 100vw;
}

.fast-navigation .smart-nav-sub > select {
	width: 350px;
	margin: 0.5rem 0;
}

/* Header Icons */

.header-side {
	width: calc(50% - 150px);
	justify-content: flex-end;
	padding: 0 1rem 0 2rem;
	position: relative;
	margin-right: auto;
	display: flex;
	align-items: center;
	height: inherit;
	gap: 0.75rem;
	z-index: 5;
}

@media (max-width: 1549px) {
	.header nav {
		padding: 0 1rem;
		width: calc(50% - 50px);
		display: flex;
		height: 100%;
	}

	.header-side {
		padding: 0 1rem;
	}

	.header nav > ul {
		margin: auto 0 auto auto;
	}
}

/* Header Search */

.header-search {
	position: fixed;
	top: 0;
	right: 0;
	z-index: 999999;
	width: 100%;
	background: #fff;
	height: 100px;
	border-bottom: 2px solid var(--prime2);
	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);
}

/* end header search */
/* Header Search */

.header-search {
	position: fixed;
	top: 0;
	right: 0;
	z-index: 999999;
	width: 100%;
	background: #fff;
	height: 100px;
	border-bottom: 2px solid var(--prime2);
	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;
}

@media (max-width: 1199px) {
	a.toggle-nav {
		position: absolute;
		right: 20px;
		top: 10px;
		width: 40px;
		height: 40px;
		background: #fff;
		color: var(--prime1);
		display: block;
		text-align: center;
		border-radius: 20px;
		border: 1px solid var(--prime1);
		display: grid;
		place-content: center;

		&:hover {
			text-decoration: none;
		}
	}

	a.toggle-nav em {
		font-size: 24px;
	}

	.header-side {
		padding: 0 2.5rem;
		flex-wrap: wrap;
	}

	.header .icon-btn {
		width: 28px;
		height: 28px;

		& i {
			font-size: 14px;
		}
	}
}


/* Footer */

.footer {
	padding: 1.5rem 0;
	background-color: var(--prime1);

}

.ftr {
	color: #fff;

	& a {
		color: #fff;
	}

	& .line {
		color: var(--prime2);
	}

	& .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: 2px;
			color: var(--prime2);
		}

		& i:last-of-type {
			display: none;
		}

		& > div:last-child {
			justify-content: flex-end;
			text-align: left;

			& em {
				font-style: normal;
				color: var(--prime2);
			}
		}
	}

}

.footer p {
	margin: 0;
}

/* Breadcrumbs */

.breadcrumbs ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.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 {
	display: none;
}

.bNagish-toggle em {
	font-size: 18px;
}

.bNagish-toggle:hover .text,
.bNagish-toggle:focus .text {
	padding: 3px;
	border-radius: 30px;
}


/* 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 */

.mobile-navigation {
	position: fixed;
	top: 0;
	right: -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 {
	right: 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: 2.54rem;
}

.mobile-navigation .content .head .button {
	padding: 10px 15px;
	background: var(--prime1);
	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: 500;
	color: var(--prime1);
}

.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: var(--prime1);

	font-family: 'FontAwesome';
	font-style: normal;
}

.mobile-navigation nav .toggle-sub-menu:after {
	content: '\f053';
	color: var(--prime1);
}

.mobile-navigation nav .toggle-sub-menu.opened:after {
	content: '\f078';
	color: var(--prime1);
}

.mobile-navigation nav .toggle-sub-menu.no-sub-menu:after {
	content: '\f111';
	font-size: 50%;
	color: var(--prime1);
}

.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;
	color: var(--prime1);
	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: var(--prime1);
	font-size: 1.42rem;

	& span {
		display: flex;
		align-items: center;
		justify-content: center;
	}

	& img {
		max-width: 70%;
	}
}

/* Page * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */


/* Page Header */
.page-header {
	height: 500px;
	display: flex;
	background-repeat: no-repeat;
	background-position: center center;
	margin-bottom: 2.5rem;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;
	background-size: cover;

	position: relative;

	z-index: 1;
}



/* 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;
	margin-top: auto;
}




.page-content-head h1 {
	margin: 0;
	font-weight: 500;
	font-size: calc(2vw + 1rem);
}

.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 0.25rem;
	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(--prime1);
}

.sub-pages-nav ul > li:nth-child(5n + 2) a .icon {
	background: var(--prime2);
}

.sub-pages-nav ul > li:nth-child(5n + 3) a .icon {
	background: oklch(from var(--prime3) calc(l + 0.1) calc(c + 0.3) calc(h + 0.1));
}

.sub-pages-nav ul > li:nth-child(5n + 4) a .icon {
	background: var(--prime4);
}

.sub-pages-nav ul > li:nth-child(5n + 5) a .icon {
	background: oklch(from var(--prime1) calc(l + 0.15) c calc(h + 0.1));
}

.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%);
	}
}

/* Mode Table Of Contents */

.toc-container {
	border: 1px solid #ddd;
	background: #ecf5f3;
	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(--prime1);
}

.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 var(--prime1);
	background: #ecf5f3;
	padding: 1rem;
	margin-bottom: 2px;
}

.rich-content .contact-man .contact-name {
	font-size: 1.5rem;
	font-weight: 700;
	color: var(--prime1);
}


/* 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(--prime1);
	color: #fff;
}

.card-header h2 {
	color: inherit;
	margin: 0;
	font-size: 1.3rem;
}

.card-body {
	background: #ecf5f3;
}

/* InPage form category group */

.form-category-group {
	background: #ecf5f3;
	border-right: 3px solid var(--prime1);
	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 */

/* 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: var(--prime1);
	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: var(--prime1);
	color: #fff;
}

.page-phonebook-category-body {
	display: none;
	background-color: #fff;
	border: 1px solid var(--prime1);
}

.page-phonebook-category.opened .page-phonebook-category-body {
	display: block;
	padding: 1rem;
}

.page-phonebook .phonebook h2 {
	border-bottom: 1px solid #ddd;
	color: var(--prime1);
	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 var(--prime1);
	box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.1);
}

.page-phonebook .phonebook.active > h2 {
	background: var(--prime1);
	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: #ecf5f3;
	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 .fa-stack {
	font-size: 100%;
}

.page-phonebook .phone .fa-stack {
	color: var(--prime1);
}

.page-phonebook .mobile .fa-stack {
	color: var(--prime1);
}

.page-phonebook .email .fa-stack {
	color: var(--prime1);
}

.page-phonebook .fax .fa-stack {
	color: var(--prime1);
}

.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: 767px) {
	.page-phonebook .contact-info {
		margin-left: 5px;
	}
}

.page-phonebook .contact-info a {
	color: inherit;
}

@media (max-width: 991px) {
	.bNagish-toggle {
		top: auto;
		bottom: 12px;
		left: 20px;
	}

	.page-header {
		height: 300px;
	}

	body {
		padding-top: 70px;
	}

	.page-content {
		margin: 0 -15px;
	}

	.header .header-side {
		padding: 0 0.75rem;
		width: 36%;

		& a {
			display: none;
		}

		& a.icon-btn.smart-nav {
			display: flex;
			font-size: 1rem;
			width: 90px;

			& i {
				display: none;
			}
		}

		& a.icon-btn.accessibility {
			display: flex;
		}
	}

	.shelf {
		width: 320px;
		top: 120px;

		&.open {
			left: 50%;
			transform: translateX(-50%);
		}
	}

	.fast-navigation .smart-nav-sub > button {
		border: 1px solid #fff;
		filter: drop-shadow(2px 3px 7px var(--prime1));
	}

	.fast-navigation .smart-nav-sub > select {
		width: 270px;
	}


	.page-content-head {
		padding: 1rem;
	}

	.header .logo img {
		width: 75%;
		margin-top: 30px;
	}

	.header .logo::before {
		bottom: -46px;
		width: 205px;
		height: 139px;
	}

	.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-body {
		padding: 1rem;
	}

	.page-content-nav {
		display: block;
		margin: 2rem -15px;
		background-color: #fff;
	}

	.footer {
		padding: 0;
	}

	.ftr {
		padding: 1rem;

		& .line {
			display: none;
		}



		& .flexrow {
			flex-direction: column;
			align-items: center;
			text-align: center;

			& .col {

				justify-content: center;
			}

			& > div:last-child {
				gap: unset;
				justify-content: center;
				text-align: center;
			}
		}


	}
}

@media (max-width:600px) {
	.header-side {
		gap: 0;
	}
}