/* Defaults
-------------------------------------------------------------- */
html {
  font-size: 18px;
}

body {
  color: #000000;
  font-size: 1rem;
  direction: rtl;
  line-height: 1.5;
  font-weight: 400;
  font-family: "aktiv-grotesk-ex-hebrew", sans-serif;
}
body * {
  font-family: "aktiv-grotesk-ex-hebrew", sans-serif;
}
body.has-overflow {
  overflow: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  position: relative;
  display: block;
  font-weight: bold;
  font-family: "aktiv-grotesk-ex-hebrew", sans-serif;
  line-height: 1.2;
}

h1 {
  font-size: 3.3333rem;
}

h2 {
  font-size: 2.5rem;
}

h3 {
  font-size: 1.6667rem;
}

h4 {
  font-size: 1rem;
}

div,
p,
span,
a,
input,
input[type=submit],
select,
textarea {
  font-family: "aktiv-grotesk-ex-hebrew", sans-serif;
}

strong,
b {
  font-weight: bold;
}

i,
em {
  font-style: italic;
}

a,
input[type=submit],
button,
.transition {
  transition: all 400ms ease;
}

a {
  text-decoration: none;
}

a:hover,
a:focus {
  color: #F47721;
}

img {
  max-width: 100%;
  height: auto;
}

img.grayscale {
  -webkit-filter: grayscale(100%);
  filter: grayscale(100%);
  filter: gray;
  filter: url("data:image/svg+xml;utf8,<svg version='1.1' xmlns='http://www.w3.org/2000/svg' height='0'><filter id='greyscale'><feColorMatrix type='matrix' values='0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0 0 0 1 0' /></filter></svg>#greyscale");
}

img.grayscale:hover {
  filter: none;
  -webkit-filter: grayscale(0%);
}

.round {
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
}

.content ol,
.content ul {
  font-size: 1rem;
  line-height: 1.5;
  margin-bottom: 8px;
}

.content ol {
  list-style: decimal;
}

.content p {
  font-size: 1rem;
  line-height: 1.5;
  margin-bottom: 0.5rem;
}

/****************************************************************
    LAYOUT  LAYOUT  LAYOUT  LAYOUT  LAYOUT  LAYOUT  LAYOUT  LAYOUT
****************************************************************/
.container {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  position: relative;
  display: block;
}

.site-logo {
  min-width: 150px;
}
.site-logo a {
  display: block;
  width: 100%;
}

.skip-link {
  position: absolute;
  top: -1000px;
  left: -1000px;
  background: #000;
  color: #fff;
  padding: 10px 20px;
  z-index: 99999;
  text-decoration: none;
  font-weight: bold;
  border-radius: 0 0 5px 5px;
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 0;
  left: 20px;
  outline: 2px solid #ffcc00;
}

/*============================== Main Menu =========================*/
ul#main-menu {
  position: relative;
  display: flex;
  flex-direction: row;
  list-style: none;
}
ul#main-menu > li {
  position: relative;
}
ul#main-menu > li > a {
  position: relative;
  display: block;
  font-size: 1rem;
  color: #F47721;
  line-height: 2;
  padding: 5px 10px;
}
ul#main-menu > li > a:focus, ul#main-menu > li > a:hover {
  text-decoration: none;
  color: #000000;
}
ul#main-menu li.current-menu-item > a {
  color: #000000;
}

/*============================== Sub Menu =========================*/
ul#main-menu ul.sub-menu {
  position: absolute;
  z-index: 10;
  top: 100%;
  width: 250px;
  display: none;
  padding: 0;
}
ul#main-menu ul.sub-menu li {
  position: relative;
  display: block;
  background: #fff;
}
ul#main-menu ul.sub-menu li a {
  position: relative;
  padding: 10px;
  color: #000000;
  margin-right: 2px;
  margin-left: 2px;
}
ul#main-menu ul.sub-menu li a:hover, ul#main-menu ul.sub-menu li a:focus {
  text-decoration: none;
  color: #F47721;
}
ul#main-menu ul.sub-menu li:hover > a {
  color: #F47721;
}
ul#main-menu > li.menu-item-has-children:hover > ul.sub-menu {
  display: block;
}

/*============================== General =========================*/
.big {
  font-size: 1.3889rem;
}

.bold {
  font-weight: bold;
}

.center {
  text-align: center;
}

.white {
  color: #fff;
}

