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

/* Colors */

:root {
  --web-primary-color: var(--prime1);
  --web-primary-hover-color: #00486e;
  --web-links-color: #0372ac;
  --web-links-hover-color: #005888;
  --web-mobile-nav-bg: #1d252ae0;
  --web-side-nav-title-bg: #0372ac;
  --web-side-nav-title-text: #fff;

  --eventsPrimaryColor: var(--prime4) !important;

  --prime1: #157bb9;
  --prime2: #acd102;
  --prime3: #f2a100;
  --prime4: #c01a1b;
  --prime5: #4b7f1d;
  --prime6: #4e4f51;
  --prime7: #0a9653;

  --prime1-light: #0096f0;

  --text: #474747;
}

/* Bootstrap Override */
.event-promo .ribbon,
.event-promo .details .icon {
  color: #fff;
  background-color: var(--prime4) !important;
}
a {
  color: var(--web-links-color);

  -o-transition: 0.5s;
  -ms-transition: 0.5s;
  -moz-transition: 0.5s;
  -webkit-transition: 0.5s;
  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: 0;
}

@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: #f4fffe;
}

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

/* Template */

body {
  margin: 0;
  padding: 0;

  background: #fff;
  overflow-x: clip;
}

/* Navigation */
.header nav {
  display: flex;
  padding-right: 1rem;
  height: 100%;
}
.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;
  width: calc(50% - 100px);
}

.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: 1550px) {
  .header nav {
    display: flex;
    padding: 0 4rem 0 1rem;
    height: 100%;
    width: calc(50% - 150px);
  }
  .header nav > ul {
    margin: auto 1rem auto auto;
  }
}
@media (min-width: 1200px) {
  .header nav > ul {
    position: relative;
    height: 100%;
    padding: 0;
    text-align: center;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    width: 100%;
  }

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

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

  .header nav > ul > li > span > a {
    display: block;
    padding: 0.35rem 0;
    font-size: 1.2em;
  }

  .header nav > ul > li a {
    color: var(--text);
    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 {
  }

  .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%;
    width: 475px;
    right: 0;
    z-index: 90;
    background: #fff;
    color: #000;
    padding: 1rem;
    -webkit-box-shadow: 5px -1px 9px -3px #000000;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    border-bottom-right-radius: 30px;
    border-bottom-left-radius: 30px;
    padding: 1.5rem 2rem 0.5rem;
    column-count: 2;

    backface-visibility: hidden;
    /* transform: translate(-50%, 0); */
    -webkit-font-smoothing: subpixel-antialiased;
  }
  .header nav > ul > li > ul::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 5px;
    top: 0;
    right: 0;
    background-color: var(--prime5);
    z-index: 1;
    filter: drop-shadow(0px 5px 7px rgba(0, 0, 0, 0.513));
  }
  .header nav > ul > li > ul::after {
    content: "";
    width: 0;
    height: 0;
    border: 10px solid transparent;
    border-top: 0;
    border-bottom: 10px solid var(--prime5);
    top: -10px;
    right: 10px;
    z-index: 1;
    position: absolute;
    filter: drop-shadow(0px -17px 10px rgba(0, 0, 0, 0.13));
  }
  .header nav li:hover > ul {
    display: block;
  }
  .header nav > ul > li > ul > li::marker {
    content: none;
  }
  .header nav > ul > li > ul > li {
  }
  .header nav > ul > li > ul > li > span > a {
    font-size: 1.1rem;
    padding-top: 0.25rem;
    padding-bottom: 1rem;
  }
  .header nav > ul > li > ul > li > span > a:hover {
    color: var(--prime5);
    font-weight: 700;
  }
  .header nav > ul > li > ul > li > span > a::after {
    position: absolute;
    content: "";
    bottom: 0.15rem;
    width: 35px;
    height: 1px;
    right: 0;
    background-color: rgb(from var(--prime5) r g b / 0.25);
  }

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

  .header nav > ul > li > ul > li > span > a > em.arrow {
    content: "";
    content: none;
  }

  .header nav > ul > li > ul > li > span > a > em.arrow:before {
    content: none;
  }
}

