@charset "UTF-8";
* {
  font-family: "Assistant", sans-serif;
}
.ims-tools {
  z-index: 99;
}
:root {
  --web-primary-color: var(--prime1);
  --web-primary-hover-color: #00486e;
  --web-links-color: #0035ad;
  --web-links-hover-color: #005888;
  --web-mobile-nav-bg: #1d252ae0;
  --web-side-nav-title-bg: #0372ac;
  --web-side-nav-title-text: #fff;

  --prime1: #a0237f;
  --prime2: #24daba;
  --prime2a: #026d59;
  --eventsPrimaryColor: #ca6049 !important;
  --prime3: #439f5e;
  --prime4: #e8804b;
  --prime5: #dd224e;
  --prime6: #82bfe9;
  --prime7: #f7c03a;
  --prime1RGB: 160, 35, 127;
  --prime2RGB: 36, 218, 186;
  --radius: 13px;
  --text: #56565c;
  --text2: #1a183c;
  --text2RGB: 13, 66, 100;
  --aside: 255px;
  --blue: #030975;
  --green: #05ae40;
  --orange: #f95300;
  --red: #930000;
  --stone: #d89700;
  --min-height: 670px;
}
/* Bootstrap Override * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
a {
  color: var(--web-links-color);
  transition: 0.5s;
}

a:hover,
a:focus {
  color: var(--web-links-color);
}

figure {
  margin: 0;
}

.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: #fffafc;
}

.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;
}
/* .fa-external-link:before {
  content: none;
} */
.img-fluid {
  border-radius: var(--radius);
}
.btn.btn-primary {
  background-color: color-mix(in srgb, var(--prime2a) 80%, black);
  border-color: color-mix(in srgb, var(--prime2a) 80%, black);
  color: #fff;
  box-shadow: none !important;
  border-radius: 1rem;
  line-height: 1.1;
  font-size: calc(0.1vw + 16px);
  font-weight: 500;
  transition: all 0.42s ease;
}
.btn.btn-primary:hover,
.btn.btn-primary:focus,
.btn.btn-primary:active {
  background-color: color-mix(in srgb, var(--prime2a) 65%, black);
  border-color: color-mix(in srgb, var(--prime2a) 65%, black);
  box-shadow: none !important;
  transform: scale(1.01);
}
.btn.btn-outline-primary:hover,
.btn.btn-outline-primary:focus{
    color:#fff;
   background-color: color-mix(in srgb, var(--prime2a) 65%, black);
  border-color: color-mix(in srgb, var(--prime2a) 65%, black);
}
.btn.btn-outline-primary{
    color: color-mix(in srgb, var(--prime2a) 65%, black);
    border-color: color-mix(in srgb, var(--prime2a) 65%, black);
}
.header > nav {
  display: flex;
  align-items: center;
  height: 100%;
  z-index: 2;
}
@media (min-width: 1200px) {
  .header nav > ul {
    margin-right: 125px;
    position: relative;
    margin-bottom: 0;
  }

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

  .header nav > ul > li {
    display: inline-block;
    position: relative;
  }

  .header nav > ul > li > span > a {
    display: block;
    font-size: 1.25rem;
    position: relative;
    margin-inline-end: 1.5rem;
    padding: 0.5rem;
    border-bottom: 2px solid transparent;
    color: var(--text);
    font-weight: 400;
    font-style: normal;
    text-decoration: none;
  }
  .header nav > ul > li > span > a::before {
    transition: all 0.5s ease;
    content: "";
    width: 0;
    border-bottom: 2px solid var(--prime2);
    position: absolute;
    top: calc(100% + 3px);
    left: 0;
    right: 0;
    margin: auto;
  }
  .header nav > ul > li > span > a:after {
    position: absolute;
    content: "";
    padding: 0;
    width: 5px;
    height: 5px;
    background-color: var(--prime1);
    display: inline-block;
    margin-inline: 1.25rem;
    border-radius: 100vw;
    top: 50%;
  }

  .header nav > ul > li:first-child > span > a:after {
    background-color: var(--prime1);
  }
  .header nav > ul > li:nth-child(2) > span > a:after {
    background-color: var(--prime2);
  }
  .header nav > ul > li:nth-child(3) > span > a:after {
    background-color: var(--prime3);
  }
  .header nav > ul > li:nth-child(4) > span > a:after {
    background-color: var(--prime4);
  }
  .header nav > ul > li:nth-child(5) > span > a:after {
    background-color: var(--prime5);
  }
  .header nav > ul > li:nth-child(6) > span > a:after {
    background-color: var(--prime6);
  }
  .header nav > ul > li:last-child > span > a:after {
    content: none;
  }

  .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: 90%;
    right: -30px;
    z-index: 9999;
    width: 445px;
    background: #fff;
    color: #000;
    padding: 1rem 1.25rem;
    box-shadow: 0px 10px 20px rgba(55, 49, 52, 0.3);
    filter: drop-shadow(0px 3px 10px rgba(0, 0, 0, 0.313));
    backface-visibility: hidden;
    transform: translateZ(0);
    -webkit-font-smoothing: subpixel-antialiased;
    margin-top: 0;
    border-radius: 18px;
    column-count: 2;
    column-gap: 0.5rem;
  }
  .header nav > ul > li > ul::after {
    content: "";
    position: absolute;
    width: 0;
    height: 0;
    width: 0;
    height: 0;
    border: 10px solid transparent;
    border-top: 0;
    border-bottom: 10px solid #fff;
    top: -10px;
    right: 45px;
    z-index: 1;
  }
  .header nav > ul > li > ul > li {
    margin-bottom: 2rem;
  }
  .header nav > ul > li > ul > li > span > a {
    font-size: 1.1rem;
    display: block;
    width: 100%;
    color: var(--text);
    position: relative;
    text-decoration: none;
    line-height: 1.1;
  }
  .header nav > ul > li > ul > li > span > a::after {
    content: "";
    display: block;
    position: relative;
    bottom: -1rem;
    width: 50px;
    height: 1px;
    background-color: rgba(var(--prime1RGB), 0.4);
    right: 0;
  }
  .header nav ul li::marker {
    content: "";
  }
  .header nav > ul > li > ul > li > span > a > em.arrow {
    font-family: "FontAwesome";
    font-style: normal;
  }

  .header nav > ul > li > ul > li > span > a > em.arrow:before {
    content: "\f104";
    content: none;
  }
  .header nav > ul > li > ul > li > span > a:hover {
    color: var(--prime2a);
    font-weight: 700;
  }
}

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

