* {
  font-family: "Rubik", arial, sans-serif;
}

:root {
  --web-primary-color: #036186;
  --web-primary-hover-color: #00486e;
  --web-links-color: #0752e1;
  --web-links-hover-color: #005888;
  --web-mobile-nav-bg: #1d252ae0;
  --web-side-nav-title-bg: #0372ac;
  --web-side-nav-title-text: #fff;
  --gradient-direction: to left;

  --prime1: #f7ac1e;
  --prime2: #179bd1;
  --prime3: #c1d961;
  --prime4: #242122;
  --prime5: #e0e0e0;

  --prime1b: #bb5807;
  --prime2b: #036186;

  --text: #222;

  --color-white: #ffffff;
  --color-gold: #f7b03b;
  --color-blue: #21a4db;
  --color-green: #bcdd71;
  --color-text: #2c3e50;
  --color-text-light: #546e7a;
  --color-hero-bg: #edfaff;
  --color-hero-shade-1: #ecf9d0;
  --color-hero-shade-2: #ffe9c7;
  --shadow-sm: 0 6px 15px rgba(33, 164, 219, 0.12);
  --shadow-md: 0 10px 25px rgba(33, 164, 219, 0.2);
  --shadow-lg: 0 20px 40px rgba(33, 164, 219, 0.28);
}

body.ltr-mode {
  --gradient-direction: to right;

  direction: ltr;
  text-align: left;

  & .breadcrumbs ul > li:after {
    transform: rotate(180deg);
  }
  & .sub-pages-nav a .icon {
    border-radius: 15px 0 0 15px;
  }

  & .header .low,
  & .header .high > div {
    flex-direction: row-reverse;
  }
}

/* Bootstrap Override * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */

a {
  color: #0372ac;

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

a:hover,
a:focus {
  color: #005e8f;
}

figure {
  margin: 0;
}

@media (min-width: 992px) {
  .table-responsive {
    display: table;
  }
}

.table {
  border: 1px solid var(--prime2b);
}

.table td,
.table th {
  border-top: 1px solid var(--prime2b);
}

.table thead th {
  border-bottom: 2px solid var(--prime2b);
  background: #e6f6ff;
}

.table-bordered td,
.table-bordered th {
  border: 1px solid var(--prime2b);
}
.btn.btn-primary {
  background-color: var(--prime2b);
  border-color: var(--prime2b);
}
.btn.btn-primary:hover {
  /* This mixes the variable with 15% black */
  background-color: color-mix(in srgb, var(--prime2b), black 15%);
  border-color: color-mix(in srgb, var(--prime2b), black 15%);
}
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;
  }
}

/* Template * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */

body {
  margin: 0;
  padding: 0;
  overflow-x: clip;
  background: #fff;
}

/* Header */

/* Navigation */

.header nav {
  display: flex;
  padding-right: 0;
  height: 100%;
  flex-basis: calc(50% - 107px);
}
@media (min-width: 1600px) {
  .header nav {
    padding-right: 1rem;
  }
}
.header > nav ul {
  list-style: none;
}

