:root {
  --primary-gradiant: linear-gradient(
    265.69deg,
    #A1BD4A -6.43%,
    #A1BD4A 49.05%,
    #3C7618 97.9%
  );
  --secondary-gradiant: radial-gradient(
    78.59% 110.32% at 102.32% 133.12%,
    #A1BD4A 0%,
    #3C7618 100%
  );
  --primary-color: #156CA6;
  --primary-hover: #A1BD4A;
  --secondary-color: #3C7618;
  --primary-gray: #fafbfc;
  --lighter:#F8F5F5;
  --darker:#156CA6;
  --primary-blue: #EBF9FF;
  --primary-dark: #0f1011;
  --primary-font: "Noto Sans Hebrew", sans-serif;
  --secondary-font: "Noto Sans Hebrew", sans-serif;
  --link-color: #0a58ca;
  --link-hover: indigo;
  --trans: all 0.5s ease;
  --test:all;
}
body,
html {
  padding: 0;
  margin: 0;
  font-family: var(--primary-font);
  color: var(--primary-dark);
}

.btn-primary {
  background-color: var(--primary-color);
  color: white;
  font-size: 16px;
  font-weight: 500;
  border-color: transparent;
  border-radius: 50px;
  -webkit-transition: var(--trans);
  transition: var(--trans);
}
.btn-primary:hover {
  background-color: var(--primary-hover);
  border-color: transparent;
}
.btn-outline-primary {
  color: var(--primary-color);
}
.btn-outline-primary:hover {
  background-color: var(--primary-hover);
  border-color: var(--primary-hover);
}
.btn-outline-primary:hover svg path {
  fill: white !important;
}
.bg-light {
  background-color: var(--primary-blue) !important;
}
a {
  text-decoration: none;
  color: var(--link-color);
}
a:hover {
  color: var(--link-hover);
}
.highlight {
  background: var(--secondary-gradiant);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.dropdown-item.active,
.dropdown-item:active {
  background-color: black !important;
}
.link {
	cursor: pointer;
}
/* header */
header {
  background: none;
}
header nav.navbar {
  border-bottom: 0px solid #f1f1f1;
  background: var(--secondary-color) !important;
  border-top: 0px solid #f1f1f1;
  padding: 14px 0;
}
header .lang-btn {
  font-size: 16px;
  border: 1px solid var(--secondary-color);
  border-radius: 50px;
  padding: 8px 15px;
  -webkit-transition: var(--trans);
  transition: var(--trans);
}
header .lang-btn:hover {
  background: var(--primary-hover);
  color: white;
  border-color: var(--primary-hover);
}

header .nav-item .nav-link {
  padding: 0 10px !important;
  color: white;
  opacity: 1;
  font-size: 15px;
  position: relative;
  font-weight: 500;
  -webkit-transition: var(--trans);
  transition: var(--trans);
  opacity: 0.9;
}
header .nav-item .nav-link.active,
header .nav-item .nav-link:hover {
  font-weight: 800;
  opacity: 1;
}

header .nav-item .nav-link:hover {
  font-weight: 500 !important;
}
.orgInfo {
  display: flex;
  flex-direction: column;
  gap: 0px;
}
.orgInfo .h1 {
  font-size: 34px;
}
.scroll_head .orgInfo .h1 {
	font-size: 24px;
}
.orgInfo .h2 {
  font-size: 16px;
}
.scroll_head .orgInfo .h2 {
	display: none;
}
.tempHeader {
 transition: var(--trans);
}
.scroll_head .logo img {
  height: 60px;
}

.navbar-toggler {
  -webkit-transform: none;
  transform: none;
  border: 0;
  padding: 0;
  margin-top: -8px;
  margin-right: -10px;
}
.navbar-toggler .navigation-trigger-icon {
  display: inline-block;
  width: 30px;
  height: 3px;
  transition-duration: 0.25s;
  transition-property: background-color, transform;
  transform: translate(-50%, -50%);
  background-color: white;
  border-radius: 5px;
}
.navbar-toggler .navigation-trigger-icon:before,
.navbar-toggler .navigation-trigger-icon:after {
  position: absolute;
  display: block;
  width: 30px;
  height: 3px;
  content: "";
  transition-duration: 0.25s;
  transition-property: margin, transform;
  background: white;
  border-radius: 5px;
}
.navbar-toggler .navigation-trigger-icon:after {
  margin-top: 8px;
}
.navbar-toggler .navigation-trigger-icon:before {
  margin-top: -8px;
}
.navbar-toggler.is-collapse .navigation-trigger-icon:before {
  margin-top: 0;
  transform: rotate(45deg);
}
.navbar-toggler.is-collapse .navigation-trigger-icon:after {
  margin-top: 0;
  transform: rotate(-45deg);
}
.navbar-toggler.is-collapse .navigation-trigger-icon {
  transition: none;
  background: rgba(0, 0, 0, 0);
}
.navbar-toggler:focus {
  box-shadow: none;
}
.dropdown-toggle
{
	cursor: pointer;
}
/* infosec */
.infoCard {
  position: relative;
  overflow: hidden;
  border-radius: 0;
  text-align: center;
}
.infoCard img {
  height: 210px;
  width: 100%;
  object-fit: cover;
  -webkit-transition: var(--trans);
  transition: var(--trans);
  border-radius: 5px;
}

.infoCard .cardBody {
  position: static;
  left: 0;
  bottom: 0;
  width: 100%;
  padding: 10px 0;
  color: var(--primary-dark);
  text-align: left;
}
html[dir="rtl"] .infoCard .cardBody {
  text-align: right;
}
.infoCard:hover .h1 {
  text-decoration: inherit;
}
.infoCard .cardBody .h1 {
  font-size: 18px;
  color: var(--primary-color);
}
.infoCard .cardBody p {
  font-size: 14px;
  color: var(--primary-dark);
  line-height: 22px;
  opacity: 0.8;
}
.infoCard .cardBody .btn-primary {
  background: #fff;
  color: var(--primary-color);
  border-color: var(--primary-color);
  font-size: 14px;
}
.infoCard:hover .btn-primary {
  background-color: var(--primary-color);
  color: #fff;
  border-color: white;
}
/* footer */
footer {
  border-top: 1px solid #f1f1f1;
}
footer .footInfo svg {
  fill: #fff;
}
.searchSec {
  position: relative;
}
.searchSec button {
  border: 0;
  position: absolute;
  right: 13px;
  top: 7px;
  padding: 0;
}
.searchSec span.btn {
  position: absolute;
  left: 0;
  opacity: 0.3;
  cursor: inherit;
}
html[dir="rtl"] .searchSec span.btn {
  left: auto;
  right: 11px;
}
#search-clear {
  background-image: url("../images/close.svg") !important;
}

