footer {
  background: var(--footer-bg);
  padding: 40px 0;
  text-align: center;
  color: var(--footer-text-color);
}

.main_header {
  background: var(--header-bg);
  padding: 40px 0;
  -webkit-transition: top 0.3s ease-in-out;
  -o-transition: top 0.3s ease-in-out;
  transition: top 0.3s ease-in-out;
  position: -webkit-sticky;
  position: sticky;
  left: 0;
  right: 0;
  top: 0;
  width: 100%;
  z-index: 10;
}

.main_header.logo {
  padding: 20px 0;
}

.main_header__wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.main_header__logo {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  margin-left: 20px;
}

.main_header__nav ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}

.main_header__nav ul li + li {
  margin-right: 20px;
}

.main_header__nav ul a {
  color: var(--header-menu-color);
  font-size: 18px;
}

.main_header__hamburger {
  display: none;
  width: 20px;
}

.main_header__hamburger-btn {
  width: 20px;
  height: 14px;
  cursor: pointer;
  -webkit-transform: rotate(0deg);
      -ms-transform: rotate(0deg);
          transform: rotate(0deg);
  -webkit-transition: .3s ease;
  -o-transition: .3s ease;
  transition: .3s ease;
  position: relative;
  z-index: 10;
}

.main_header__hamburger-btn span {
  width: 100%;
  height: 2px;
  background: #fff;
  display: block;
  -webkit-transition: .3s ease;
  -o-transition: .3s ease;
  transition: .3s ease;
  position: absolute;
  opacity: 1;
  right: 0;
  text-indent: -99999px;
  border-radius: 3px;
}

.main_header__hamburger-btn span:nth-child(1) {
  top: 0;
}

.main_header__hamburger-btn span:nth-child(2),
.main_header__hamburger-btn span:nth-child(3) {
  top: 7px;
}

.main_header__hamburger-btn span:nth-child(4) {
  top: 14px;
}

.main_header__hamburger-btn.open span:nth-child(1) {
  top: 12px;
  left: 50%;
  width: 0%;
}

.main_header__hamburger-btn.open span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

.main_header__hamburger-btn.open span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.main_header__hamburger-btn.open span:nth-child(4) {
  top: 12px;
  left: 50%;
  width: 0%;
}

body {
  font-family: 'Open Sans Hebrew';
}

body.menu-open {
  overflow: hidden;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding-left: 24px;
  padding-right: 24px;
  width: 100%;
}

.site_wrap {
  background: var(--body-bg);
  color: var(--body-text-color);
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
     -moz-box-orient: vertical;
     -moz-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.site_wrap__cover {
  height: 420px;
}

.site_wrap__cover img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.site_wrap__intro {
  text-align: center;
  padding: 42px 0;
  color: var(--body-text-color);
}

.site_wrap__intro h1,
.site_wrap__intro h2,
.site_wrap__intro h3,
.site_wrap__intro h4,
.site_wrap__intro h5 {
  margin: 0;
}

.site_wrap__posts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 32px;
}

.site_wrap__pagination {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
     -moz-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 40px 0 40px;
}

.site_wrap__pagination .navigation .screen-reader-text {
  display: none;
}

