* {
  font-family: Rubik, arial, sans-serif;
}

:root {
  --web-primary-color: var(--prime2);
  --web-primary-hover-color: #4d7b2b;
  --web-links-color: #053feb;
  --web-links-hover-color: #034ba9;
  --web-mobile-nav-bg: #ffffffea;
  --web-side-nav-title-bg: #0372ac;
  --web-side-nav-title-text: #fff;

  --hpwidth: 97.5vw;

  --prime1: #74860d;
  --prime2: #b51497;
  --prime3: #9ccc65;
  --prime4: #ffb319;
  --prime5: #ffd126;
  --prime6: #cc53bb;

  --prime7: #97279e;
  --prime8: #631967;

  --text: #111;
  --header: #4d7b2b;
}

body {
  margin: 2rem auto 0px;
  padding: 0px;
  background: rgb(255, 255, 255);
  width: var(--hpwidth);
  overflow-x: clip;
}


a {
  color: var(--web-links-color);
  transition: 0.5s;
}

a:hover,
a:focus {
  color: var(--web-links-hover-color);
}

.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 var(--web-primary-hover-color);
}

.btn-outline-primary {
  color: var(--web-primary-color);
  border-color: var(--web-primary-color);
}

.btn-outline-primary:hover,
.btn-outline-primary:focus {
  background: var(--web-primary-hover-color);
  border-color: var(--web-primary-hover-color);
}

figure {
  margin: 0px;
}

.container,
.container-lg,
.container-md,
.container-sm,
.container-xl {
  max-width: 95.5%;

  @media (max-width: 1199px) {
    max-width: 97%;
  }

  @media (max-width: 991px) {
    max-width: 100%;
  }
}

@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: rgb(254 238 255);
}

.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;
  }
}

.frame {
  position: relative;
  width: 97vw;
  height: auto;
  margin: auto;
  border-radius: 40px;
  overflow: clip;
  box-shadow:
    rgba(0, 0, 0, 0.68) 0px 35px 44px inset,
    rgba(34, 34, 34, 0.93) 0px 48px 56px inset;
  box-shadow:
    rgba(0, 0, 0, 0.68) 14px 31px 122px inset,
    rgba(34, 34, 34, 0.93) 0px -33px 68px inset;
}



.header nav {
  padding-right: 6.5rem;
  align-self: center;
}

.header nav ul {
  list-style: none;
  padding: 0px;
  margin: 0px;
}

.header nav a.on,
.header nav li.on > span > a {
  font-weight: bold;
}

.header nav button {
  display: none;
}

.header .btns {
  position: absolute;
  left: 240px;
  top: 10px;
  display: flex;
  gap: 10px;

  & li {
    background-color: transparent;
    border-radius: 100vw;
    border: 0.15rem solid #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
  }

  & a {
    background-color: transparent;
    color: #fff;
  }

  .offset {
    position: absolute;
    top: -1000px;
  }

}

.socials ul {
  position: absolute;
  padding: 0;
  top: 105px;
  left: 0;
  list-style-type: none;
  width: max-content;
  z-index: 10;

  & li {
    margin-bottom: 0.25rem;
    position: relative;
    left: -87%;
    transition: all 0.2s ease;
    border-radius: 100vw;
    background-color: #fcfcfc;
    box-shadow: inset 80px 0 60px -30px rgb(0 0 0 / 70%);
    width: 275px;

    &:hover {
      left: -10%;
    }
  }

  & a {
    gap: 0.5rem;

    padding: 2px;
    color: var(--text);
    display: flex;
    align-items: center;
    font-size: calc(0.25vw + 16px);

    &:hover {
      text-decoration: none;
    }
  }

  & i {
    height: 35px;
    width: 35px;
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100vw;
    color: #fff;
  }
}

/* @media (min-width:992px) {
  .socials ul {

    & > li:first-of-type,
    & > li:nth-of-type(2) {
      &:hover {
        left: -50%;
      }
    }
  }
} */

@media (max-width: 991px) {
  .socials {
    /* display: none; */
    /* REMOVE FROM MOBILE HEADER*/
    position: absolute;
    left: 0;
    top: 140px;

    & a[href*="bNagish"] {
      display: none;
    }

    & .plus {
      display: flex;
      align-items: center;

      background-color: #fff;
      border-radius: 0 100vw 100vw 0;

      width: 50px;
      height: 50px;
      padding: 3px;
    }

    & .plus i {
      display: grid;
      place-content: center;
      height: 40px;
      width: 40px;
      border-radius: 100vw;
      background-color: var(--prime4);
      color: #fff;
      font-size: 1.3rem;
      transition: transform 0.3s ease;
    }

    &.open .plus i {
      transform: rotate(45deg);
    }

    & ul {
      top: 49px;
      padding: 1rem;
      transform: none;
      left: -300px;
      transition: left 0.5s ease;

      & li {
        left: 0;
        box-shadow: none;
        width: 220px;

        &:hover {
          left: 0;
        }
      }
    }

    &.open ul {
      background-color: var(--prime4);
      left: 0;
      box-shadow: 0px -4px 16px #000;
      border-radius: 0 10px 10px 0;
    }
  }
}

