@import url("https://fonts.googleapis.com/css2?family=Assistant:wght@200;300;400;500;600;700;800&display=swap");
:root {
  --white: 0, 100%, 100%;
  --black: 0, 0%, 0%;
  --gray: 0, 0%, 50%;
  --red: 0, 100%, 39%;
  --c-01: 180, 100%, 29%;
  --anim-speed: 0.3s;
  --anim-style: linear;
  --pre-display: none;
  --cursor: pointer;
  --brand: hsl(var(--c-01));
  --disabled: hsl(var(--gray));
  --box-display: flex;
  --header-social-text-color: hsl(var(--white));
  --search-background: hsla(var(--gray), 0.25);
  --banner-background--gray: hsl(var(--gray));
  --banner-background--brand: var(--brand);
  --banner-text-color: hsl(var(--white));
  --card-header-background: hsla(var(--white), 0.5);
}
@media screen and (max-width: 575px) {
  :root {
    --register-iframe-height: 280px;
  }
}
@media screen and (min-width: 576px) and (max-width: 767px) {
  :root {
    --register-iframe-height: 280px;
  }
}
@media screen and (min-width: 768px) and (max-width: 991px) {
  :root {
    --register-iframe-height: 190px;
  }
}
@media screen and (min-width: 992px) and (max-width: 1199px) {
  :root {
    --register-iframe-height: 190px;
  }
}
@media screen and (min-width: 1200px) {
  :root {
    --register-iframe-height: 190px;
  }
}
@media screen and (max-width: 575px) {
  :root {
    --header-social-tagline-display: none;
  }
}
@media screen and (max-width: 767px) {
  :root {
    --box-max-width: 95vw;
    --header-social-height: 60px;
    --header-social-font-size: 24px;
    --header-tagline-title-font-size: 30px;
    --header-tagline-secondary-font-size: 22px;
    --banner-font-size: 22px;
  }
}
@media screen and (min-width: 768px) {
  :root {
    --box-max-width: 80vw;
    --header-box-display: grid;
    --header-box-padding-block: 20px;
    --header-social-height: 80px;
    --header-social-tagline-display: inline-flex;
    --header-social-font-size: 36px;
    --header-tagline-title-font-size: 48px;
    --header-tagline-secondary-font-size: 24px;
    --hero-height: 450px;
    --banner-font-size: 36px;
  }
}

*:where([class*="ip-"]:not(strong, iframe, canvas, img, svg, video, pre):not(svg *, symbol *)) {
  all: unset;
  display: revert;
}

*, *:before, *:after {
  box-sizing: border-box;
}

html {
  line-height: 1.2;
  direction: var(--site-direction);
  font-family: "Assistant", sans-serif;
}
html[lang=he], html[dir=rtl] {
  --site-direction: rtl;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  margin: 0;
  overflow-x: hidden;
  overflow-y: auto;
}

pre {
  direction: ltr;
}
pre.testPre {
  background-color: white;
  box-shadow: var(--site-shadow);
  border: solid 2px var(--alert-color);
  color: var(--alert-color);
  display: var(--pre-display);
  height: 80vh;
  inset-block-start: 10vh;
  inset-inline-end: 10vw;
  overflow: auto;
  position: fixed;
  width: 80vw;
  z-index: 1000000;
}

.sr-only {
  display: none;
}

.aligncenter,
.has-text-align-center {
  text-align: center;
}