.site_wrap__pagination .nav-links {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
     -moz-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.site_wrap__pagination span {
  font-size: 18px;
  font-weight: 700;
  color: #000;
  margin: 0 4px;
  padding: 0 4px;
  height: 35px;
  width: 35px;
  border-radius: 100%;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
     -moz-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.site_wrap__pagination span.current {
  background-color: var(--header-bg);
  color: #fff;
}

.site_wrap__pagination a {
  margin: 0 4px;
  padding: 0 4px;
  font-size: 18px;
  font-weight: 500;
  color: var(--body-text-color);
  height: 35px;
  width: 35px;
  position: relative;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
     -moz-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 100%;
  -webkit-transition: .3s;
  -o-transition: .3s;
  transition: .3s;
}

.site_wrap__singlepost {
  color: #000;
}

.site_wrap__singlepost-wrap {
  margin: 40px 0;
  background: #fff;
  padding: 40px;
}

.site_wrap__singlepost-contentMeta {
  padding: 12px 0;
  font-size: 14px;
  border-top: 1px dashed #cccccc;
  border-bottom: 1px dashed #cccccc;
  opacity: 0.6;
}

.site_wrap__singlepost-contentThumbnail {
  margin: 24px 0;
  text-align: center;
}

.site_wrap__singlepost-related {
  margin: 18px 0 0;
  padding: 24px 0 0;
  border-top: 1px dashed #cccccc;
}

.site_wrap__singlepost-relatedTitle {
  font-size: 28px;
  font-weight: 600;
  color: var(--header-bg);
  margin-bottom: 24px;
}

.site_wrap__singlepost-relatedWrap {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-gap: 32px;
}

.site_wrap__singlepost-categories {
  margin: 24px 0 0;
  padding: 24px 0 0;
  border-top: 1px dashed #cccccc;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}

.site_wrap__singlepost-categories a {
  border-radius: 15px;
  padding: 6px 15px;
  background: transparent;
  color: #000;
  border: 1px solid #000;
  -webkit-transition: .3s;
  -o-transition: .3s;
  transition: .3s;
  font-size: 15px;
  margin: 0 0 8px 8px;
}

.site_wrap__singlepost-categories a:hover {
  background: #0170B9;
  color: #fff;
}

.blog_block {
  background: #fff;
  -webkit-box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.15);
          box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.15);
  border-radius: 3px;
  border: 0 solid #818a91;
}

.blog_block__body {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
     -moz-box-orient: vertical;
     -moz-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 100%;
  color: #777;
}

.blog_block__body-content {
  padding: 24px;
}

.blog_block__body-content-title {
  color: #54595F;
  font-weight: 600;
  font-size: 22px;
  line-height: 1.5em;
}

.blog_block__body-content-readmore {
  color: #69A5A4;
  font-weight: 700;
  font-size: 13px;
}

.blog_block__body-content-excerpt {
  margin: 24px 0;
  line-height: 1.5em;
  font-size: 16px;
}

.blog_block__body-featuredImage {
  height: 185px;
}

.blog_block__body-featuredImage img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.blog_block__body-meta {
  margin-top: auto;
  border-top: 1px solid #eaeaea;
  padding: 12px 24px;
  font-size: 13px;
  opacity: 0.6;
}

/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */

/* Document
   ========================================================================== */

/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */

html {
  line-height: 1.15;
  /* 1 */
  -webkit-text-size-adjust: 100%;
  /* 2 */
}

/* Sections
     ========================================================================== */

/**
   * Remove the margin in all browsers.
   */

*,
*:before,
*:after {
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
}

body {
  margin: 0;
}

/**
   * Render the `main` element consistently in IE.
   */

main {
  display: block;
}

/**
   * Correct the font size and margin on `h1` elements within `section` and
   * `article` contexts in Chrome, Firefox, and Safari.
   */

/* Grouping content
     ========================================================================== */

/**
   * 1. Add the correct box sizing in Firefox.
   * 2. Show the overflow in Edge and IE.
   */

hr {
  -webkit-box-sizing: content-box;
     -moz-box-sizing: content-box;
          box-sizing: content-box;
  /* 1 */
  height: 0;
  /* 1 */
  overflow: visible;
  /* 2 */
}

/**
   * 1. Correct the inheritance and scaling of font size in all browsers.
   * 2. Correct the odd `em` font sizing in all browsers.
   */

pre {
  font-family: monospace, monospace;
  /* 1 */
  font-size: 1em;
  /* 2 */
}

/* Text-level semantics
     ========================================================================== */

/**
   * Remove the gray background on active links in IE 10.
   */

a {
  background-color: transparent;
  text-decoration: none;
  color: #000;
}

/**
   * 1. Remove the bottom border in Chrome 57-
   * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
   */

abbr[title] {
  border-bottom: none;
  /* 1 */
  text-decoration: underline;
  /* 2 */
  -webkit-text-decoration: underline dotted;
     -moz-text-decoration: underline dotted;
          text-decoration: underline dotted;
  /* 2 */
}

/**
   * Add the correct font weight in Chrome, Edge, and Safari.
   */

b,
strong {
  font-weight: bolder;
}

/**
   * 1. Correct the inheritance and scaling of font size in all browsers.
   * 2. Correct the odd `em` font sizing in all browsers.
   */

code,
kbd,
samp {
  font-family: monospace, monospace;
  /* 1 */
  font-size: 1em;
  /* 2 */
}

/**
   * Add the correct font size in all browsers.
   */

small {
  font-size: 80%;
}

/**
   * Prevent `sub` and `sup` elements from affecting the line height in
   * all browsers.
   */

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Embedded content
     ========================================================================== */

/**
   * Remove the border on images inside links in IE 10.
   */

img {
  border-style: none;
  height: auto;
  max-width: 100%;
}

/* Forms
     ========================================================================== */

/**
   * 1. Change the font styles in all browsers.
   * 2. Remove the margin in Firefox and Safari.
   */

button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
  /* 1 */
  font-size: 100%;
  /* 1 */
  line-height: 1.15;
  /* 1 */
  margin: 0;
  /* 2 */
}

/**
   * Show the overflow in IE.
   * 1. Show the overflow in Edge.
   */

button,
input {
  /* 1 */
  overflow: visible;
}