/* Header */

.header {
  box-shadow:
    rgba(0, 0, 0, 0.25) 0px 54px 55px,
    rgba(0, 0, 0, 0.12) 0px -12px 30px,
    rgba(0, 0, 0, 0.12) 0px 4px 6px,
    rgba(0, 0, 0, 0.17) 0px 12px 13px,
    rgba(0, 0, 0, 0.09) 0px -3px 5px;
  background: #fff;
  color: #000;
  height: 100px;
  position: fixed;
  top: 40px;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  z-index: 99;
  border-radius: 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;

  -o-transition: 0.5s;
  -ms-transition: 0.5s;
  -moz-transition: 0.5s;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.header.offset {
  background: rgba(255, 255, 255, 1);
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
}

/* Logo */

.header .logo {
  position: absolute;
  top: 8px;
  right: 25px;
  display: block;
  z-index: 3;
}

.header .logo img {
  display: block;
  height: 80px;
}

/* Header Icons */
@media (min-width: 1200px) {
  .header-side {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    flex-basis: 20%;
    margin-right: auto;
    padding-left: 1rem;
  }
}
@media (max-width: 1199px) {
  .header-side {
    position: absolute;
    top: 30px;
    left: 75px;
  }
}

.header a.icon-btn {
  float: right;
  width: 35px;
  height: 35px;
  background: #0d227c;
  color: #fff;
  border-radius: 50%;
  margin: 0.25rem;
}

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

.header a.icon-btn.search {
  background: var(--prime2);
}
.header a.icon-btn.facebook {
  background: #2b6da4;
}
.header a.icon-btn.instagram {
  background: #b753ad;
}

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

/* Header Search */

.header-search {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 999999;
  width: 100%;
  background: #fff;
  height: 100px;
  border-bottom: 2px solid #1d99d9;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);

  display: none;
}

.header-search .content {
  position: relative;
  height: 100%;
}

.header-search input {
  border: 0;
  background: #fff;
  width: 100%;
  font-size: 1.5em;
  padding: 30px;
  height: 100%;
  outline: none;
}

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

.header-search button.submit {
  left: 101px;
  font-size: 30px;
  border-left: 1px solid #ddd;
  border-right: 1px solid #ddd;
}

.header-search button.submit:hover {
  color: #754c29;
}

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

/* Toggle Navigation Button */

a.toggle-nav {
  display: none;
}

@media (max-width: 1199px) {
  a.toggle-nav {
    position: absolute;
    top: 30px;
    left: 30px;
    width: 40px;
    height: 40px;
    background: var(--prime2);
    color: #fff;
    display: block;
    padding: 0.6rem;
    text-align: center;
    border-radius: 100vw;
  }

  a.toggle-nav em {
    font-size: 18px;
  }
}

/* Template * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
body {
  margin: 0;
  padding: 0;
  background: #fff;
  color: var(--text2);
}
.bNagish-toggle {
  display: none;
}

.events-filtering,
.categories-links {
  display: none;
}

.mobile-navigation .mobile-social {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding: 1rem;
  margin: 2px;
  gap: 10px;
  margin-top: auto;
}
.mobile-navigation .mobile-social > a {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  padding: 2px;
  border-radius: 50px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mobile-social > a em {
  color: #fff;
  font-size: 1.55rem;
}

/* Footer */

.footer {
  box-shadow:
    rgba(255, 255, 255, 0.1) 0px -1px 1px 0px inset,
    rgba(50, 50, 93, 0.25) 0px -50px 100px -20px,
    rgba(0, 0, 0, 0.3) 0px -30px 60px -30px;
  margin-top: 9rem;
  padding: 5rem 1.5rem 0.25rem;
  position: relative;
  background-color: #fff;

  @media (max-width: 991px) {
    margin-top: 8rem;
  }
}
.footer .flower {
  overflow: hidden;
  position: absolute;
  top: 0;
  right: 20%;
  width: 450px;
  height: 350px;
  background-image: url(./images/flower.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: 0 -39px;
  opacity: 0.32;
}
.footer::before {
  content: "";
  position: absolute;
  z-index: 1;
  left: 0;
  width: 20%;
  height: 50%;
  top: -50%;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 1) 30%,
    rgba(255, 255, 255, 0) 100%
  );
}
.footer::after {
  content: "";
  position: absolute;
  z-index: 0;
  right: 0;
  width: 20%;
  height: 50%;
  top: -50%;
  background: linear-gradient(
    267deg,
    rgba(255, 255, 255, 1) 30%,
    rgba(255, 255, 255, 0) 100%
  );
}
.footer > .container > .row {
  padding-bottom: 2.51rem;
}

