.no_scroll {
  overflow: hidden;
}
.phone_hide {
  unicode-bidi:bidi-override;
  direction:rtl;
}
.phone_hide:after { content:"(808) ta sU llaC" }
.phone_hide:before { content:"9872-" }



/************************
*    Header & Footer    *
************************/
header {
  background-color: var(--primary);
  color: var(--white);
  display: flex;
  justify-content: center;
  align-items: center;
}
header a {
  text-decoration: none;
}
header nav {
  width: 100%;
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-between;
  align-items: center;
  padding: 1em 2em;
  max-width: var(--max-width);
}
header nav > div {
  display: flex;
  flex-flow: row nowrap;
  justify-content: flex-end;
  align-items: center;
  gap: 1em;
}
header nav.main_nav a:not(.btn_white):hover {
  text-decoration: underline;
}

footer {
  background-color: var(--primary);
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
  padding: 2em;
}
footer .content {
  padding: 2em;
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-between;
  align-items: center;
  max-width: var(--max-width);
}
.mobile_nav {
  display: none;
}
#logo {
  width: 9em;
}

/************************
*         HERO          *
************************/
.hero {
  background-image: linear-gradient(-196deg, rgba(0, 0, 0, 1), rgba(0, 0, 0, 0)), url(/assets/images/hero.webp);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 100%;
  min-height: 70vh;
  display: flex;
  flex-flow: column nowrap;
  justify-content: center;
  align-items: center;
  gap: 2em;
  color: var(--white);
  box-shadow: 2px 0px 10px rgba(0, 0, 0, 0.15);
}
.hero h1 {
  display: flex;
  flex-flow: column nowrap;
  justify-content: center;
  align-items: center;
  color: var(--white);
  gap: 0.6rem;
}
.hero h1 small {
  color: rgba(255, 255, 255, 0.7);
}
.hero h1 span {
  font-family: "cursive", sans-serif;
  font-size: 4rem;
  text-transform: capitalize;
  letter-spacing: 1px;
  position: relative;
  line-height: 2em;
  top: -0.5em;
}

h2 {
  font-size: 2.6rem;
}



/************************
*        BUBBLES        *
************************/
.bubbles {
  background-color: #FFF4E4;
  padding: 4em 2em;
  position: relative;
  min-height: 80vh;
}
.bubbles .content {
  position: absolute;
  margin: auto;
  top: -14%;
  left: 10%;
  max-width: var(--max-width);
  width: 80%;
  display: flex;
  flex-flow: row nowrap;
  justify-content: center;
  align-items: center;
  gap: 2em;
  min-height: 80vh;
}
.bubble {
  display: flex;
  flex-flow: column nowrap;
  justify-content: center;
  align-items: center;
  gap: 1em;
  text-align: center;
}
.bubble img {
  width: 20em;
  height: 20em;
  object-fit: cover;
  border-radius: 50%;
  border: solid 5px var(--white);
  box-shadow: 5px 15px 10px rgba(0, 0, 0, 0.1);
}
.bubble h3 {
  font-family: "paragraph", sans-serif;
  font-size: 1.4rem;
  text-transform: uppercase;
}
.bubble small {
  font-family: "paragraph", sans-serif;
  font-size: 1.1rem;
  font-weight: 400;
  text-transform: uppercase;
}


/************************
*        OTHERS         *
************************/
.dark_gradient {
  background-color: #543422;
  background-image: radial-gradient(circle at 50% 10px, #543422, #302423);
  color: var(--white);
  padding: 10em 2em;
  display: flex;
  flex-flow: column nowrap;
  justify-content: center;
  align-items: center;
  gap: 1em;
  box-shadow: inset 1px 0px 32px rgba(0, 0, 0, .45);
}
.general_section {
  padding: 8em 2em;
  display: flex;
  flex-flow: column nowrap;
  justify-content: center;
  align-items: center;
  gap: 1em;
}
.aside {
  display: flex;
  flex-flow: row nowrap;
  align-content: center;
  justify-content: space-between;
  gap: 2em;
  max-width: 900px;
}
.aside > div, .aside > img {
  flex: 50%;
  width: 50%;
}
#award_image {
  max-width: 600px;
}