.header .menu-btn {
  right: 0;
  width: 100px;
  border-radius: 20px 0 0 20px;
  padding: 16px 10px 10px;
  background-color: #cee6b2;

  position: fixed;
  z-index: 999;

  & .block {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.1rem;
    color: color-mix(in srgb, var(--prime1), black 20%);

    & i {
      color: #74860d;
      font-size: calc(0.75vw + 16px);
    }
  }
}

@media (max-width:1199px) {
  .header .menu-btn {
    z-index: -1;
    visibility: hidden;
    display: none;
  }
}

@media (max-width:991px) {
  .header .btns {
    display: none;
  }
}

.hpmenu {
  position: absolute;
  width: 100px;
  height: calc(100% - 5rem);
  top: 0;
  right: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.2s ease;

  display: flex;
  padding-bottom: 5rem;


  &.open .srv-list {
    right: 0;
  }

  &.open {
    background-color: #fff;
    position: fixed;
    z-index: 89;
    height: calc(100vh - 5rem);
  }

}

.srv-list {
  position: relative;
  right: -250px;
  margin-top: auto;
  transition: all 0.42s ease;
}

.srv-list ul {
  position: relative;
  padding: 0px;
  list-style-type: none;

  & li {
    padding: 1rem 0.5rem;
    position: relative;

    &::after {
      content: "";
      position: absolute;
      bottom: 0rem;
      right: 1rem;
      height: 1px;
      width: 40%;
      background-color: rgb(from var(--prime2) r g b / 0.25);
    }

    &:last-of-type::after {
      content: none;
    }
  }

  & li a {
    gap: 0.5rem;
    align-items: center;
    color: var(--prime2);
    display: flex;

    &:hover img {
      transform: scale(1.21);
    }
  }

  & img {
    transition: 0.2s;
    width: 35px;
  }
}


@media (min-width:1350px) {
  body:has(.hpmenu.open) {
    width: calc(97vw - 140px);
    padding-right: 120px;

    & .frame {
      width: calc(94vw - 140px);
    }
  }
}

@media (min-width:1200px) and (max-width:1349px) {
  body:has(.hpmenu.open) {
    padding-right: 100px;

    & .frame {
      width: calc(92vw - 140px);
    }
  }
}



@media (min-width: 1200px) {
  .header nav > ul {
    margin: 0px auto;
    text-align: center;
    position: relative;
    padding-right: 5px;
  }

  .header nav li:hover > ul {
    display: block;
  }

  .header nav > ul > li {
    display: inline-block;
    position: relative;
    padding: 0rem 1rem;
  }

  .header nav > ul > li > span > a {
    display: block;
    padding: 0.5rem 0px;
    font-size: 1.3rem;
    color: rgb(255, 255, 255);
    position: relative;

    &:hover {
      text-decoration: none;
      color: var(--prime5);

      &::before {
        content: "";
        position: absolute;
        width: 0px;
        height: 0px;
        border-right: 6px solid transparent;
        border-left: 6px solid transparent;
        border-image: initial;
        border-top: 0px;
        border-bottom: 6px solid var(--prime5);
        bottom: -3px;
        right: 50%;
        transform: translateX(50%);
        filter: drop-shadow(rgba(60, 189, 4, 0.2) 0px -17px 10px);
      }

      &::after {
        content: "";
        position: absolute;
        bottom: -5px;
        right: 0px;
        width: 100%;
        height: 2px;
        background-color: var(--prime5);
      }
    }
  }

  .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 {}

  .header nav > ul > li > ul {
    display: none;
    text-align: right;
    position: absolute;
    top: 100%;
    right: -5px;
    z-index: 9999;
    width: 620px;
    background: rgb(255, 255, 255);
    color: rgb(0, 0, 0);
    padding: 1rem 1.25rem;
    box-shadow: rgba(55, 49, 52, 0.3) 0px 10px 20px;
    backface-visibility: hidden;
    transform: translateZ(0px);
    -webkit-font-smoothing: subpixel-antialiased;
    margin-top: 0px;
    border-radius: 10px;
    column-count: 2;

    & .animate-menu {
      display: none;
    }
  }

  .header nav > ul > li > ul > li > span > a {
    font-size: 1.24rem;
    display: block;
    font-weight: 400;
    color: var(--text);
    position: relative;
  }

  .header nav > ul > li > ul > li::after {
    content: "";
    position: absolute;
    bottom: 0px;
    right: 0px;
    width: 50px;
    height: 1px;
    background: rgb(from var(--prime5) r g b / 0.95);
  }

  .header nav li > ul::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    inset: 0px;
    margin: auto;
    padding: 35px 55px 10px;
    border: 2px solid var(--prime5);
    border-radius: 10px;
  }

  .header nav > ul > li:not(:last-child)::after {
    content: "";
    position: absolute;
    margin: 0px;
    width: 5px;
    height: 5px;
    background: var(--prime5);
    left: -2px;
    border-radius: 50px;
    top: 50%;
    transform: translateY(-50%);
  }

  .header nav > ul > li > ul > li {
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    position: relative;
  }

  .header nav > ul > li > ul > li > span > a {
    font-size: 1.1rem;
    line-height: 1;
  }

  .header nav > ul > li > ul > li > span > a > em.arrow {
    content: "";
    font-family: FontAwesome;
    font-style: normal;
  }

  .header nav > ul > li > ul > li > span > a > em.arrow::before {
    content: "";
    content: none;
  }
}

