* {
  font-family: "Heebo", arial, sans-serif;
}
/* Colors */

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

  --prime1: #1276a1;
  --prime1RGB: 36, 143, 202;
  --prime2: #bb1518;
  --prime2b: rgb(168, 25, 49);
  --darkred: rgb(146, 8, 31);
  --prime2RGB: 248, 84, 111;
  --prime22RGB: 215, 24, 55;
  --prime3: #15aaeb;
  --prime4: #0ea646;
  --prime5: #f5b841;
  --prime6: #f89837;
  --prime7: #833894;
  --text: #434343;
  --darkblue: #134b7c;
}

/* Bootstrap Override */

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

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

.table thead th {
  border-bottom: 2px solid var(--prime2);
  background: rgba(var(--prime2RGB), 0.1);
}

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

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 */

/* Navigation */

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

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

.header nav button {
  display: none;
}

.header > nav {
  padding-right: 5.5rem;
  display: flex;
  align-items: center;
  height: 100%;

  @media (max-width: 1199px) {
    display: none;
  }
}
.header > nav ul {
  list-style: none;
}
.header nav > ul {
  padding: 0;
  margin: 0;
  text-align: center;
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  margin-inline-start: 0.25rem;
}
.header nav > ul > li {
  display: inline-block;
  position: relative;
  padding: 0.1rem 0;
}
.header nav > ul > li:last-child > span a::after {
  content: none;
}
.header nav > ul > li:hover > ul {
  display: block;
}
.header nav > ul > li > span > a {
  display: block;
  font-size: 1.1rem;
  position: relative;
  margin-inline-end: 1.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(--prime4);
  position: absolute;
  top: calc(100% + 3px);
  left: 0;
  right: 0;
  margin: auto;
}

.header nav > ul > li > span > a:hover::before {
  /* border-bottom: 2px solid var(--prime2); */
  width: calc(100% - 20px);
}
.header nav > ul > li > span > a:hover {
  text-decoration: none;
  color: var(--prime4);
}
.header nav > ul > li:last-of-type > span > a {
  margin-inline-end: 0;
}
.header nav > ul > li > span > a::after {
  position: absolute;
  content: "";
  padding: 0;
  width: 5px;
  height: 5px;
  background-color: var(--prime4);
  display: inline-block;
  margin-inline: 0.5rem;
  border-radius: 100vw;
  top: 12px;
}
.header nav > ul > li:nth-of-type(6n + 1) > span > a::after {
  background-color: var(--prime2);
}
.header nav > ul > li:nth-of-type(6n + 2) > span > a::after {
  background-color: var(--prime1);
}
.header nav > ul > li:nth-of-type(6n + 3) > span > a::after {
  background-color: var(--prime5);
}
.header nav > ul > li:nth-of-type(6n + 4) > span > a::after {
  background-color: var(--prime4);
}
.header nav > ul > li:nth-of-type(6n + 5) > span > a::after {
  background-color: var(--prime5);
}
.header nav > ul > li:nth-of-type(6n + 6) > span > a::after {
  background-color: var(--prime6);
}

.header nav > ul > li > span > a.on {
  font-weight: bold;
}
.header nav > ul > li > ul {
  display: none;
  text-align: right;
  position: absolute;
  top: 105%;
  right: 0;
  z-index: 9999;
  width: 500px;
  background: #fff;
  color: #000;
  padding: 1rem 1.25rem;
  box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.3);
  backface-visibility: hidden;
  transform: translateZ(0);
  -webkit-font-smoothing: subpixel-antialiased;
  margin-top: 0;
  border-radius: 10px;
  column-count: 2;
}
.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;
}
.header nav > ul > li > ul > li a:hover {
  color: var(--prime1);
  font-weight: 500;
}
.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 > ul > li > span > a em.arrow {
  font-family: "FontAwesome";
  font-style: normal;
  content: none;
}
.header nav > ul > li > ul > li > span > a em.arrow::before {
  content: "\f104";
  content: none;
}

.header-side .icon-btn {
  float: right;
  width: 25px;
  height: 30px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 25px;
  transition: all 0.3s ease-in;
}

/* Header */

.header {
  background: #fff;
  color: #000;
  height: 72px;
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  z-index: 99;
  display: flex;
  transition: 0.5s;
  border-bottom: 1px solid var(--prime6);
}

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

/* Logo */