/**
   * Remove the inheritance of text transform in Edge, Firefox, and IE.
   * 1. Remove the inheritance of text transform in Firefox.
   */

button,
select {
  /* 1 */
  text-transform: none;
}

/**
   * Correct the inability to style clickable types in iOS and Safari.
   */

button,
[type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button;
}

/**
   * Remove the inner border and padding in Firefox.
   */

button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
   * Restore the focus styles unset by the previous rule.
   */

button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
   * Correct the padding in Firefox.
   */

fieldset {
  padding: 0.35em 0.75em 0.625em;
}

/**
   * 1. Correct the text wrapping in Edge and IE.
   * 2. Correct the color inheritance from `fieldset` elements in IE.
   * 3. Remove the padding so developers are not caught out when they zero out
   *    `fieldset` elements in all browsers.
   */

legend {
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
  /* 1 */
  color: inherit;
  /* 2 */
  display: table;
  /* 1 */
  max-width: 100%;
  /* 1 */
  padding: 0;
  /* 3 */
  white-space: normal;
  /* 1 */
}

/**
   * Add the correct vertical alignment in Chrome, Firefox, and Opera.
   */

progress {
  vertical-align: baseline;
}

/**
   * Remove the default vertical scrollbar in IE 10+.
   */

textarea {
  overflow: auto;
}

/**
   * 1. Add the correct box sizing in IE 10.
   * 2. Remove the padding in IE 10.
   */

[type="checkbox"],
[type="radio"] {
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
  /* 1 */
  padding: 0;
  /* 2 */
}

/**
   * Correct the cursor style of increment and decrement buttons in Chrome.
   */

[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto;
}

/**
   * 1. Correct the odd appearance in Chrome and Safari.
   * 2. Correct the outline style in Safari.
   */

[type="search"] {
  -webkit-appearance: textfield;
  /* 1 */
  outline-offset: -2px;
  /* 2 */
}

/**
   * Remove the inner padding in Chrome and Safari on macOS.
   */

[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
   * 1. Correct the inability to style clickable types in iOS and Safari.
   * 2. Change font properties to `inherit` in Safari.
   */

::-webkit-file-upload-button {
  -webkit-appearance: button;
  /* 1 */
  font: inherit;
  /* 2 */
}

/* Interactive
     ========================================================================== */

/*
   * Add the correct display in Edge, IE 10+, and Firefox.
   */

details {
  display: block;
}

/*
   * Add the correct display in all browsers.
   */

summary {
  display: list-item;
}

/* Misc
     ========================================================================== */

/**
   * Add the correct display in IE 10+.
   */

template {
  display: none;
}

/**
   * Add the correct display in IE 10.
   */

[hidden] {
  display: none;
}

h1 {
  font-size: 60px;
  font-weight: 700;
}

.sb-wysiwyg p,
.sb-wysiwyg ul li,
.sb-wysiwyg ol li {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.5em;
  margin-bottom: 1.75em;
}

.sb-wysiwyg a {
  color: #0170B9;
}

.sb-wysiwyg ul,
.sb-wysiwyg ol {
  margin: 32px 0;
}

.sb-wysiwyg ul li,
.sb-wysiwyg ol li {
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .main_header.logo {
    padding: 10px 0;
  }

  .main_header.logo img {
    max-width: 65%;
  }

  .main_header__wrap {
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
       -moz-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }

  .main_header__logo {
    margin-left: 0;
  }

  .main_header__nav {
    position: fixed;
    top: var(--header-extra-height);
    bottom: 0;
    left: 0;
    right: 0;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    z-index: 9900;
    margin-left: 0;
    background: #fff;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
  }

  .main_header__nav:not(.open) {
    pointer-events: none;
    opacity: 0;
    visibility: hidden;
  }

  .main_header__nav .menu {
    padding: 24px;
  }

  .main_header__nav ul {
    display: block;
  }

  .main_header__nav ul li {
    padding: 12px 0;
  }

  .main_header__nav ul li:not(:last-of-type) {
    border-bottom: 1px solid #c2c2c2;
  }

  .main_header__nav ul li + li {
    margin-right: 0;
  }

  .main_header__nav ul a {
    color: #000;
  }

  .main_header__hamburger {
    display: block;
  }

  .container {
    width: 100%;
  }

  .site_wrap__intro {
    padding: 24px 0;
  }

  .site_wrap__posts {
    grid-template-columns: 1fr;
  }

  .site_wrap__singlepost-wrap {
    padding: 24px;
    margin: 0 -24px;
  }

  .site_wrap__singlepost-relatedTitle {
    font-size: 24px;
  }

  .site_wrap__singlepost-relatedWrap {
    grid-template-columns: 1fr;
  }

  h1 {
    font-size: 36px;
  }
}