* {
	font-family: 'Assistant', arial, sans-serif;
}

/**/

figure {
	margin: 0;
}

    .more-text-grid {
      display: none;
    }
    .read-more-grid {
      color: blue;
      cursor: pointer;
    }
    
@media (min-width: 1200px) {
	.table-responsive {
		display: table;
	}
}

.btn {
	white-space: normal;
}

.btn {
    padding: .75rem 1.25rem;
}
.btn-primary {
    border: 0;
    border: 1px solid #1d99d9;
    background: #1d99d9;
    color: #fff;
    padding: .75rem 1.25rem;
}

.btn-primary:hover,
.btn-primary:focus {
	background: #0f7fb9;
	color: #fff;
}

.read-more-content {
  background-color: #f1f1f1;
  border-radius: 5px;
}

.table {
	border-collapse:separate;
	border: solid #6489FF 1px;
	border-radius: 10px;
	-moz-border-radius: 10px;
	border-spacing: 0;
}

.table td,
.table th {
	border-left:solid #6489FF 1px;
    border-top:solid #6489FF 1px;
}

.table td:last-child, .table th:last-child {
	border-left: none;
}


.table thead th {
	background: #6489FF;
	color: #fff;
	border-bottom: 0;
}

.table thead th:first-child {
	border-radius: 0 10px 0 0;
}

.table thead th:last-child {
	border-radius: 10px 0 0 0;
}

.table-striped tbody tr:nth-of-type(odd) {
	background-color: #dbe3fe;
}

@media (min-width: 1600px) {
	.container {
		max-width: 1560px;
	}
}

.card {
	background-color: #e4efed;
	border: 1px solid rgb(86 188 175);
}
.card-header {
    background-color: rgb(86 188 175);
	color: #fff;
	font-weight: bold;
}

.alert-success {
	color: #000000;
    background-color: #93E4B3;
    border-color: #93E4B3;
}

.alert-info {
    color: #000;
    background-color: #b6c7fd;
    border-color: #b6c7fd;
}

/**/

body {
	margin: 0;
	padding: 0;

	background: #fff;

	margin-top: 75px;
}

@media (max-width: 1199px) {
	body {
		margin-top: 125px;
	}
	
}

/**/

a {
	-o-transition: .5s;
	-ms-transition: .5s;
	-moz-transition: .5s;
	-webkit-transition: .5s;
	transition: .5s;
}

/* Header */

.header {
	position: fixed;
	top: 0;
	right: 0;
	width: 100%;
	z-index: 99;

	-o-transition: .5s;
	-ms-transition: .5s;
	-moz-transition: .5s;
	-webkit-transition: .5s;
	transition: .5s;

	box-shadow: 0 3px 6px rgba(0, 0, 0, .16);
}

.header.offset {
	box-shadow: 0 3px 6px rgba(0, 0, 0, .36);
}

.header a {
	color: inherit;
}

/* Top */

.header .top {
	background: #11243e;
	color: #fff;
	padding: .9rem 1.5rem;
	text-align: left;
	font-weight: bold;
}

.header .top ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.header .top ul>li {
	display: inline-block;
}

.header .top ul>li:after {
	content: '|';
	padding: 0 22px;
	color: #4c5d70;
}

.header .top ul>li:last-child:after {
	content: none;
}

/* Primary */

.header .primary {
	background: #fff;
	position: relative;
}

@media (max-width: 991px) {
	.header .primary {
		height: 78px;
	}
}

/* Logo */

@media (min-width: 1200px) {
	.header .logo {
		position: absolute;
		top: -30px;
		right: 15px;
		display: flex;
		align-items: center;
		justify-content: center;
		z-index: 3;
		width: 165px;
		height: 165px;
		border-radius: 50%;
		background: #fff;
		transform-origin: top;
		padding-top: 20px;
	}
	
	.header .logo img {
		height: 99px;
        position: relative;
        right: -6px;
	}
	
	.header.offset .logo {
		transform: scale(.7);
	}
}

