/*! HTML5 Boilerplate v8.0.0 | MIT License | https://html5boilerplate.com/ */

/* main.css 2.1.0 | MIT License | https://github.com/h5bp/main.css#readme */
/*
 * What follows is the result of much research on cross-browser styling.
 * Credit left inline and big thanks to Nicolas Gallagher, Jonathan Neal,
 * Kroc Camen, and the H5BP dev community and team.
 */

/* ==========================================================================
   Base styles: opinionated defaults
   ========================================================================== */

html {
  color: #222;
  background: #EEE;
  font-size: 1em;
  line-height: 1.4;
  font-family: 'Noto Sans', 'Noto Kufi Arabic', 'Noto Sans Hebrew', sans-serif;
}

/*
 * Remove text-shadow in selection highlight:
 * https://twitter.com/miketaylr/status/12228805301
 *
 * Vendor-prefixed and regular ::selection selectors cannot be combined:
 * https://stackoverflow.com/a/16982510/7133471
 *
 * Customize the background color to match your design.
 */

::-moz-selection {
  background: #b3d4fc;
  text-shadow: none;
}

::selection {
  background: #b3d4fc;
  text-shadow: none;
}

/*
 * A better looking default horizontal rule
 */

hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #ccc;
  margin: 1em 0;
  padding: 0;
}

/*
 * Remove the gap between audio, canvas, iframes,
 * images, videos and the bottom of their containers:
 * https://github.com/h5bp/html5-boilerplate/issues/440
 */

audio,
canvas,
iframe,
img,
svg,
video {
  vertical-align: middle;
}

/*
 * Remove default fieldset styles.
 */

fieldset {
  border: 0;
  margin: 0;
  padding: 0;
}

/*
 * Allow only vertical resizing of textareas.
 */

textarea {
  resize: vertical;
}

/* ==========================================================================
   Theme
   ========================================================================== */

:root {
  --darkbrown: #503b2f;
  --lightbrown: #d0a978;
  --lightbrown2: #e4dace;
  --green: #84a339;
  --brown: #773d26;
  --red: #8f1818;
  --black: #000000;
}

.bg-darkbrown { background-color: var(--darkbrown); }
.bg-lightbrown { background-color: var(--lightbrown); }
.bg-lightbrown2 { background-color: var(--lightbrown2); }
.bg-green { background-color: var(--green); }
.bg-brown { background-color: var(--brown); }
.bg-red { background-color: var(--red); }
.bg-black { background-color: var(--black); }

.color-darkbrown { color: var(--darkbrown); }
.color-lightbrown { color: var(--lightbrown); }
.color-lightbrown2 { color: var(--lightbrown2); }
.color-green { color: var(--green); }
.color-brown { color: var(--brown); }
.color-red { color: var(--red); }
.color-black { color: var(--black); }
.color-white { color: #FFF; }

/* ==========================================================================
   Languages and Fonts
   ========================================================================== */

.font-en {
  font-family: 'Noto Sans', sans-serif;
}

.font-ar {
  font-family: 'Noto Kufi Arabic', sans-serif;
}

.font-he {
  font-family: 'Noto Sans Hebrew', sans-serif;
}

.display-en, .display-ar, .display-he, .display-ru {
  display: none;
}

html[lang="en"] .display-en,
html[lang="ru"] .display-ru,
html[lang="he"] .display-he,
html[lang="ar"] .display-ar,
html.translated-ltr .display-en,
html.translated-rtl .display-ar {
  display: revert;
}

.display-he, .display-ar, .translated-rtl {
  direction: rtl;
}

.display-en, .display-ru, .translated-ltr {
  direction: ltr;
}

.text-center {
  text-align: center;
}

.dir {
  direction: ltr;
}

html[lang="he"] .dir,
html[lang="ar"] .dir {
  direction: rtl;
}

/* ==========================================================================
   Grid
   ========================================================================== */

.flex { display: flex; }

.sep {
  background: url(/img/sep.png) no-repeat center;
  height: 50px;
  margin: 20px auto;
  position: relative;
}

.sep::before, .sep::after {
  display: block;
  position: absolute;
  content: '';
  height: 2px;
  background: rgb(223, 223, 223);
  right: 0;
  margin: 0 auto;
  top: 50%;
  width: 40%;
  width: calc(50% - 55px);
}

.sep::after {
  left: 0;
  right: auto;
}

.bg-sep-h {
  background-color: #FFF;
  background-image: url(/img/sep_h.png);
  background-repeat: no-repeat;
  background-position: bottom center;
  background-size: 100% auto;
}

.bgs-sep-h::after {
  content:'';
  display: block;
  height: 100px;
}

.icon-btn-cols {
  margin: 0 auto;
  max-width: 500px;
}

.icon-btn-cols a {
  flex: 1;
  display: flex;
  margin: 10px;
  text-align: center;
  align-items: center;
  justify-content: center;
}

.icon-btn-cols a img {
  height: 40px;
  margin-right: 10px;
}

@media only screen and (min-width: 430px) {
  .icon-btn-cols a img {
    height: 64px;
  }
}

.video-container {
  position: relative;
  padding-bottom: 56.25%;
  border-radius: 20px;
  overflow: hidden;
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}


/* ==========================================================================
   Hawwam
   ========================================================================== */

#container {
  max-width: 1024px;
  margin: 0 auto;
  position: relative;
  background: #FFF;
  box-shadow: 0px 10px 10px #00000051;
}