.searchSec span.btn svg {
  height: 15px;
  width: 15px;
  display: inline-block;
}
.searchSec button.btn {
  display: none;
}
span.btn svg {
  fill: var(--primary-dark);
}
html[dir="rtl"] .searchSec button {
  right: auto;
  left: 10px;
}
.searchSec button:hover {
  background-color: transparent;
  border: 0;
}
.searchSec button:hover svg {
  fill: black;
}
.searchSec button svg {
  fill: #aaa;
  height: 20px;
  width: 20px;
}
.searchSec {
    position: absolute;

    bottom: -59px;
    width: 260px;
    left: 245px;
    transform: translateX(-50%);
    background: #5C9737;
    padding: 10px;
    backdrop-filter: blur(5px);
}
.searchSec span.btn {
    position: absolute;
    left: 11px;
    opacity: 0.3;
    cursor: inherit;
    top: 10px;
}

/* pollform */
.pollCard {
  max-width: 767px;
  margin: 3em auto;
  width: 100%;
  padding: 0 15px;
}
.cardList {
  border: 1px solid #f1f1f1;
  padding: 15px;
  border-radius: 10px;
  margin: 0 0 25px;
  background-color: #f9f9f9;
}
.pageTitle {
  font-size: 28px;
  margin: 2em 0 1em;
  color: var(--secondary-color);
  font-family: var(--secondary-font);
  padding: 0 25px;
}
.pollCard > h2 {
  font-size: 22px;
}
.pollCard .form-control {
  border-radius: 5px;
  background: #f9f9f9;
  border-color: #f1f1f1;
}
.pollCard .control-label {
  font-weight: 500;
  font-size: 14px;
}
.pollCard h3 {
  font-size: 16px;
  font-weight: 600;
  border-bottom: 1px solid #f1f1f1;
  padding: 10px 0;
  margin: 0 0 15px;
}
.pollCard h3 small {
  opacity: 0.8;
  font-weight: normal;
}
.form-check
{
	padding: 10px 20px;
	margin-bottom: 0;
	/*margin-top: 3px;*/
}
.form-check label {
  cursor: pointer;
/*  font-size: 14px;*/
}

.form-check .form-check-input {
  margin-right: -21px;
}
.form-check-input:checked {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  box-shadow: none;
}
.form-group p,
.cardList p {
  font-size: 14px;
  margin: 0 0 3px !important;
}
.header-height
{
	margin-top: 176px;
}
/* tempate-css */
.tempHeader {
  padding: 10px 0 0;
  /* position: -webkit-sticky; */
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  background: white;
}
.navbar-brand{
  margin-bottom:10px
}
.navbar .form-control {
  background-color: white;
  height: 40px;
  padding-left: 35px;
}
html[dir="rtl"] .navbar .form-control {
  padding-right: 45px;
  padding-left: 10px;
}
.lang-btn.btn-primary svg path {
  fill: white;
}
.lang-btn.btn-outline-primary svg path {
  fill: var(--primary-color);
}
.btn-group .btn {
  min-width: 110px;
}
.btn-group>.btn:not(:last-child):not(.dropdown-toggle)
{
	border-top-left-radius: 50px;
	border-bottom-left-radius: 50px;
}
.btn-group>.btn:not(:last-of-type):not(.dropdown-toggle)
{
	border-top-left-radius: 0;
	border-bottom-left-radius: 0;
}
.hero-sec .splide__slide img {
  height: 500px;
  width: 100%;
  object-fit: cover;
}
.slide-body {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  max-width: 700px;
  width: 100%;
  left: 5%;
  background-color: #5C9737;
  padding: 25px;
  color: white;
  border-radius: 20px;
}
html[dir="rtl"] .slide-body {
  left: auto;
  right: 5%;
}
.slide-body .h1 {
  font-size: 40px;
  font-weight: 700;
  line-height: normal;
}

.slide-body small {
  text-transform: capitalize;
}