.header nav > ul {
  height: 100%;
  padding: 0;
  margin: 0;
  text-align: center;
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.header nav > ul > li:last-child::after {
  content: none;
}

.header nav > ul > li::after {
  content: "";
  position: absolute;
  margin: 0;
  width: 5px;
  height: 5px;
  background: var(--prime2);
  left: -2px;
  border-radius: 50px;
  top: 50%;
  transform: translateY(-50%);
}

.header nav > ul > li > span > a.on {
  font-weight: bold;
  color: var(--prime1);
  color: var(--text);
}

.header nav button {
  display: none;
}
@media (min-width: 1600px) {
  .header nav > ul {
    margin: auto 1rem auto auto;
    position: relative;
  }
}
@media (min-width: 1200px) {
  .header nav > ul {
    margin: auto 0rem auto auto;
    position: relative;
  }

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

  .header nav > ul > li {
    position: relative;
    display: flex;
    align-items: center;
    padding: 0rem 0.96rem;
  }

  .header nav > ul > li > span > a {
    display: block;
    padding: 0.35rem 0;
    font-size: calc(0.2vw + 16px);
  }

  .header nav > ul > li a {
    color: #273e52;
    display: block;
    font-size: 1.2rem;
    margin-inline: 0;
    position: relative;
    font-weight: 400;
  }

  .header nav > ul > li:last-child::after {
    content: none;
  }

  .header nav > ul > li::after {
    content: "";
    position: absolute;
    margin: 0;
    width: 5px;
    height: 5px;
    background: var(--prime2);
    left: -2px;
    border-radius: 50px;
    top: 50%;
    transform: translateY(-50%);
  }

  .header nav > ul > li > span > a.on {
    font-weight: bold;
    color: currentColor;
    color: var(--text);
  }
  .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 {
    color: var(--prime2b);
  }

  .header nav > ul > li.on > span > a,
  .header nav > ul > li > span > a.on {
  }
}

@media (max-width: 1600px) {
  .header nav > ul > li > span > a {
    font-size: 1rem;
  }
}
.header nav li > ul::before {
  content: "";
  position: absolute;
  width: calc(100% - 0.2rem);
  height: calc(100% - 0.2rem);
  inset: 0;
  margin: auto;
  padding: 35px 55px 10px;
  border: 1px solid var(--prime2);
  border-radius: 10px;
}
.header nav > ul > li > ul {
  display: none;
  text-align: right;
  position: absolute;
  top: 82%;
  right: -5px;
  z-index: 9999;
  width: 620px;
  background: #fff;
  color: #000;
  padding: 1rem 1.25rem;
  box-shadow: 0px 10px 20px rgba(55, 49, 52, 0.3);
  backface-visibility: hidden;
  transform: translateZ(0);
  -webkit-font-smoothing: subpixel-antialiased;
  margin-top: 0;
  border-radius: 10px;
  border-top-right-radius: 0;
  column-count: 2;
}
.header nav > ul > li > ul::after {
  content: "";
  width: 0;
  height: 0;
  width: 0;
  height: 0;
  border: 5px solid transparent;
  border-top: 0;
  border-bottom: 5px solid var(--prime2);
  top: -3px;
  right: 16px;
  position: absolute;
  filter: drop-shadow(0px -17px 10px rgba(60, 189, 4, 0.2));
}
.header nav > ul > li > ul > li {
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  position: relative;
}
.header nav > ul > li > ul > li::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 50px;
  height: 2px;
  background: linear-gradient(
    90deg,
    var(--color-blue),
    var(--color-gold),
    var(--color-green)
  );
}
.header nav > ul > li > ul > li:last-child::after {
  content: none;
}
.header nav > ul > li > ul > li > span > a {
  font-size: 1.24rem;
  font-weight: 400;
  color: var(--text);
}
.header nav > ul > li > ul > li > span > a:hover {
  color: var(--text);
  font-weight: 450;
}
.header nav > ul > li > ul > li:last-child::before {
  content: "";
  position: absolute;
  bottom: -2.5rem;
  right: -30px;
  height: 90%;
  width: 50%;
  border-radius: 0 0 35px 0;
  background: rgb(255, 255, 255);
  background: linear-gradient(
    270deg,
    rgba(255, 255, 255, 1) 50%,
    rgba(255, 255, 255, 0) 100%
  );
}

@media (max-width: 1199px) {
  .header .navigation {
    display: none;
  }
}
.fa-external-link + span + .fa-external-link::before {
  content: none !important;
}
/* Header */

