/* css reset https://github.com/hankchizljaw/modern-css-reset */
/* Box sizing rules */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul[role="list"],
ol[role="list"] {
  list-style: none;
}

/* Set core root defaults */
html {
  scroll-behavior: smooth;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img,
picture {
  max-width: 100%;
  display: block;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* css reset */


/* main common part */

html .loader {
  background: none repeat scroll 0 0 #fff;
  bottom: 0;
  height: 100%;
  left: 0;
  position: fixed;
  right: 0;
  top: 0;
  width: 100%;
  z-index: 9999;
}
html .loader_inner {
  background-image: url("../img/loader.gif");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  background-color: transparent;
  height: 90px;
  width: 90px;
  margin-top: -45px;
  margin-left: -45px;
  left: 50%;
  top: 50%;
  position: absolute;
}

body {
  font-size: 16px;
  min-width: 320px;
  position: relative;
  line-height: 1.6;
  font-family: "Roboto", Verdana, sans-serif;
  overflow-x: hidden;
  color: #363253;
}
body:after{
    display:none;
    /*content:  url("../img/sub-menu-backgr-on.png") url("../img/sub-menu-backgr.png") ;*/
}

.hidden {
  display: none;
}

p {
  margin-top: 15px;
  margin-bottom: 15px;
  line-height: 26px;
}

a {
  font-weight: 500;
  text-decoration: none;
  color: #4b75c3;
  border-bottom: 1px dashed #4b75c3;
  transition: color 0.5s ease;
}
a:hover, a:focus {
  color: #7b7463;
  border-bottom: 1px dashed #7b7463;
  text-decoration: none;
  transition: color 0.5s ease;
}

a.contains-image, a.contains-image:hover, a.contains-image:focus, a.contains-image img, a.contains-image:hover img, a.contains-image:focus img { 
  border: none !important; 
  color: transparent;
  outline: none !important;
}

.noborder {
  border: none !important;
  text-decoration: none;
  border-radius: 0 !important;
}
a.contains-image2, a.contains-image2:hover, a.contains-image2:focus, a.contains-image2 img, a.contains-image2:hover img, a.contains-image2:focus img {
  /* border: none !important; */
  color: transparent;
  outline: none !important;
}

#main {
  min-height: 600px;
}

.heb_text {

    direction: rtl;
    font-family: 'Assistant', sans-serif !important;

}

/* List */

.editor_content ul {
    list-style: outside none none;
    margin-bottom: 30px;
    margin-left: 5px;
    margin-top: 0;
    padding-left: 15px;
}
.editor_content ul li {
    padding-left: 30px;
    background-image: url(../img/icon-text.gif);
    background-position: 0px 4px;
    background-size: 19px 19px;
    margin-bottom: 13px;
    background-repeat: no-repeat;
}


/* List */


/* Grid system */


.container,
.container-fluid,
.container-xxl,
.container-xl,
.container-lg,
.container-md,
.container-sm {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 576px) {
  .container-sm, .container {
    max-width: 540px;
  }
}
@media (min-width: 768px) {
  .container-md, .container-sm, .container {
    max-width: 720px;
  }
}
@media (min-width: 992px) {
  .container-lg, .container-md, .container-sm, .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .container-xl, .container-lg, .container-md, .container-sm, .container {
    max-width: 1140px;
  }
}
@media (min-width: 1400px) {
  .container-xxl, .container-xl, .container-lg, .container-md, .container-sm, .container {
    max-width: 1320px;
  }
}

.clearfix::after {
  content: "";
  clear: both;
  display: table;
}

.clearfix::after {
  content: "";
  clear: both;
  display: table;
}

.row {
  --bs-gutter-x: 15px;
  --bs-gutter-y: 0;
  display: flex;
  flex-wrap: wrap;
  margin-top: calc(var(--bs-gutter-y) * -1);
  margin-right: calc(var(--bs-gutter-x) / -2);
  margin-left: calc(var(--bs-gutter-x) / -2);
}
.row > * {
  flex-shrink: 0;
  width: 100%;
  max-width: 100%;
  padding-right: calc(var(--bs-gutter-x) / 2);
  padding-left: calc(var(--bs-gutter-x) / 2);
  margin-top: var(--bs-gutter-y);
}

.col {
  flex: 1 0 0%;
}

/* Grid system */



/* Utill */



.sticky {
  position: fixed;
  width: 100%;
  left: 0;
  top: 0;
  z-index: 1; /* 100 */
  border-top: 0;
  box-shadow: 0px 4px 6px 1px rgba(0,0,0,0.4);
}

#scroll {
    position: fixed;
    right: 70px;
    bottom: 30px;
    cursor: pointer;
    width: 50px;
    height: 50px;
    background-color: #A8A4A1;
    text-indent: -9999px;
    display: none;
    -webkit-border-radius: 60px;
    -moz-border-radius: 60px;
    border-radius: 60px;
    z-index: 1000;
}
#scroll span {
    position:absolute;
    top:50%;
    left:50%;
    margin-left:-8px;
    margin-top:-12px;
    height:0;
    width:0;
    border:8px solid transparent;
    border-bottom-color:#ffffff;
}
#scroll:hover {
    background-color:#6B90E1;
    opacity:1;
}