#lang {
  position: sticky;
  width: 100%;
  left: 0;
  right: 0;
  top: 0;
  z-index: 1;
  border-bottom: 1px solid var(--darkbrown);
  box-shadow: 0px 2px 20px #0000003d, 0px 0px 3px #0000007f;
}

#lang nav {
  display: flex;
}

#lang a {
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;;
  text-decoration: none;
  padding: 5px 10px;
  background: #000;
  color: #FFF;
  border-top: 2px solid #363636;
  box-shadow: inset -25px -50px 50px #181818;
}

#lang a.nav-logo {
  background: var(--lightbrown) !important;
  box-shadow: inset -0px -20px 50px var(--darkbrown);
  border-top: 2px solid var(--lightbrown);
}

#lang a:hover {
  background: #393939;
}

#lang a:active {
  background: #000;
}

#lang a.active {
  border-top: 2px solid var(--lightbrown);
  color: var(--lightbrown);
}

#lang a span, .menu-link span { pointer-events: none; }

#lang a small {
  display: block;
  width: 100%;
  font-size: 0.6em;
  opacity: 0.75;
  pointer-events: none;
}

#lang a span span {
  width: 100%;
  display: block;
  font-size: 0.8em;
  padding-bottom: 5px;
}

.stretch { flex: 1; }

.pattern {
  background: url('/img/pattern.png');
  background-size: auto 100% ;
  border: 1px solid rgb(219, 219, 219);
  height: 50px;
}

.bricks {
  background: url('/img/bricks.jpg');
  background-size: auto 100% ;
  border: 1px solid rgb(219, 219, 219);
  height: 100px;
}

.boximg-center {
  height: auto;
  width: 80%;
}

.boximg-full {
  height: 100%;
  width: 100%;
}

.square-container {
  display: flex;
  flex-wrap: wrap;
}

.square {
  position: relative;
  flex-basis: calc(50%);
  margin: 0;
  box-sizing: border-box;
}

.square::before {
  content: '';
  display: block;
  padding-top: 100%;
}