.header .topright {
  font-weight: 800;
  padding-right: 1.8rem;
  & em {
    font-weight: normal;
    font-style: normal;
  }
}
@media (max-width: 991px) {
  .header .topright {
    font-size: 1.2rem;
    & em {
      display: none;
    }
  }
}
@media (max-width: 360px) {
  .header .topright {
    padding-right: 0.5rem;
    font-size: 1rem;
  }
}
.header-shadow {
  height: 90px;
  position: fixed;
  inset: 0;
  width: 100%;
  z-index: -2;
  transition: all 0.2s ease;
}
.header-shadow.offset-shadow {
  opacity: 0;
  height: 0;
}
.header {
  background: #fff;
  color: #000;
  height: auto;
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  z-index: 99;
  /* filter: drop-shadow(0 0.2rem 0.25rem rgba(0, 0, 0, 0.1)); */
  display: flex;
  flex-direction: column;
  filter: drop-shadow(0 0 15px rgba(0, 0, 0, 0.3));
  -o-transition: 0.5s;
  -ms-transition: 0.5s;
  -moz-transition: 0.5s;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.header .high {
  background-color: var(--prime2b);
  color: #fff;
  position: relative;
  width: 100%;
  height: 40px;
  z-index: 9;

  & > div {
    height: inherit;
    display: flex;
    align-items: center;
  }

  & .wrap {
    display: flex;
    justify-content: flex-end;
    padding-left: 3rem;

    gap: 0.7rem;
  }

  & a {
    color: #fff;
    display: inline-block;
  }
}
.header .low {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 75px;
}

@media (max-width: 991px) {
  .header .high {
    height: 30px;
    padding-left: 20px;

    & .wrap {
      padding-left: 0.5rem;

      & .search {
        display: none;
      }
    }
  }
  .header .low {
    height: 53px;
  }
}
@media (max-width: 360px) {
  .header .high {
    & .wrap {
      padding-left: 0;
    }
  }
}

.header ul li::marker {
  content: none;
}
/* Logo */

.header .logo {
  width: 225px;
  position: absolute;
  inset: 0;
  bottom: 0;
  margin: auto;
  display: block;
  z-index: 3;
  display: flex;
  align-items: center;
  height: 100%;
}
.header-shadow::before {
  background-image: url(./images/header_shape.png);
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);

  background-size: cover;
  background-position: bottom;
  background-repeat: no-repeat;
  z-index: -1;
}
@media (min-width: 992px) {
  .header-shadow::before {
    bottom: -77px;
    width: 393px;
    height: 64px;
  }
  .header.offset .header-shadow::before {
    bottom: -58px;
    width: 225px;
    height: 46px;
  }
}

@media (max-width: 991px) {
  .header-shadow::before {
    bottom: -23px;
    width: 213px;
    height: 41px;
  }
  .header.offset .header-shadow::before {
    bottom: -17px;
    width: 183px;
    height: 32px;
  }
}

.header .logo img {
  z-index: 1;
  display: block;
  width: 100%;
  margin: auto;
  margin-top: 40px;
  transition: all 0.2s ease;
}
.header.offset .logo img {
  margin-top: 50px;
  width: 75%;
}

@media (max-width: 991px) {
  .header .logo {
    width: 145px;
  }
  .header .logo img {
    margin-top: 30px;
  }
  .header.offset .logo img {
    margin-top: 35px;
    width: 74%;
  }
}
/* Header Icons */

.header-side {
  position: relative;
  left: 50px;
  flex-basis: calc(40% - 100px);
  display: flex;
  justify-content: space-evenly;
  align-items: center;
}

.weather figcaption {
  display: none;
}

.header-side a {
  color: var(--text);
  position: relative;
  font-size: calc(0.2vw + 16px);
  font-weight: 400;
  padding-inline: 1rem;
  text-align: center;
  line-height: 1;

  & em {
    font-size: 20px;
  }

  &:hover {
    text-decoration: underline;
    color: var(--prime2b);
  }
  &::after {
    content: "";
    position: absolute;
    margin: 0;
    width: 5px;
    height: 5px;
    background: var(--prime2);
    left: -2px;
    border-radius: 50px;
    top: 50%;
    transform: translateY(-50%);
  }
  &:last-child::after {
    content: none;
  }
}

@media (max-width: 1600px) {
  .header-side {
    flex-basis: calc(50% - 155px);
    left: 20px;

    & a {
      font-size: calc(0vw + 16px);
    }

    /* & a::after {
      left: 0;
    } */
  }
}
@media (max-width: 1199px) {
  .header-side {
    flex-basis: auto;
    margin-right: auto;
    left: 61px;
  }
  .header-side > a {
    display: none;
  }
}

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