/* FRAME */
/* FRAME */
/* SOON */
.page-template-template-soon {
  align-items: center;
  background-image: url(../../uploads/IMG_0320-scaled.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  justify-content: center;
  text-align: center;
}
.page-template-template-soon h1, .page-template-template-soon h2, .page-template-template-soon h3, .page-template-template-soon h4, .page-template-template-soon h5, .page-template-template-soon h6 {
  font-size: var(--font-size);
  font-weight: bold;
}
.page-template-template-soon h1 {
  --font-size: max(7vw, 3rem);
}
.page-template-template-soon .ip-soon {
  align-items: center;
  color: hsl(var(--white));
  display: flex;
  flex-direction: column;
  font-size: 24px;
  gap: 10px;
  justify-content: center;
  margin-inline: auto;
  max-width: 90vw;
  text-shadow: 0 0 3px hsla(var(--black), 1);
}
.page-template-template-soon .ip-soon figure {
  align-items: center;
  display: flex;
  justify-content: center;
}
.page-template-template-soon .ip-soon figure figcaption {
  color: hsl(var(--white));
  font-size: 24px;
  font-weight: bold;
  order: 1;
  text-shadow: 0 0 3px hsla(var(--black), 1);
}
.page-template-template-soon .ip-soon iframe {
  backdrop-filter: blur(5px);
  background-color: hsla(var(--black), 0.3);
  border-radius: 10px;
  box-shadow: 0 0 10px 0 hsl(var(--black), 0.5);
  height: var(--register-iframe-height) !important;
}

/* SOON */
/* GENERAL */
.ip-main__wrapper {
  display: flex;
  flex-direction: column;
}

/* GENERAL */
/* BOX */
.ip-box {
  display: var(--box-display);
  max-width: var(--box-max-width);
  margin-inline: auto;
}

/* BOX */
/* LOGO */
/* LOGO */
/* HEADER */
.ip-header {
  height: var(--header-height);
}
.ip-header .ip-box {
  --box-display: var(--header-box-display);
  padding-block: var(--header-box-padding-block);
}
@media screen and (min-width: 992px) {
  .ip-header .ip-box {
    grid-template-areas: "logo menu" "logo tagline";
    grid-template-columns: 150px 1fr;
    grid-template-rows: 50px 1fr;
    row-gap: 10px;
  }
}
.ip-header .ip-social {
  align-items: center;
  background-color: var(--brand);
  column-gap: 30px;
  display: flex;
  height: var(--header-social-height);
  justify-content: center;
  width: 100vw;
}
.ip-header .ip-social .ip-tagline {
  color: var(--header-social-text-color);
  display: var(--header-social-tagline-display);
  font-size: var(--header-social-font-size);
}
.ip-header .ip-social .ip-list {
  column-gap: 15px;
  display: flex;
  list-style: none;
}
.ip-header .ip-social .ip-list .ip-link {
  display: inline-flex;
}
.ip-header .ip-social .ip-list .ip-link.icon-only {
  height: 40px;
}
.ip-header .ip-social .ip-list svg {
  aspect-ratio: 1;
  fill: hsl(var(--white));
  height: inherit;
}
.ip-header .ip-logo {
  display: flex;
  flex-direction: column-reverse;
  grid-area: logo;
  row-gap: 10px;
}
.ip-header .ip-navigation {
  display: flex;
  grid-area: menu;
  list-style: none;
  margin-inline-start: auto;
  column-gap: 20px;
}
.ip-header .ip-tagline {
  align-items: center;
  display: flex;
  flex-direction: column;
  grid-area: tagline;
  justify-content: center;
}
.ip-header .ip-tagline .ip-title {
  color: var(--brand);
  font-size: var(--header-tagline-title-font-size);
  font-weight: 700;
}
.ip-header .ip-tagline .ip-title--secondary {
  font-size: var(--header-tagline-secondary-font-size);
}

/* HEADER */
/* HERO */
.ip-hero {
  aspect-ratio: 16/9;
  display: inline-flex;
  max-height: var(--hero-height);
  position: relative;
  width: 100vw;
}
.ip-hero .ip-figure {
  height: 100%;
}
.ip-hero .ip-figure.image {
  display: flex;
  overflow: hidden;
  width: 100%;
}
.ip-hero .ip-media {
  display: inline-block;
  object-fit: cover;
  object-position: center center;
  width: 100%;
}
.ip-hero .ip-hero--buttons {
  align-items: center;
  display: grid;
  grid-template-columns: 1fr 3fr 1fr;
  inset: 0;
  justify-items: center;
  position: absolute;
}

/* HERO */
/* SEARCH */
.ip-search {
  background-color: var(--search-background);
  padding: 15px;
}
.ip-search .ip-box {
  display: flex;
  flex-direction: column;
  row-gap: 5px;
}
.ip-search .ip-box .ip-form--wrapper {
  column-gap: 15px;
  display: flex;
}

/* FORM */
.ip-form .ip-select,
.ip-form .ip-input--text {
  background-color: hsl(var(--white));
  border: solid 1px var(--brand);
  padding: 5px;
}
.ip-form .ip-select {
  width: 200px;
}
.ip-form .ip-input--text {
  width: 300px;
}

/* FORM */
/* BANNER */
.ip-banner {
  background-color: var(--banner-background);
  padding-block: 10px;
}
.ip-banner.gray {
  --banner-background: var(--banner-background--gray);
}
.ip-banner.brand {
  --banner-background: var(--banner-background--brand);
}
.ip-banner .ip-box .ip-link {
  align-items: center;
  color: var(--banner-text-color);
  column-gap: 10px;
  display: flex;
  font-size: var(--banner-font-size);
  margin-inline: auto;
}
.ip-banner .ip-box .ip-link .ip-media {
  display: inline-block;
  height: 80px;
  object-fit: contain;
}

/* BANNER */
/* CARD */
.ip-card {
  position: relative;
}
.ip-card.header-on-image {
  --card-header-poistion: absolute;
}
.ip-card.header-on-image .ip-card-header {
  inset-block-end: 0;
  z-index: 10;
}
.ip-card.header-on-image .ip-card-main {
  inset-block-end: 0;
  position: absolute;
}
.ip-card .ip-card-header {
  background-color: var(--card-header-background);
  display: flex;
  justify-content: space-between;
  padding: 10px;
  position: var(--card-header-poistion);
  width: 100%;
}
.ip-card .ip-card-main {
  aspect-ratio: 16/9;
}
.ip-card .ip-card-main .ip-media {
  display: block;
  height: 100%;
  width: 100%;
}

/* CARD

/* CAROUSEL */
.ip-carousel .ip-box {
  display: flex;
  flex-direction: column;
  row-gap: 20px;
}
.ip-carousel .ip-box .ip-scroll {
  position: relative;
}
.ip-carousel .ip-box .ip-scroll-area {
  height: 205px;
  overflow: hidden;
  margin-inline: auto;
  position: relative;
  width: 970px;
}
.ip-carousel .ip-box .ip-scroll-area .ip-list {
  column-gap: 50px;
  display: flex;
  flex-wrap: nowrap;
  position: absolute;
  right: 0;
  width: 100%;
  transition: all 1s ease;
}
.ip-carousel .ip-box .ip-scroll-area .ip-list .ip-card {
  min-width: 290px;
}
.ip-carousel .ip-box .ip-scroll .ip-button {
  position: absolute;
  inset-block-start: 50%;
  height: 40px;
  width: 40px;
  cursor: pointer;
  border: solid 1px #000;
  background-color: #fff;
  z-index: 100;
}
.ip-carousel .ip-box .ip-scroll .ip-button.prev {
  inset-inline-start: 0;
}
.ip-carousel .ip-box .ip-scroll .ip-button.next {
  inset-inline-end: 0;
}

/* CAROUSEL */

/*# sourceMappingURL=style-new.css.map */