.footer p,
.footer a,
.footer span {
  color: var(--text);
  font-weight: 400;
  position: relative;
}
.footer .fin {
  display: flex;
  justify-content: space-between;
  padding-block: 1rem;
  border-top: 1px solid #e3e3e3;
  font-size: calc(0.25vw + 10px);

  span:first-child a {
    position: relative;
    padding-left: 1rem;
  }

  span:first-child a:not(:last-child)::after {
    content: "";
    position: absolute;
    left: 6px;
    top: 8px;
    background-color: var(--prime1);
    border-radius: 100vw;
    height: 4px;
    width: 4px;
  }
}

.footer .addr {
  padding-top: 1.4rem;
  width: 100%;
  padding-bottom: 1rem;
  font-size: 1rem;
}
.footer .addr h2 {
  color: #595a5e;
  line-height: 1;
  margin-bottom: 0;
  width: 100%;
  font-size: calc(0.45vw + 16px);
  font-weight: 700;
  position: relative;
}

.footer .addr span {
  display: flex;
  flex-wrap: wrap;
  gap: 0 1rem;
  justify-content: space-between;
}
.footer .addr .lined {
  display: block;
  width: 100%;
  flex: 1 0 100%;
  border-bottom: 1px solid #ddd;
  padding-bottom: 0.5rem;
  margin-bottom: 0.5rem;
  line-height: 1;
}
.footer .addr span a:not(:first-child) {
  display: flex;
  align-items: center;
}
.footer .addr em {
  font-size: 1rem;
  color: #f7c03a;
  margin-left: 5px;
}
.footer .addr p {
  display: flex;
  align-items: center;
  margin-bottom: 0;
}

/* @media (max-width: 1300px) {
  .footer .addr span {
    flex-direction: column;
  }
} */
.footer-sections-grid {
  h2 {
    position: relative;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--prime1);
    margin-bottom: 2rem;
  }
  h2::after {
    content: "";
    position: absolute;
    bottom: -1rem;
    width: 30px;
    right: 0;
    height: 2px;
    border-radius: 4px;
    background-color: #f7c03a;
  }

  ul {
    padding-inline-start: 0rem;
    list-style: none;
    font-size: 1.25rem;
    color: var(--text);
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    height: 290px;
    gap: 0.5rem 30px;
    font-weight: 300;

    @media (max-width: 991px) {
      width: 100%;
      margin-inline: auto;
      height: 350px;
    }
  }
  li {
    flex: 0 0 auto;
    max-width: 190px;
    text-align: right;

    @media (max-width: 991px) {
      max-width: 44%;
    }
  }
  a {
    font-size: calc(0.45vw + 10px);

    @media (max-width: 991px) {
      font-size: calc(1vw + 13px);
    }

    @media (max-width: 767px) {
      font-size: calc(1.5vw + 13px);
    }
  }
}

.footer .heart {
  color: var(--prime5);
  font-size: 1rem;
  padding-inline: 2px;
}

.footer .fin {
  @media (max-width: 991px) {
    .d-flex {
      flex-direction: column;
    }
  }
}
.footer .wrap {
  width: min(100%, 415px);
  display: flex;
  flex-direction: column;
  & img {
    width: min(100%, 315px);
    mix-blend-mode: multiply;
    margin-right: -122px;
  }
  .ico {
    padding-top: 1rem;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    width: 100%;
    a {
      border-radius: 50px;
      width: 2.65rem;
      aspect-ratio: 1;
      background-size: cover;
      &:hover {
        text-decoration: none;
        transform: scale(1.02);
      }
      & > span {
        width: 100%;
        height: 100%;
        position: absolute;
        display: flex;
        justify-content: center;
        align-items: center;
        color: #fff;
        font-size: 1.75rem;
      }
    }
    em.fa-facebook-f {
      padding-top: 9px;
      font-size: 2.4rem;
    }
  }

  @media (max-width: 991px) {
    margin: auto;
  }
}
.footer em {
  font-style: normal;
}
.fico i {
  color: var(--prime1);
  font-size: calc(2vw + 16px);
}
.fico:hover {
  text-decoration: none;
  font-size: calc(1.5vw + 16px);
}

/* Breadcrumbs */
.breadcrumbs ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

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