.header-side .search {
  color: var(--prime2);
  position: relative;
  width: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.weather {
  position: relative;

  &::after {
    content: "";
    position: absolute;
    left: -22px;
    top: 50%;
    transform: translateY(-50%);
    width: 37px;
    height: 100%;
    background-image: url(./images/weather.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
  }
}
.weather a {
  display: flex;
  align-items: center;
  font-weight: 500;
}

/* Toggle Navigation Button */
/* Header Search */

.header-search {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 999999;
  width: 100%;
  background: #fff;
  height: 100px;
  border-bottom: 2px solid var(--prime2);
  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: var(--prime1);
}

/* Toggle Navigation Button */

a.toggle-nav {
  display: none;
}

@media (max-width: 1199px) {
  a.toggle-nav {
    position: absolute;
    top: 55px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: transparent;
    color: var(--text);
    display: block;
    padding: 0.6rem;
    text-align: center;
    border-radius: 0;
  }

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

@media (max-width: 991px) {
  a.toggle-nav {
    top: 35px;
  }
}
@media (max-width: 360px) {
  a.toggle-nav {
    right: 10px;
  }
}
.socials {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 2.7rem;

  & a {
    display: block;
    width: 40px;
    height: 40px;
    background-color: rgb(from #fff r g b / 0.5);
    color: var(--prime3);
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 14px;
    background-size: cover;
    background-position: center;
  }
}

@media (max-width: 1199px) {
  .socials {
    & a {
      width: 35px;
      height: 35px;
    }
  }
}
/* Footer */

.footer {
  margin-top: 10rem;
  position: relative;
  padding: 0;
  overflow-x: clip;

  & .container {
    width: 100%;
    max-width: 1700px;
  }

  & .container:before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 2px;
    background-image: linear-gradient(
      90deg,
      var(--color-blue),
      var(--color-gold),
      var(--color-green)
    );
  }

  & .gridrow {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    width: 100%;
    padding-top: 10rem;
  }

  & .connect {
    display: flex;
    width: 75%;
    justify-content: center;
    margin-inline: auto;

    & .wrap {
      width: 100%;
      margin-top: auto;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: space-between;
      border: 1px solid #ddd;
      height: 100%;
      padding: 2rem;
      background-color: #fff;
      margin-top: 3rem;
      gap: 2rem;
    }

    & .upper {
      & a {
        position: relative;
        line-height: 1;
        text-align: center;
        display: flex;
        flex-direction: column;
        color: var(--text);
        font-weight: 700;
        font-size: calc(1.4vw + 16px);

        &:hover {
          text-decoration: none;
          transform: scale(1.05);
          color: var(--prime2);
        }

        &::after {
          content: "";
          position: absolute;
          width: 95px;
          height: 1px;
          background: #dddd;
          left: 50%;
          bottom: -2.62rem;
          transform: translateX(-50%);
        }
      }
      & span {
        font-weight: 500;
        text-align: center;
        display: block;
        width: 100%;
        font-size: calc(0.4vw + 16px);
      }
    }
  }

  & .socials {
    margin-bottom: 0;
    gap: 1rem;
  }

  & .symbol {
    position: absolute;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    & img {
      width: 300px;
      background-color: #fff;
      padding: 1.5rem;
    }
  }

  & .info {
    position: relative;
    display: flex;
    &::after {
      content: "";
      position: absolute;
      width: 440px;
      height: 400px;
      left: -10px;
      top: -170px;
      background-image: url(./images/shape.svg);
      background-size: cover;
      background-position: center;
      z-index: -1;
      opacity: 0.4;
    }

    & .wrap {
      margin-top: -3rem;
      width: 90%;
      margin-right: auto;
    }
    & p {
      line-height: 1;
      font-weight: 700;
      font-size: calc(1.25vw + 16px);
      & span {
        display: block;
        width: 100%;
        font-weight: 400;
        font-size: calc(0.25vw + 16px);
      }
    }
  }

  & .contact {
    position: relative;
    margin-top: 3.6rem;
    display: flex;
    flex-wrap: wrap;
    font-size: calc(0.2vw + 16px);
    gap: 0.65rem;
    line-height: 1;
    padding-left: 0.5rem;

    &::after {
      content: "";
      top: -2rem;
      right: 0;
      height: 2px;
      border-radius: 2px;
      background-color: var(--prime2);
      width: 90px;
      position: absolute;
    }

    & a {
      color: var(--text);
    }

    & > .info-btn:first-child {
      flex: 1 0 100%;
    }
    & > .info-btn:not(:first-child) span {
      color: var(--prime2);
    }
  }

  & .fin {
    padding-top: 1rem;
    border-top: 1px solid #ddd;
    padding-bottom: 1rem;
    font-size: 0.89rem;

    & p {
      width: 98%;
    }

    & > .col-lg-4:last-of-type {
      & p {
      }
    }
  }
}

.footer p {
  margin: 0;
}

.footer-sections-grid {
  & ul {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    height: 200px;
    list-style-type: none;
    padding-right: 3rem;
  }

  & li {
    margin-bottom: 1rem;
  }

  & a {
    font-size: calc(0.3vw + 16px);

    color: var(--text);
  }
}

@media (max-width: 991px) {
  .footer {
    & .gridrow {
      grid-template-columns: 1fr;
      gap: 3rem;

      & > div:nth-child(3) {
        order: -1;
      }

      & .links {
        order: -1;
      }
      & .info {
        &::after {
          width: 300px;
          height: 290px;
        }
      }
      & .connect {
        & .wrap {
          /* margin-top: 0;
          height: 14rem; */
        }
      }
    }
    & .fin {
      padding-top: 4.5rem;
      text-align: center;
    }

    & .symbol img {
      width: 255px;
    }
  }
}
/* Breadcrumbs */

.breadcrumbs {
  line-height: 1;
}

.breadcrumbs a {
  font-size: calc(0.5vw + 16px);
  padding-inline: 1rem;
}

.breadcrumbs ul {
  list-style: none;
  margin: 0;
  padding: 0;
  margin-right: -10px;
}

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

.breadcrumbs ul > li:after {
  font-family: "FontAwesome";
  content: "\f104";
  padding: 0 5px;
  display: inline-block;
  color: var(--prime3);
  font-size: calc(0.4vw + 16px);
}

.breadcrumbs ul > li:last-child:after {
  content: "";
  padding: 0;
}
.high .bNagish-links-group > a {
  color: #000;
}
/* bNagish */
.bNagish {
  width: 120px;
}
.bNagish-bar {
  top: 40px;
  height: 77vh;
}
.bNagish-toggle {
  bottom: auto;
  top: 3px;
  left: 2.2rem;
  width: 35px;
  height: 35px;
  background: var(--prime2b);
  color: #fff;
  border-radius: 0;
  box-shadow: none;
}
.bNagish-toggle em {
  font-size: 1rem;
}
.bNagish-toggle:hover .text,
.bNagish-toggle:focus .text {
  padding: 3px;
  border-radius: 30px;
}
.bNagish-toggle .label-text {
  position: relative;
  top: auto;
}
@media (max-width: 991px) {
  .bNagish-toggle {
    top: 2px;
    bottom: auto;
    left: 2px;
    width: 30px;
    height: 30px;
    background: transparent;
  }
  .bNagish-toggle em {
    font-size: 0.8rem;
  }
}

/* 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;
  backdrop-filter: blur(4px);
}

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

.skip-ad .skip-ad-content {
  position: relative;
}

.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;
  right: -330px;
  width: 300px;
  height: 100%;

  z-index: 97;

  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 rgb(0 0 0 / 50%);
  backdrop-filter: blur(6px);
}

.mobile-navigation.open {
  right: 0;
  visibility: visible;
  box-shadow: 0 0 50px rgba(0, 0, 0, 0.5);
}

.mobile-navigation .content {
  width: 100%;
  height: 100%;
  overflow: auto;
  position: relative;
}

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

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

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

.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 {
  border-bottom: 1px solid #ddd;
}
.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";
}
.mobile-navigation nav .toggle-sub-menu:after {
  content: "\f053";
  font-size: 70%;
}
.mobile-navigation nav .toggle-sub-menu.opened:after {
  content: "\f078";
}
.mobile-navigation nav .toggle-sub-menu.no-sub-menu:after {
  content: "\f111";
  font-size: 20%;
}
.mobile-navigation nav .toggle-sub-menu.external-link:after {
  content: "\f08e";
}

.mobile-navigation-search {
  position: relative;
  margin: 1rem;
  box-shadow: nsone;
}

.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 / 100%);
}

/* Page * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */

/* Page Header */

.page-header {
  height: 450px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  position: relative;
  z-index: 1;
  display: flex;

  & .overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
      var(--gradient-direction),
      rgb(from var(--prime2b) r g b / 1),
      rgb(from var(--prime2b) r g b / 0.87),
      transparent
    );
    z-index: -1;
  }
}

@media (max-width: 991px) {
  .page-header {
    height: 250px;
  }

  body {
    padding-top: 82px;
  }
}

/* Page Content */

.page-content {
  background: #fff;
  margin-bottom: 3rem;
}

@media (min-width: 992px) {
  .page-content {
    margin-top: 2.7rem;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0);
  }
}
@media (max-width: 991px) {
  .page-content {
    margin: 0 -15px;
  }
}
.page-container {
  max-width: 90vw;
  margin: auto;

  @media (max-width: 991px) {
    max-width: 720px;
    padding-inline: 1rem;
  }

  @media (max-width: 767px) {
    max-width: 540px;
  }
}
.page-content-head {
  background: transparent;
  color: #fff;
  padding: 1.5rem 4rem 3rem;
  position: relative;
  width: 100%;
  margin-top: auto;
  z-index: 1;
}