a.skip-main {
    height: 1px;
    left: -999px;
    overflow: hidden;
    position: absolute;
    top: auto;
    width: 1px;
    z-index: -999;
}
a.skip-main:hover {
    color: #d86400;
}
a.skip-main:focus, a.skip-main:active {
  background-color: #f0eff4;
  border: 1px solid #1b3873;
  color: #556ca2;
  font-size: 14px;
  height: 35px;
  left: 5px;
  overflow: hidden;
  padding-top: 4px;
  text-align: center;
  top: 7px;
  width: 240px;
  z-index: 999;
  transition: all 0.8s; 
}

/* Utill */

/**/


/* ---- grid ---- */

.popup-gallery-grid {
  max-width: 1290px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 30px;
  margin-bottom: 40px;
}

/* clear fix */
.popup-gallery-grid:after {
  content: '';
  display: block;
  clear: both;
}

/* ---- .grid-item ---- */

.popup-gallery-sizer,
.popup-gallery-grid-item {
  /*width: 33.333%;*/
  width: 20%;
}

.popup-gallery-grid-item {
    float: left;
      padding: 4px;
      z-index:0;
}

.popup-gallery-grid-item img {
    display: block;
    max-width: 100%;
    background-color: #fff;
    border: 1px solid #c2bcc8;
    padding: 2px;
    display: block;
    /* outline: 1px solid #87b5e7 !important; */
    padding: 2px;
    -moz-transition: all 0.8s;
    -webkit-transition: all 0.8s;
    transition: all 0.8s;
    z-index: 0;
    opacity: 1;
}

.popup-gallery-grid-item:hover img, .popup-gallery-grid-item:focus img {

  -moz-transform: scale(1.2);
  -webkit-transform: scale(1.2);
  transform: scale(1.2);
  -moz-transition: all 0.8s;
  -webkit-transition: all 0.8s;
  transition: all 0.8s; 
  /*
    border: 1px solid #87b5e7 !important;
    outline: 1px solid #87b5e7 !important;  
    */
}

.popup-gallery-grid-item a:focus {
    border: 0px solid #87b5e7 !important;
    outline: 0px solid #87b5e7 !important;    
}

.gridimg {
    opacity:1;
    transition: opacity 0.5s;
}
.opaque {
    opacity:0.75;
    transition: opacity 0.5s;
  -moz-transition: all 0.8s;
  -webkit-transition: all 0.8s;
  transition: all 0.8s; 
}

.zopaque {
  -moz-transform: scale(1.1);
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
  -moz-transition: all 0.8s;
  -webkit-transition: all 0.8s;
  transition: all 0.8s;

}

@media only screen and (max-width : 992px) {
  .popup-gallery-sizer, .popup-gallery-grid-item {
    width: 50%;
  }
}

@media only screen and (max-width : 566px) {
  .popup-gallery-sizer, .popup-gallery-grid-item {
    width: 100%;
  }
}


/* gal */


  [data-whatinput="keyboard"]   a:focus  {
   outline: 2px solid #e77800;
   border: none;
  }
  [data-whatinput="keyboard"]   a.splnkimg:focus img {

   outline: 2px solid red !important;
   border: 2px solid red !important;
   filter: grayscale(0%);
    opacity: 1;

  }

  [data-whatinput="keyboard"]    a#flypnavfixed:focus {
   outline: 2px solid #e77800;
   border: none;
  }  

#flyoutnavkbfixed ul li ul li a:focus {
   outline: 2px solid #e77800;
   border: none;
  }  




/* Page Inside menu  */