.slide-body p {
  margin: 0 0 30px;
}
.slide-body .btn-primary {
  background: none;
  border: 1px solid white;
}
.slide-body .btn-primary:hover {
  background-color: var(--primary-color);
}
.news-card > a {
  border: 1px solid #f1f1f1;
  padding: 10px 10px 30px;
  position: relative;
  border-radius: 5px;
  color: var(--primary-dark);
  display: flex !important;
  align-items: start;
  min-height: 111px;
}
.sec-title {
  margin: 0 0 50px;
}
.sec-title .h1 {
  font-size: 32px;
  color: var(--primary-color);
  font-weight: 700;
  margin: 0 0 5px;
}
.news-content .h1 {
  display: block;
  font-size: 18px;
  margin: 0;
}
.news-sec {
  padding: 5rem 0 2rem;
}

.news-card > a:hover {
  color: var(--primary-color);
}
.news-card > a.btn:hover {
  color: white;
}
.news-card {
  position: relative;
  margin-bottom: 20px;
}

.news-card .btn {
  position: absolute;
  bottom: 5px;
  padding: 5px 10px;
  font-size: 12px;
  right: 5px;
  height: auto;
}
html[dir="rtl"] .news-card .btn {
  right: auto;
  left: 5px;
}
.infoSec {
  background: var(--primary-gray);
  padding: 3rem 0;
}
/* footer */
/*--footer--*/
footer {
  background: var(--primary-color);
  position: relative;
}
/* footer:after,
footer:before {
  content: "";
  background: url(../images/foot-art.svg) no-repeat;
  position: absolute;
  right: 0;
  bottom: 0;
  height: 90px;
  width: 103px;
  background-size: contain;
} */
footer:before {
  right: auto;
  left: 0;
  -webkit-transform: scaleX(-1);
  transform: scaleX(-1);
}
footer a,
footer a.nav-link {
  color: #fff;
  -webkit-transition: var(--trans);
  transition: var(--trans);
}
footer .social-icon {
  max-width: 125px;
  margin: auto auto 1.25rem;
}
footer .social-icon a {
  font-size: 1.65rem;
  -webkit-transition: var(--trans);
  transition: var(--trans);
}
footer .social-icon a:hover {
  -webkit-transform: scale(1.3);
  transform: scale(1.3);
  color: #fff;
}
footer .btn {
  font-size: 1.75rem;
  font-weight: 600;
  background-color: #fff;
  color: var(--primary-color);
  border-color: #fff;
  width: 73%;
}
footer .btn:hover {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
  background-color: #fff;
  color: var(--primary-color) !important;
}
footer .footerTitle {
  color: #fff;
  font-size: 18px;
  padding-bottom: 5px;
}
.footInfo ul li p {
  color: #fff;
}
.footInfo ul li a:hover,
.footNav li a:hover {
  color: #fff;
  letter-spacing: 0.05rem;
}
.footInfo ul li svg {
  color: #fff;
}
  
.footNav li a {
  -webkit-transition: var(--trans);
  transition: var(--trans);
  position: relative;
  padding-left: 25px;
}
.footNav li a:before {
  content: "";
  background: #fff;
  height: 2px;
  width: 10px;
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
footer a:hover {
  color: #fff;
}

html[dir="rtl"] .footNav li a {
  padding-left: 0;
  padding-right: 25px;
}
html[dir="rtl"] .footNav li a:before {
  right: 0;
  left: auto;
}
.foot-info {
  border-top: 1px solid #0f2b5c;
  color: white;
}
/* inner-pages */
.innerWrapper {
  padding: 0.5em 0 2em;
}
.secondaryHeader {
  background: var(--primary-gray);
}
.secondaryHeader .h1 {
/*  font-size: 32px;
  font-weight: 700;*/
  color: var(--primary-color);
  margin: 0;
}
.primary-card {
  padding: 25px;
  border-radius: 10px;
  background-color: var(--primary-gray);
}
.primary-card h1 {
  font-size: 30px;
  color: var(--primary-gray);
  font-weight: 600;
  margin: 0 0 10px;
}
.primary-card h2 {
  font-size: 20px;
  color: var(--primary-color);
  font-weight: 600;
  margin: 0 0 10px;
}
.link-card {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  border-bottom: 1px solid #f1f1f1;
  padding: 0 115px 15px 0;
  margin: 0 0 25px;
  position: relative;
}
html[dir="rtl"] .link-card {
  padding-right: 0;
  padding-left: 115px;
}
html[dir="rtl"] .column-layout .link-card {
  padding: 15px;
}
.link-card .link-thumb {
  width: 154px;
  margin-right: 25px;
}
html[dir="rtl"] .link-card .link-thumb {
  margin-left: 25px;
  margin-right: 0;
}
html[dir="rtl"] .m-card-list .link-card .link-thumb {
  margin: 0;
}
html[dir="rtl"] .m-card-list .link-card a {
  display: block;
}
.link-card .link-content .h1 {
  font-size: 20px;
  font-weight: 700;
  color: var(--primary-color);
}

.link-card .link-content p {
  font-size: 14px;
  opacity: 0.8;
}

.link-card .link-content .btn {
  font-size: 14px;
  min-width: 100px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
}
html[dir="rtl"] .link-card .link-content .btn {
  right: auto;
  left: 0;
}
.link-card .link-thumb img {
  width: 155px;
  height: 95px;
  object-fit: cover;
  border-radius: 10px;
}
.link-card .link-content {
  width: 85%;
}
/* column-layout */
.column-layout .link-card {
  flex-direction: column;
  padding: 15px;
  -webkit-column-break-inside: avoid;
  page-break-inside: avoid;
  break-inside: avoid;
}
.column-layout .link-card .link-content {
  width: 100%;
}
.column-layout .link-card .link-thumb {
  width: 100%;
  margin: 0 0 15px;
}

.column-layout .link-card .link-thumb img {
  width: 100%;
  height: 250px;
}

.column-layout .link-card .link-content .btn {
  position: static;
  margin: 15px 0 0;
}
.links-list.column-layout {
  -webkit-columns: 100px 3;
  -moz-columns: 100px 3;
  columns: 100px 3;
}
.m-card-list .link-card {
  padding: 0;
}

.m-card-list .link-card .link-thumb {
  height: auto;
  width: auto;
  margin: 0;
}

.m-card-list .link-card .link-thumb img {
  width: 100%;
  height: 400px;
}

.m-card-list .link-card .link-content {
  background: rgb(0, 0, 0);
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.7238742176558124) 100%
  );
  position: absolute;
  bottom: 0;
  color: white;
  padding: 15px;
  width: 100%;
  left: 0;
  border-radius: 0 0 10px 10px;
}