@media (max-width: 991px) {
  .page-content-head {
    padding: 1rem;
  }
}

.page-content-head h1 {
  margin: 0;
  font-weight: bold;
  font-size: calc(3.2vw + 16px);
  line-height: 1;
}

.page-content-head a {
  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 {
  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: #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 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 {
  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 > li {
  position: relative;
  padding: 0.5rem;
  flex: 1 1 30%;
  max-width: 30%;
  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%;
  }
}
/** CSS HACK **/
.sub-pages-nav ul::after {
  content: "";
  flex: 1 1 30%;
  max-width: 30%;
  min-width: 200px;
  padding: 0.5rem;
  visibility: hidden;
}
.sub-pages-nav ul li:last-child::after {
  content: "";
  position: relative;
  display: inline-block;
  width: 100%;
  height: 0;
  visibility: hidden;
}
.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);
  background: linear-gradient(
    50deg,
    var(--color-blue),
    var(--color-gold),
    var(--color-green)
  );
}
.sub-pages-nav ul > li:nth-child(5n + 2) a .icon {
  background: var(--prime2);
  background: linear-gradient(
    10deg,
    var(--color-gold),
    var(--color-green),
    var(--color-blue)
  );
}
.sub-pages-nav ul > li:nth-child(5n + 3) a .icon {
  background: var(--prime3);
  background: linear-gradient(
    20deg,
    var(--color-blue),
    var(--color-green),
    var(--color-gold)
  );
}
.sub-pages-nav ul > li:nth-child(5n + 4) a .icon {
  background: var(--prime4);
  background: linear-gradient(
    30deg,
    var(--color-blue),
    var(--color-green),
    var(--color-gold)
  );
}
.sub-pages-nav ul > li:nth-child(5n + 5) a .icon {
  background: var(--prime5);
  background: linear-gradient(
    40deg,
    var(--color-green),
    var(--color-blue),
    var(--color-gold)
  );
}
.sub-pages-nav a {
  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 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: #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 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 */

/* 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 {
  text-align: justify;
} */

.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(--prime2);
}

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

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

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