@media (max-width: 1199px) {
	.header .logo {
		position: absolute;
        top: -15px;
        left: 50%;
        margin-right: -50%;
        transform: translate(-50%, 0) ;
		display: flex;
		align-items: center;
		justify-content: center;
		z-index: 3;
		width: 120px;
		height: 120px;
		box-shadow: 0 3px 6px rgba(0, 0, 0, .16);
		border-radius: 50%;
		background: #fff;
	}
	.header .logo img {
		width: 80px;
	}
}

/* Navigation */

.header nav ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.header nav a {
	color: inherit;
}

.header nav a.on,
.header nav li.on>span>a {
	font-weight: bold;
}

.header nav button {
	display: none;
}

@media (min-width: 1200px) {
	.header .navigation {
		position: relative;
		padding-right: 200px;
	}

	.header nav>ul {
		display: block;
		width: fit-content;
		position: relative;
	}

	.header nav>ul:after {
		display: block;
		content: '';
		clear: both;
	}

	.header nav li:hover>ul {
		display: block;
	}

	.header nav>ul>li {
		display: block;
		float: right;
	}

	.header nav>ul>li>span>a {
		display: block;
		padding: 24px 10px;
		padding-left: 3rem;
		font-size: 22px;
		font-size: 1.13em;
		

		position: relative;
	}

	.header nav>ul>li>span>a .arrow {
		font-family: 'FontAwesome';
		content: '\f107';
		color: #777;
		position: absolute;
		top: 1.5rem;
		left: 1.5rem;

		font-style: normal;
	}

	.header nav>ul>li>span>a .arrow:before {
		content: '\f107';
	}

	.header nav>ul>li>span>a:hover,
	.header nav>ul>li:hover>span>a {
		text-decoration: none;
	}

	.header nav>ul>li.on>span>a,
	.header nav>ul>li>span>a.on {
		color: #000;
	}

	.header nav>ul>li>ul {
		display: none;

		text-align: right;
		position: absolute;
		top: 100%;
		right: 0;
		z-index: 9999;
		width: 100%;
		background: rgba(255, 255, 255, 0.95);
		color: #000;
		padding: .5rem 3rem;

		backface-visibility: hidden;
		transform: translateZ(0);
		-webkit-font-smoothing: subpixel-antialiased;

		/*padding-left: 40%;*/

		box-shadow: 0 20px 30px rgba(0, 0, 0, 0.1);

		max-height: 75vh;
		overflow-x:auto;

		column-count: 3;
		-moz-column-count: 3;
		-webkit-column-count: 3;
	
	}

/* 2. Chrome, Edge, and Safari Styles */
.header nav > ul > li > ul::-webkit-scrollbar {
    height: 12px;               /* Height for horizontal scrollbars (thickness) */
}

.header nav > ul > li > ul::-webkit-scrollbar-track {
    background: #f1f1f1;        /* The "path" the bar slides on */
    border-radius: 10px;        /* Rounded corners for the track */
}

.header nav > ul > li > ul::-webkit-scrollbar-thumb {
    background: linear-gradient(45deg, #ff416c, #ff4b2b); /* Colorful gradient! */
    border-radius: 10px;        /* Makes the thumb round */
    border: 3px solid #f1f1f1;  /* Adds space around the thumb for a "floating" look */
}

.header nav > ul > li > ul::-webkit-scrollbar-thumb:hover {
    background: #ff416c;        /* Change color on hover */
}

/* 3. Firefox Support (More limited styling) */
.header nav > ul > li > ul {
    scrollbar-width: auto;      /* "auto" is fatter than "thin" */
    scrollbar-color: #ff416c #f1f1f1; /* Thumb color, then Track color */
}
	/*.header nav > ul > li > ul:after {
		content: '';
		display: block;
		background: url(https://static8.depositphotos.com/1518767/1028/i/950/depositphotos_10289750-stock-photo-customer-service-agents-with-headset.jpg);
		background-size: cover;
		position: absolute;
		top: 5%;
		left: 1%;
		width: 35%;
		height: 90%;
	}*/


	.header nav>ul>li:hover>ul {}

	.header nav>ul>li>ul>li {
		-moz-page-break-inside: avoid;
		-webkit-column-break-inside: avoid;
		break-inside: avoid;
		-o-column-break-inside: avoid;
		-ms-column-break-inside: avoid;
		column-break-inside: avoid;
		page-break-inside: avoid;

		padding: 1rem;
	}

	.header nav>ul>li>ul>li>span>a {
		font-size: 1.2rem;
		font-weight: bold;
	}

	.header nav>ul>li>ul>li>ul>li>span>a>em.arrow {
		content: '';
		font-family: 'FontAwesome';
		font-style: normal;
	}

	.header nav>ul>li>ul>li>ul>li>span>a>em.arrow:before {
		content: '\f0d9';
		color: #FFA68A;
	}

	.header nav>ul>li>ul>li>ul>li>span>a {
		color: #6b6b6b;
		display: block;
		white-space: nowrap;
		overflow: hidden;
		text-overflow: ellipsis;
		padding: .2rem 0;
		font-size: 1.1rem;
	}
}

@media (max-width: 1699px) and (min-width: 1200px) {
	.header nav>ul>li>span>a {
		min-width: auto;
		padding: 28px 0px;
		font-size: 16px;
		padding-left: 30px;
	}

	.header nav>ul>li>span>a .arrow {
		left: 16px;
		top: 27px;
	}
}

@media (max-width: 1199px) {
	.header .navigation {
		display: none;
	}
}

/* Mobile Navigation */

.mobile-navigation {
	position: fixed;
	top: 0;
	right: -300px;
	width: 300px;
	height: 100%;
	background: #f1f1f1;
	z-index: 9999999;

	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);
}