@media (max-width: 1199px) {
  .header .navigation {
    display: none;
  }
}

.header {
  background: var(--header);
  color: rgb(255, 255, 255);
  height: 60px;
  position: absolute;
  top: 0px;
  right: 0px;
  width: 100%;
  z-index: 99;
  display: flex;
  justify-content: space-between;
  padding-left: 5rem;
  box-shadow:
    rgba(0, 0, 0, 0.25) 0px 16px 16px inset,
    rgba(34, 34, 34, 0.25) 0px 12px 18px inset;
  transition: 0.5s;
}

.header .logo {
  position: absolute;
  display: block;
  z-index: 3;
}

.header .logo img {
  display: block;
  height: 96px;
}

.header .wrap {
  position: relative;
  width: 150px;
  display: flex;
  justify-content: center;

  &::after {
    content: "";
    position: absolute;
    top: -3px;
    width: 210px;
    height: 110px;
    background-image: url("./images/logo-shadow.png?v=1");
    background-size: contain;
    background-position: center bottom;
    background-repeat: no-repeat;
    z-index: -1;
  }
}

.header-side {
  position: absolute;
  top: 30px;
  left: 3.9rem;
}

.header a.icon-btn {
  float: right;
  width: 40px;
  height: 40px;
  background: rgb(13, 34, 124);
  color: rgb(255, 255, 255);
  border-radius: 50%;
  margin-left: 0.5rem;
}

.header a.icon-btn > span {
  position: relative;
  width: 100%;
  height: 100%;
  display: block;
}

.header a.icon-btn em {
  position: absolute;
  top: 50%;
  left: 50%;
  margin-right: -50%;
  transform: translate(-50%, -50%);
  font-size: 18px;
}


@media (max-width: 991px) {
  .header-side {
    display: none;
  }
}

.header-search {
  position: fixed;
  top: 0px;
  right: 0px;
  z-index: 999999;
  width: 100%;
  background: rgb(255, 255, 255);
  height: 100px;
  border-bottom: 2px solid var(--prime6);
  box-shadow: rgba(0, 0, 0, 0.5) 0px 0px 20px;
  display: none;
}

.header-search .content {
  position: relative;
  height: 100%;
}

.header-search input {
  border: 0px;
  background: rgb(255, 255, 255);
  width: 100%;
  font-size: 1.5em;
  padding: 30px;
  height: 100%;
  outline: none;
}

.header-search button {
  position: absolute;
  top: 0px;
  left: 0px;
  height: 100%;
  width: 100px;
  background: none;
  border: 0px;
  cursor: pointer;
}

.header-search button.submit {
  left: 101px;
  font-size: 30px;
  border-left: 1px solid rgb(221, 221, 221);
  border-right: 1px solid rgb(221, 221, 221);
}

.header-search button.submit:hover {
  color: var(--header);
}

@media (max-width: 991px) {
  .header-search input {
    font-size: 1.2rem;
    padding: 0.5rem 1rem;
  }

  .header-search button {
    width: 50px;
    padding: 0.5rem 1rem;
  }

  .header-search button.submit {
    left: 51px;
    font-size: 18px;
  }
}

a.toggle-nav {
  display: none;
}

