/* HEADER */
header {
  position: relative;
  height: 100%;
  width: 100%;
}
.desk_bar > li > a {
  color: var(--brand-black) !important;
}

.end_wrapper .lang-toggle,
.mob_bar .lang-toggle {
  color: var(--brand-black);
  border: var(--brand-black) solid 1px;
}

.menu__btn > span,
.menu__btn > span::after {
  background-color: var(--brand-black);
}

#menu__toggle:checked ~ .menu__btn > span,
#menu__toggle:checked ~ .menu__btn > span::after {
  background-color: var(--text100);
}

/* BANNER */
.banner__section {
  position: relative;
  background: url("/assets/webp/paper-textured-background.webp");
  height: 100%;
  background-position: center;
  background-size: cover;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  padding-top: var(--r80);
}
.product_wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: flex-start;
  width: 100%;
  height: 100%;
  padding: 0 var(--r80);
  place-content: center;
}
.left_wrap img{
  width: 500px;
  height: auto;

}
.right_wrap{
  max-width: 80%;
}
.right_wrap h1 {
  font-size: 25pt;
  text-transform: uppercase;
  font-family: var(--organic-font);
  padding: var(--r16) 0;
  position: relative;
}
.right_wrap h1::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--brand-yellow);
  height: 5px;
  border-radius: 10px;
  width: 22%;
}
.right_wrap p {
  font-family: "Typo Gortesk Regular";
  font-size: clamp(12pt, 4vw, 12pt);
  font-weight: 400;
  line-height: 1.5;
  /* max-width: 560px; */
  margin-bottom: var(--r80);
}
.right_wrap strong {
  font-family: "Typo Gortesk Regular";
  font-size: clamp(12pt, 4vw, 12pt);
  font-weight: 600;
  line-height: 1.5;
  /* max-width: 560px; */
}
.right_wrap a{
  background-color: var(--brand-yellow);
  color: var(--text100);
  font-family: "Typo Gortesk Regular";
  font-size: clamp(12pt, 4vw, 12pt);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: 0.06em;
  padding: var(--r16);
  border-radius: 25px;
}
.right_wrap button {
  background-color: var(--brand-yellow);
  color: var(--text100);
  font-family: "Typo Gortesk Regular";
  font-size: clamp(12pt, 4vw, 12pt);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: 0.06em;
  padding: 10px var(--r16);
  border-radius: 25px;
}
.ele-2 {
  position: absolute;
  bottom: 0%;
  right: -3%;
  width: 15%;
}
/* MAP */
.map_section{
  background: url("/assets/webp/paper-textured-background.webp");
  background-position: center;
  background-size: cover;
  height: 100%;
}
.map_section h3{
  font-size: 26pt;
  text-transform: uppercase;
  font-family: var(--organic-font);
  padding: var(--r16) 0 5px;
  margin:0 var(--r100) var(--r30);
  position: relative;
}
.map_section h3::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--brand-yellow);
  height: 5px;
  border-radius: 10px;
  width: 5%;
}
#storerocket-widget{
  min-height: 100px !important;
}
/* SECTION BG IMAGE */
.image__bg {
  background: url("/assets/jpg/Pita.jpg");
  height: 100vh;
  background-position: center;
  background-size: cover;
}

/* Content
.short__desc {
  background: url("/assets/webp/paper-textured-background.webp");
  height: 10vh;
  background-position: center;
  background-size: cover;
  position: relative;
}

.short__desc h2 {
  font-size: 26pt;
  text-transform: uppercase;
  font-family: var(--organic-font);
  position: relative;
  padding: var(--r16) 0;
}

.short__desc h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  background: var(--brand-yellow);
  height: 5px;
  border-radius: 10px;
  width: 50%;
  transform: translate(-50%, 0);
}

.short__desc p {
  font-family: "Typo Gortesk Regular";
  font-size: clamp(12pt, 4vw, 12pt);
  font-weight: 400;
  line-height: 1.5;
  line-height: 1.5;
  text-align: center;
  width: 100%;
  max-width: 500px;
  padding-top: var(--r16);
} */



@media screen and (max-width: 768px) {
  .product_wrapper{
      grid-template-columns: 1fr;
      align-items: center;
      padding: var(--r200) var(--r80) var(--r200);
  }
  .right_wrap, .left_wrap{
      display: flex;
      flex-direction: column;
      align-items: center;
      max-width: 100%;
  }
  .left_wrap img{
    width: 400px;
    height: auto;

  }
  .right_wrap h1 {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .right_wrap h1 .f-1{
    padding: unset;
  }
  .right_wrap h1 .f-1::after {
    display: none;
  }  
  .right_wrap h1{
    text-align: center;
    position: relative;
    gap: unset !important;
  }
  .right_wrap h1 .pb-3{
    padding: unset !important;
  }
  .right_wrap h1::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    background: var(--brand-yellow);
    height: 5px;
    border-radius: 10px;
    width: 50%;
    transform: translate(-50%, 0);
  }
  .right_wrap p {
    text-align: center;
  }
  .image__bg {
    height: 70vh;
  }
 .map_section h3::after {
   content: "";
   position: absolute;
   bottom: 0;
   left: 0;
   right: 0;
   background: var(--brand-yellow);
   height: 5px;
   border-radius: 10px;
   width: 40%;
 }

  .ele-2 {
    position: absolute;
    bottom: -1%;
    right: -18%;
    width: 45%;
  }
}

@media screen and (max-width: 560px) { 
  .banner__section{
    height: 100%;
  }
  .product_wrapper {
     display: flex;
     flex-direction: column;
      padding: var(--r80) var(--r80) var(--r200);
    }
  .ele-2 {
      position: absolute;
      bottom: -1%;
      right: -18%;
      width: 40%;
    }
  }