.header .logo {
  position: relative;
  top: 22px;
  right: 50px;
  display: block;
  z-index: 3;
  transition: all 0.3s ease;
  height: 130px;
  width: 130px;
  display: flex;
  justify-content: center;
  align-items: center;

  @media (max-width: 1199px) {
    right: 1rem;
  }

  @media (max-width: 991px) {
    top: 15px;
    right: 25px;
  }

  @media (max-width: 600px) {
    top: -22px;
    right: 5px;
  }
}

.header .logo img {
  display: block;
  aspect-ratio: 1;
  width: inherit;
  position: relative;
  z-index: 1;
  transition: all 0.3s ease;

  @media (max-width: 600px) {
    width: 62px;
    height: 62px;
  }

  @media (max-width: 370px) {
    width: 50px;
    height: 50px;
  }
}

.header.offset .logo img {
  @media (max-width: 991px) {
    width: 65px;
    height: 65px;
  }
}
.header.offset .logo {
  top: 4px;
  @media (max-width: 991px) {
    top: -29px;
  }
}

.header .logo::after {
  content: "";
  position: absolute;
  width: 150px;
  height: 150px;
  top: 50%;
  right: 50%;
  transform: translate(50%, -50%);
  background-color: #ffffff;
  transition: all 0.3s ease;
  border-radius: 100vw;

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

  @media (max-width: 600px) {
    width: 92px;
    height: 92px;
  }
  @media (max-width: 370px) {
    width: 69px;
    height: 69px;
  }
}
.header.offset .logo::after {
  background-color: #ffffff;

  @media (max-width: 991px) {
    background-color: #ffffff00;
  }
}
/* Header Icons */
.symbols {
  max-width: 287px;
  z-index: 9;
  position: absolute;
  top: 175px;
  left: 3.5rem;
  display: flex;
  gap: 2rem;
  justify-content: flex-end;
  transition: all 0.25s ease-out;
  opacity: 1;
  pointer-events: all;

  @media (max-width: 991px) {
    top: 5px;
    left: 1.5rem;
    max-width: 220px;
  }
}

.symbols a {
  flex: 0 1 auto;
}
.symbols a:hover {
  transform: scale(1.1);
}
.symbols img {
  width: 90%;
}
.header .ni img {
  width: 45px;
}
.header.offset .symbols {
  opacity: 0;
  transform: translateY(10px);
  z-index: -1;
  pointer-events: none;
}
.header-side {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  margin-right: auto;
  gap: 35px;
  padding: 0;
  margin-left: 7rem;
  transition: all 0.2s ease;

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

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

/* .header.offset .header-side {
  margin-top: 74px;

  @media (max-width: 1199px) {
    margin-left: 1.5rem;
    margin-top: 25px;
  }
} */

.header-side a.icon-btn {
  float: right;
  height: 30px;
  color: #fff;
  margin-left: 0.15rem;
  border-radius: 100vw;
  height: 40px;
  width: 40px;
  border: 1px solid #cfcfcf;
  padding: 5px;
  background-color: #fff;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0);
  transition: all 0.2s ease;
  background-repeat: no-repeat;
  background-position: center;

  @media (max-width: 1199px) {
    height: 35px;
    width: 35px;
    padding: 2px;
  }
}

.header-side a.icon-btn > span {
  position: relative;
  width: 100%;
  height: 100%;
  display: block;
  border-radius: 100vw;
  transition: all 0.2s ease;
}
.header a.icon-btn:hover > span {
  transform: scale(1.1);
}
.header.offset .icon-btn {
  box-shadow: 1px 4px 9px rgba(0, 0, 0, 0.3);
}
.header-side a.icon-btn.each_model {
  display: flex;
  align-items: center;
  width: 122px;
  width: 75px;
  background-size: 75px;
  background-position: center left;
}
.header-side a.icon-btn.each_model .offset {
  font-size: 1.25rem;
  position: relative;
  top: auto;
  color: var(--prime1);
  font-weight: 900;
}
.header-side a.icon-btn em {
  position: absolute;
  top: 50%;
  left: 50%;
  margin-right: -50%;
  transform: translate(-50%, -50%);
  font-size: 18px;

  @media (max-width: 1199px) {
    font-size: 16px;
  }
}

/* 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 input {
  border: 0;
  background: #fff;
  width: 100%;
  font-size: 1.5em;
  padding: 30px;
  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);
}
.header .search {
  width: 40px;
  height: 40px;
  border-radius: 100vw;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
}

.header .search span {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  width: 100%;
}
/* Toggle Navigation Button */

a.toggle-nav {
  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 var(--prime2);
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);

  display: none;
}

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