@media (max-width: 1199px) {
  a.toggle-nav {
    position: absolute;
    top: 9px;
    right: 40px;
    width: 40px;
    height: 40px;
    background: transparent;
    color: rgb(255, 255, 255);
    display: block;
    padding: 0.6rem;
    text-align: center;
    border-radius: 50%;
  }

  a.toggle-nav em {
    font-size: 18px;
  }
}

.footer {
  padding: 1.5rem 0px;
}

.footer p {
  margin: 0px;
}

.footer-section {
  display: flex;
  flex-wrap: wrap;
  margin-inline: auto;
  position: relative;
  bottom: 0px;
  z-index: 1;
  width: 100%;
  justify-content: center;
  right: 0px;

  & i {
    font-size: 4px;
    color: var(--prime2);
    display: inline-block;
    position: absolute;
    left: 0;
  }

  & a {
    position: relative;
    padding-inline: 1rem;
    display: flex;
    align-items: center;
    color: var(--text);

    &:last-of-type {
      margin-left: 0.7rem;
    }

    &:hover {
      font-weight: 700;
      text-decoration: none;
    }
  }

  & a[href*="http"] {
    padding-inline: 0.25rem;
    display: inline;
  }
}

.breadcrumbs ul {
  list-style: none;
  margin: 0px;
  padding: 0px;
}

.breadcrumbs ul > li {
  display: inline-block;
}

/** core.css oerwrite **/
.breadcrumbs ul > li a:not([href]):not([class]) {
  color: #fff;
}

.breadcrumbs ul > li::after {
  content: "//";
  font-weight: 500;
  padding: 0px 5px;
  display: inline-block;
  color: var(--prime4);
  font-size: 12px;
  letter-spacing: 2px;
}

.breadcrumbs ul > li:last-child::after {
  content: "";
  padding: 0px;
}

.bNagish-toggle {
  box-shadow: none;
  bottom: auto;
  width: 40px;
  height: 40px;
  background: #fff;
  color: var(--text);
  position: absolute;

  display: none;
}

.bNagish-toggle em {
  font-size: 22px;
}

.bNagish-toggle:hover .text,
.bNagish-toggle:focus .text {
  padding: 3px;
  border-radius: 30px;
}

@media (max-width: 991px) {
  .bNagish-toggle {
    position: absolute;
    display: block;
    top: 0px;
    left: 15px;
  }
}

.skip-ad {
  position: fixed;
  top: 0px;
  right: 0px;
  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: 0px auto;
  padding: 15px;
}

.skip-ad .skip-ad-content {
  position: relative;
}

.skip-ad .skip-ad-content .msg {
  background: rgb(255, 255, 255);
  padding: 30px;
}

.skip-ad img {
  max-width: 100%;
  display: block;
  margin: 0px auto;
  border-radius: 3rem;
}

.skip-ad .skip-ad-close {
  position: absolute;
  top: -25px;
  left: -30px;
  width: 100%;
  text-align: left;
  color: rgb(0, 0, 0);
}

.skip-ad #close-skip-ad {
  display: inline-block;
  padding: 10px 20px;
  border-radius: 3rem;
  background: rgb(255, 255, 255);
  color: rgb(0, 0, 0);
  border: 2px solid rgb(0, 0, 0);
}

.skip-ad #close-skip-ad:focus,
.skip-ad #close-skip-ad:hover {
  background: rgb(0, 0, 0);
  color: rgb(255, 255, 255);
  border: 2px solid rgb(255, 255, 255);
}


.mobile-navigation {
  position: fixed;
  top: 2rem;
  right: -300px;
  width: 300px;
  height: 100%;
  z-index: 90;
  transition: 0.5s;
  visibility: hidden;
  background: var(--web-mobile-nav-bg);
  border-right: 2px solid rgb(255, 255, 255);
  backdrop-filter: blur(6px);

  & .content {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    overflow: auto;
    position: relative;
  }

  & .head {
    width: 100%;
    text-align: left;
    margin-top: -1rem;
    visibility: hidden;
  }

  & .head .button {
    padding: 10px 15px;
    background: rgb(51, 51, 51);
    color: rgb(255, 255, 255);
    border: 0px;
    font-size: 20px;
    margin: 1rem;
  }

  & nav {
    margin: 1rem;
    background: transparent;
  }

  & nav a {
    font-weight: 500;
    color: var(--header);
    font-size: 1.25rem;
  }

  & nav a.on,
  & nav li.on > span > a {
    font-weight: bold;
  }

  & nav ul {
    list-style: none;
    padding: 0px;
    margin: 0px;
  }

  & nav button {
    display: none;
  }

  & nav ul ul {
    display: none;
  }

  & nav li > span {
    display: block;
    position: relative;
  }

  & nav ul ul {
    background: rgba(0, 0, 0, 0.02);
  }

  & nav button {
    display: block;
    position: absolute;
    top: 0px;
    right: 0px;
    height: 100%;
  }

  & nav a {
    display: block;
    padding: 15px;
    margin-right: 48px;
  }

  & nav .toggle-sub-menu {
    display: block;
    position: absolute;
    top: 0px;
    right: 0px;
    width: 48px;
    overflow: hidden;
    padding: 0px 15px;
    border: 0px;
    background: transparent;
    color: inherit;
    font-family: FontAwesome;
    font-style: normal;
  }

  & .toggle-sub-menu::after {
    content: "";
    color: var(--header);
    font-size: 70%;
  }

  & .toggle-sub-menu::after {
    content: "";
  }

  & .toggle-sub-menu.opened::after {
    content: "";
  }

  & .toggle-sub-menu.no-sub-menu::after {
    content: "";
    font-size: 20%;
    color: var(--header);
  }

  & .toggle-sub-menu.external-link::after {
    content: "";
  }
}