.m-card-list .link-card {
  overflow: hidden;
  position: relative;
}

.m-card-list .link-card a .h1 {
  color: white;
  font-weight: 500;
  margin: 0 0 -16px;
  font-size: 18px;
  -webkit-transition: var(--trans);
  transition: var(--trans);
  position: relative;
  padding-left: 15px;
}
.m-card-list .link-card a .h1:before
{
  content: "";
  height: 50px;
  border-radius: 50px;
  background-color: white;
  width: 3px;
  position: absolute;
  top: 0;
  left: 0;
}
.arrow-ico {
  background: url("../images/arrow.svg") no-repeat;
  background-size: contain;
  width: 16px;
  height: 15px;
  display: block;
  margin: 10px 0 0;
  -webkit-transition: var(--trans);
  transition: var(--trans);
}
.m-card-list .link-card {
  display: block;
  padding: 0 !important;
}
.m-card-list .link-card .arrow-ico {
  opacity: 0;
  visibility: hidden;
}
.m-card-list .link-card a:hover .arrow-ico {
  opacity: 1;
  visibility: visible;
}
.m-card-list .link-card a:hover .h1 {
  margin-bottom: 16px;
}
html[dir="rtl"] .m-card-list .link-card .h1:before {
  left: auto;
  right: 0;
}
html[dir="rtl"] .m-card-list .link-card a .h1 {
  padding-right: 15px;
  padding-left: 0px;
}
.m-card-list .link-card .arrow-ico {
  transform: rotate(180deg);
}
/* custom/form */
.custom-form .form-control {
  border-radius: 5px;
  background: white;
/*  border: 1px solid #f1f1f1;*/
}
.custom-form .form-group {
  margin: 0 0 15px;
}
.form-inner-title {
  padding: 0 0 5px;
  margin: 0 0 10px;
  border-color: #f1f1f1 !important;
  border: 0 !important;
}
.datepicker td,
.datepicker th {
  font-size: 14px;
  width: 25px;
  height: 25px;
}
.datepicker table tr td.active.active,
.datepicker table tr td.active.disabled,
.datepicker table tr td.active.disabled.active,
.datepicker table tr td.active.disabled.disabled,
.datepicker table tr td.active.disabled:active,
.datepicker table tr td.active.disabled:hover,
.datepicker table tr td.active.disabled:hover.active,
.datepicker table tr td.active.disabled:hover.disabled,
.datepicker table tr td.active.disabled:hover:active,
.datepicker table tr td.active.disabled:hover:hover,
.datepicker table tr td.active.disabled:hover[disabled],
.datepicker table tr td.active.disabled[disabled],
.datepicker table tr td.active:active,
.datepicker table tr td.active:hover,
.datepicker table tr td.active:hover.active,
.datepicker table tr td.active:hover.disabled,
.datepicker table tr td.active:hover:active,
.datepicker table tr td.active:hover:hover,
.datepicker table tr td.active:hover[disabled],
.datepicker table tr td.active[disabled] {
  background-color: var(--primary-color) !important;
  background-image: none;
}
.input-group-addon {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--primary-color);
}
html[dir="rtl"] .input-group-addon {
  left: 14px;
  right: auto;
}
.nice-select.form-control {
  line-height: 20px;
  float: none;
}
html[dir="rtl"] .nice-select.form-control {
  text-align: right !important;
}
html[dir="rtl"] .nice-select:after {
  left: 12px;
  right: auto;
}
.form-container {
  display: flex;
  /* align-items: stretch; */
  border: 1px solid #f1f1f1;
  border-radius: 10px;
  overflow: hidden;
}

.form-container .form-thumb {
  width: 50%;
}

.form-container .form-content {
  width: 50%;
}

.form-container .form-thumb img {
  height: 100%;
  object-fit: cover;
}
.form-head .h1 {
  font-size: 22px;
  color: var(--primary-color);
  font-weight: 600;
  position: relative;
  margin: 0;
}
.form-head {
  padding-left: 15px;
  position: relative;
  margin: 0 0 25px;
  border-bottom: 1px solid white;
  padding-bottom: 15px;
}
.form-head p {
  margin: 0;
}
html[dir="rtl"] .form-head {
  padding-right: 0;
  padding-left: 0px;
}