@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: 16px;
    left: 35px;
    width: 40px;
    height: 40px;
    background: var(--prime2);
    color: #fff;
    display: block;
    padding: 0.6rem;
    text-align: center;
    border-radius: 50%;
  }

  a.toggle-nav em {
    font-size: 18px;
  }
  .mobile-social .icon-btn:has(.accessibility),
  .mobile-social .icon-btn:has(.signup) {
    display: none;
  }
}

/* Footer */

.partners {
  padding: 60px 0;
  background: #f1f1f1;
  position: relative;
}

.partners:before {
  content: "";
  height: 3px;
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;

  background: rgb(0, 174, 239);
  background: linear-gradient(
    90deg,
    rgba(0, 174, 239, 1) 0%,
    rgba(57, 181, 74, 1) 20%,
    rgba(247, 148, 30, 1) 40%,
    rgba(127, 62, 152, 1) 60%,
    rgba(223, 212, 11, 1) 80%,
    rgba(237, 32, 36, 1) 100%
  );
}

.partners:after {
  content: "";
  height: 3px;
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;

  background: rgb(0, 174, 239);
  background: linear-gradient(
    90deg,
    rgba(0, 174, 239, 1) 0%,
    rgba(57, 181, 74, 1) 20%,
    rgba(247, 148, 30, 1) 40%,
    rgba(127, 62, 152, 1) 60%,
    rgba(223, 212, 11, 1) 80%,
    rgba(237, 32, 36, 1) 100%
  );
}

.partners-slick {
  padding: 0;
}

.partner {
  text-align: center;
  display: block;
  margin: 0 2rem;
  color: #333;
  max-width: 160px;
  margin: 0 auto;
}

.partner figure {
  position: relative;
}

.partner .icon {
  border: 2px solid #fff;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  position: relative;
  padding-bottom: 100%;
  border-radius: 50%;
  background: #fff;
}

.partner .icon img {
  position: absolute;
  top: 50%;
  left: 50%;
  margin-right: -50%;
  transform: translate(-50%, -50%);

  max-width: 80%;
  max-height: 80%;
}

.partners-slick {
  padding: 0;
}

.partner {
  text-align: center;
  display: block;
  margin: 5px 2rem;
  color: #333;
  max-width: 160px;
  margin: 0 auto;
}

.partner figure {
  position: relative;
}

.partner .icon {
  border: 2px solid #fff;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  position: relative;
  padding-bottom: 100%;
  border-radius: 50%;
  background: #fff;
}

.partner .icon img {
  position: absolute;
  top: 50%;
  left: 50%;
  margin-right: -50%;
  transform: translate(-50%, -50%);

  max-width: 80%;
  max-height: 80%;
}
.footer .top {
  background: #323232;
  background-color: #000834;
  color: #fff;
  padding: 2rem 0;
}

.footer .bottom {
  background: #282828;
  color: #fff;
  padding: 2rem 0;
  text-align: center;
}

.footer a {
  color: #93ffff;
}

.footer strong {
  color: #93ffff;
}

.footer h2,
.footer h3 {
  color: #93ffff;
}

.footer h2 {
  font-size: 1.4rem;
}

.footer h3 {
  font-size: 1.2rem;
}

.footer .btn-primary {
  color: #323232;
  background-color: #93ffff;
  border-color: #93ffff;
}
.footer .smart-form .required-live-text {
  color: #ff6e6e;
}
.footer .partner,
.footer .partner a {
  max-width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.footer figure {
  flex: 1 0 20%;
  @media (max-width: 1400px) {
    flex: 1 0 49%;
  }

  @media (max-width: 370px) {
    flex: 1 0 100%;
  }
}
.footer .partner a {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 1rem;
}

.footer .partner .icon {
  width: 90px;
  height: 90px;
  margin: auto;
  margin-bottom: 10px;
}
.footer .partner .icon {
  padding-bottom: 0;
}

.footer .partner figcaption {
  display: block;
  margin-inline: auto;
  max-width: 75%;
}
/* Breadcrumbs */

.breadcrumbs {
}

.breadcrumbs a {
}

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

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

.breadcrumbs ul > li:after {
  font-family: "FontAwesome";
  content: "\f104";
  padding: 0 5px;
  display: inline-block;
}

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

/* bNagish */

.bNagish,
.bNagish-container {
  position: static;
  display: inline;
}

.bNagish-toggle {
  position: absolute;
  bottom: auto;
  top: 18px;
  left: 40px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #fff;
}

@media (max-width: 1199px) {
  .bNagish-toggle {
    top: 14px;
    left: 95px;
  }
}

.bNagish-toggle em {
  color: #000;
}

/* Skip Ads * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */

.skip-ad {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  z-index: 99999;
}

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

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

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

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

.skip-ad .skip-ad-close {
  position: fixed;
  top: 30px;
  width: 100%;
  text-align: left;
}

.skip-ad #close-skip-ad {
  display: inline-block;
  padding: 10px 20px;
  background: #fff;
  border-radius: 5px;
}