.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: -1rem;
}

.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;
	box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
}

.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;

	padding: 0 15px;
	background: none;
	border: 0;
	background: rgba(0, 0, 0, 0.02);
	color: inherit;

	font-family: 'FontAwesome';
	font-style: normal;
}

.mobile-navigation nav .toggle-sub-menu:after {
	content: '\f053';
}

.mobile-navigation nav .toggle-sub-menu:after {
	content: '\f053';
}

.mobile-navigation nav .toggle-sub-menu.opened:after {
	content: '\f078';
}

.mobile-navigation nav .toggle-sub-menu.no-sub-menu:after {
	content: '\f111';
	font-size: 80%;
}

.mobile-navigation nav .toggle-sub-menu.external-link:after {
	content: '\f08e';
}

.mobile-navigation-search {
	position: relative;
	margin: 1rem;
	box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
}

.mobile-navigation-search input {
	display: block;
	width: 100%;
	padding: 1rem;
	background: #fff;
	border: 0;
}

.mobile-navigation-search button {
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	background: none;
	border: 0;
	padding: 0 1rem;
}

.mobile-navigation {
	background: rgb(103 138 252 / 80%);
    backdrop-filter: blur(8px);
}

.mobile-navigation .content .head .button {
	background: #fff;
	color:  rgb(103 138 252 / 100%);
}


.mobile-navigation .herum-link {
	display: block;
	color: #fff;
	background: #ad0000;
	padding: .5rem 1rem;
	margin: 1.2rem 1rem;
}

.mobile-navigation .social-links {
	margin: 1rem;
	background: #fff;
	box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
	text-align: center;
}

.mobile-navigation .social-links a {
	display: inline-block;
	font-size: 28px;
	padding: .5rem .75rem;
	color: #777;
}

/* Header Side */

.header-side-buttons {
	position: absolute;
	top: 0;
	left: 0;
	padding: 24px 15px;
}