.breadcrumbs ul > li:after {
  content: "\//";
  padding: 0 5px;
  display: inline-block;
  color: var(--prime2);
  font-weight: 500;
}

.breadcrumbs ul > li:last-child:after {
  content: "";
  padding: 0;
}

/* Skip Ads * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
.skip-ad {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
}

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

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

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

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

.skip-ad .skip-ad-close {
  position: absolute;
  top: -25px;
  left: -30px;
  width: 100%;
  text-align: left;
  color: #000;
}

.skip-ad #close-skip-ad {
  display: inline-block;
  padding: 10px 20px;
  border-radius: 3rem;
  background: #fff;
  color: #000;
  border: 2px solid #000;
}

.skip-ad #close-skip-ad:focus,
.skip-ad #close-skip-ad:hover {
  background: #000;
  color: #fff;
  border: 2px solid #fff;
}

/* Mobile Navigation  * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
.mobile-navigation {
  position: fixed;
  top: 0;
  left: -300px;
  width: 300px;
  height: 100%;
  z-index: 9999999;
  transition: 0.5s;
  -o-transition: 0.5s;
  -ms-transition: 0.5s;
  -moz-transition: 0.5s;
  -webkit-transition: 0.5s;
  visibility: hidden;
  box-shadow: 0 0 0 rgba(0, 0, 0, 0);

  background: #fff;
  border-right: 2px solid #fff;
  box-shadow: 0 0 50px rgba(0, 0, 0, 0.5);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  border-radius: 0 18px 18px 0;
}

.mobile-navigation.open {
  left: 0;
  visibility: visible;
  box-shadow: 0 0 50px rgba(0, 0, 0, 0.5);
}
@media (max-width: 500px) {
  .mobile-navigation-close {
    display: none;
  }
  .mobile-navigation {
    top: 180px;
    height: calc(100% - 200px);
  }
  .mobile-navigation.open {
    left: 50%;
    transform: translateX(-50%);
  }
}
.mobile-navigation .content {
  width: 100%;
  height: 100%;
  overflow: auto;
  position: relative;
  display: flex;
  flex-direction: column;
}

.mobile-navigation .content .head {
  width: 100%;
  text-align: left;
  margin-bottom: -1rem;
}

.mobile-navigation .content .head .button {
  padding: 10px 15px;
  background: #333;
  color: #fff;
  border: 0;
  font-size: 20px;
  margin: 1rem;
}

.mobile-navigation nav {
  margin: 1rem;
}

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

.mobile-navigation nav a {
  color: inherit;
}

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

.mobile-navigation nav button {
  display: none;
}

.mobile-navigation nav ul ul {
  display: none;
}

.mobile-navigation nav li {
  position: relative;
}

.mobile-navigation nav li > ul li::after {
  content: none;
}

.mobile-navigation nav li > span {
  display: block;
  position: relative;
}

.mobile-navigation nav ul ul {
  background: rgba(0, 0, 0, 0.02);
}

.mobile-navigation nav button {
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
}

.mobile-navigation nav a {
  display: block;
  padding: 15px;
  margin-right: 48px;
}

.mobile-navigation nav .toggle-sub-menu {
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  width: 48px;
  overflow: hidden;
  padding: 0 15px;
  background: none;
  border: 0;
  /* background: rgba(0, 0, 0, 0.02); */
  color: inherit;
  font-family: "FontAwesome";
  font-style: normal;
}

.mobile-navigation nav .toggle-sub-menu:after {
  content: "\f053";
  font-size: 65%;
}

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

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

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

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

.mobile-navigation .divider {
  padding-block: 1.5rem;
  display: flex;
  padding-right: 50px;
  gap: 1rem;
}
.mobile-navigation .divider span {
  width: 0.75rem;
  aspect-ratio: 1;
}

.mobile-navigation .divider span:first-child {
  background-color: var(--stone);
}

.mobile-navigation .divider span:nth-child(2) {
  background-color: var(--red);
}

.mobile-navigation .divider span:last-child {
  background-color: var(--green);
}

.mobile-navigation-search {
  position: relative;
  margin: 1rem;
  border-bottom: 1px solid #ddd;
}

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

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

.mobile-navigation .content .head .button {
  background: #fff;
  color: rgb(43, 43, 43);
}

@media (min-width:1200px) and (max-height:900px){
    
      :root {
    --aside: 5px;
  }
        .header nav > ul > li > span > a{
            margin-inline-end: 0.25rem;
            font-size:1.12rem;
        }
        .header nav > ul > li > span > a:after{
            margin-inline:0.65rem;
            height:4px;
            width:4px;
        }
        .header a.icon-btn{
            width:30px;
            height:30px;
        }
      aside{
          margin-right:1rem;
      }
      .list .icon {
        height: 90px;
        width: 90px;
    }
          aside .list {
              width: 227px;
              gap:1rem;
}
          .header > nav {
        padding-right: 5px;
    }

}