.mobile-navigation.open {
  right: 0px;
  visibility: visible;
}

.mobile-navigation-search {
  position: relative;
  margin: 1rem;
}

.mobile-navigation-search input {
  display: block;
  width: 100%;
  padding: 0.65rem 1rem;
  background: rgb(from var(--header) r g b / 0.6);
  border: 0px;
  border-radius: 100vw;
  color: rgb(255, 255, 255);
}

.mobile-navigation-search input::placeholder {
  color: rgb(255, 255, 255);
}

.mobile-navigation-search input:focus,
.mobile-navigation-search input:focus-within {
  border: 2px solid var(--prime1);
  outline: none;
}

.mobile-navigation-search button {
  display: block;
  position: absolute;
  top: 0px;
  left: 0px;
  height: 100%;
  background: none;
  border: 0px;
  padding: 5px 10px;
  color: rgb(255, 255, 255);
  font-size: 1.4rem;
}

.mobile-navigation .content .head .button {
  background: transparent;
  color: rgb(43, 43, 43);
}

.srv-list.mobile-social {
  right: auto;
}

.mobile-social {
  display: flex;
  flex-wrap: wrap;
  padding: 1rem 1rem 2rem;
  gap: 15px;
  margin-top: auto;

  & ul {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
  }

  & ul li {
    padding: 0.25rem 0.5rem;
    flex: 1 0 50%;

    &::after {
      width: 80%;
    }
  }

  & li:nth-of-type(2n + 1):not(:last-child) {
    &::before {
      content: "";
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      left: 0px;
      height: 50%;
      width: 1px;
      background-color: rgb(from var(--prime2) r g b / 0.25);
    }
  }

  & li a {
    position: relative;
    justify-content: center;
  }

  & li:nth-of-type(1) a::after,
  & li:nth-of-type(2) a::after {
    content: "";
    position: absolute;
    top: -7px;
    right: 0px;
    height: 1px;
    width: 100%;
    background-color: rgb(from var(--prime2) r g b / 0.25);
  }
}

.mobile-social > a {
  flex-shrink: 0;
  flex-grow: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  color: rgb(255, 255, 255);
  font-size: 24px;
}

.page-header {
  height: 500px;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  position: relative;
  z-index: 1;

  display: flex;
  align-items: flex-end;

  & .overlay {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom,
        rgb(from var(--prime1) r g b / 0.65) 0%,
        transparent 100%);
  }

  & .page-strip {
    position: relative;
    width: 100%;

    &::after {
      content: '';
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(to top, oklch(0.32 0.16 322.27 / 0.9) 5%, rgb(from var(--prime7) r g b / 0.9) 72%);
    }
  }
}

@media (max-width: 991px) {
  .page-header {
    height: 360px;
  }

  body {
    margin-top: 0;
    padding-top: 0;
    flex-direction: column;
  }
}

.page-content {
  background: rgb(255, 255, 255);
  margin-bottom: 3rem;
}

@media (min-width: 992px) {
  div[class^="root-page-"] {
    margin-top: 1rem;
  }

  .page-content {
    margin-top: 2rem;
    box-shadow: 0;
  }
}

@media (max-width: 991px) {
  .page-content {
    margin: 0px -15px;
  }
}

.page-content-head {
  background: transparent;
  color: var(--text);
  padding: 1.5rem 18% 1.5rem 1rem;
  position: relative;
  z-index: 1;

  &::after {
    content: "";
    position: absolute;
    right: -0.5rem;
    bottom: -1.2rem;
    background-image: url(./images/leaf-right.png);
    background-position: bottom center;
    background-repeat: no-repeat;
    background-size: contain;
    transform: rotate(-15deg);
    width: 20vw;
    height: 20vw;
    min-height: 125px;
    min-width: 125px;
    filter: drop-shadow(12px 11px 5px rgba(0, 0, 0, 0.3));
    -webkit-filter: drop-shadow(12px 11px 5px rgba(0, 0, 0, 0.65));
  }
}