.header-side-buttons a {
	font-size: 1.13em;
	font-weight: bold;
	display: flex;
	align-items: center;
	justify-content: center;
	float: right;
}

.header-side-buttons a:hover {
	text-decoration: none;
	transform: scale(1.05);
}

.header-side-buttons a {
	border-left: 2px solid #000;
	margin-left: 10px;
	padding-left: 10px;
}
.header-side-buttons .lang-container a:nth-child(1) {
    border-left: none;
    margin-left: 0;
    padding-left: 0;
}
.header-side-buttons a.toshav-center-btn .icon {
	background-image: url(images/ic_person_24px.png);
	background-repeat: no-repeat;
	background-position: center;
	background-size: 100%;
	width: 23px;
	height: 23px;
	margin-left: 10px;
}

.header-side-buttons a.herum-btn .icon {
	background-image: url(images/ic_warning_24px.png);
	background-repeat: no-repeat;
	background-position: center;
	background-size: 100%;
	width: 23px;
	height: 23px;
	margin-left: 10px;
}

@media (max-width: 1199px) {
	
	.header-side-buttons {
		padding: 27px 15px;
	}
	
	.header-side-buttons a.toshav-center-btn {
		display: none;
	}
	
	.header-side-buttons a.herum-btn {
		font-size: 18px;
		margin-top: 3px;
	}
	
	.header-side-buttons a.herum-btn .icon {
		width: 20px;
		height: 20px;
		background-size: 100%;
	}
}

/**/

.header .mobile-bar {
	display: none;
}

@media (max-width: 1199px) {
	.header .primary {
		height: 81px;
	}
	.header .mobile-bar {
		display: block;
		background-color: #6489FF;
		color: #fff;
		text-align: left;
	}
	.header .mobile-bar a {
		display: inline-block;
		color: #fff;
		padding: 10px 15px;
	}
}

.header .mobile-bar a.toshav-center-btn .icon {
	background-image: url(images/ic_person_24px_white.png);
    background-repeat: no-repeat;
    background-position: center;
    width: 20px;
    height: 20px;
    margin-left: 0px;
    display: inline-block;
}

/* Search */

a.search {
	position: absolute;
	top: 0;
	left: 0;
	width: 78px;
	height: 78px;
	background: #e7ecf2;
	color: #8595aa;
	
	display: none;
}

@media (max-width: 991px) {
	a.search {
		display: block;
	}
}

a.search>span {
	position: relative;
	width: 100%;
	height: 100%;
	display: block;
}

a.search em {
	position: absolute;
	top: 50%;
	left: 50%;
	margin-right: -50%;
	transform: translate(-50%, -50%);
	font-size: 24px;
}

@media (max-width: 991px) {
	a.search {
		font-size: 30px;
	}
}

a.search:hover {
	background: #8595aa;
	color: #fff;
}

/* Toggle Navigation Button */

a.toggle-nav {
	display: none;
}

@media (max-width:1199px) {
	a.toggle-nav {
		display: block;
		position: absolute;
		top: 0;
		right: 0;
		width: 81px;
		height: 81px;
		background: #fff;
		color: #000;
		background-image: url(images/toggle-nav.png);
		background-repeat: no-repeat;
		background-position: center;
	}

	a.toggle-nav>span {
		position: relative;
		width: 100%;
		height: 100%;
		display: block;
	}

	a.toggle-nav em {
		position: absolute;
		top: 50%;
		left: 50%;
		margin-right: -50%;
		transform: translate(-50%, -50%);
		font-size: 24px;
	}
}

/* Header Search */

.header-search {
	position: absolute;
	top: 1.1rem;
	left: 1rem;
}

@media (max-width: 1369px) {
	.header-search {
		left: 88px;
	}
}
@media (max-width: 991px) {
	.header-search {
		display: none;
		top: 6.1rem;
	}
}

.header-search .content {
	position: relative;
	width: 300px;
}