/* Page * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
/* Page Header */
.page-header {
  height: 580px;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  position: relative;
  z-index: 1;
  display: flex;

  @media (max-width: 991px) {
    height: 360px;
  }
}
.page-container {
  max-width: 82vw;
  margin: auto;
  position: relative;
  z-index: 9;

  @media (max-width: 1500px) {
    max-width: 100vw;
    margin-inline: 15px;
  }
}
.page-header .overlay {
  position: absolute;
  background-color: rgba(var(--prime1RGB), 0.15);
  z-index: 0;
  inset: 0;
  margin: auto;
  width: 100%;
  height: 100%;
  mix-blend-mode: multiply;
}
.page-wrapper {
  margin-top: 3rem;
}

.page-content {
  position: relative;
  background: var(--light);
  max-width: inherit;
  margin-bottom: 2rem;
}

.page-content-head {
  background: #a31f7d;
  background: linear-gradient(
    263deg,
    rgba(163, 31, 125, 1) 0%,
    rgba(99, 125, 155, 1) 60%,
    rgba(0, 217, 187, 1) 100%
  );

  color: #fff;
  padding: 2rem 1rem;
  position: relative;
  width: 100%;
  margin-top: auto;
  z-index: 1;
}

.page-content-head h1 {
  margin: 0;
  font-weight: 900;
  font-size: calc(3vw + 12px);
  line-height: 1;
}
.page-content-head a {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.8);
}

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

@media (max-width: 991px) {
  .page-content-head button {
    display: block;
    background: none;
    border: 0;
    padding: 0;
    position: absolute;
    left: 15px;
    bottom: 1rem;
    color: #fff;
    font-size: 2rem;
  }

  .page-content-head button em:before {
    content: "\f13a";
  }

  .page-content-head button.opened em:before {
    content: "\f139";
  }
}

.page-content-body {
  background: #fff;
  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 0;
    padding-inline: 15px;
    background-color: #fff;
  }
}

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

.page-content-nav ul > li {
  border-bottom: 1px solid #ddd;
}

.page-content-nav ul > li.on ul {
  background-color: rgba(var(--prime2RGB), 0.25);
  margin-right: 0;
}

.page-content-nav ul > li a {
  display: block;
}

/* Social Sharing Buttons */

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

/* InPage Navigation */

.sub-pages-nav.outside {
  margin-top: 1rem;
  margin-bottom: 2rem;
}

/* START OF GRID */
.sub-pages-nav ul {
  position: relative;
  list-style: none;
  padding: 0;
  margin: 0 -1rem;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  /* display: grid;
  grid-template-columns: repeat(3, 1fr); */
}
.sub-pages-nav ul::after {
  content: "";
  flex: 1 1 31%;
  max-width: 31%;
  min-width: 200px;
  padding: 0.5rem;
  visibility: hidden;
}