@media (max-width: 991px) {
  .page-content-head {
    padding: 1rem;

    &::after {
      content: none;
    }
  }
}

.page-content-head h1 {
  margin: 0;
  font-weight: 500;
  line-height: 1;
  color: #fff;
  font-size: calc(1.7vw + 16px);
}

.page-content-head a {
  color: #fff;
}

.page-content-head button {
  display: none;
}

@media (max-width: 991px) {
  .page-content-head button {
    display: block;
    background: none;
    border: 0px;
    padding: 0px;
    position: absolute;
    left: 15px;
    bottom: 1rem;
    color: rgb(255, 255, 255);
    font-size: 2rem;
  }

  .page-content-head button em::before {
    content: "";
  }

  .page-content-head button.opened em::before {
    content: "";
  }
}

.page-content-body {
  padding: 1.5rem;
  min-height: 20rem;
}

@media (max-width: 991px) {
  .page-content-body {
    padding: 1rem;
  }
}

.page-content-nav {
  display: none;
}

@media (max-width: 991px) {
  .page-content-nav {
    display: block;
    margin: 2rem -15px;
    background-color: rgb(255, 255, 255);
  }
}

.page-content-nav ul {
  list-style: none;
  padding: 0px;
  margin: 0px;
}

.page-content-nav ul > li {
  border-bottom: 1px solid rgb(221, 221, 221);
}

.page-content-nav ul > li a {
  display: block;
}

.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;
}

.sub-pages-nav li.animate-menu {
  display: none;
}

.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-fill, minmax(min(100%, 365px), 1fr));
  max-width: 100%;
}




.sub-pages-nav ul > li {
  position: relative;
  padding: 0.5rem;

  /* @media (min-width:992px) {
    max-width: 540px;
  } */
}


.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: var(--prime3);
}

.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: var(--prime5);
}

.sub-pages-nav a {
  height: inherit;
  display: block;
  color: var(--text);
  font-size: 1.4rem;
  border: none;
  padding: 2px;
  background-color: #ffffff;
  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;
}

/* END OF GRID */

.sub-pages-nav.with-icons a {
  display: block;
  background: rgb(255, 255, 255);
  border: 1px solid rgb(3, 114, 172);
  color: rgb(0, 86, 179);
  padding: 1rem;
  text-align: center;
  font-size: 1.2rem;
  line-height: 1.1rem;
  height: 160px;
  position: relative;
  box-shadow: rgba(0, 0, 0, 0.13) 0px 0px 26px;
}

.sub-pages-nav.with-icons a:hover {
  transform: scale(1.1);
}

.sub-pages-nav.outside a {
  background: rgb(255, 255, 255);
  box-shadow: rgba(0, 0, 0, 0.1) 0px 0px 30px;
}

.sub-pages-nav .arrow {
  font-family: FontAwesome;
  font-style: normal;
  color: rgb(101, 113, 119);
}

.sub-pages-nav .arrow::before {
  content: "";
}

.sub-pages-nav.with-icons a .icon {
  height: 90px;
  margin-bottom: 0.5rem;
  display: block;
  position: relative;
}

.sub-pages-nav.with-icons a .icon img {
  max-width: 100%;
  max-height: 90px;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-right: -50%;
  transform: translate(-50%, -50%);
}

/** pics **/
.sub-pages-nav.with-pics {
  margin-top: 1rem;
  padding-inline: 1rem;

  & ul {
    margin-top: 5rem;
    padding: 0;
    list-style-type: none;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(290px, 100%), 1fr));
    gap: 1.5rem 1.4rem;
  }

  & li {
    width: auto;

  }

  & li a {
    border: none;
    background-color: transparent;
    display: flex;
    flex-direction: column;
    box-shadow: none;
    align-items: center;
  }

  & img {
    aspect-ratio: 3.4 / 2;
    margin-bottom: 10px;
    object-fit: cover;
    object-position: center;
    width: 100%;
  }

  & span {
    width: 100%;
    color: var(--text);
    text-align: center;
    font-weight: 500;
    padding: 0;
  }
}

.toc-container {
  border: 1px solid rgb(221, 221, 221);
  background: rgb(241, 241, 241);
  display: inline-block;
  padding: 0.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: 1rem 0px 0px;
}