.ins_nav_wrapper {
  width: 100%;
  padding-top: 37px;
  margin-bottom: -25px;
}
nav#flyoutnavkbfixed {
  display: block;
  margin-right: auto;
  width: 266px;
  background-color:  rgba(243,251,254,0.9); /*rgba(255,255,255,0.9); */
  margin-left: auto;
  border: 1px solid #8bbfd8;
}
nav#flyoutnavkbfixed > ul > li.has-submenu > ul {
  border-color: #589AE4;
  background-color: rgba(243,251,254,0.9); /* #f3fbfe; rgba(255,255,255,0.85); /* rgba(255,255,255,0.9); */
  border-image: none;
  border-style: solid;
  border-width: 0 1px 1px;
  margin-left: -1px;
  padding-bottom: 8px;
  padding-top: 10px;
  width: 266px;
  z-index: 100;
  box-shadow: 0px 10px 9px -4px rgba(0,0,0,.13);
}
nav#flyoutnavkbfixed a {
  text-decoration: none;
  padding-left: 0;
  padding-right: 0;
  font-size: 18px;
  border-bottom: none;
  display: inline-block;
  vertical-align: middle;
  padding-top: 0px;
  width: 100%;
  text-align: center;
  height: 100%;
  border: 0;
  outline: 0;
}
nav#flyoutnavkbfixed li a .arrow {
  font-size: 14px;
  margin-right: 16px;
  position: absolute;
  top: 6px;
  right: 0px;
  transform: scale(1.0) rotate(0deg);
  transition: transform .3s ease-in-out; 
}
nav#flyoutnavkbfixed  li.open a .arrow {
  transition: transform .3s ease-in-out;
  transform: scale(1.0) rotate(180deg);
}
nav#flyoutnavkbfixed > ul > li.has-submenu > ul > li > a {
  font-size: 16px;
  line-height: 20px;
  text-align: center;
}
nav#flyoutnavkbfixed > ul > li {
  display: block;
  height: auto;
  list-style-image: none;
  list-style-position: outside;
  list-style-type: none;
  padding-right: 11px;
  position: relative;
  margin: 0;
  padding-top: 2px;
  padding-bottom: 2px;
  background-image: none;
  padding-left: 0;
}


nav#flyoutnavkbfixed > ul {
  margin: 0;
  padding: 0;
  display: block;
  width: 100%;
}
nav#flyoutnavkbfixed > ul > li > ul {
    display: none;
    position:absolute;
    left:0;
    right:0;
    top:100%;
    padding:0;
    margin:0;
    /*background-color: transparent;*/
    list-style: none;
    list-style-image: none !important;
}
nav#flyoutnavkbfixed > ul > li.has-submenu > ul, 
nav#flyoutnavkbfixed > ul > li.has-submenu > ul > li {
      list-style: none;
      list-style-image: none !important;
      background-image: none;
      padding-left: 0;
}
nav#flyoutnavkbfixed > ul > li.open > ul {
    display:block;
  }
nav#flyoutnavkbfixed > ul > li > ul > li {
  padding-bottom: 6px;
}

/* Page Inside menu  */



/* show|hide */
.to_expand {
    display: none;
    border: 1px solid #dee0ff;
    background-color: #f7f9fe;
    margin: 0;
    padding-left: 16px;
    padding-right: 16px;
    font-size: 14px;
    color: #3b3169;
    margin-bottom: 20px;
    margin-top: 10px;
}
.espan {
  font-weight: 500;
  width: 100%;
}
.to_exp_close {
    float: right;
    color: #005997 !important;
}
.noborder {
  border: none !important;
  text-decoration: none;
}
/* show|hide */

/*  remodal */
.remodal {
  border-bottom: 8px solid #0eb8ff;
  border-top: 8px solid #0eb8ff;
  border-left: 1px solid #0eb8ff;
  border-right: 1px solid #0eb8ff;
  color: #005997;
  background-color: #f3fbfe; /*rgba(250,253,255,1);*/
  padding-top: 10px;
  padding-bottom: 33px;
  padding-left: 38px;
  padding-right: 38px;
  z-index: 10000;
  position: relative;
}
.publ_remodal_content_header {
  /*font-family: "ZurichW01-LightCondense1121579";*/
  font-weight: 500;
  font-size: 32px;
  text-align: center;
  margin: 0;
  background-color: transparent;
}
.publ_remodal_content_wrap {
  text-align: left;
  background-color: transparent;
}
.btn_close {
  color: transparent;
}

.fff {
  direction: rtl;
}
.remodal-close::before {
  font-size: 40px;
  line-height: 45px;
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 35px;
  content: "\00d7";
  text-align: center;
}
.remodal-close {
  position: absolute;
  top: 0;
  right: 0;
  left: unset;
  display: block;
  overflow: visible;
  width: auto;
  height: auto;
  margin: 0;
  padding: 0;
  cursor: pointer;
  -webkit-transition: color 0.2s;
  transition: color 0.2s;
  text-decoration: none;
  color: #005997;
  border: 0;
  outline: 0;
  background: transparent;
}
.remodal-close:hover, .remodal-close:focus {
  color: #2b2e38;
}

/*  remodal */

mjx-math {
    white-space: normal !important;
}

















/* this site */

.backti {
  text-align: center;
}

.hmenu_wrapper {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  justify-content: center;
  margin-top: 20px;
  font-style: 18px;
}
.hm_sep img {
    margin-left: 10px;
    margin-right: 10px;
    margin-top: 7px;
}



/* this site */