.sub-pages-nav ul > li {
  position: relative;
  padding: 0.5rem;
  flex: 1 1 31%;
  max-width: 31%;
  min-width: 200px;
  @media (max-width: 1580px) {
    flex: 1 1 45%;
    max-width: 45%;
  }
  @media (max-width: 1150px) {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.sub-pages-nav ul > li::after {
  content: "";
  position: absolute;
  right: 5px;
  height: calc(100% - 1rem);
  background: var(--prime1);
  top: 50%;
  transform: translateY(-50%);
  width: 5px;
  border-radius: 0;
}
.sub-pages-nav ul > li:nth-child(5n + 1):after {
  background: var(--prime1);
}
.sub-pages-nav ul > li:nth-child(5n + 2):after {
  background: var(--prime2);
}
.sub-pages-nav ul > li:nth-child(5n + 3):after {
  background: var(--prime5);
}
.sub-pages-nav ul > li:nth-child(5n + 4):after {
  background: var(--text);
}
.sub-pages-nav ul > li:nth-child(5n + 5):after {
  background: var(--prime3);
}
.sub-pages-nav a {
  display: block;
  color: inherit;
  font-size: 1.3rem;
  border: none;
  padding: 2px;
  background-color: #f2fdfb;
  border-radius: 0;
  padding: 1rem;
}
.sub-pages-nav li a {
  position: relative;
  display: flex;
}
.sub-pages-nav li a .fa-external-link {
  color: var(--text2);
  font-size: 0.8rem;
  margin-top: -5px;
  position: absolute;
  left: 0.5rem;
}
.sub-pages-nav li a:hover {
  border-color: #a0a0a0;
  box-shadow: 0 0 9px rgba(172, 172, 172, 0.2);
  .arrow {
    inset-inline-end: 9px;
    color: #a0a0a0;
  }
}
.sub-pages-nav a .icon {
  position: relative;
  border-radius: 0;
  padding: 0;
  width: 5px;
}
.sub-pages-nav a > span {
  display: table-cell;
  vertical-align: middle;
  padding: 0.75rem 0.75rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  width: 98%;

  @media (max-width: 387px) {
    white-space: normal;
    overflow: hidden;
    text-overflow: initial;
  }
}
@media (max-width: 991px) {
  .sub-pages-nav ul > li {
    width: 100%;
  }
}
/* Mode Table Of Contents */
.toc-container {
  border: 1px solid #ddd;
  background: #f1f1f1;
  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: 0;
  margin-top: 1rem;
}

/* InPage Style - Rich Content */
.rich-content h2,
.rich-content h3,
.rich-content h4,
.rich-content h5,
.rich-content h6 {
  margin-bottom: 1rem;
  font-weight: bold;
}

.rich-content h2 {
  color: var(--prime2a);
}

.rich-content h3 {
  color: var(--prime2a);
}

.rich-content h4 {
  color: var(--prime2a);
}

.rich-content h5 {
  color: var(--prime2a);
}

.rich-content h6 {
  color: var(--prime2a);
}

.rich-content .contact-man {
  position: relative;
  display: block;
  color: inherit;
  background: #f7fffe;
  padding: 1rem;
  border-radius: var(--radius);
  border-right: 4px solid var(--prime2);
  margin-bottom: 1rem;
  border: 1px solid var(--prime2);
  box-shadow: rgba(10, 160, 135, 0.25) 0px 5px 1px;
}

.rich-content .contact-man .contact-name {
  font-size: 1.5rem;
  font-weight: bold;
}
.contact-addr,
.contact-comment {
  display: block;
  width: 100%;
}
.contact-job ~ span {
  display: block;
  width: 100%;
}
/* Media Prints * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
/* Media Print */
@media print {
  .page-content {
    margin: 0 !important;
    padding: 0 !important;
    border: 0 !important;
  }

  .header,
  .blocks-skip,
  #bNagish,
  .mobile-navigation-container,
  .page-header,
  .social-share,
  .footer,
  .skip {
    display: none;
  }
}
/* Card * */
.card-header {
  background: var(--prime2a);
  color: #fff;
}

.card-header h2 {
  color: inherit;
  margin: 0;
  font-size: 1.3rem;
}

.card-body {
  background: #f5fffc;
}

/**/
/**/
.form-category-group {
  background: #f5fffc;
  border-right: 3px solid var(--prime2a);
  padding: 0.75rem;
  margin-bottom: 1.5rem;
}

.form-category-group .form-category-group {
  background: #fff;
}

.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 #ddd;
  background: #fff;
  margin-left: 0.5rem;
  margin-bottom: 0.8rem;
}

/**/
.page-event-promo {
  display: block;
  padding: 1rem;
  color: #000;
  margin: 15px 0;
  background: #f1f1f1;
  border-bottom: 3px solid #d8d8d8;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.05);
}

.page-event-promo:hover,
.page-event-promo:focus {
  text-decoration: none;
  color: #fff;
  transform: scale(1.1);
  background: var(--prime1);
  border-bottom: 3px solid var(--prime2);
}

.page-event-promo h3 {
  height: 4.5rem;
  font-size: 1.2rem;
  color: var(--prime2);
  overflow: hidden;
}

.page-event-promo:hover h3,
.page-event-promo:focus h3 {
  color: #fff;
}

.page-event-promo .date {
  background: var(--prime1);
  color: #fff;
  padding: 0 5px;
  border-radius: 2rem;
}

.page-event-promo:hover .date,
.page-event-promo:focus .date {
  color: var(--prime1);
  background: #fff;
}

.page-events .more {
  text-align: left;
}

/**/
/**/
.page-phonebook-category {
  margin: 15px 0;
  transition: 0.5s;
  border: 1px solid #e2e6ef;
  border-radius: var(--radius);
}

.page-phonebook-category-title h3 {
  color: var(--prime1);
  background: #fff;
  margin: 0;
  padding: 0.5rem 1rem;
  font-size: 1.2rem;
  transition: 0.5s;
  cursor: pointer;
  border-radius: 2px;
}

.page-phonebook-category-title h3:before {
  content: "\f196";
  font-family: "FontAwesome";
  padding-left: 0.5rem;
}

.page-phonebook-category.opened .page-phonebook-category-title h3:before {
  content: "\f147";
  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(--prime1);
  color: #fff;
}

.page-phonebook-category-body {
  display: none;
  background-color: #fff;
  border: 1px solid var(--prime1);
}

.page-phonebook-category.opened .page-phonebook-category-body {
  display: block;
  padding: 1rem;
}

.page-phonebook .phonebook h2 {
  border-bottom: 1px solid #ddd;
  color: var(--prime1);
  padding: 10px 0;
  font-size: 1.2em;
  margin: 0;
}

.page-phonebook .phonebook.active > h2 {
  padding: 10px;
}

.page-phonebook .phonebook h2 a {
  color: inherit;
}

.page-phonebook .phonebook.active {
  margin-bottom: 15px;
  border: 1px solid var(--prime1);
  box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.1);
  border-radius: 2px;
  overflow: hidden;
}

.page-phonebook .phonebook.active > h2 {
  background: var(--prime1);
  color: #fff;
}

.page-phonebook .phonebook > h2 > a > em:before {
  content: "\f137";
}

.page-phonebook .phonebook.active > h2 > a > em:before {
  content: "\f13a";
}
.page-phonebook .phonebook.active .img-fluid {
  width: 100px;
  height: 100px;
  object-fit: cover;
  object-position: top;
  border: 1px solid var(--prime1);
}
.page-phonebook .phonebook .info {
  background: #f1f1f1;
  padding: 15px;
}

.page-phonebook .phonebook .info:focus {
  outline: 0;
}

.page-phonebook .phonebook .info p {
  margin: 0 0 20px 0;
}