.event-container .primary-card .event-reg {
  width: 100%;
  position: sticky;
  top: 170px;
}
.event-container .primary-card .event-body {
  width: 100%;
  padding-left: 25px;
}
html[dir="rtl"] .event-container .primary-card .event-body {
  padding-left: 0;
  padding-right: 25px;
}
.event-reg {
  background: var(--secondary-color);
  padding: 25px;
  border-radius: 10px;
  color: white;
  margin: 20px auto;
/*  max-width: 650px;*/
}
.event-reg svg {
  fill: white;
}
.eventPriceTable
{
	max-width: 650px;
}

.event-reg .form-head .h1 {
  color: white;
  margin: 0 0 10px;
}

.event-reg .form-head p {
  font-size: 14px;
  margin: 0;
}

.event-reg a
{
	color: white;
	text-decoration: underline;
}

h2.formTitle
{
	color: var(--primary-gray);
	padding-bottom: 5px;
	border-bottom: 1px solid var(--primary-gray);
	margin-bottom: 20px;
	font-size: 18px;
}

.event-reg .custom-form > .row .col-md-12:first-of-type  h2.formTitle {
    margin-top:0;
}

.event-reg .custom-form > .row  h2.formTitle{
    margin-top: 30px
}

/* pricing */
#price {
  text-align: center;
}

#price .plan {
  display: inline-block;
  margin: 10px 0.5%;
  font-family: "Lato", Arial, sans-serif;
}

#price .plan-inner {
  background: #fff;
  margin: 0 auto;
  min-width: 280px;
  max-width: 100%;
  position: relative;
}

#price .entry-title {
  background: #53cfe9;
  height: 140px;
  position: relative;
  text-align: center;
  color: #fff;
  margin-bottom: 30px;
}

#price .entry-title > h3 {
  background: #20bada;
  font-size: 20px;
  padding: 5px 0;
  text-transform: uppercase;
  font-weight: 700;
  margin: 0;
}

#price .entry-title .price {
  position: absolute;
  bottom: -25px;
  background: #20bada;
  height: 95px;
  width: 95px;
  margin: 0 auto;
  left: 0;
  right: 0;
  overflow: hidden;
  border-radius: 50px;
  border: 5px solid #fff;
  line-height: 80px;
  font-size: 28px;
  font-weight: 700;
}

#price .price span {
  position: absolute;
  font-size: 9px;
  bottom: -14px;
  left: 12px;
  font-weight: 400;
}

#price .entry-content {
  color: #323232;
}

#price .entry-content ul {
  margin: 0;
  padding: 0;
  list-style: none;
  text-align: center;
}

#price .entry-content li {
  border-bottom: 1px solid #e5e5e5;
  padding: 10px 0;
}

#price .entry-content li:last-child {
  border: none;
}

/* .btn {
  padding: 3em 0;
  text-align: center;
} */

#price .btn a {
  background: #323232;
  padding: 10px 30px;
  color: #fff;
  text-transform: uppercase;
  font-weight: 700;
  text-decoration: none;
}
#price .hot {
  position: absolute;
  top: -7px;
  background: #f80;
  color: #fff;
  text-transform: uppercase;
  z-index: 2;
  padding: 2px 5px;
  font-size: 9px;
  border-radius: 2px;
  right: 10px;
  font-weight: 700;
}
#price .basic .entry-title {
  background: #75ddd9;
}

#price .basic .entry-title > h3 {
  background: #44cbc6;
}

#price .basic .price {
  background: #44cbc6;
}

#price .standard .entry-title {
  background: #4484c1;
}

#price .standard .entry-title > h3 {
  background: #3772aa;
}

#price .standard .price {
  background: #3772aa;
}

#price .ultimite .entry-title > h3 {
  background: #dd4b5e;
}

#price .ultimite .entry-title {
  background: #f75c70;
}

#price .ultimite .price {
  background: #dd4b5e;
}
.custom-form .form-control {
  background: transparent;
 }
.custom-form .btn {
  background: white;
  color: var(--primary-color);
}
.essay-container.event-container {
  max-width: 70%;
}
/* cart-page */
.payment-info {
  background: var(--primary-color);
  padding: 10px;
  border-radius: 6px;
  color: #fff;
  font-weight: bold;
}

.product-details {
  padding: 10px;
}

.cart {
  background: var(--primary-gray);
}

.cart .p-about {
  font-size: 12px;
}

.cart .table-shadow {
  -webkit-box-shadow: 5px 5px 15px -2px rgba(0, 0, 0, 0.42);
  box-shadow: 5px 5px 15px -2px rgba(0, 0, 0, 0.42);
}

.cart .type {
  font-weight: 400;
  font-size: 10px;
}

.cart label.radio {
  cursor: pointer;
}

.cart label.radio input {
  position: absolute;
  top: 0;
  left: 0;
  visibility: hidden;
  pointer-events: none;
}

.cart label.radio span {
  padding: 1px 12px;
  border: 2px solid #ada9a9;
  display: inline-block;
  color: #8f37aa;
  border-radius: 3px;
  text-transform: uppercase;
  font-size: 11px;
  font-weight: 300;
}

.cart label.radio input:checked + span {
  border-color: #fff;
  background-color: blue;
  color: #fff;
}