.rich-content h6 {
  color: #333;
}

:root {
  --primary-orange: #f2a900;
  --logo-blue: #00addc;
  --logo-green: #a4d251;
  --text-dark: #1f4373;
  --font-main: "Rubik", sans-serif;
}

.contact-man {
  font-family: var(--font-main);
  direction: rtl;
  border: 1px solid #f0f3f7;
  border-radius: 12px;
  padding: 15px 25px;
  background: #fff;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
  margin: 15px auto;
}

.contact-man .row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* הצמדת השם לתמונה */
.contact-man .col-md-4 {
  display: flex;
  align-items: center;
  gap: 15px;
  flex: 0 0 auto;
}

.contact-man img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--logo-blue);
}

.contact-man .contact-name {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1.2;
}

.contact-man .col-md-8 {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  flex: 1;
  border-right: 2px solid var(--logo-green);
  margin-right: 20px;
  padding-right: 20px;
}

.contact-man .col-md-8 div {
  display: flex;
  align-items: center;
  background: #f4f8fb;
  padding: 8px 18px;
  border-radius: 50px;
  border: 1px solid #eef3f8;
}

.contact-man em {
  color: var(--prime2b);
  margin-left: 10px;
  order: 2;
}

.contact-man a {
  color: var(--text-dark);
  text-decoration: none;
  font-weight: 500;
  order: 1;
}