.skip-ad #close-skip-ad:focus,
.skip-ad #close-skip-ad:hover {
  background: red;
  color: #000;
}

/* Mobile Navigation  * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */

.mobile-navigation {
  position: fixed;
  top: 0;
  left: -300px;
  width: 300px;
  height: 100%;
  background: #f1f1f1;
  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);
}

.mobile-navigation.open {
  left: 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;
  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;
  background: #fff;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
}

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

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

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

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

.mobile-navigation-search {
  position: relative;
  margin: 1rem;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
}

.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 {
  background: #031930;
  border-right: 2px solid #1e99d9;
}

.mobile-navigation .content .head .button {
  background: #1e99d9;
  color: #000;
}

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

/* Page Header */

.page-header {
  height: 460px;

  background-repeat: no-repeat;
  background-position: center center;

  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;

  position: relative;

  z-index: -1;

  @media (max-width: 991px) {
    height: 220px;
  }
}

/* Page Content */

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

@media (min-width: 992px) {
  .page-content {
    margin-top: -7.6rem;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
  }
}

@media (max-width: 991px) {
  .page-content {
    margin: 0 -15px;
  }
}

.page-content-head {
  background: #0a648c;
  color: #fff;
  padding: 1.5rem;
  position: relative;
}

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

.page-content-head h1 {
  margin: 0;
}

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

.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 {
  padding: 1rem;
  display: block;
}

/* Social Sharing Buttons */

.social-share {
  font-size: 16px;
  text-align: center;
  margin: 1.5rem;
}

.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 {
  list-style: none;
  padding: 0;
  margin: 0 -1rem;
}

.sub-pages-nav ul ul {
  display: none;
}

.sub-pages-nav ul > li {
  width: 50%;
  float: right;
  position: relative;
  padding: 1rem;
}

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

.sub-pages-nav a {
  display: block;
  color: inherit;
  border-right: 3px solid #031930;
  background: #ffffff;
  padding: 1rem;
  font-size: 1.3rem;
  border-radius: 10px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}

.sub-pages-nav ul > li:nth-child(5n + 1) a {
  border-right: 4px solid var(--prime1);
}

.sub-pages-nav ul > li:nth-child(5n + 2) a {
  border-right: 4px solid var(--prime2);
}

.sub-pages-nav ul > li:nth-child(5n + 3) a {
  border-right: 4px solid var(--prime3);
}

.sub-pages-nav ul > li:nth-child(5n + 4) a {
  border-right: 4px solid var(--prime4);
}

.sub-pages-nav ul > li:nth-child(5n + 5) a {
  border-right: 4px solid var(--prime5);
}

.sub-pages-nav ul > li:nth-child(5n + 1) .arrow {
  color: var(--prime7);
}

.sub-pages-nav ul > li:nth-child(5n + 2) .arrow {
  color: var(--prime6);
}

.sub-pages-nav ul > li:nth-child(5n + 3) .arrow {
  color: var(--prime1);
}

.sub-pages-nav ul > li:nth-child(5n + 4) .arrow {
  color: var(--prime2);
}

.sub-pages-nav ul > li:nth-child(5n + 5) .arrow {
  color: var(--prime3);
}
.sub-pages-nav.outside a {
  background: #fff;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
}

.sub-pages-nav .arrow {
  font-family: "FontAwesome";
  font-style: normal;
  color: #657177;
}

.sub-pages-nav .arrow:before {
  content: "\f104";
}

/* 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;
}

.rich-content h2 {
  color: #1e99d9;
}

.rich-content h3 {
  color: #1e99d9;
}

.rich-content .contact-man {
  display: block;
  color: inherit;
  border-right: 3px solid var(--prime3);
  background: #f0f4f5;
  padding: 1.5rem;
}

.rich-content .contact-man .contact-name {
  font-size: 1.5rem;
}

/* 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 {
  margin-top: 2rem;
}

.card-header {
  background: #1d99d9;
  color: #fff;
}

.card-body {
  background: #f1f1f1;
}