.header-search input {
	border: 0;
	background: #e7ecf2;
	width: 100%;
	font-size: 1.01em;
	font-weight: bold;
	padding: .57rem 18px;
	outline: none;
	border-radius: .75rem;
}

.header-search input::-webkit-input-placeholder {
	color: #838a96;
}

.header-search input:-ms-input-placeholder {
	color: #838a96;
}

.header-search input::placeholder {
	color: #838a96;
}

.header-search button {
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	width: 50px;
	background: none;
	border: 0;
	cursor: pointer;
	color: #8b9aac;
}

/* Footer */

.footer {
	background: url(images/footer.png);
	color: #fff;
}


.footer a {
	color: inherit;
}

@media (max-width: 991px) {
	.footer {
		background: url(images/footer-bg.png);
	}
}

.footer .copyrights {
	background: #5E72EB;
	color: #fff;
	padding: 1rem 0;
}

.footer .copyrights a {
	color: #fff;
}

.footer h3 {
	font-size: 1.2rem;
	font-weight: bold;
	border-left: 2px solid #7bae5b;
	padding-left: 15px;
	display: inline-block;
	margin-bottom: 1.5rem;
}

.footer ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.footer .mafrid {
	display: inline-block;
	padding: 0 15px;
	color: #445859;
}

/**/

.page-header {
	height: 380px;
	position: relative;
	background-size: cover;
}

@media (max-width: 991px) {
	.page-header {
		height: auto;
		padding-bottom: 56.25%;
	}
}

.page-header .page-header-bg-desktop, .page-header .page-header-bg-mobile {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	right: 0;
	z-index: -1;
	
	background-repeat: no-repeat;
	background-position: bottom center;

	-webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
	
	display: none;
}

@media (max-width: 991px) {
	.page-header .page-header-bg-mobile {
		display: block;
	}
}
@media (min-width: 992px) {
	.page-header .page-header-bg-desktop {
		display: block;
	}
}


.page-header .page-title {
	position: absolute;
	top: 50%;
	left: 50%;
	margin-right: -50%;
	transform: translate(-50%, -50%);

	color: #fff;

	font-size: 4rem;
	font-weight: bold;
	text-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
}

/**/


.page-content {
	margin-top: 2rem;
	margin-bottom: 2rem;
}

@media (min-width: 992px) {
	.page-content {}
}

@media (max-width: 991px) {
	.page-content {
		margin: 0 -15px;
	}
}

.page-content-head {
	background: #1d99d9;
	color: #fff;
	padding: 1.5rem;
	position: relative;
}

@media (max-width: 991px) {
	.page-content-head {
		padding: 1rem;
	}
}

.page-content-head h1 {
	margin: 0;
}

.page-content-head a {
	color: rgba(255, 255, 255, 0.8);
}

.page-content-head button {
	display: none;
}

@media (max-width: 991px) {
	.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: 1.5rem;
	min-height: 20rem;
	padding-top: 0;
}

.page-content-body h1 {
	font-weight: bold;
	margin-bottom: 1.5rem;
	color: #6489FF;
}

@media (max-width: 991px) {
	.page-content-body {
		padding: 1rem;
	}
}

.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 {
	padding: 1rem;
	display: block;
}


/* Breadcrumbs */

.breadcrumbs {
    padding: 0.5rem;
    color: #868686;
    position: absolute;
    right: 10px;
    top: 5px;
}

@media (min-width: 1200px) {
	.breadcrumbs {
		right: 262px;
	}
}

.breadcrumbs a {
	color: inherit;
}

.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;
}

/**/

/**/

.skip-ad {
	position: fixed;
	top: 0;
	right: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.8);
	z-index: 99999;

}

.skip-ad .skip-ad-container {
	max-width: 600px;
	margin: 0 auto;
	padding: 15px;
}

.skip-ad .skip-ad-content {
	margin-top: 80px;
}

.skip-ad .skip-ad-content .msg {
	background: #fff;
	padding: 30px;
}