@media (max-width: 768px) {
  .contact-man .row {
    flex-direction: column;
    text-align: center;
  }
  .contact-man .col-md-4 {
    flex-direction: column;
    margin-bottom: 15px;
  }
  .contact-man .col-md-8 {
    border-right: none;
    border-top: 2px solid var(--logo-green);
    padding: 15px 0 0 0;
    margin: 0;
    width: 100%;
    justify-content: center;
  }
}

/* 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 {
}
.card-header {
  background: var(--web-primary-color);
  color: #fff;
}
.card-header h2 {
  color: inherit;
  margin: 0;
  font-size: 1.3rem;
}
.card-body {
  background: #f1f1f1;
}

/**/

/**/

.form-category-group {
  background: #f1f1f1;
  border-right: 3px solid #2d55aa;
  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 rgb(0 0 0 / 5%);
}

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

.page-event-promo h3 {
  height: 4.5rem;
  font-size: 1.2rem;
  color: #2d55aa;
  overflow: hidden;
}

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

.page-event-promo .date {
  background: #199cff;
  color: #fff;
  padding: 0 5px;
  border-radius: 2rem;
}

.page-event-promo:hover .date,
.page-event-promo:focus .date {
  color: #199cff;
  background: #fff;
}

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

/**/

.phonebook-contact .page-phonebook {
  font-family: var(--font-main);
  direction: rtl;

  margin: 20px auto;
}

.phonebook-contact h2 {
  background: var(--text-dark);
  color: #fff;
  padding: 15px 25px;
  margin: 0;
  border-radius: 12px 12px 0 0;
  font-size: 1.4rem;
}

.phonebook-contact .info {
  background: #fff;
  border: 1px solid #f0f3f7;
  border-top: none;
  border-radius: 0 0 12px 12px;
  padding: 10px 0;
}

.phonebook-contact .info > div {
  padding: 20px 25px;
  transition: background 0.3s;
}

.phonebook-contact .info > div:hover {
  background: #fbfdff;
}

.phonebook-contact .row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.phonebook-contact .col-md-5 {
  display: flex;
  align-items: center;
  gap: 15px;
  flex: 0 0 auto;
}

.phonebook-contact img {
  width: 100px;
  height: 125px;
  border-radius: 0;
  border: 2px solid var(--prime2b);
  margin-bottom: 0;
}

.phonebook-contact .col-md-5 strong {
  font-size: 1.2rem;
  color: var(--text-dark);
  display: block;
}

.phonebook-contact .col-md-5 div:not(strong) {
  font-size: 0.95rem;
  color: #666;
}

.phonebook-contact .col-md-7 {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
  border-right: 2px solid var(--logo-green);
  padding-right: 20px;
}

.phonebook-contact .contact-info {
  display: inline-block;
}

.phonebook-contact .contact-info a {
  display: flex;
  align-items: center;
  background: #f4f8fb;
  border: 1px solid #eef3f8;
  border-radius: 50px;
  padding: 6px 15px;
  text-decoration: none;
  color: var(--text-dark);
  font-weight: 500;
  font-size: 0.9rem;
  transition: all 0.2s;
  width: 220px;
}

.phonebook-contact .contact-info a:hover {
  border-color: var(--logo-blue);
  background: #fff;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.05);
}

.phonebook-contact .fa-stack {
  order: 2;
  margin-right: auto;
  font-size: 0.8rem;
}

.phonebook-contact .fa-circle {
  color: var(--logo-blue);
}

.phonebook-contact .text {
  order: 1;
}
@media (max-width: 768px) {
  .phonebook-contact .row {
    flex-direction: column;
    text-align: center;
  }
  .phonebook-contact .col-md-5 {
    flex-direction: column;
    margin-bottom: 15px;
  }
  .phonebook-contact .col-md-7 {
    align-items: center;
    border-right: none;
    border-top: 2px solid var(--logo-green);
    padding: 15px 0 0 0;
    width: 100%;
  }
}

.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(--prime2b) 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 5px rgba(0, 0, 0, 0.1);
}

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