.square .content {
  position: absolute;
  top: 0; left: 0;
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.padding {
  padding: 20px;
}

.padding-2 {
  padding: 40px;
}

.nop {
  padding: 0;
  margin: 0;
}

.plain-ul {
  display: block;
  list-style: none;
  list-style-position: outside;
  padding: 0;
  margin: 0;
}
.plain-ul li {
  display: block;
  padding: 0;
  margin: 0;
}

.btn {
  color: currentColor;
  display: inline-block;
  padding: 10px;
  border: 3px double currentColor;
  text-decoration: none;
  border-radius: 5px;
}

.btn:hover, .btn:active, .btn:focus {
  color: #000;
  background: #FFF;
}

.btnm {
  margin: 15px 0 10px 0;
}

.btn-block {
  display: block;
  text-align: left;
}

.btn-s {
  padding: 5px 10px;
  border: none;
  margin: 5px;
  box-shadow: 1px 1px 5px #00000032;
}

/* ==========================================================================
   Menu
   ========================================================================== */

.menu-item {
  display: flex;
  justify-content: center;
  align-items: center;
  border-bottom: 2px dotted var(--lightbrown);
  padding: 10px;
  border-radius: 50px;
}

.menu-section h2 {
  padding: 10px 20px;
  font-size: 1.2rem;
  margin: 0;
  border-radius: 20px 20px 0px 0px;
  border-top: 3px double;
  margin-top: 20px;
  /*box-shadow: inset 0 5px 25px var(--lightbrown2);*/
  background: linear-gradient(var(--lightbrown2), #FFF);
}

.menu-image {
  height: 48px;
}

.menu-item-s .menu-image {
  transform: scale(0.75);
}

.menu-name {
  flex: 1;
  padding: 0 10px;
}

.menu-price {
  direction: ltr;
}

/* ==========================================================================
   Helper classes
   ========================================================================== */

/*
 * Hide visually and from screen readers
 */

.hidden,
[hidden] {
  display: none !important;
}

/*
 * Hide only visually, but have it available for screen readers:
 * https://snook.ca/archives/html_and_css/hiding-content-for-accessibility
 *
 * 1. For long content, line feeds are not interpreted as spaces and small width
 *    causes content to wrap 1 word per line:
 *    https://medium.com/@jessebeach/beware-smushed-off-screen-accessible-text-5952a4c2cbfe
 */

.sr-only {
  border: 0;
  clip: rect(0, 0, 0, 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  white-space: nowrap;
  width: 1px;
  /* 1 */
}

/*
 * Extends the .sr-only class to allow the element
 * to be focusable when navigated to via the keyboard:
 * https://www.drupal.org/node/897638
 */

.sr-only.focusable:active,
.sr-only.focusable:focus {
  clip: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  position: static;
  white-space: inherit;
  width: auto;
}

/*
 * Hide visually and from screen readers, but maintain layout
 */

.invisible {
  visibility: hidden;
}

/*
 * Clearfix: contain floats
 *
 * For modern browsers
 * 1. The space content is one way to avoid an Opera bug when the
 *    `contenteditable` attribute is included anywhere else in the document.
 *    Otherwise it causes space to appear at the top and bottom of elements
 *    that receive the `clearfix` class.
 * 2. The use of `table` rather than `block` is only necessary if using
 *    `:before` to contain the top-margins of child elements.
 */

.clearfix::before,
.clearfix::after {
  content: " ";
  display: table;
}

.clearfix::after {
  clear: both;
}

/* ==========================================================================
   EXAMPLE Media Queries for Responsive Design.
   These examples override the primary ('mobile first') styles.
   Modify as content requires.
   ========================================================================== */

@media only screen and (min-width: 35em) {
  /* Style adjustments for viewports that meet the condition */
}

@media print,
  (-webkit-min-device-pixel-ratio: 1.25),
  (min-resolution: 1.25dppx),
  (min-resolution: 120dpi) {
  /* Style adjustments for high resolution devices */
}

/* ==========================================================================
   Print styles.
   Inlined to avoid the additional HTTP request:
   https://www.phpied.com/delay-loading-your-print-css/
   ========================================================================== */

@media print {
  *,
  *::before,
  *::after {
    background: #fff !important;
    color: #000 !important;
    /* Black prints faster */
    box-shadow: none !important;
    text-shadow: none !important;
  }

  a,
  a:visited {
    text-decoration: underline;
  }

  a[href]::after {
    content: " (" attr(href) ")";
  }

  abbr[title]::after {
    content: " (" attr(title) ")";
  }

  /*
   * Don't show links that are fragment identifiers,
   * or use the `javascript:` pseudo protocol
   */
  a[href^="#"]::after,
  a[href^="javascript:"]::after {
    content: "";
  }

  pre {
    white-space: pre-wrap !important;
  }

  pre,
  blockquote {
    border: 1px solid #999;
    page-break-inside: avoid;
  }

  /*
   * Printing Tables:
   * https://web.archive.org/web/20180815150934/http://css-discuss.incutio.com/wiki/Printing_Tables
   */
  thead {
    display: table-header-group;
  }

  tr,
  img {
    page-break-inside: avoid;
  }

  p,
  h2,
  h3 {
    orphans: 3;
    widows: 3;
  }

  h2,
  h3 {
    page-break-after: avoid;
  }
}