.cart .credit-inputs {
  background: none;
  color: #fff !important;
  border-color: white;
  border-radius: 5px;
}

.cart .credit-inputs::placeholder {
  color: #fff;
  font-size: 13px;
}

.cart .credit-card-label {
  font-size: 9px;
  font-weight: 300;
}

.cart .form-control.credit-inputs:focus {
  background: none;
  border: 1px solid white !important;
}

.cart .line {
  border-bottom: 1px solid rgb(102, 102, 221);
}

.cart .information span {
  font-size: 12px;
  font-weight: 500;
}

.cart .information {
  margin-bottom: 5px;
}

.cart .items {
  -webkit-box-shadow: 5px 5px 4px -1px rgba(0, 0, 0, 0.25);
  box-shadow: 5px 5px 4px -1px rgba(0, 0, 0, 0.08);
  background: white;
}

.cart .spec {
  font-size: 11px;
}
.cart .payment-info .btn-primary {
  background: white;
  color: var(--primary-color);
}
html[dir="rtl"] i.fa.fa-long-arrow-right,
html[dir="rtl"] i.fa.fa-long-arrow-left {
  transform: rotate(-180deg);
}
.event-container .essay-head {
  padding: 0 0 15px;
  border-bottom: 1px solid #f1f1f1;
  margin: 0 0 20px;
  display: flex;
  justify-content: space-between;
}


.primary-card .event-reg .form-head {
  text-align: center;
}
.event-container .primary-card .event-reg{
  margin-top: 25px;
  position: relative;
  top: 0;
  /* overflow: hidden; */
  max-width: 550px;
  width: 100%;
  margin: 2em auto auto;
}
/* what is that for?
.event-container .primary-card .event-reg:after{
  content:'';
  opacity: 0.7;
  height: 100%;
  width: 100%;
  background-color: var(--primary-color);
  position:absolute;
  left: 0;
  top: 0;
}
*/
.event-reg .custom-form .form-control:focus{
  border:1px solid white !important
}
.event-reg .custom-form .form-control{
  color: white;
}
.event-reg .custom-form .nice-select ul
{
	color: #212529;
  max-height: 200px;
  overflow:auto;
}
.event-reg form {
  position: relative;
  z-index: 6;
}
.readable-card .news-content {
  padding-right:45px;
}
.readable-card {
  border: 1px solid #f1f1f1;
  padding: 10px 10px 30px;
  position: relative;
  height: 111px;
  border-radius: 5px;
}
.readable-card img{
  position:absolute;
  right:10px;
  top:10px
}
.custom-form .form-check.custom-check input {
    position: absolute;
    visibility: hidden;
    opacity: 0;
}

.custom-form .form-check.custom-check label {
    position: relative;
    padding: 10px 15px;
    border:1px solid white;
    width: 100%;
    border-radius: 5px;
    background:none;
}
.custom-form .form-check.custom-check input:checked + label{
    background:#fff;
    color:var(--primary-color)
}
.custom-form .form-check.custom-check label:before {
    content: '';
    height: 20px;
    width: 20px;
    border: 1px solid #fff;
    position: absolute;
    border-radius: 100%;
    right: 0;
    display:none;
}

.custom-form .form-check.custom-check {
    padding: 0;
    text-align: center;
    width:49%;
}
.custom-form fieldset{
    display:flex;
    justify-content:space-between;
    gap:1%;
    border-bottom: 1px solid #fff;
    padding: 0 0 25px;
}
.nonVisible {
	visibility: hidden;
}
.nav-mobile-btn > a {
  color: white;
  font-size: 18px;
  height: 22px;
  width: 22px;
  text-align: center;
  line-height: 22px;
}

.nav-mobile-btn {
  gap: 10px;
  align-items: center;
}
.nav-mobile-btn > a svg {
  width: 24px;
  height: 24px;
  margin-top: -4px;
}
a.searchToggle
{
  cursor: pointer;
}
/* mobile-search */
.searchToggle.show-close i:before{
  content:'\f00d';
  font-size: 24px;
}
.searchSec.show-form{
  display: block !important;
}
.userFunction span {
  color: white;
}
.alert:empty,
.field-error-report:empty {
    display: none;
}
.password-strength-status {
    padding: 5px 10px;
    border-radius: 4px;
    margin: 5px 0;
	color: var(--primary-dark)
}

.field-invalid,
.weak-password {
    background-color: #FBE1E1;
}

.medium-password {
    background-color: #fd0;
}

.strong-password {
    background-color: #D5F9D5;
}
html[dir="rtl"] .nice-select .option{
text-align: right;
}
.form-check-input[type=checkbox]:checked{
  border: 1px solid #fff;
}
.custom-file-label {
  background-color: transparent;
  color: white;
  font-size: 14px;
  text-align: right;
  display: block;
  height: 40px;
  line-height: 24px;
  cursor: pointer;
  position: relative;
  padding-left: 29px;
}
.custom-file-label:before {
  content: '';
  background: url(../../images/arrow-up-from-bracket-solid.svg) no-repeat;
  height: 12px;
  width: 12px;
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
}
.userDropdown .dropdown-menu, .userFunction.dropdown   .dropdown-menu{
  border: 0;
    margin-top: 5px !important;
  background-color: var(--primary-gray);
  padding:0;
  box-shadow: 0 10px 10px rgb(0 0 0 / 10%);
  overflow: hidden;
}
.userDropdown .dropdown-menu li a, .userFunction.dropdown   .dropdown-menu li a {display: flex;justify-content: space-between;align-items: center;     padding-top: 10px;
  padding-bottom: 10px;}
   .dropdown-item:active{
    background-color:var(--primary-gray)
  }
  .userFunction.dropdown > a {
    color: white;
}