/************************
*        MODAL          *
************************/
.modal {
  position: fixed;
  z-index: 10;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(4, 82, 85, 0.8);
  backdrop-filter: blur(5px);
  display: flex;
  justify-content: center;
  align-items: center;
}
.modal_content {
  width: 80%;
  height: 80%;
  background-color: var(--white);
  padding: 2em;
  overflow: auto;
  border-radius: 20px;
}
.modal_content > div {
  display: flex;
  flex-flow: column nowrap;
  justify-content: center;
  align-items: center;
  gap: 1em;
}
.modal_content > div .btn_primary {
  margin: auto;
}
.modal img {
  aspect-ratio: 3/2;
  object-fit: cover;
  max-width: 100%;
}
.close {
  color: var(--white);
  position: fixed;
  top: 2em;
  right: 2em;
  font-size: 28px;
  font-weight: bold;
}
.close:hover,
.close:focus {
  color: var(--lt-gray);
  cursor: pointer;
}


/************************
*        ACCORDION      *
************************/
#accordion h3 {
  font-family: 'paragraph', sans-serif;
  cursor: pointer;
  background-color: rgba(255, 255, 255, 0.2);
  margin-top: 1em;
  border-top-right-radius: 2em;
  border-top-left-radius: 2em;
  padding: 1em;
}
#accordion h4 {
  font-family: 'paragraph', sans-serif;
  text-transform: uppercase;
  font-size: 1.1rem;
}
#accordion h4:not(:first-of-type) {
  margin-top: 1.4em;
}
#accordion div {
  background-color: rgba(255, 255, 255, 0.1);
  padding: 1em;
}
#accordion p {
  margin: 1em 0;
}



#massage_award {
  position: absolute;
  bottom: -15%;
  left: 50%;
  transform: translateX(-50%);
}
#massage_award + .general_section {
  margin-top: 12em;
}
#mobile_logo {
  display: none;
  width: 200px;
  margin: auto;
}

@media only screen and (max-width: 1100px) {
  #mobile_logo {
    display: block;
  }
  h2 {
    line-height: 2em;
    margin-bottom: 1em;
    text-align: center;
  }
  header nav {
    max-width: unset;
  }
  .main_nav {
    display: none;
  }
  .mobile_nav.closed {
    transform: translateX(120%);
  }
  .mobile_nav {
    gap: 1em;
    transform: translateX(0);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--primary);
    color: var(--white);
    display: flex;
    flex-flow: column nowrap;
    justify-content: space-between;
    align-items: flex-start;
    padding: 2em 1em;
    border-left: 5em solid var(--white);
    z-index: 10001;
    transition: all 0.15s ease-in-out;
  }
  #menu_toggle {
    cursor: pointer;
    position: fixed;
    top: 1rem;
    left: 1.5rem;
    width: 2rem;
    height: 2rem;
    background-image: url(/assets/images/close.svg);
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    z-index: 10002;
  }
  #menu_toggle.closed {
    left: unset;
    right: 1em;
    background-image: url(/assets/images/menu.svg);
    background-color: var(--white);
    border: 6px solid var(--white);
  }
  .mobile_nav .menu_content {
    flex: 1;
    flex-flow: column nowrap;
    align-items: flex-start;
    justify-content: space-between;
    text-transform: uppercase;
  }
  .mobile_nav .menu_content div {
    display: flex;
    flex-flow: column nowrap;
    gap: 6px;
  }
  .mobile_nav .menu_content a {
    font-size: 0.8rem;
    display: flex;
    flex-flow: column nowrap;
    justify-content: flex-start;
    align-items: flex-start;
  }
  .mobile_nav .menu_content .link {
    font-size: 1.2rem;
  }
  .mobile_nav img {
    width: 5em;
  }
  #award_image {
    max-height: 300px;
  }

  .bubbles .content {
    flex-flow: column nowrap;
    position: static;
  }
  .bubble img {
    width: 50%;
    height: auto;
    aspect-ratio: 1/1;
  }
  .hero {
    background-image: linear-gradient(-196deg, rgba(0, 0, 0, 1), rgba(0, 0, 0, 0)), url(/assets/images/hero-sm.webp);
  }
  .hero h1 {
    text-align: center;
    gap: 2em;
  }
  .hero h1 span {
    line-height: 4rem;
  }

  footer .content {
    flex-flow: column nowrap;
    gap: 2em;
  }
  footer .col {
    width: 100%;
    align-items: center;
  }
  footer img {
    max-width: 200px;
    width: 100%;
  }
  footer .col:nth-of-type(2) {
    order: 3;
  }
  .general_section {
    padding: 5em 2em;
  }
  #massage_award + .general_section {
    margin-top: 20em;
  }

  .close {
    top: 1rem;
    left: 1rem;
    right: unset;
  }
  .modal {
    align-items: flex-end;
  }
  .modal_content {
    width: 100%;
    height: 90%;
  }

  .aside {
    flex-flow: column nowrap;
    justify-content: center;
  }
  .aside > div, .aside > img {
    flex: 100%;
    width: 100%;
  }
}