.skip-ad img {
	max-width: 100%;
	display: block;
	margin: 0 auto;
}

.skip-ad .skip-ad-close {
	position: fixed;
	top: 30px;
	width: 100%;
	text-align: left;
}

.skip-ad #close-skip-ad {
	display: inline-block;
	padding: 10px 20px;
	background: #fff;
	border-radius: 5px;
}

.skip-ad #close-skip-ad:focus,
.skip-ad #close-skip-ad:hover {
	background: red;
	color: #000;
}

/**/

@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;
	}
}

/**/

@media (min-width: 768px) {
	.icon.whatsapp {
		display: none;
	}
}

/**/

.rich-content h2,
.rich-content h3,
.rich-content h4,
.rich-content h5,
.rich-content h6 {
	margin-bottom: 1rem;
}

.rich-content h2 {
	color: #6489FF;
}

.rich-content h3 {
	color: #6489FF;
}

/**/

.rich-content .contact-man {
	display: block;
	color: inherit;
	background: #f5f5f5;
	box-shadow: 0 3px 6px rgba(0,0,0,0.16);
	margin-bottom: 1.5rem;
	border-radius: 10px;
	overflow: hidden;
}

.rich-content .contact-man .contact-name {
	font-size: 1.5rem;
}

.rich-content .contact-man a {
	color: inherit;
}

.rich-content .contact-man .contact-name {
	font-weight: normal;
}

.rich-content .contact-man .contact-link {
	font-weight: normal;
}

.rich-content .contact-man .row>div:first-child {
	font-size: 1.2rem;
	padding: 1rem 3rem;
	border-left: 1px solid rgba(255, 255, 255, 0.2);
}

.rich-content .contact-man .row>div:nth-child(2) {
	font-size: 1.2rem;
	padding: 1rem;
	border-left: 1px solid rgba(255, 255, 255, 0.2);
}

.rich-content .contact-man .row>div:nth-child(2)>div {
	min-height: 45px;
	background-position: right top;
	background-repeat: no-repeat;
	padding: .5rem 3rem;
	position: relative;
}

.rich-content .contact-man .email:before {
	background-image: url(images/contact/email.png);
	background-repeat: no-repeat;
	background-position: center;
	content: '';
	width: 24px;
	height: 24px;
	display: block;
	position: absolute;
	top: 10px;
    right: 5px;
}

.rich-content .contact-man .phone:before {
	background-image: url(images/contact/phone.png);
	background-repeat: no-repeat;
	background-position: center;
	content: '';
	width: 24px;
	height: 24px;
	display: block;
	position: absolute;
	top: 10px;
    right: 5px;
}

.rich-content .contact-man .cell:before {
	background-image: url(images/contact/phone.png);
	background-repeat: no-repeat;
	background-position: center;
	content: '';
	width: 24px;
	height: 24px;
	display: block;
	position: absolute;
	top: 10px;
    right: 5px;
}

.rich-content .contact-man .fax:before {
	background-image: url(images/contact/print.png);
	background-repeat: no-repeat;
	background-position: center;
	content: '';
	width: 24px;
	height: 24px;
	display: block;
	position: absolute;
	top: 10px;
    right: 5px;
}

.rich-content .contact-man .row>div:nth-child(3) {
	font-size: 1.2rem;
	padding: 1rem;
}

.rich-content .contact-man .times {
	position: relative;
	padding: 0.5rem 3rem;
}
.rich-content .contact-man .row>div:nth-child(3)>div:before {
	background-image: url(images/contact/clock.png);
	background-repeat: no-repeat;
	background-position: center;
	content: '';
	width: 24px;
	height: 24px;
	display: block;
	position: absolute;
	top: 10px;
    right: 5px;
}

.rich-content .contacts {
	color: #333;
	display: none;
	padding: 15px;
}

.rich-content .contact-man em {
	color: #6489FF;
}