.square-button
{
	height: 140px;
	border: 1px solid var(--secondary-color);
	padding: 10px;
	margin-bottom: 20px;
	text-align: center;
	font-size: 1.25rem;
	font-weight: bold;
	color: var(--primary-color);
	background-color: var(--primary-gray);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-radius: 10px;
  gap: 10px;
  border-color: #5C9737;
  box-shadow: 0 10px 10px rgba(0 0 0 /5%);
  transition: var(--trans);
  position: relative;
  top:0;
}
.square-button:hover{
top:10px
}
/* datatable */
.dataTables_wrapper {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 6px 10px 0 rgba(131,134,163,0.12);
  border: 1px solid #5C9737;
  padding: 0;
  overflow: hidden;
}

table.aDataTable
{
  background-color: #fff;
}

table.aDataTable thead th{
  font-size:14px;
  font-weight:normal;
  color:#959FBA;
  border-bottom:1px solid #DCDFE9 !important;
  text-align: right !important;
  background: #5C9737 !important;
  color: #fff;
  padding: 12px 20px!important;
}

table.aDataTable.no-footer {
  border: 0;
  margin: 0 !important;
}
table.aDataTable thead td{
  border-bottom:1px solid var(--primary-gray);
}
table.aDataTable tbody td{
  padding:10px 20px;
  border-bottom:1px solid var(--primary-dark) !important;
  font-size:14px;
}

.eventPriceTable tbody td
{
	text-align: center;
}

/* fix datatable RTL issue */
table.aDataTable thead th, table.aDataTable thead td, table.aDataTable tfoot th, table.aDataTable tfoot td
{
	text-align: right;
}

.pagination {
  margin-top: 20px;
}
.dataTables_wrapper .dataTables_paginate .paginate_button{
  padding:0;
  margin:0 ;
}
.dataTables_info {
  padding: 10px 25px 15px;
  font-size: 14px;
  opacity: 0.5;
}

div#DataTables_Table_0_paginate {
  padding: 5px 20px 10px;
}
.active>.page-link, .page-link.active {
  background: var(--primary-color);
  border-color: var(--primary-color);
}
table.aDataTable thead th.sorting:before, table.aDataTable thead th.sorting:after {
        display:none !important;

}
.navbar-brand img {
  height: auto;
  width: 140px;
  transition: all 0.5s ease;
}

.commentprice {
  background: #fff;
  padding: 12px 35px 12px 12px;
  border-radius: 5px;
  color: var(--secondary-color);
  position: relative;
}
.commentprice:before{
  content:'';
  width:25px;
  height: 25px;
  background:url('https://vets.org.il/designFiles/vets/price-tags.svg') no-repeat;
  background-size:contain;
  display:inline-block;
  position: absolute;
  right: 4px;
  top: 8px;
}
.commentprice strong {
  font-size: 22px;
}
/* thumbnail-gallery */
div#main-slider {
  margin-top: 20px; 
  overflow: hidden;
}

#thumbnail-slider .splide__slide, #thumbnail-slider .splide__slide {
  border-radius: 5px !important;
  border: 0;
  opacity:0.5;
  text-align:center;
}
#thumbnail-slider .splide__slide.is-active{
   opacity:1
}

/* hirarchy categories for Encyclopedia */
.badge {
	background-color: var(--primary-color);
	float: left;
	margin-right: 10px;
}


@media (max-width: 1441px) {
  .heroSec:before {
    height: 116px;
    width: 68px;
  }
  footer {
    padding: 5em 0 0;
  }
  .contactCard:after,
  footer:after {
    width: 200px;
  }
  .contactCard {
    padding: 25px;
  }
  .contactCard .h1 {
    font-size: 22px;
  }
  .serviceCard {
    margin: 0 0 30px;
    height: auto;
  }
  .serviceSec {
    padding: 7em 0;
  }
  .curve {
    bottom: -120px;
  }
  .curveTwo {
    top: -90px;
  }
}
@media (max-width: 1199px) {
  .essay-container.event-container{
    max-width:100%
  }
  .link-card .link-thumb img {
    height: 135px;
  }
  .link-card .link-content {
    width: 100%;
  }
  .link-card .link-thumb {
    width: 180px;
  }
  .tempHeader .container {
    max-width: 100%;
  }

  header .nav-item .nav-link.active:before {
    bottom: 0;
  }
  header .lang-btn:hover {
    background-image: none;
    border: 0;
  }
  header .lang-btn:hover svg {
    fill: var(--secondary-color);
  }

  .navbar-collapse .nav-item .nav-link:before {
    display: none;
  }

  .navbar-collapse ul {
    background: var(--primary-color);
    padding: 15px;
    border-radius: 15px;
    box-shadow: 0px 50px 90px -20px rgb(0 0 0 / 15%);
  }

  .navbar-collapse .nav-item .nav-link {
    padding: 8px !important;
    text-align: center;
  }

  html[dir="rtl"] header .lang-btn {
    left: 10px;
    right: auto;
  }
  .langSwitch a {
    border: 0;
  }
  a.navbar-brand img {
    width: 110px;
    height: auto;
  }
  .navbar-collapse {
    position: absolute;
    left: 50%;
    top: 110%;
    width: 95%;
    transform: translateX(-50%);
  }
  .link-card .link-thumb img {
    height: 135px;
  }
  .link-card .link-content {
    width: 100%;
  }
  .link-card .link-thumb {
    width: 180px;
  }
}