.page-phonebook .member {
  border-bottom: 1px solid #ddd;
  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(--prime1);
}

.page-phonebook .mobile .fa-stack {
  color: var(--prime2);
}

.page-phonebook .email .fa-stack {
  color: var(--prime7);
}

.page-phonebook .fax .fa-stack {
  color: var(--prime4);
}

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

.page-phonebook .contact-info a {
  color: inherit;
} /*# sourceMappingURL=template.css.map */

h2.timeline {
  text-align: center;
  padding: 10px 30px;
  width: fit-content;
  margin: auto;
  border-bottom: 2px solid var(--prime2);
  color: var(--text2);
}

.timeline-slick .slick-slide {
  margin-inline: 5px;
}
.timeline-slick img {
  max-width: 100%;
}
.timeline-slick .slick-slide > div {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  padding: 5px;
}

.timeline-slick .slick-slide::after {
  content: "";
  position: absolute;
  height: 1px;
  top: 1rem;
  width: 100%;
  background-color: #f7e7cc;
  inset: 0;
  margin: 71px 0 0 0;
  z-index: -1;
}
[class^="timeline-"] h3 {
  text-align: center;
  color: var(--text2);
  font-size: 1.2rem;
  height: 4.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.timeline-slick h3::after {
  content: "";
  position: absolute;
  height: 1rem;
  bottom: 1rem;
  width: 2px;
  background-color: var(--prime2);
  inset: 80px;
  margin: auto;
}

.timeline-slick h3::before {
  content: "";
  position: absolute;
  width: 12px;
  height: 12px;
  bottom: 1rem;
  background-color: var(--prime2);
  inset: 71px;
  margin: auto;
  border-radius: 50px;
}
.timeline-slick h3 + div {
  border: 2px solid var(--prime2);
  border-bottom: 0;
}
.timeline-slick p {
  text-align: right;
  margin-bottom: 0;
  height: 62px;
  height: 80px;
  overflow: hidden;
  border: 2px solid var(--prime2);
  padding: 12px;
  line-height: 1.25;
}
.timeline-slick a {
  text-align: center;
  width: inherit;
  display: block;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text2);
  opacity: 0;
}

.timeline-slick .slick-slide:hover a {
  opacity: 1;
}
/** VERTICAL **/
.timeline-vertical {
  width: 100%;
  max-width: 760px;
  margin: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  border-right: 2px solid var(--prime2);
}

.timeline-vertical img {
  border-radius: 50%;
  margin-bottom: auto;
  width: 100%;
}

.timeline-vertical > div {
  width: 100%;
  max-width: 720px;
  display: flex;
  margin-bottom: 2rem;
  margin-right: 1.5rem;
  isolation: isolate;
}

.timeline-vertical > div:hover a {
  opacity: 1;
}

.timeline-vertical h3 {
  position: relative;
  padding: 5px;
}

.timeline-vertical h3::after {
  content: "";
  position: absolute;
  bottom: 0;
  width: calc(100% + 1.5rem + 150px + 1.5rem);
  right: calc(-1.5rem - 150px - 1.5rem);
  height: 1px;
  background-color: var(--prime2);
  z-index: -1;
}

.timeline-vertical h3::before {
  content: "";
  position: absolute;
  bottom: -6px;
  width: 15px;
  height: 15px;
  border-radius: 50px;
  right: calc(-1.5rem - 168px - 1.5rem);
  background-color: var(--prime2);
  z-index: -1;
}

.timeline-vertical .icon {
  margin-left: 1.5rem;
  width: 100%;
  max-width: 150px;
  position: relative;
  display: flex;
  align-items: center;
}
.timeline-vertical p {
  text-align: center;
  margin-bottom: 0;
}
.timeline-vertical .box {
  border-radius: 5px;
  border: 2px solid var(--prime2);
  width: 100%;
  max-width: 400px;
}
.timeline-vertical .box > div:has(img) {
  display: flex;
  justify-content: center;
  align-items: center;
}

.timeline-vertical a {
  text-align: left;
  padding-left: 10px;
  width: inherit;
  display: block;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text2);
  opacity: 1;
}
@media (min-width: 992px) {
  .page-content {
    position: relative;
    background: var(--light);
    max-width: inherit;
    margin-bottom: 2rem;
  }

  .table-responsive {
    display: table;
  }
}
@media (min-width: 768px) {
  .page-phonebook .contact-info {
    width: 50%;
  }
}

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

.exit {
  position: absolute;
  top: -1rem;
  border-radius: 3px;
  margin: 1rem 0;
  z-index: 2;
  padding: 5px;
}