.rich-content h2,
.rich-content h3,
.rich-content h4,
.rich-content h5,
.rich-content h6 {
  margin-bottom: 1rem;
  font-weight: 500;
}

.rich-content h2 {
  font-size: calc(1vw + 16px);
  color: rgb(51, 51, 51);
  line-height: 1;
  position: relative;
  margin-bottom: 3rem;

  &::after {
    content: "";
    position: relative;
    display: block;
    bottom: -1rem;
    right: 0;
    background-color: var(--prime3);
    height: 3px;
    width: 120px;
    border-radius: 3px;
  }
}

.rich-content h3 {
  color: rgb(51, 51, 51);
}

.rich-content h4 {
  color: rgb(51, 51, 51);
}

.rich-content h5 {
  color: rgb(51, 51, 51);
}

.rich-content h6 {
  color: rgb(51, 51, 51);
}

.rich-content .contact-man {
  display: block;
  color: inherit;
  border-bottom: 3px solid var(--prime3);
  background: #f3ffe6;
  padding: 1rem;
  margin-bottom: 0.5rem;
}

.rich-content .contact-man .contact-name {
  font-size: 1.5rem;
  font-weight: bold;
}

@media print {
  .page-content {
    margin: 0px !important;
    padding: 0px !important;
    border: 0px !important;
  }

  .header,
  .blocks-skip,
  #bNagish,
  .mobile-navigation-container,
  .page-header,
  .social-share,
  .footer,
  .skip {
    display: none;
  }
}

.card {}

.card-header {
  background: linear-gradient(to left, var(--prime8), var(--prime2));
  color: rgb(255, 255, 255);
}

.card-header h2 {
  color: inherit;
  margin: 0px;
  font-size: 1.3rem;
}

.card-body {
  background: #fff !important;
}

.form-category-group {
  background: #fff;
  border-right: 3px solid var(--prime2);
  padding: 0.75rem;
  margin-bottom: 1.5rem;
}

.form-category-group .form-category-group {
  background: rgb(255, 255, 255);
}

.form-category-group a {
  color: inherit;
}

.form-category-group .tofes-link {
  display: inline-block;
  padding: 0.1rem 0.6rem;
  border-radius: 2rem;
  border: 1px solid rgb(221, 221, 221);
  background: rgb(255, 255, 255);
  margin-left: 0.5rem;
  margin-bottom: 0.8rem;
}

.page-event-promo {
  display: block;
  padding: 1rem;
  color: rgb(0, 0, 0);
  margin: 15px 0px;
  background: rgb(241, 241, 241);
  border-bottom: 3px solid rgb(216, 216, 216);
  box-shadow: rgba(0, 0, 0, 0.05) 0px 0px 30px;
}

.page-event-promo:hover,
.page-event-promo:focus {
  text-decoration: none;
  color: rgb(255, 255, 255);
  transform: scale(1.1);
  background: rgb(12, 151, 255);
  border-bottom: 3px solid rgb(45, 85, 170);
}

.page-event-promo h3 {
  height: 4.5rem;
  font-size: 1.2rem;
  color: rgb(45, 85, 170);
  overflow: hidden;
}

.page-event-promo:hover h3,
.page-event-promo:focus h3 {
  color: rgb(255, 255, 255);
}

.page-event-promo .date {
  background: rgb(25, 156, 255);
  color: rgb(255, 255, 255);
  padding: 0px 5px;
  border-radius: 2rem;
}

.page-event-promo:hover .date,
.page-event-promo:focus .date {
  color: rgb(25, 156, 255);
  background: rgb(255, 255, 255);
}

.page-events .more {
  text-align: left;
}

.page-phonebook-category {
  margin: 15px 0px;
  transition: 0.5s;
  border: 1px solid rgb(226, 230, 239);
  border-radius: 20px;
}

.page-phonebook-category-title h3 {
  color: rgb(3, 114, 172);
  background: rgb(255, 255, 255);
  margin: 0px;
  padding: 0.5rem 1rem;
  font-size: 1.2rem;
  transition: 0.5s;
  cursor: pointer;
}

.page-phonebook-category-title h3::before {
  content: "";
  font-family: FontAwesome;
  padding-left: 0.5rem;
}

.page-phonebook-category.opened .page-phonebook-category-title h3::before {
  content: "";
  font-family: FontAwesome;
  padding-left: 0.5rem;
}

.page-phonebook-category-title h3:hover,
.page-phonebook-category.opened .page-phonebook-category-title h3 {
  background-color: var(--prime2);
  color: rgb(255, 255, 255);
}

.page-phonebook-category-body {
  display: none;
  background-color: rgb(255, 255, 255);
  border: 1px solid var(--prime2);
}