.rich-content .contact-man .toggle-contacts {
	display: block;
	padding: .5rem .75rem;
	background: #DBE3FF;
	border: 1px solid #A5A4A4;
	margin-top: 1rem;
	margin-bottom: 1rem;
	position: relative;
	border-radius: 10px;
}

.rich-content .contact-man .toggle-link {
	display: block;
	padding: .5rem .75rem;
	background: rgba(255, 255, 255, 0.1);
	margin-top: 1rem;
	margin-bottom: 1rem;
	position: relative;
}

.rich-content .contact-man .toggle-contacts:after,
.rich-content .contact-man .toggle-link:after {
	font-family: 'FontAwesome';
	content: '\f104';
	position: absolute;
	top: .6rem;
	left: .8rem;
}

.rich-content .contact-man table {
	background: #fff;
}

@media (min-width: 992px) {
	.rich-content .contact-man table {
		width: 100%;
		display: table;
	}
}

/**/

.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;
}


/**/

/*
.boxed-page .page-body-bg {
	background: url(images/events-bg.jpg) top repeat-x;
}
*/

.boxed-page .page-content {
	margin: 0;
	/*margin-top: -50px;*/
	background: rgba(255, 255, 255, 0.9);
	box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
}

.boxed-page .page-content .sub-pages-nav a {
	background: #fff;
}

/**/

.boxed-page.contact-template .page-content {
	box-shadow: 0;
	/*background: #f7f7f7;*/
	padding: 2rem;
	
	box-shadow: none;
}

.contact-menu-bar {
	background: #fff;
	margin: 0 -15px;
	/*margin-top: -50px;*/
	margin-left: -30px;
}

.contact-menu-bar>div>a {
	display: table;
	width: 100%;
	padding: 1.5rem 1rem;
	color: inherit;
	font-size: 1.2rem;
	font-weight: bold;
	padding: 30px;
	position: relative;
}

.contact-menu-bar>div>a>div {
	display: table-cell;
	vertical-align: middle;
}

.contact-menu-bar>div>a>div:first-child {
	width: 120px;
}

.contact-menu-bar>div>a.active {
	background: #FAF8F8;
	border-radius: 10px;
}

.contact-menu-bar>div:nth-child(2)>a.active {
	background: #FAF8F8;
}

.contact-menu-bar>div:nth-child(3)>a.active {
	background: #FAF8F8;
}

.contact-menu-bar>div:nth-child(4)>a.active {
	background: #FAF8F8;
}

.contact-menu-bar>div>a img {
	max-width: 90%;
}

@media (max-width: 991px) {
	.contact-menu-bar>div>a {
		font-size: 1rem;
	}
}



.disabled-link {
	cursor: inherit;
}

.disabled-link:hover {
	cursor: inherit;
	text-decoration: none;
}

/**/

@media (min-width: 1200px) {
	.under_dev {
		display: block;
		position: fixed;
		bottom: 30px;
		left: -30px;
		z-index: 999;
		top: -30px\0/;
		/* ie8 and 9 */
		left: -32px\0/;
		/* ie8 and 9 */
		width: 150px;
		-ms-transform: rotate(45deg);
		/* IE9 */
		-moz-transform: rotate(45deg);
		/* FF3.5/3.6 */
		-o-transform: rotate(45deg);
		/* Opera 10.5 */
		-webkit-transform: rotate(45deg);
		/* Saf3.1+ */
		transform: rotate(45deg);
		/* Newer browsers */
		/*filter: progid:DXImageTransform.Microsoft.Matrix(sizingMethod='auto expand', M11=0.7071067811865476, M12=-0.7071067811865475, M21=0.7071067811865475, M22=0.7071067811865476); */
		/* IE6,IE7, but produces nasty results, so I disabled it */
		-ms-filter: "progid:DXImageTransform.Microsoft.Matrix(SizingMethod='auto expand', M11=0.7071067811865476, M12=-0.7071067811865475, M21=0.7071067811865475, M22=0.7071067811865476)";
		/* IE8 */
		text-align: center;
		background: #000;
		color: #fff;
	}
}