@media (max-width: 1400px) {
  .header nav > ul > li > span > a {
    font-size: 1.1em;
  }
}

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

/* Header */
.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: rgb(255 255 255 / 100%);
  color: #000;
  height: 90px;
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  z-index: 99;
  display: flex;
  align-items: center;

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

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

/* Logo */

.header .logo {
  width: 220px;
  position: absolute;
  inset: 0;
  bottom: 0;
  margin: auto;
  display: block;
  z-index: 3;
  display: flex;
  align-items: center;
  height: 100%;
}
.header .logo::before {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -55px;
  width: 360px;
  height: 150px;
  background-image: url(./images/symbol_bg.png?v=1b);
  background-size: contain;
  background-position: bottom;
  background-repeat: no-repeat;
  z-index: -1;
}

.header.offset .logo::before {
  background-size: 190px;
  bottom: 0;
  filter: none;
  content: none;
}

.header .logo img {
  z-index: 1;
  display: block;
  width: 100%;
  margin: auto;
  margin-top: 22px;
  transition: all 0.2s ease;
}
.header.offset .logo img {
  margin-top: 14px;
  width: 70%;
}
/* Header Icons */

.header .icon-btn {
  width: 32px;
  height: 32px;
  background-repeat: no-repeat;
  background-position: center;
  border-radius: 100vw;
  background-size: cover;
  transition: all 0.3s ease-in;
  display: inline-block;
  border: none;
  outline: none;
  position: relative;
  background-color: color-mix(in srgb, currentColor 30%, #fff);

  & span {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
  }

  & i {
    font-size: 1rem;
    margin-bottom: 0;
    transition: all 0.2s ease;
  }

  &:hover {
    transform: scale(1.02);
  }
}
.header a.label {
  font-size: 1rem;
  width: fit-content;
  padding: 5px 0.75rem;
  transition: all 0.2s ease;

  & i {
    font-size: 16px;
    margin-left: 5px;
  }

  &:hover {
    color: #fff !important;
    background-color: var(--prime4);
  }
}
.lang-btn:hover .sub {
  display: block;
  width: 212px;
  direction: ltr;
  text-align: left;
  border-radius: 0 1rem 1rem 1rem;
}
.lang-btn .sub {
  z-index: 99;
  position: absolute;
  top: 25px;
  left: 50%;
  transform: translateX(-50%);
  background: transparent;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
  padding: 0.5rem;
  backdrop-filter: blur(4px);
  display: none;
}
/* Header Icons */

.header-side {
  width: calc(50% - 150px);
  justify-content: flex-end;
  padding: 0 1rem 0 4rem;
  position: relative;
  margin-right: auto;
  display: flex;
  align-items: center;
  height: inherit;
  gap: 0.5rem;
  z-index: 5;
}

@media (max-width: 1549px) {
  .header nav {
    padding: 0 1rem;
    width: calc(50% - 50px);
    display: flex;
    height: 100%;
  }
  .header-side {
    padding: 0 1rem;
  }
  .header nav > ul {
    margin: auto 0 auto auto;
  }
}
/* 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);
}

/* end header search */
/* 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: 16px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: #fff;
    color: var(--prime4);
    display: block;
    padding: 0.6rem;
    text-align: center;
    border-radius: 50%;
  }

  a.toggle-nav em {
    font-size: 24px;
  }
  .header-side {
    padding: 0 2.5rem;
    flex-wrap: wrap;
  }

  .header .icon-btn {
    width: 28px;
    height: 28px;

    & i {
      font-size: 14px;
    }
  }
}

/* Footer */

.footer {
  margin-top: 8rem;
  position: relative;
  width: 100%;
  padding: 1.5rem 4rem;
  border-top-left-radius: 80px;
  border-top-right-radius: 80px;
  background: linear-gradient(0deg, #5f9f26 0%, var(--prime2) 100%);
  color: #fff;

  &::after {
    background-image: url(./images/watermark.png);
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    content: "";
    width: 100%;
    max-width: 690px;
    height: 70%;
    inset: 0;
    margin: auto;
    position: absolute;
    opacity: 0.356;
    z-index: 0;
  }

  & i {
    color: var(--prime2);
  }

  & a {
    color: #fff;
  }
  & a:hover {
    color: color-mix(in srgb, var(--prime5) 70%, black 30%);
  }
}

.footer .weblinks {
  width: 100%;
  display: flex;
  justify-content: center;
  list-style-type: none;
  gap: 1rem;

  & li {
    width: 35px;
    height: 35px;
  }
  & a {
    width: 100%;
    height: 100%;
    background-color: currentColor;
    border-radius: 100vw;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  & em {
    display: inline-block;
    color: #fff;
    font-size: 1rem;
  }
}

.footer .container-fluid > .row:first-child > div:last-child {
  display: flex;
  flex-direction: column;
}

.footer .container-fluid > .row:first-child > div:last-child {
  position: relative;
  display: flex;

  &::after {
    background-image: url(./images/logo.png);
    content: "";
    position: absolute;
    top: -10rem;
    left: 50%;
    background-position: center;
    background-size: 100%;
    background-repeat: no-repeat;
    width: 300px;
    height: 223px;
    transform: translateX(-50%);
  }
  &::before {
    background-image: url(./images/footer_bg.png);
    content: "";
    position: absolute;
    top: -5.85rem;
    left: 50%;
    background-position: top;
    background-repeat: no-repeat;
    width: 550px;
    height: 160px;
    transform: translateX(-50%);
  }

  & > .wrap {
    margin-inline: auto;
    width: 100%;
    max-width: 450px;
    padding: 5.5rem 0 0;
  }
}

.footer .soc-1 {
  position: relative;
  z-index: 1;
  justify-content: space-around;
  gap: 10px;
  & a {
    font-size: 1.7rem;
    width: 54px;
    height: 54px;
    background-color: #fff;
    border-radius: 100vw;
    display: flex;
    align-items: center;
    justify-content: center;

    &:hover {
      background-color: var(--prime5);
    }
  }
}

.footer .soc-2 {
  position: relative;
  z-index: 1;
  margin-top: 1rem;
  width: 100%;

  & .wrap {
    position: relative;
    display: flex;
    justify-content: space-between;
    padding-block: 1.5rem;
    padding-inline: 1.5rem;
  }

  & .wrap::after {
    content: "";
    position: absolute;
    inset: 0;
    margin: auto;
    background-color: #fff;
    width: 1px;
    height: 90%;
  }

  & .phones {
    line-height: 0.87;
    display: flex;
    flex-direction: column;
    text-align: right;

    &:hover {
      color: color-mix(in srgb, var(--prime5) 70%, black 30%);
      transform: scale(1.02);
      text-decoration: none;
    }
  }

  & span {
    font-size: 1.25rem;
    font-weight: 400;
  }

  & b {
    font-size: calc(2.75vw + 16px);
    font-weight: 900;
  }
}
.footer .sub-row {
  border-top: 1px solid #fff;
  padding-block: 2rem;
  font-size: 1.25rem;
  & b {
  }
}
.footer .container-fluid > .row:first-child {
  padding: 3rem 1rem 1rem;
}
.footer .container-fluid > .row + .row {
  display: flex;
  justify-content: center;
  border-radius: 20px;
  background-color: rgb(from var(--prime5) r g b / 0.95);
  align-items: center;
  padding: 1rem;
}

.footer .container-fluid > .row:last-child > div:last-child {
  display: flex;
  & span {
    margin-right: auto;
  }
}

.footer .links {
  background-color: red;
  & ul {
    font-size: calc(0.2vw + 16px);
    padding: 0;
    list-style-type: none;
  }
  & a {
    color: var(--text);
  }
}

.footer-sections-grid {
  position: relative;
  z-index: 1;
  & h2 {
    display: none;
  }

  & ul {
    list-style: none;
    padding-right: 0;
    font-size: 1.25rem;
    color: var(--text);
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    height: 240px;
    gap: 0.5rem 30px;
    font-weight: 400;
  }

  & a {
    font-size: calc(0.2vw + 16px);
    padding-bottom: 2rem;
  }
}

.footer p {
  margin: 0;
}

.footer .fin {
  background-color: #fff;
  display: flex;
  width: 100%;
  display: flex;
  justify-content: center;
  padding-block: 0.7rem;
  text-align: center;
  line-height: 1.1;

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

  & span,
  & .span {
    position: relative;
    display: inline-block;
    padding-inline: 1rem;

    &:not(:last-child)::after {
      content: "";
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      left: -0.2rem;
      width: 4px;
      height: 4px;
      background-color: var(--prime3);
      border-radius: 100vw;
    }
  }
}

@media (max-width: 1600px) {
  .footer .container-fluid > .row:first-child > div:last-child {
    &::after {
      width: 225px;
    }

    &::before {
      top: -5.75rem;
      background-size: cover;
      width: 350px;
      height: 120px;
    }
  }
}
@media (max-width: 1200px) {
  .footer .container-fluid > .row:first-child > div:last-child {
    &::after {
      width: 195px;
    }

    &::before {
      width: 290px;
      height: 104px;
    }
  }
}
@media (max-width: 991px) {
  .footer .container-fluid > .row:first-child > div:last-child {
    &::after {
      content: none;
    }

    &::before {
      content: none;
    }
  }
}
/** numbers **/

.numbers .title {
  justify-content: center;
}
.numbers .col {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.numbers .col h2 {
  padding-inline: 1.4rem;
  text-align: center;
  line-height: 1.1;
  font-weight: 400;
  font-size: calc(0.9vw + 16px);
  opacity: 0.8;
}

.numbers .col em {
  opacity: 0.8;
  font-style: normal;
  font-size: calc(1.7vw + 16px);
  font-weight: 900;
}
.numbers .col .icon {
}
.numbers .col img {
  width: 100%;
  max-width: 90px;
}
/* Breadcrumbs */

.breadcrumbs ul {
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: calc(0.5vw + 16px);
  position: relative;
  z-index: 9;
}

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

  & a {
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
  }

  &::after {
    font-family: "FontAwesome";
    content: "\002F";
    padding: 0 5px;
    display: inline-block;
    color: var(--prime2);
  }
  &:last-child:after {
    content: "";
    padding: 0;
  }
}

/* bNagish */

.bNagish-toggle {
  bottom: auto;
  top: 32px;
  left: 20px;
  width: 40px;
  height: 40px;
  background: #000;
  color: #fff;
  border-radius: 50%;

  display: none;
}
.bNagish-toggle em {
  font-size: 18px;
}
.bNagish-toggle:hover .text,
.bNagish-toggle:focus .text {
  padding: 3px;
  border-radius: 30px;
}

/* 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;
  left: -300px;
  width: 300px;
  height: 100%;
  z-index: 98;

  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: #045c91;
  border-right: 2px solid #fff;
}

.mobile-navigation.open {
  left: 0;
  visibility: visible;
}

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

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

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

  visibility: hidden;
}

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

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

.mobile-navigation nav a {
  color: #fff;
}

.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 #f0f0f0;
  padding: 0.65rem 0;
}
.mobile-navigation nav li > span {
  display: block;
  position: relative;
}
.mobile-navigation nav ul ul {
  background: #8b00006b;
}

.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: transparent;
  color: #fff;

  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: 62%;
}
.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: 3rem 1rem 2rem;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
}

.mobile-navigation-search input {
  display: block;
  width: 100%;
  padding: 1rem;
  background: rgb(from #fff r g b / 0.125);
  border: 2px solid #fff;
  border-radius: 50px;
  color: #fff;
  font-weight: 500;
}
.mobile-navigation-search input::placeholder {
  color: #fff;
}
.mobile-navigation-search button {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  background: none;
  border: 0;
  padding: 0 1rem;
  color: #fff;
}

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

.mobile-navigation .mobile-social {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding: 2rem 1rem;
  gap: 15px;
}

.mobile-navigation .mobile-social > a {
  flex-shrink: 0;
  flex-grow: 1;
  max-width: 55px;
  border-radius: 100vw;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  color: #fff;
  font-size: 24px;
}
.mobile-navigation .mobile-social > a:has(.accessibility) {
  display: none;
}
  @media (max-width: 765px) {
    .mobile-navigation .mobile-social > a {
      max-width: 40px;
      max-height: 40px;
    }
  }


/* Page * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
.page-container {
  max-width: 82vw;
  margin: auto;

  @media (max-width: 1500px) {
    max-width: 94vw;
  }
  @media (max-width: 1500px) {
    max-width: 92vw;
    margin-inline: auto;
  }
}

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

  @media (max-width: 1199px) {
    height: 365px;
  }

  @media (max-width: 991px) {
    height: 180px;
    margin-bottom: 1.2rem;
  }
}
.page-header .overlay {
  position: absolute;
  background: linear-gradient(
    0deg,
    var(--prime1) 0%,
    rgb(from var(--prime2) r g b / 0.25) 100%
  );
  z-index: 0;
  inset: 0;
  margin: auto;
  width: 100%;
  height: 100%;
  /* mix-blend-mode: multiply; */
}
.page-wrapper {
  margin-top: 3.5rem;
}

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

.page-content-head {
  /* background: rgb(from var(--prime1) r g b / 0.9); */
  color: #fff;
  padding: 2rem 1rem;
  position: relative;
  width: calc(100% - 2rem);
  z-index: 1;
  border-radius: 25px;
  margin-top: auto;
  margin-inline: auto;
  margin-bottom: 2.5rem;
  text-align: center;

  @media (max-width: 991px) {
    padding: 1rem;
    border-radius: 0;
    width: 100%;
  }
}

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

  @media (max-width: 991px) {
    font-weight: 700;
    font-size: calc(3vw + 12px);
  }
}

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

.page-content-body {
  background: #fff;
  padding: 1.5rem;
  min-height: 20rem;
}
.page-content-body .page-content-body {
  padding: 0;
}
.page-content-nav {
  display: none;
}

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

.colorful {
  color: var(--prime2);
  font-weight: 900;
  font-size: calc(2vw + 16px);
  & span {
    color: var(--prime1);
  }
}
/* 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;
}

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

  @media (max-width: 387px) {
    white-space: normal;
    overflow: hidden;
    text-overflow: initial;
  }
}
@media (max-width: 991px) {
  .sub-pages-nav ul > li {
    width: 100%;
  }
}

/* START OF GRID */
.sub-pages-nav:not(.with-icons) 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:not(.with-icons) 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:not(.with-icons) ul::after {
  content: "";
  flex: 1 1 30%;
  max-width: 30%;
  min-width: 200px;
  padding: 0.5rem;
  visibility: hidden;
}
.sub-pages-nav:not(.with-icons) ul li:last-child::after {
  content: "";
  position: relative;
  display: inline-block;
  width: 100%;
  height: 0;
  visibility: hidden;
}
.sub-pages-nav:not(.with-icons) 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:not(.with-icons) ul > li:nth-child(7n + 1) a .icon {
  background: var(--prime1);
}
.sub-pages-nav:not(.with-icons) ul > li:nth-child(7n + 2) a .icon {
  background: var(--prime2);
}
.sub-pages-nav:not(.with-icons) ul > li:nth-child(7n + 3) a .icon {
  background: var(--prime3);
}
.sub-pages-nav:not(.with-icons) ul > li:nth-child(7n + 4) a .icon {
  background: var(--prime4);
}
.sub-pages-nav:not(.with-icons) ul > li:nth-child(7n + 5) a .icon {
  background: var(--prime5);
}
.sub-pages-nav:not(.with-icons) ul > li:nth-child(7n + 6) a .icon {
  background: var(--prime6);
}
.sub-pages-nav:not(.with-icons) ul > li:nth-child(7n + 7) a .icon {
  background: var(--prime7);
}
.sub-pages-nav:not(.with-icons) 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:not(.with-icons) li a {
  position: relative;
  display: flex;
}
.sub-pages-nav:not(.with-icons) li a .fa-external-link {
  color: var(--prime7);
  font-size: 0.8rem;
  margin-top: 5px;
  position: absolute;
  left: 0.5rem;
}
.sub-pages-nav:not(.with-icons) 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:not(.with-icons) a .icon {
  position: relative;
  border-radius: 0 15px 15px 0;
  padding: 0;
  width: 22px;
}
.sub-pages-nav:not(.with-icons) 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 */

/** PIC nav **/
.container:has(.with-pic) {
  max-width: 100%;
  min-width: 100%;
  width: 100%;
}
.sub-pages-nav.with-pic ul {
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.sub-pages-nav.with-pic li {
  flex: 1 0 30%;
  max-width: 30%;

  &::after {
    content: none;
  }
}

.sub-pages-nav.with-pic .grade {
  background: linear-gradient(
    181deg,
    rgba(18, 189, 221, 0) 0%,
    rgb(22 103 161) 80%
  );
  position: absolute;
  height: 75%;
  bottom: 0;
  left: 0;
  width: 100%;
  filter: drop-shadow();
  transition: all 0.2s ease;
}
.sub-pages-nav.with-pic a {
  background-position: center;
  height: 100%;
  text-align: right;
  display: flex;
  overflow: hidden;
  position: relative;
  background-size: cover;
  aspect-ratio: 5 / 4;
  padding: 1rem 1rem 0;
  border-radius: 20px;
}
.sub-pages-nav.with-pic a .info {
  position: relative;
  margin: auto;
  inset: 0;
  width: 100%;
  height: 100%;
  color: #fff;
  transition: all 0.4s ease;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.sub-pages-nav.with-pic .name {
  display: block;
  font-size: 1.25rem;
  font-weight: 500;
  padding-bottom: 1rem;
  position: relative;
  transition: all 0.52s ease;
  line-height: 1;
  overflow-y: hidden;
  bottom: 0;
  min-height: 50px;
}

.sub-pages-nav.with-pic p {
  line-height: 1.1;
  transition: all 0.52s ease;
  overflow-y: clip;
  position: absolute;
  font-size: calc(0.1vw + 16px);
  bottom: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  width: 100%;
  transform: translateY(180px);
  padding-inline-end: 1.5rem;
}
.sub-pages-nav.with-pic p.hasText {
  max-height: 120px;
}
@media (max-width: 1199px) {
  .sub-pages-nav.with-pic li {
    flex: 1 0 47%;
    max-width: 47%;
    min-height: 200px;
  }
}
@media (min-width: 992px) {
  .sub-pages-nav.with-pic a:hover {
    text-decoration: none;
  }
}

@media (max-width: 767px) {
  .sub-pages-nav.with-pic li {
    flex: 1 0 100%;
    max-width: 100%;
  }
}
/** end of pics menu **/

/* START OF GRID ICONS*/

.sub-pages-nav.with-icons ul::after {
  content: "";
  flex: 1 1 25%;
  max-width: 25%;
  min-width: 200px;
  padding: 0.5rem;
  visibility: hidden;
}
.sub-pages-nav.with-icons ul {
  list-style: none;
  padding: 0;
  margin: 0 -1rem;
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  /* display: grid;
  grid-template-columns: repeat(3, 1fr); */
}

.sub-pages-nav.with-icons ul > li::after {
  content: none;
}
.sub-pages-nav.with-icons ul > li {
  position: relative;
  padding: 1.5rem 1rem;
  flex: 1 1 45%;
  max-width: 45%;
  @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.with-icons a {
  display: block;
  color: inherit;
  font-size: 1.3rem;
  border: none;
  padding: 2px;
  border-radius: 0;
  background-color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.sub-pages-nav.with-icons li a {
  position: relative;
  display: flex;
}
.sub-pages-nav.with-icons li a .fa-external-link {
  color: var(--prime4);
  font-size: 0.8rem;
  margin-top: 7px;
  position: absolute;
  left: 0.5rem;
}
.sub-pages-nav.with-icons 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.with-icons a .icon {
  position: relative;
  border-radius: 0;
  padding: 0;
}
.sub-pages-nav.with-icons a > span {
  white-space: normal;
  display: table-cell;
  vertical-align: middle;
  padding: 0.75rem 0.75rem;
  width: 98%;
  font-weight: 700;
  color: #545454;
  line-height: 1.1;
  text-align: center;
  font-size: 1.4rem;

  @media (max-width: 387px) {
    white-space: normal;
    overflow: hidden;
    text-overflow: initial;
  }
}

.sub-pages-nav.with-icons a .icon {
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 90px;
  height: auto;
}

.sub-pages-nav.with-icons a img {
  max-width: 100%;
  max-height: 70px;
  position: relative;
  object-fit: contain;
  margin-bottom: 0.25rem;
}

.sub-pages-nav.with-icons a .icon img {
  width: 50px;
  height: auto;
  position: relative;
  opacity: 0.7;
}
.sub-pages-nav.with-icons li:nth-child(5n + 1) a {
  border-color: var(--prime2);
}
.sub-pages-nav.with-icons li:nth-child(5n + 2) a {
  border-color: var(--prime2);
}
.sub-pages-nav.with-icons li:nth-child(5n + 3) a {
  border-color: var(--prime2);
}
.sub-pages-nav.with-icons li:nth-child(5n + 4) a {
  border-color: var(--prime2);
}
.sub-pages-nav.with-icons li:nth-child(5n + 5) a {
  border-color: var(--prime2);
}
.sub-pages-nav.with-icons .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;
}
.sub-pages-nav.with-icons ul li {
  min-width: unset;
  flex: 1 0 24%;
  max-width: 24%;
  border: 1px solid;
  border-radius: 2rem;
  margin: 1rem 0.15rem;
  padding: 1rem;
  border: 1px solid var(--prime1);
}
@media (max-width: 1600px) {
  .sub-pages-nav.with-icons ul li {
    flex: 1 0 32%;
    max-width: 32%;
  }
}
@media (max-width: 767px) {
  .sub-pages-nav.with-icons ul > li {
    flex: 1 0 45%;
    max-width: 45%;
  }
}
@media (max-width: 395px) {
  .sub-pages-nav.with-icons ul > li {
    flex: 1 0 100%;
    max-width: 100%;
  }
}

/* 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 h2,
.rich-content h3,
.rich-content h4,
.rich-content h5,
.rich-content h6 {
  margin-bottom: 1rem;
  font-weight: bold;
}

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

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

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

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

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

.rich-content .contact-man {
  display: block;
  color: var(--text);
  border-bottom: 3px solid var(--prime1);
  background: #e4f1f1;
  padding: 1rem;
}

.rich-content .contact-man .contact-name {
  font-size: 1.75rem;
  font-weight: 900;
  color: var(--prime1);
}

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

/* InPage form category group */

.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 {
  width: 100%;
}

.tofes-link em + em {
  display: none;
}
.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;
}

.slick-prev,
.slick-next {
  transform: translateY(-50%);
}
[dir="rtl"] .slick-next {
  left: 10px;
}
[dir="rtl"] .slick-prev {
  right: 10px;
}
[dir="rtl"] .slick-arrow {
  z-index: 9;
  background-color: var(--prime1-light);
  height: 50px;
  width: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 100vw;
}

/* page event */

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

/* InPage phonebook */

.page-phonebook-category {
  margin: 15px 0;

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

  border: 1px solid #e2e6ef;
  border-radius: 20px;
}

.page-phonebook-category-title h3 {
  color: #0372ac;
  background: #fff;
  margin: 0;
  padding: 0.5rem 1rem;
  font-size: 1.2rem;
  -o-transition: 0.5s;
  -ms-transition: 0.5s;
  -moz-transition: 0.5s;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  cursor: pointer;
}

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

.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 .info {
  background: #eaf3f0;
  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(--prime1);
}

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

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

.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: 1200px) and (max-height: 840px) {
  .header .logo {
    width: 160px;
  }
  .header .logo::before {
    bottom: -45px;
    width: 290px;
  }
  .header .logo img {
    margin-top: 32px;
  }
  .header.offset .logo img {
    margin-top: 5px;
  }
  .header nav > ul > li > span > a {
    font-size: 1rem;
    padding: 0;
  }
  .page-header {
    height: 360px;
  }
  .page-content-head {
    padding: 1rem;
    border-radius: 20px;
  }
}

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

@media (max-width: 991px) {
  .web-links {
    top: 70px;
    min-height: 300px;
    width: 39px;

    & .nest {
      height: 39px;
      margin-bottom: 2px;
    }

    & .wrap {
      height: 100%;
      &::before {
        top: -24px;
        width: 25px;
        height: 25px;
        left: 0;
        content: none;
      }
      &::after {
        width: 25px;
        height: 25px;
        left: 0;
        bottom: -19px;
        content: none;
      }

      & a {
        font-size: 1.2rem;
        width: 29px;
        height: 29px;
      }
    }
  }

  .header {
    height: 70px;
  }
  .header-shadow::before {
    bottom: 4px;
    width: 100%;
    max-width: 400px;
    height: 100%;
  }

  .header .logo {
    width: 140px;
    & img {
      width: 90%;
      margin-top: 10px;
    }
  }
  .header .logo::before {
    bottom: -25px;
    width: 160px;
    height: 70px;
  }

  button.icon-btn.lang-btn {
    order: -1;
  }

  .page-content-nav {
    display: block;
    margin: 2rem 0;
    padding-inline: 15px;
    background-color: #fff;
  }
  .header-side {
    padding: 0 0.5rem;
    width: calc(50% - 50px);
  }

  .header .icon-btn {
    display: none;
  }
  .header .header-side .lang-btn,
  .header .header-side .label,
  .header .header-side button {
    display: inline-block;
    font-size: 0.9rem;
    padding: 5px 0.4rem;
  }
  .header .header-side .label i {
    display: none;
  }

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

  .bNagish-toggle {
    top: auto;
    bottom: 12px;
    left: 20px;
  }

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

  .footer {
    border-radius: 0;
    padding: 1.5rem 1rem;

    &::after {
      max-width: 65%;
      opacity: 0.2;
    }
  }
  .footer-sections-grid {
    flex-direction: column;
    & ul {
      height: auto;
    }
  }
  .footer .soc-2 {
    & span {
      line-height: 1.2;
    }
  }
  .footer .container-fluid > .row:first-child {
    padding-inline: 0;
  }
  .footer .container-fluid > .row:first-child > div:last-child {
    &::before {
      width: 300px;
    }
  }
  .footer .soc-1 {
    & a {
      font-size: 1.25rem;
      width: 40px;
      height: 40px;
    }
  }

  .footer .wrap {
    margin: auto;
  }
  .footer .weblinks {
    padding: 0;
  }
  .footer .container-fluid > .row + .row {
    text-align: center;
  }
  .footer .container-fluid > .row:last-child > div:last-child {
    & span {
      margin-inline: auto;
    }
  }
  .footer .container-fluid > .row:first-child > div:last-child {
    &::before {
      top: -23.55rem;
      width: min(78%, 330px);
      height: 154px;
      background-size: contain;
    }
  }
  .footer .container-fluid > .row:first-child > div:last-child {
    &::after {
      top: -28rem;
      width: min(78%, 150px);
      height: 180px;
    }

    & .wrap {
      padding-top: 1.25rem;
    }
  }

  .footer .fin {
    line-height: 1.75;
    & span,
    & .span {
      padding-inline: 0.5rem;
    }
    & a::after {
      left: -3px;
    }
  }
}

@media (max-width: 767px) {
  .page-phonebook .contact-info {
    margin-left: 5px;
  }
  .page-phonebook .phonebook .info img {
    max-width: 90px;
  }
}

.page-phonebook .contact-info a {
  color: inherit;
}

@media (max-width: 360px) {
  .footer .container-fluid > .row:first-child > div:last-child {
    &::before {
      content: none;
    }

    &::after {
      content: 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: #5b9022;
  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;
}
}