@media (max-width: 991px) {
  .header .header-side {
    display: none;
  }
  .page-container {
    padding-inline: 10px;
  }

  .page-wrapper {
    margin-top: 3.5rem;
  }

  .bNagish-toggle {
    position: fixed;
    display: block;
    top: 30px;
    bottom: auto;
    left: 89px;
    border-radius: 0;
    width: 40px;
    height: 40px;
    background-color: transparent;
    background-color: var(--prime4);
    display: flex;
    align-items: center;
    box-shadow: none;
    border-left: 1px solid #cfcfcf;
    border-radius: 100vw;
  }

  .bNagish-toggle em {
    font-size: 22px;
  }

  .bNagish-toggle:hover .text,
  .bNagish-toggle:focus .text {
    padding: 3px;
    border-radius: 30px;
  }

  .page-content-head {
    padding: 1rem;
  }

  .page-content-head button {
    display: block;
    background: none;
    border: 0;
    padding: 0;
    position: absolute;
    left: 15px;
    bottom: 1rem;
    color: #fff;
    font-size: 2rem;
  }

  .page-content-head button em:before {
    content: "\f13a";
  }

  .page-content-head button.opened em:before {
    content: "\f139";
  }

  .page-content-body {
    padding: 1rem;
  }

  .page-content-nav {
    margin-top: 2rem;
    display: block;
    /* display: none; */
  }

  .pages-nav-title {
    border-radius: 15px 15px 0 0;
  }

  .header > nav {
    display: none;
  }

  body {
    padding-bottom: 60px;
    padding-top: 71px;
    /* header height */
  }

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

  .page-header {
    height: 200px;
    background-image: none !important;

    & .overlay {
      display: none;
    }
  }

  .page-content {
    margin: 0 -15px;
  }

  .header .searching {
    display: flex;
    position: absolute;
    left: 150px;
    display: flex;
    align-items: center;
    padding-right: 1rem;
    border-right: 1px solid #cfcfcf;
    height: 100%;
  }
  .header .searching img {
    width: 40px;
  }

  .footer {
    overflow: clip;
  }

  .footer-sections-grid {
    margin-bottom: 5rem;
  }

  .footer-sections-grid .col-lg-3 {
    max-width: 49%;
  }
  .footer-sections-grid ul {
    height: 280px;
  }
  .footer-sections-grid li {
    max-width: 100%;
  }
  .footer .addr {
    text-align: center;
  }
  .footer .wrap .ico {
    padding-block: 2.5rem;
  }
  .footer .fin {
    border-top: 2px solid #efefef;
    font-size: calc(0.5vw + 16px);
    margin-inline: 0.25rem;
    text-align: center;
    flex-direction: column;
  }
  .footer .fin span {
    text-align: center;
  }
  .footer .wrap img {
    margin-right: 0;
  }
  .footer .addr p {
    margin-right: 0;
    justify-content: center;
  }
  .footer .addr span a:not(:first-child) {
    justify-content: center;
  }
  .footer .wrap .ico {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .sub-pages-nav ul > li {
    width: 100%;
  }

  .sub-pages-nav.with-icons ul > li {
    width: 50%;
  }
}
@media (max-width: 767px) {
  .page-phonebook .contact-info {
    margin-left: 5px;
  }
}

@media (max-width: 450px) {
  .header .searching {
    padding-right: 10px;
    left: 145px;
  }
  .searching span {
    width: min-content;
    text-align: center;
    line-height: 1;
  }
  .timeline-vertical {
    max-width: 365px;
  }

  .timeline-vertical > div {
    max-width: 300px;
  }
}

@media (max-width: 420px) {
  .timeline-vertical {
    max-width: 300px;
  }

  .timeline-vertical > div {
    max-width: 250px;
  }

  .timeline-vertical h3::after {
    right: -180px;
    width: 290px;
  }

  .timeline-vertical h3::before {
    right: -182px;
  }
}
@media (max-width: 355px) {
  .header .searching img {
    display: none;
  }
}

.under-dev {
  position: fixed;
  bottom: 0;
  right: 0;
  z-index: 999999;
  width: 300px;
  height: 300px;
  overflow: hidden;
  pointer-events: none;
  transform-origin: bottom left;
  transform: scale(1.5);
}

.under-dev > div {
  width: 100%;
  height: 100%;
  position: relative;
}

.under-dev > div > div {
  position: absolute;
  bottom: 50px;
  left: 5px;
  z-index: 999;
  background: rgb(var(--text2RGB), 0.9);
  color: #fff;
  transform: rotate(312deg);
  padding: 0.2rem 5rem;
  font-size: 1.25rem;
  font-weight: bold;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}

@media (max-width: 991px) {
  .under-dev {
    transform: scale(0.75);
    bottom: 0;
    right: -140px;
  }
}

div.dt-container div.dt-layout-row:first-child {
  width: fit-content;
  align-items: flex-start;
}

div.dt-container div.dt-layout-row:first-child .form-control-sm {
  height: 36px;
}


.under-dev {
position: fixed;
bottom: 0;
  right: 0;
  z-index: 999999;
  width: 300px;
  height: 300px;
  overflow: hidden;
  pointer-events: none;
  transform-origin: bottom left;
transform: scale(1.5);
}

.under-dev > div {
width: 100%;
height: 100%;
  position: relative;
}

.under-dev > div > div {
position: absolute;
bottom: 50px;
  left: 5px;
  z-index: 999;
background: rgb(from var(--prime1) r g b/ 0.9);
color: #fff;
  transform: rotate(312deg);
  padding: 0.2rem 5rem;
  font-size: 1.25rem;
  font-weight: bold;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}

@media (max-width: 991px) {
.under-dev {
transform: scale(0.75);
  bottom: 0;
  right: -140px;
}
}