@media (max-width: 1199px) {
	.under_dev {
		display: block;
		position: fixed;
		bottom: 30px;
		right: -30px;
		bottom: -30px\0/;
		/* ie8 and 9 */
		right: -32px\0/;
		/* ie8 and 9 */
		width: 150px;
		-ms-transform: rotate(-45deg);
		/* IE9 */
		-moz-transform: rotate(-45deg);
		/* FF3.5/3.6 */
		-o-transform: rotate(-45deg);
		/* Opera 10.5 */
		-webkit-transform: rotate(-45deg);
		/* Saf3.1+ */
		transform: rotate(-45deg);
		/* Newer browsers */
		/*filter: progid:DXImageTransform.Microsoft.Matrix(sizingMethod='auto expand', M11=0.7071067811865476, M12=-0.7071067811865475, M21=0.7071067811865475, M22=0.7071067811865476); */
		/* IE6,IE7, but produces nasty results, so I disabled it */
		-ms-filter: "progid:DXImageTransform.Microsoft.Matrix(SizingMethod='auto expand', M11=0.7071067811865476, M12=-0.7071067811865475, M21=0.7071067811865475, M22=0.7071067811865476)";
		/* IE8 */
		text-align: center;
		background: #000;
		color: #fff;
	}
}


@media(max-width:991px) {
	.contact-menu-bar-container {
		overflow-x: scroll;
	}

	.contact-menu-bar {
		width: 1000px;
		display: flex;
		margin-bottom: 50px;
		padding-top: 50px;
	}

	.col-md-3,
	.col-md-9 {
		padding-left: 0px;
		padding-right: 0px;
	}
}

/*
.smart-form .form-group .form-group span{
	display: flex !important;
}


.smart-form .form-group .form-group .d-block input[type=checkbox], input[type=radio] {
    margin-top: 5px;
    margin-left: 3px;
}*/


/**/

.header .top a[href='https://www.oref.org.il/Rashuyot/kiryat_malachi/Homepage/he'] {
	position: relative;
	padding-left: 44px;
}
.header .top a[href='https://www.oref.org.il/Rashuyot/kiryat_malachi/Homepage/he']:before {
	position: absolute;
	top: -8px;
	left: 0;
	width: 38px;
	height: 38px;
	content: '';
	display: block;
	background: url('https://www.oref.org.il/rashuyot/Sip_Storage/FILES/0/140.png');
	background-size: 100%;
}



.bNagish-toggle {
	border-radius: 50%;
}



.events-header .form-control {
    border-radius: 2rem;
    padding: .75rem 1rem;
    height: auto !important;
}

.events-header {
   background-color: transparent !important;
   border: 0 !important;
}

#filtering {
  
    border-radius: 0 !important;
}
/*langs*/

.lang-container {
    position: relative;
    display: inline-block;
    vertical-align: middle;
}

div#langDiv img {
    margin-left: 10px;
}

.lang-dropdown {
    display: none; 
    position: absolute;
    top: 110%; 
    left: 0;
    background-color: #ffffff;
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    padding: 12px;
    z-index: 10001;
    min-width: 180px;
}

body.translated-active .header {
    top: 80px !important;
}

.goog-te-banner-frame.skiptranslate {
    display: none !important;
}
body.translated-active .header {
    top: 40px !important;
    transition: top 0.3s ease; 
}

.header {
    top: 0;
    transition: top 0.3s ease;
}

body {
    top: 40px !important;
}
@media (max-width: 752px) {
    .header-side-buttons a span:not(.icon) {
        /* display: none; */
        font-size: 14px;
    }
	div#langDiv img
 {
    margin-left: 2px;
    width: 20px;
    height: 20px;
}
	.header-side-buttons a {
    border-left: 2px solid #000;
    margin-left: 5px;
    padding-left: 5px;
}
}