@media (max-width: 883px) {
  .readable-card {
    min-height: inherit;
    padding-bottom:10px
  }
  html[dir="rtl"] .event-container .primary-card .event-body {
        padding-left: 0;
        padding-right: 00;
  }
  .event-container .primary-card {
        flex-direction: column;
        gap: 25px;
  }
  .event-container .primary-card > div {
        width: 100% !important;
  }
  .event-container .primary-card > div.event-reg{
        margin:auto;
        position:static;
        order: 2;
  }
  .form-container .form-thumb {
        display: none;
  }
  .form-container .form-content {
        width: 100%;
        background: var(--primary-gray);
  }
  .links-list.column-layout{
        columns: 100px 2;
  }
  .serviceSec {
    margin-top: 0;
  }
  .heroSec:before,
  .heroSec:after {
    left: -310px;
  }
  .heroContent h1 {
    font-size: 32px;
  }
  .heroContent p {
    font-size: 23px;
  }
  #scene .mainGraphic {
    left: 0px !important;
    top: 55px !important;
  }
}
@media (max-width: 767px) {
  .scroll_head .orgInfo{
    padding: 8px 0 !important;
  }
  .scroll_head .orgInfo p  {
    font-size: 14px;
    margin:0;
  }
  .scroll_head .orgInfo .h2{
    font-size: 12px;
  }
  .header-height{
    margin-top:150px !important;
  }
  .orgInfo .h1, .orgInfo h1 {
    font-size: 19px;
  }
  header .lang-btn {
	  padding: 4px 10px;
  }
  .essay-container.event-container {
    max-width: 100%;
  }
  .event-container .primary-card .event-reg {
    max-width: 100%;
  }
  .custom-form fieldset {
    flex-direction: column;
    gap: 10px;
  }
  .custom-form fieldset .form-check {
    width: 100%;
  }
  .essay-head .head-content img{
        margin: 0 0 10px;
  }
  .essay-head .head-content{
        flex-direction: column;
  }
  .event-container .primary-card .event-reg{
        position:relative;
  }
  .secondaryHeader .breadcrumb {
        margin: 10px 0 0 !important;
  }
  .secondaryHeader .h1{
        margin: 0;
  }
  .essay-container .essay-thumb img{
        height: 250px;
  }
  .essay-head {
        flex-direction: column;
  }
  .essay-head .h1 {
        margin: 0 0 10px;
  }
  .essay-container .primary-card{
        max-width: 100%;
        padding: 10px;
  }
  .secondaryHeader > .d-flex {
        flex-direction: column;
        justify-content: center;
        align-items: center;
  }
  .m-card-list .link-card .link-thumb img{
        margin: 0;
  }
  .links-list.column-layout{
        columns: 100px 1;
  }
  html[dir="rtl"] .link-card {
    padding-left: 0;
  }
  .innerPages .wrapper {
    padding: 2em 0;
  }
  .link-card {
    flex-direction: column;
    padding: 0 0 15px;
  }

  .link-card .link-content .btn {
    position: static;
    margin-top: 20px;
  }

  .link-card .link-content {
    width: 100%;
  }

  .link-card .link-thumb {
    width: 100%;
  }

  .link-card .link-thumb img {
    height: 200px;
    margin: 0 0 20px;
    width: 100%;
  }
  .sec-title {
    margin: 30px 0 20px;
  }
  .infoSec,
  .news-sec {
    padding: 3rem 0;
  }
  .slide-body {
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 300px;
  }
  html[dir="rtl"] .slide-body {
    right: auto !important;
    left: 50%;
  }
  .slide-body p {
    font-size: 14px;
  }
  .hero-sec .splide__slide img {
    height: 400px;
  }
  header.tempHeader {
    padding-top: 0;
  }
  .slide-body .h1 {
    font-size: 24px;
  }
  .navbar-collapse {
    position: absolute;
    left: 50%;
    top: 110%;
    width: 95%;
    transform: translateX(-50%);
  }
  .cardList {
    height: auto;
    margin: 0 0 20px;
  }
  .infoCard {
    margin: 0 0 20px;
  }
  .topNav {
    border-bottom: 1px solid #f1f1f1;
  }

  footer:after {
    bottom: 10px;
  }
  .footNav {
   flex-direction: column;
   justify-content:center;
  }
  .footNav .footNav{
    flex-direction: row;

  }
  footer {
    margin: 0px 0 0;
  }
  .splide__pagination {
    display: none;
  }
  .splide__arrow--next {
    right: 0em;
  }
  .splide__arrow--prev {
    left: 0em;
  }
  form.contactForm {
    border-radius: 10px;
  }
  .form-group {
    margin: 0 0 15px;
  }
  .serviceSec {
    padding: 4em 0;
  }
  .secondaryTitle {
    font-size: 16px;
  }
  .primaryTitle {
    font-size: 32px;
    margin: 0 0 15px;
  }
  .curve {
    height: 110px;
  }
  .aboutSec:before {
    display: none;
  }
}