.full-absolute {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

.bg-image {
  background-position: center;
  background-size: cover;
}

figure {
  display: block;
  margin: 0;
}
figure img {
  object-fit: cover;
  width: 100%;
}

/* fixes potential theme css conflict */
.acf-map img {
  max-width: inherit !important;
}

/* Edit Above Only*/
/* ==========================================================================
   Mobile-First Drawer Styles (Screens under 991px)
   ========================================================================== */
@media (max-width: 991px) {
  .site-navigation .main-menu-drawer {
    position: fixed;
    top: 0;
    right: 0;
    width: 100vw; /* Width of your mobile menu drawer */
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #1a1a1a;
    padding: 100px 30px 40px;
    z-index: 9999;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  }
  .site-navigation.is-open .main-menu-drawer {
    transform: translateX(0);
  }
  .site-navigation .menu-items-list {
    flex-direction: column !important;
    padding: 0;
    margin: 0;
  }
  .site-navigation .menu-items-list a {
    color: white !important;
    text-align: center;
  }
  .site-navigation .menu-items-list li.current-menu-item > a {
    color: #F47721 !important;
  }
  .site-navigation .menu-toggle {
    position: relative;
    z-index: 10000;
    display: block;
    background: none;
    border: none;
    cursor: pointer;
  }
  .site-navigation ul#main-menu ul.sub-menu {
    position: relative;
  }
  .site-navigation ul#main-menu ul.sub-menu li {
    background: transparent;
    text-align: center;
    padding: 10px 0;
  }
  .site-navigation ul#main-menu ul.sub-menu li a {
    text-align: center;
  }
  .site-navigation ul#main-menu li.menu-item-has-children:hover ul.sub-menu {
    display: none;
  }
}
/* ==========================================================================
   Desktop Responsive Overrides (Screens 960px and Up)
   ========================================================================== */
@media (min-width: 991px) {
  .menu-toggle {
    display: none;
  }
  .main-menu-drawer {
    position: static;
    width: auto;
    height: auto;
    background: none;
    padding: 0;
    box-shadow: none;
    transform: none; /* Disables the mobile off-screen slide position */
  }
  .menu-items-list {
    display: flex;
    flex-direction: row;
    gap: 30px;
    list-style: none;
  }
  .menu-items-list a {
    color: #333333;
    font-size: 1rem;
  }
}
.mobile_menu_button {
  position: relative;
  display: none;
}

.triggerMobileMenu {
  position: relative;
  width: 40px;
  height: 40px;
  padding: 0;
  border: 0;
  margin: 0 auto;
  transform: rotate(0deg);
  transition: 0.5s ease-in-out;
  cursor: pointer;
  background: none;
  text-indent: -99999px;
}
.triggerMobileMenu span.hamburger-bar {
  display: block;
  position: absolute;
  height: 5px;
  width: 100%;
  background: #F47721;
  border-radius: 9px;
  opacity: 1;
  left: 0;
  transform: rotate(0deg);
  transition: 0.25s ease-in-out;
}
.triggerMobileMenu span.hamburger-bar:nth-child(2) {
  top: 5px;
}
.triggerMobileMenu span.hamburger-bar:nth-child(3) {
  top: 16px;
  right: 0;
}
.triggerMobileMenu span.hamburger-bar:nth-child(4) {
  top: 27px;
}
.triggerMobileMenu.open span.hamburger-bar:nth-child(2) {
  top: 16px;
  transform: rotate(135deg);
}
.triggerMobileMenu.open span.hamburger-bar:nth-child(3) {
  opacity: 0;
  right: -60px;
}
.triggerMobileMenu.open span.hamburger-bar:nth-child(4) {
  top: 16px;
  transform: rotate(-135deg);
}

.button.triggerMobileMenu:focus,
.button.triggerMobileMenu:hover {
  background: none;
  outline: none;
}

/** off-cnavas (mobile menu wrapper) ****************/
ul#mobile-menu {
  position: relative;
  display: block;
  width: 100%;
}
ul#mobile-menu li {
  position: relative;
  display: block;
}
ul#mobile-menu li a {
  position: relative;
  display: block;
  font-size: 1rem;
  text-decoration: none;
  padding: 10px 15px;
  color: #000000;
}
ul#mobile-menu > li {
  border-bottom: 1px solid #F47721;
}
ul#mobile-menu ul.sub-menu {
  position: relative;
  display: block;
  margin-left: 15px;
}
ul#mobile-menu ul.sub-menu li a {
  padding: 0px 15px 10px 15px;
  font-size: 1rem;
}

ul#mobile-menu > li > a:focus,
ul#mobile-menu > li.current-menu-item > a,
ul#mobile-menu ul.sub-menu li.current-menu-item a,
ul.mobile_menu > li a:hover {
  color: #F47721;
}

/****************************************************************************************************************/
/* end of (max-width: 1200px) */
/****************************************************************************************************************/
/* end of (max-width: 990px) */
/****************************************************************************************************************/
/* end of (max-width: 768px) */
/****************************************************************************************************************/
/* end of (max-width: 576px) */
/****************************************************************************************************************/
/* end of (max-width: 480px) */
/****************************************************************************************************************//*# sourceMappingURL=style.css.map */