.page-phonebook-category.opened .page-phonebook-category-body {
  display: block;
  padding: 1rem;
}

.page-phonebook .phonebook h2 {
  border-bottom: 1px solid rgb(221, 221, 221);
  color: rgb(3, 114, 172);
  padding: 10px 0px;
  font-size: 1.2em;
  margin: 0px;
}

.page-phonebook .phonebook.active > h2 {
  padding: 10px;

  &::after {
    content: none;
  }
}

.page-phonebook .phonebook h2 a {
  color: inherit;
}

.page-phonebook .phonebook.active {
  margin-bottom: 15px;
  border: 1px solid var(--header);
  box-shadow: rgba(0, 0, 0, 0.1) 3px 3px 10px;
}

.page-phonebook .phonebook.active > h2 {
  background: var(--header);
  color: rgb(255, 255, 255);
}

.page-phonebook .phonebook > h2 > a > em::before {
  content: "";
}

.page-phonebook .phonebook.active > h2 > a > em::before {
  content: "";
}

.page-phonebook .phonebook .info {
  background: rgb(241, 241, 241);
  padding: 15px;
}

.page-phonebook .phonebook .info:focus {
  outline: 0px;
}

.page-phonebook .phonebook .info p {
  margin: 0px 0px 20px;
}

.page-phonebook .member {
  border-bottom: 1px solid rgb(221, 221, 221);
  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(--header);
}

.page-phonebook .mobile .fa-stack {
  color: var(--header);
}

.page-phonebook .email .fa-stack {
  color: var(--header);
}

.page-phonebook .fax .fa-stack {
  color: var(--header);
}

.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;
}

.just-mobile {
  display: none;
}

@media (max-width: 1199px) {
  .header {
    width: 100%;
    justify-content: flex-end;
    border-top-right-radius: 0px;
    border-top-left-radius: 0px;
  }

  .frame {
    width: 100%;
    border-radius: 0;
  }
}

@media (max-width: 991px) {
  a.toggle-nav {
    right: 10px;

    .offset {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      right: 40px;
      font-weight: 500;
    }
  }

  body {
    padding-left: 0;
  }

  .header {
    height: 50px;
    background: #fff;
    box-shadow: none;
  }

  .strip {
    display: flex;
    align-items: center;
    color: #fff;
    position: absolute;
    bottom: -2rem;
    width: 100%;
    z-index: -1;
    height: 2rem;
    right: 0;
    background: var(--header);

    & img {
      color: var(--prime5);
      width: 25px;
      margin-inline: 10px;
      filter: sepia(1) saturate(20) hue-rotate(0deg);
    }
  }

  a.toggle-nav {
    color: var(--header);
  }

  .header .logo {
    top: 10px;
  }

  .header .wrap {
    top: 40px;
    width: 50px;

    &::after {
      width: 112px;
      height: 79px;
    }
  }

  .header .logo img {
    height: 63px;
  }

  .footer-section {
    padding-inline: 1rem;
    position: relative;

    & .d-flex {
      flex-wrap: wrap;
      text-align: center;
    }

    & span {
      display: flex;
    }
  }

  .srv-mobile {
    padding-inline: 1rem;
    display: block;
    width: 100%;
    height: calc(100vh - 100px);
    position: absolute;
    z-index: 90;
    top: 97px;
    background-color: rgb(from var(--header) r g b / 0.9);

    display: none;

    &.is-open {
      display: block;
    }

    & ul {
      width: 90%;
      margin: auto;
      overflow-y: auto;
      padding: 5rem 2rem 1rem;
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 1.5rem;
      height: 90%;
      overflow-y: auto;
    }

    & li {
      list-style: none;
    }

    & a {
      font-size: 1.4rem;
      display: flex;
      flex-direction: column;
      align-items: center;
      color: #fff;
      font-weight: 400;
    }

    & .icon {
      padding-bottom: 10px;
    }

    & img {
      width: 80px;
    }

    & .fin {
      padding-top: 1rem;
      width: 75%;
      margin-inline: auto;
      border-top: 1px solid var(--prime5);
      color: #fff;
      display: flex;
      justify-content: center;

      & i {
        color: #fff;
        font-size: 1.5rem;
      }
    }
  }
}

@media (max-width: 320px) {
  .footer-section {
    & i {
      color: #fff;
    }
  }
}

/** NON-HEBREW **/
body.lang-en {
  direction: rtl;

  .pages-nav-title,
  .page-content-head,
  .pages-nav a {
    text-align: left;
  }

  .page-content-head {
    padding-left: 5rem;
  }

  .pages-nav-title::after {
    position: absolute;
    right: auto;
    left: 1rem;
  }
}