
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Comfortaa:wght@400;500;600&display=swap");

@font-face {
  font-family: krd;
  src: url(assets/krd.woff);
}

:root {
  --header-height: 3rem;
  --text-color-light: #A6A6A6;
  --title-color: #F1F3F2;
  --text-color: #fff;
/*  --body-color: #1D2521;*/
/*  --container-color: #27302C;*/
  --body-color: #111;
  --container-color: #222;
  --body-font: 'Poppins', sans-serif;
  --biggest-font-size: 2.25rem;
  --h1-font-size: 1.5rem;
  --h2-font-size: 1.25rem;
  --h3-font-size: 1rem;
  --normal-font-size: .938rem;
  --small-font-size: .813rem;
  --smaller-font-size: .75rem;
  --font-medium: 500;
  --font-semi-bold: 600;
  --mb-1: .5rem;
  --mb-2: 1rem;
  --mb-3: 1.5rem;
  --mb-4: 2rem;
  --mb-5: 2.5rem;
  --mb-6: 3rem;
  --z-tooltip: 10;
  --z-fixed: 100;
  --menu-border: .75rem;

  --one: #ec1d26;
  --two: #ec1d26;
  --three: #ec1d26;

  --first-color: var(--one);
  --first-color-alt: #7F3917;
}

html.red:root {
  --one: #d02d2d;
  --two: #FD5656;
  --three: #e35f36;
}

html.gold:root {
  --one: #ff864a;
  --two: #fcd458;
  --three: #eda214;
}

html.brown:root {
  --one: #a25e21;
  --two: #d58351;
  --three: #cd9222;
}

html.green:root {
  --one: #9fcd5b;
  --two: #548829;
  --three: #1e912b;
}

html.blue:root {
  --one: #5bbdcd;
  --two: #3f73aa;
  --three: #2854a7;
}

html.purple:root {
  --one: #8871dc;
  --two: #7047ae;
  --three: #5539a2;
}

html.pink:root {
  --one: #dc71b7;
  --two: #ae4794;
  --three: #a23983;
}

::selection {
  color: #fff;
  background-color: var(--one);
  text-shadow: 0 0 0 white;
}

::-webkit-scrollbar {
  width:.5vw;
  height:.5vw;
  cursor: pointer;
}

::-webkit-scrollbar-track {
  background: #27302C;
}

::-webkit-scrollbar-thumb {
  background: var(--two);
  transition: .3s ease-in-out;
}

@media screen and (min-width: 768px){

  :root{
    --biggest-font-size: 4rem;
    --h1-font-size: 2.25rem;
    --h2-font-size: 1.5rem;
    --h3-font-size: 1.25rem;
    --normal-font-size: 1rem;
    --small-font-size: .875rem;
    --smaller-font-size: .813rem;
  }

  .chooseCategory{
    margin-bottom: 0;
  }

}

*,
::before,
::after{
  box-sizing: border-box;
  border: none;
  outline: transparent;
}

html{
  scroll-behavior: smooth;
}

.change-theme{
  position: absolute;
  right: 1rem;
  top: 1.8rem;
  color: var(--text-color);
  font-size: 1rem;
  cursor: pointer;
}

body{
  margin: var(--header-height) 0 0 0;
  font-family: var(--body-font);
  font-size: var(--normal-font-size);
  background-color: var(--body-color);
  color: var(--text-color);
  line-height: 1.6;
}

body,
html {
  height: 100%;
  width: 100%;
  scroll-behavior: smooth;
  scrollbar-color: var(--two) #27302C;
  scrollbar-width: thin;
  -webkit-overflow-scrolling: touch;
}

h1,
h2,
h3,
p,
ul{
  margin: 0;
}

h1.rtl,
h2.rtl,
h3.rtl{
  letter-spacing: -.7px;
}

ul{
  padding: 0;
  list-style: none;
}

a{
  text-decoration: none;
}

body.start {
  margin: 0;
  width: 100%;
  height: 100%;
  overflow-x: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

body.start .bg {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  transform: scale(1.25);
  background-image: url(assets/bg-wide.webp);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  -webkit-background-attachment: fixed;
  filter: brightness(.25) blur(6px);
}

body.start main {
  width: 100%;
  max-width: 400px;
  margin: 0;
  display: grid;
  grid-auto-flow: row;
  place-items: center;
  place-content: center;
  padding: 1.5rem;
  grid-gap: 10vh;
}

body.start .logo,
body.start .welcome span,
body.start .languageButtons button,
body.start .siteSocialLinks a {
  opacity: 0;

}

body.start main .logo {
  width: 100%;
  max-width: 150px;
  display: flex;
  justify-content: center;
  align-items: center;
}

body.start main .welcome {
  color: white;
  font-family: krd;
  font-size: 1.75rem;
  font-weight: bold;
  width: 100%;
  display: grid;
  place-content: space-between;
  grid-template-columns: 1fr 0fr 1fr 0fr 1fr;
  place-items: center;
  grid-gap: clamp(1.25rem, -0.875rem + 5.733vw, 2rem);
}

body.start main .welcome span {
  font-size: clamp(1.125rem, -0.875rem + 5.733vw, 2rem);
  white-space: nowrap;
}

body.start main .welcome span:first-child {
  font-family: poppins;
}

body.start main .welcome span:nth-child(2),
body.start main .welcome span:nth-child(4) {
  height: 150%;
  width: .1rem;
  background: white;
}

body.start main .languageButtons {
  width: 100%;
  display: grid;
  place-content: space-between;
  grid-template-columns: 1fr 1fr 1fr;
  place-items: center;
  grid-gap: clamp(1.25rem, -0.875rem + 5.733vw, 2rem);
  font-size: clamp(.75rem, -0.875rem + 5.733vw, 1rem);
}

body.start main .languageButtons [data-language] {
  width: 100%;
  display: grid;
  grid-auto-flow: column;
  grid-gap: .5rem;
  place-items: center;
  place-content: center;
  padding: clamp(.75rem, -0.875rem + 5.733vw, 1rem);
  font-family: krd;
  color: white;
  border: none;
  border-radius: clamp(1rem, -0.875rem + 5.733vw, 1.25rem);
  cursor: pointer;
  box-shadow: 0px 3px 3px #0002, 0 0 0 1px #80808033;
  text-shadow: 0 0 1rem #000;
  background: var(--one);
  font-size: clamp(1rem, -0.875rem + 5.733vw, 1.5rem);
  filter: drop-shadow(0 0 .5rem var(--two));
}

body.start main .languageButtons [data-language]:first-child {
  font-family: poppins;
}

body.start main .languageButtons [data-language]:first-child img {
  order: 2;
}

body.start main .languageButtons [data-language]::before{
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: white;
  border-radius: inherit;
  clip-path: inset(0 100% 0 0);
  transition: all .3s ease-in-out !important;
  z-index: -1;
}

body.start main .languageButtons [data-language]:hover::before,
body.start main .languageButtons [data-language]:focus-visible::before {
  clip-path: inset(0 0 0 0);
}

body.start main .languageButtons [data-language]:hover,
body.start main .languageButtons [data-language]:focus-visible {
  color: var(--first-color);
}

body.start main .languageButtons [data-language] img {
  width: 1em;
  height: 1em;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 50%;
  box-shadow: 0 0 .5rem #0003;
}

body.start main .languageButtons [data-language] img {
  width: 1em;
  height: 1em;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 50%;
  box-shadow: 0 0 .5rem #0003;
}

body.start main .languageButtons [data-language] > * {
  pointer-events: none;
}

body.start main .siteSocialLinks {
  width: 100%;
  display: grid;
  place-content: space-between;
  grid-auto-flow: column;
  place-items: center;
  grid-gap: clamp(1.25rem, -0.875rem + 5.733vw, 2rem);
}

body.start main .siteSocialLinks a {
  width: 2.5rem;
  height: 2.5rem;
  display: grid;
  place-items: center;
  padding: .25rem;
  background-color: var(--body-color);
  color: white;
  font-size: clamp(1rem, -0.875rem + 5.733vw, 1.5rem);
  border-radius: 50%;
  box-shadow: 0px 3px 3px #0002, 0 0 0 1px #80808033;
  transition: background-color .3s ease-in-out;
  outline: 1px solid #5557;
}

body.start main .siteSocialLinks a:hover,
main .siteSocialLinks a:focus-visible {
  background-color: #555;
}

.home__data{
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
}

.section{
  padding: 6rem 0 2rem;
}

.preview{
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 101;
  transition: opacity .3s ease-in-out;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}

.preview.off{
  opacity: 0;
  pointer-events: none;
}

.preview .previewBg{
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: #0005;
}

.preview .imageCon{
  height: 50%;
  aspect-ratio: 1/1;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: transform .3s ease-in-out;
  box-shadow: 0 .25rem .25rem #00000025;
  border-radius: 1rem;
}

.preview.off .imageCon{
  transform: translateY(-15%);
}

.preview .imageCon img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: flex;
  justify-content: center;
  align-items: center;
  background-image: url(assets/alpha.webp);
  background-position: center;
  background-size: 400px;
  border-radius: 1rem;
  background-color: #5C5C5C;
  background-blend-mode: multiply;
  font-family: krd;
}

.preview .imageCon .bx-x{
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 3;
  font-size: 1.75rem;
  text-shadow: 0 0 1rem #000;
  color: white;
  padding: .25rem;
  cursor: pointer;
  border-radius: 50%;
}

.preview .imageCon .bx-x::after{
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  border-radius: 50%;
  z-index: -1;
}

#home{
  --_darkness: 65%;

  position: fixed;
  top: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  background: linear-gradient(to bottom, hsl(0, 0%, 0%, var(--_darkness)), hsl(0, 0%, 0%, var(--_darkness))), url(assets/landing.webp);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 2rem;
  text-align: center;
  transition: transform .3s ease-in-out,
  opacity .3s ease-in-out;
}

#home.hide{
  opacity: 0;
}

#home.scale{
  transform: scale(1.1);
}

#home.noTransition{
  transition: 0s;
}

.langs{
  position: fixed;
  bottom: 10%;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.langs .langsLabel{
  position: absolute;
  top: -65%;
  left: 50%;
  transform: translateX(-50%);
}

.langs .langsLabel .label{
  pointer-events: none;
  user-select: none;
  position: absolute;
  top: 0%;
  left: 50%;
  transform: translate(-50%,-100%);
  font-size: 1rem;
  color: white;
  opacity: 0;
  transition: opacity .3s ease-in-out,
  transform .3s ease-in-out;
  display: flex;
  justify-content: center;
  align-items: center;
  width: max-content;
  text-align: center;
  text-shadow: 0 0 1rem #ffffff42;
  pointer-events: none;
}

.scrollDown{
  position: fixed;
  bottom: 10%;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  z-index: 21;
  color: white;
  transition: unset;
  pointer-events: none;
  opacity: .9;
}

.scrollDown .capsule {
  width: 1.5rem;
  height: 3.5rem;
  border-radius: 10rem;
  border: .15rem solid white;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  margin-bottom: .5rem;
}

.scrollDown .capsule .innerCapsule {
  width: .5rem;
  height: 1rem;
  background: white;
  border-radius: 10rem;
  margin-top: 1.8rem;
  animation: scrollDown 4s ease-in-out infinite forwards;
}

@keyframes scrollDown{
  0%, 25%, 100% {
    margin-top: 1.8rem;
  }
  50% {
    margin-top: .5rem;
  }
}

.langs .langsLabel .label[data-label="en"]{
  direction: ltr;
}

.langs .langsLabel .label.active{
  opacity: .95;
  transform: translate(-50%,-50%);
  pointer-events: all;
}

.langs .langBtn{
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  background: none;
  border: none;
  cursor: pointer;
  margin-right: .5rem;
  border-radius: 50%;
}

.langs .langBtn.rtl{
  margin-right: 0;
  margin-left: .5rem;
}

.langs .langBtn:last-child{
  margin-right: 0;
}

.langs .langBtn::before{
  z-index: -1;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  content: "";
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 50%;
  aspect-ratio: 1/1;
  box-shadow: 0 0 .5rem #fcd4583b;
}

.langs .langBtn::after{
  content: "";
  opacity: 0;
  position: absolute;
  left: 0;
  bottom: -0.8rem;
  width: 100%;
  height: 0.175rem;
  border-radius: 1rem;
}

.langs .langBtn:hover::after,
.langs .langBtn:focus-visible::after{
  opacity: 1;
}

.langs .langBtn img{
  width: 2rem;
  height: 2rem;
  aspect-ratio: 1/1;
  border-radius: 50%;
  object-fit: cover;
  transition: filter .3s ease-in-out;
  color: white;
}

.langs .langBtn:hover > img,
.langs .langBtn:focus-visible > img{
  filter: brightness(1.5);
}

.mainContent{
  margin-top: 100vh;
  width: 70%;
  background-color: var(--body-color);
  box-shadow: 0 -0.5rem 3rem #000000ba;
  border-radius: 1rem 1rem 0 0;
  margin-inline: auto;
  transition: width .3s ease-in-out;
}

.mainContent.expand{
  width: 100%;
}

.section-title,
.section-subtitle{
  text-align: center;
  padding: 0 1rem;
}

.section-title{
  font-size: var(--h1-font-size);
  color: var(--title-color);
  margin-bottom: var(--mb-3);
}

.section-subtitle{
  display: flex;
  justify-content: flex-start;
  align-items: center;
  color: var(--first-color);
  font-weight: var(--font-medium);
  margin-bottom: var(--mb-1);
}

.bd-container{
  max-width: 960px;
}

.bd-grid{
  position: relative;
  display: grid;
  gap: 1.5rem;
  padding: 0 1.5rem;
}

.l-header{
  width: 100%;
  position: fixed;
  top: 0;
  left: 50%;
  z-index: var(--z-fixed);
  transition: .3s ease-in-out;
  border-radius: 0 0 1rem 1rem;
  border-bottom: 1px solid transparent;
  max-width: 960px;
  transform: translateX(-50%);
}

.nav{
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.5rem;
}

@media screen and (max-width: 768px){

  .nav__menu{
    position: fixed;
    top: 0;
    right: -110%;
    width: 100%;
    padding: 1.5rem 0 1rem;
    text-align: center;
    background-color: rgba(39, 48, 44, .75);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: .8s;
    box-shadow: 0 0 2rem #00000035;
    z-index: -1;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 10vmin;
  }

}

.nav__item{
  position: relative;
  display: grid;
  place-items: center;
  place-content: center;
  margin-bottom: var(--mb-2);
}

.nav__item div,
.nav__logo.presentation {
  pointer-events: none;
}

.nav__item:hover div,
.nav__item:focus-visible div,
.nav__item .magic.active-link + div,
.nav__logo.magic:hover + .nav__logo.presentation,
.nav__logo.magic:focus-visible + .nav__logo.presentation {
  opacity: 0;
}

.logo {
  position: relative;
}

.nav__item > *,
.logo > * {
  transition: opacity .3s ease-in-out !important;
}

.nav__item .magic,
.nav__logo.magic {
  position: absolute;
  top: 0;
  opacity: 0;
}

.nav__item:hover .magic,
.nav__item:focus-visible .magic,
.nav__item .magic.active-link,
.nav__logo.magic:hover,
.nav__logo.magic:focus-visible {
  opacity: 1;
}

.nav__link,
.nav__logo,
.nav__toggle{
  color: var(--text-color);
  font-weight: var(--font-medium);
  text-shadow: 0 0 1rem #ffffff15;
}

.nav__logo{
  font-size: 1.5rem;
}

.nav__link{
  display: flex;
  justify-content: center;
  align-items: center;
}

.nav__link:hover,
.nav__link:focus-visible{
  color: var(--first-color);
}

.nav__link i{
  margin-right: 0;
  margin-left: .5rem;
}

.nav__link i.rtl{
  margin-right: .5rem;
  margin-left: 0;
}

.nav__link span,
.nav__link i,
.scrolltop i{
  pointer-events: none;
}

.nav__toggle{
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.3rem;
  cursor: pointer;
}

.nav__toggle i{
  transition: opacity .3s ease-in-out,
  transform .3s ease-in-out;
}

.nav__toggle .bx-menu{
  transform: scaleX(1);
  transform-origin: right;
}

.nav__toggle .bx-menu.off{
  transform: scaleX(.25);
}

.nav__toggle i.off{
  opacity: 0;
  position: absolute;
  pointer-events: none;
}

.show-menu{
  right: 0;
}

.active-link{
  position: relative;
  color: var(--first-color);
  transition: border-bottom .3s ease-in-out;
}

.active-link::before{
  content: "";
  opacity: 0;
  position: absolute;
  left: 0;
  bottom: -.25rem;
  width: 100%;
  height: 2px;
  border-radius: 1rem;
}

.active-link:hover::before,
.active-link:focus-visible::before{
  opacity: 1;
}

.scroll-header{
  box-shadow: 0 .1rem .5rem rgba(0,0,0,.1);
  background: var(--body-color);
  outline: 1px solid hsl(0, 100%, 100%, .1);
}

.scrolltop{
  position: fixed;
  right: 1rem;
  bottom: -20%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: .3rem;
  border-radius: .75rem;
  z-index: 100;
  visibility: hidden;
  opacity: .5;
}

.scrolltop:hover,
.scrolltop:focus-visible{
  opacity: 1 !important;
}

.scrolltop__icon{
  font-size: 1.8rem;
  color: var(--body-color);
}

.show-scroll{
  visibility: visible;
  bottom: 1.5rem;
}

.home__container{
  height: calc(100% - var(--header-height));
  align-content: center;
}

.home__title{
  font-size: 4rem;
  color: var(--first-color);
  margin-bottom: var(--mb-2);
  transition: margin-bottom .3s ease-in-out,
  opacity .3s ease-in-out;
}

.home__title span.magic {
  filter: drop-shadow(0 0 1rem var(--two)) !important;
}

.home__subtitle{
  font-size: var(--h1-font-size);
  color: var(--title-color);
  margin-bottom: var(--mb-5);
  text-shadow: 0 0 1rem #ffffff15;
  transition: margin-bottom .3s ease-in-out,
  opacity .3s ease-in-out;
  line-height: 1.3;
}

.underline{
  position: relative;
  text-transform: capitalize;
}

.underline::after{
  opacity: 0;
  content: "";
  position: absolute;
  bottom: -15%;
  left: 50%;
  transform: translateX(-50%);
  display: block;
  width: 125%;
  height: .65rem;
  clip-path: url(#underline);
  -webkit-clip-path: url(#underline);
}

@supports (clip-path: url(#underline)) {
  .underline::after{
    opacity: 1;
  }
}

.button{
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #FFF;
  padding: .75rem 1rem;
  border-radius: .75rem;
  transition: background-color .3s ease-in-out,
  color .3s ease-in-out,
  opacity .3s ease-in-out,
  margin-bottom .3s ease-in-out;
  text-shadow: 0 0 1rem #000;
}

.button:hover,
.button:focus-visible{
  color: var(--first-color);
}

.button::before{
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: white;
  border-radius: .75rem;
  clip-path: inset(0 100% 0 0);
  transition: all .3s ease-in-out !important;
  z-index: 0;
}

.button.link::before{
  border-radius: .5rem;
}

.button:hover::before,
.button:focus-visible::before{
  clip-path: inset(0 0 0 0);
}

.button span,
.button i{
  z-index: 1;
}

#about{
  position: relative;
}

#about::after{
  content: "";
  position: absolute;
  top: 1rem;
  left: 50%;
  transform: translateX(-50%);
  height: .25rem;
  width: 2.5rem;
  border-radius: 2.5rem;
  background-color: #ccc;
  opacity: .5;
}

.map{
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: calc(100% - 1rem);
  height: 100%;
  min-height: 225px;
  border-radius: 1rem;
  box-shadow: 0 .25rem .25rem #00000025;
  order: -1;
  overflow: hidden;
  margin-left: 1rem;
  background-color: var(--container-color);
  background-image: url(assets/loading.webp);
  background-size: 2rem;
  background-position: center;
  background-repeat: no-repeat;
}

.map.rtl{
  order: 0;
  margin-left: 0;
  margin-right: 1rem;
}

.map .link{
  width: max-content;
  position: absolute;
  border-radius: .5rem;
  padding: .5rem 1rem;
  bottom: -20%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  font-size: .7rem;
}

.map:hover .link,
.map:focus-visible .link{
  bottom: 5%;
}

.map iframe{
  position: absolute;
  top: 50%;
  left: 50%;
  width: 800px;
  height: 800px;
  aspect-ratio: 1/1;
  transform: translate(-50%,-50%) scale(1);
  border: 0;
}

.location__data,
.about__data{
  text-align: center;
}

.about__description,
.location__description{
  margin-bottom: var(--mb-3);
  padding: 0 1rem;
}

.location__description{
  margin-bottom: var(--mb-2);
}

.location__description:last-child{
  margin-bottom: 0;
}

video,
img.about__data {
  position: relative;
  width: calc(100% - 1rem);
  aspect-ratio: 16/9;
  border-radius: 1rem;
  box-shadow: 0 .25rem .25rem #00000025;
  margin-right: 1rem;
  order: 1;
  bottom: -1rem;
  cursor: pointer;
}

video.rtl,
img.about__data.rtl{
  margin-right: 0;
  margin-left: 1rem;
  order: 0;
}

.menu .section-subtitle{
  justify-content: center;
}

.menu__container{
  grid-template-columns: repeat(2, 1fr);
  justify-content: center;
  padding: 0 2.5rem;
}

.menu__content{
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: column;
  background-color: var(--container-color);
  border-radius: 1rem;
  box-shadow: 0 .25rem .25rem #00000025;
  padding: 0;
  color: white;
  font-family: poppins;
}

.menu__content.rtl {
  font-family: krd;
}

.menu__content.off{
  display: none;
}

.menu__img{
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  aspect-ratio: 12/9;
  margin-bottom: 0;
  border-radius: 1rem 1rem 0 0;
  object-fit: cover;
  align-self: center;
  overflow: hidden;
  cursor: pointer;
  transition: filter .3s ease-in-out;
}

.menu__img:hover {
  filter: brightness(1.5);
}

.menu__img.err{
  width: 100px;
  height: 100px;
  aspect-ratio: 1/1;
  margin-top: var(--menu-border);
  border-radius: 10rem;
  transition: 0s !important;
  pointer-events: none;
}

.details{
  width: 100%;
  display: flex;
  display: grid;
  grid-auto-flow: column;
  place-items: center;
  justify-content: space-between;
  align-items: center;
  grid-gap: .75rem;
}

body.instagram .details{
  justify-content: center;
}

.menu__name,
.menu__price{
  color: var(--title-color);
}

body.instagram .menu__price{
  display: none;
}

.menu__price .price{
  margin-right: .25rem;
  white-space: nowrap;
}

.menu__price.rtl .price{
  margin-right: 0;
  margin-left: .25rem;
}

.menu__name{
  position: relative;
  text-align: center;
  margin: 1rem 0;
  font-size: var(--normal-font-size);
  text-transform: capitalize;
  line-height: 1.25rem;
  width: 100%;
  flex-grow: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: text;
}

.menu__name::after{
  position: absolute;
  content: "\eb1b";
  font-family: 'boxicons' !important;
  font-weight: normal;
  font-style: normal;
  font-variant: normal;
  line-height: 1;
  display: inline-block;
  text-transform: none;
  speak: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  bottom: calc(100% + 2rem);
  right: calc(100% - 2rem);
  pointer-events: none;
  text-shadow: 0 0 0.25rem black;
}

.menu__name.rtl::after{
  right: auto;
  left: calc(100% - 2rem);
}

.menu__img.err ~ .menu__name::after{
  opacity: 0;
}

.menu__name,
.details{
  padding: 0 1rem;
}

.details{
  padding-bottom: 1rem;
  line-height: 1;
}

.menu__detail,
.menu__price{
  font-size: var(--small-font-size);
  cursor: text;
}

.menu__detail{
  text-transform: capitalize;
  text-align: start;
  line-height: 1rem;
}

.contact__container{
  text-align: center;
  display: flex;
  justify-self: space-between;
  align-items: center;
}

.contact__data{
  width: 100%;
}

.contact__button,
.contact__button a{
  width: max-content;
}

.contact__button{
  margin: 0 1rem;
}

.contact__description{
  max-width: 600px;
  margin-bottom: var(--mb-3);
  padding: 0 1rem;
}

.footer__container{
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  row-gap: 2rem;
}

.footer__logo{
  font-size: var(--h3-font-size);
  color: var(--first-color);
  font-weight: var(--font-semi-bold);
}

.footer__description{
  display: block;
  font-size: var(--small-font-size);
  margin: .25rem 0 var(--mb-3);
}

.footer__social{
  font-size: 1.5rem;
  color: var(--title-color);
  margin-right: var(--mb-2);
}

.footer__title{
  font-size: var(--h2-font-size);
  color: var(--title-color);
  margin-bottom: var(--mb-2);
}

.footer__link{
  display: inline-block;
  color: var(--text-color);
  margin-bottom: var(--mb-1);
}

.footer__link:hover,
.footer__link:focus-visible{
  color: var(--first-color);
}

.footer__copy{
  text-align: center;
  font-size: var(--small-font-size);
  color: var(--text-color-light);
  margin-top: 3.5rem;
}

@media screen and (min-width: 576px){

  .home__container,
  .about__container,
  .location__container{
    grid-template-columns: repeat(2,1fr);
    align-items: center;
  }

  .about__data,
  .about__initial,
  .location__data,
  .location__initial,
  .contact__container,
  .contact__initial{
    text-align: initial;
  }

  .about__img,
  .app__img{
    width: 380px;
    order: -1;
  }

  .contact__container{
    grid-template-columns: 1.75fr 1fr;
    align-items: center;
  }

  .contact__button{
    justify-self: center;
  }

}

@media screen and (min-width: 768px){

  :root{
    --menu-border: 1.5rem;
  }

  body{
    margin: 0;
  }

  .section{
    padding-top: 8rem;
  }

  .nav{
    height: calc(var(--header-height) + 1.5rem);
  }

  .nav__list{
    display: flex;
  }

  .nav__item{
    margin-left: var(--mb-2);
    margin-bottom: 0;
  }

  .nav__toggle{
    display: none;
  }

  .change-theme{
    position: initial;
    margin-left: var(--mb-2);
  }

  .home__container{
    height: 100%;
    justify-items: center;
  }

  .services__container,
  .menu__container{
    margin-top: calc(var(--mb-6) - 1rem);
  }

  .menu__container{
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 1.5rem;
  }

  .menu__img.err{
    width: 130px;
    height: 130px;
  }

  .app__store{
    margin: 0 var(--mb-1) 0 0;
  }

}

@media screen and (min-width: 960px){

  .bd-container{
    margin-left: auto;
    margin-right: auto;
  }

  .about__container,
  .location__container{
    column-gap: 1rem;
  }

}

@media screen and (min-height: 721px) {

  .home__container {
    height: 640px;
  }

}

.footer{
  width: 100%;
  max-width: 100%;
  position: relative;
  z-index: 2;
  background: var(--body-color);
  margin: 0;
}

.socialLinksCon{
  width: 100%;
  position: relative;
  bottom: 0;
  text-align: center;
  font-weight: bold;
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  color: black;
}

.socialLinksCon.nobel{
  align-items: flex-start;
  justify-content: flex-start;
  padding-left: 2rem;
}

.socialLinksCon.nobel.rtl{
  padding-left: 0;
  padding-right: 2rem;
}

.socialLinksCon .made{
  color: var(--title-color);
  font-family: comfortaa !important;
}

.socialLinksCon a{
  position: relative;
  color: var(--first-color);
  margin: .5rem;
  font-weight: bold;
  text-align: center;
  text-decoration: none;
  transition: 0.4s ease-in-out;
  font-family: comfortaa;
  cursor: pointer;
}

.socialLinksCon a::before{
  content: "";
  opacity: 0;
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  border-radius: 1rem;
}

.socialLinksCon a:hover::before,
.socialLinksCon a:focus-visible::before{
  opacity: 1;
}

.socialLinks {
  display: flex;
  justify-content: center;
  align-items: center;
}

.socialLinks i{
  font-size: 1.5rem;
}

.footerLinks {
  margin-bottom: .5rem;
  font-size: 1rem !important;
  color: var(--one);
}

.noTransition{
  transition: 0s !important;
}

.loader{
  background-color: var(--body-color);
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 1000;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: .5s ease-in-out;
  opacity: 1;
}

.triple-spinner {
  display: block;
  position: relative;
  width: 7.5rem;
  height: 7.5rem;
  border-radius: 50%;
  border: .2rem solid transparent;
  border-top: .2rem solid var(--one);
  -webkit-animation: spin 2s linear infinite;
  animation: spin 2s linear infinite;
  filter: drop-shadow(0 0 .5rem var(--two));
}

.triple-spinner::before,
.triple-spinner::after{
  content: "";
  position: absolute;
  border-radius: 50%;
  border: .2rem solid transparent;
}

.triple-spinner::before {
  top: 1rem;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  border-top-color: var(--two);
  -webkit-animation: spin 3s linear infinite;
  animation: spin 3.5s linear infinite;
}

.triple-spinner::after {
  top: 2rem;
  left: 2rem;
  right: 2rem;
  bottom: 2rem;
  border-top-color: var(--three);
  -webkit-animation: spin 1.5s linear infinite;
  animation: spin 1.75s linear infinite;
}

@keyframes spin {
  from {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

.no-scroll{
  position: fixed !important;
  overflow-y: hidden;
}

.animateIn{
  opacity: 0;
  pointer-events: none;
  margin-bottom: 5rem;
}

#menu .section-title{
  margin-bottom: 0;
}

.chooseContainer{
  position: sticky;
  top: 4.4rem;
  z-index: 99;
  background-image: linear-gradient(180deg, #111 0%, #111111a1 87%, rgba(0,0,0,0) 100%);
  padding-top: 1.5rem;
  padding-bottom: .001rem;
}

.chooseContainer .chooseCategory,
.chooseContainer .chooseSection{
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 1.5rem;
}

.chooseContainer .chooseCategory{
  margin-bottom: 1rem;
}

.chooseContainer .chooseCategory.alone{
  margin-bottom: 0 !important;
}

.chooseSection.location{
  position: absolute;
  z-index: 2;
  top: .5rem;
  width: calc(50% - 4rem);
  left: 3rem;
}

.chooseSection.location.rtl{
  left: auto;
  right: 3rem;
}

.chooseCategory .categories,
.chooseSection .sections{
  position: relative;
  width: 100%;
  display: flex;
  justify-content: space-between;
  margin: 0 2.5rem;
  padding: .5rem 0;
  background-color: var(--container-color);
  border-radius: 10rem;
  box-shadow: 0 .25rem .25rem #00000025;
  overflow-x: auto;
  scrollbar-width: thin;
  -webkit-scrollbar-width: thin;
}

.chooseSection.location .sections{
  margin: 0;
  padding: .25rem 0;
  background-color: rgba(39, 48, 44, .6);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  transition: all .3s ease-in-out;
}

.chooseSection.location .sections .activeSection{
  padding: .25rem 1ch;
}

.chooseSection .sections.off{
  display: none;
}

.chooseSection.location .sections.off{
  display: flex;
}

.chooseCategory .categories .activeCategory,
.chooseSection .sections .activeSection{
  position: absolute;
  left: .5rem;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 10rem;
  height: calc(100% - 1rem);
  width: calc(20% - .25rem);
  transition: left .3s ease-in-out;
}

.chooseCategory .categories.rtl .activeCategory{
  left: calc(80% - .25rem);
}

.chooseSection .sections[data-count="2"] .activeSection{
  left: 0.5rem;
  width: calc(50% - .25rem);
}

.chooseSection .sections.rtl[data-count="2"] .activeSection{
  left: 50%;
  width: calc(50% - .5rem);
}

.chooseSection .sections[data-count="3"] .activeSection{
  left: 0.5rem;
  width: calc(33.33% - .25rem);
}

.chooseSection .sections.rtl[data-count="3"] .activeSection{
  left: calc(66.66% - .25rem);
  width: calc(33.33% - .25rem);
}

.chooseSection .sections[data-count="4"] .activeSection{
  left: 0.5rem;
  width: calc(25% - .25rem);
}

.chooseSection .sections.rtl[data-count="4"] .activeSection{
  left: calc(75% - .25rem);
  width: calc(25% - .25rem);
}

.chooseSection .sections[data-count="5"] .activeSection{
  left: 0.5rem;
  width: calc(20% - .25rem);
}

.chooseSection .sections.rtl[data-count="5"] .activeSection{
  left: calc(80% - .25rem);
  width: calc(20% - .25rem);
}

.chooseCategory .categories .categoryBtn,
.chooseSection .sections .sectionBtn{
  cursor: pointer;
  z-index: 2;
  color: white;
  font-size: clamp(0.75rem, -0.875rem + 5.733vw, 1rem);
  background-color: transparent;
  border: none;
  border-radius: 10rem;
  padding: .5rem 1ch;
  box-shadow: 0 0 0 .1rem transparent;
  text-transform: capitalize;
  text-shadow: 0 0 1rem #ffffff15;
  font-family: poppins;
  white-space: nowrap;
  text-align: center;
  margin: 0;
  width: 100%;
}

.chooseSection.location .sections .sectionBtn{
  font-size: clamp(0.75rem, -0.875rem + 4.733vw, .9rem);
}

.chooseSection.location .sections .sectionBtn.active{
  padding: .5rem;
}

.chooseCategory .categories .categoryBtn.rtl,
.chooseSection .sections .sectionBtn.rtl{
  font-family: krd;
}

.chooseCategory .categories .categoryBtn.active,
.chooseSection .sections .sectionBtn.active{
  text-shadow: 0 0 1rem black;
}

.chooseCategory .categories .categoryBtn.active:focus-visible,
.chooseSection .sections .sectionBtn.active:focus-visible{
  box-shadow: 0 0 0 .1rem #fff;
}

.chooseSection .sections[data-count="2"] .sectionBtn{
  width: calc(50% - .25rem);
}

.chooseSection .sections[data-count="3"] .sectionBtn{
  width: calc(33.33% - .25rem);
}

.chooseSection .sections[data-count="4"] .sectionBtn{
  width: calc(25% - .25rem);
}

.chooseCategory.main {
  width: calc(100% - 5rem);
  margin-left: auto;
  margin-right: auto;
  padding: 0;
  background: #2222227a;
  border-radius: 1.25rem;
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
/*  background-color: hsl(164, 30%, 15%, .5);*/
  box-shadow: 0px 3px 3px #0002;
  overflow: hidden;
}

.chooseCategory.main .categories {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
  scrollbar-color: transparent transparent;
  scrollbar-width: thin;
  -webkit-overflow-scrolling: touch;
  background-color: transparent;
  transition: scrollbar-color .3s ease-in-out;
  padding: 1.5rem;
  margin: 0;
  border-radius: 0;
  scroll-snap-type: x mandatory;
  scroll-padding: 1.5rem;
  -webkit-scroll-snap-type: x mandatory;
  -webkit-scroll-padding: 1.5rem;
}

.chooseCategory.main .categories:hover {
  scrollbar-color: var(--primary) transparent;
}

.chooseCategory.main .categories .categoryBtn {
  position: relative;
/*  background-color: hsl(164, 30%, 15%, .75);*/
  background: #3337;
  padding: 1rem;
  margin: 1px 0;
  margin-inline-end: 1rem;
  width: 100%;
  height: unset;
  border: none;
  border-radius: 1rem;
  box-shadow: 0px 3px 3px #0002, 0 0 0 1px #80808033;
  color: white;
  display: grid;
  grid-auto-flow: column;
  place-items: center;
  place-content: center;
  grid-gap: .5rem;
  cursor: pointer;
  text-shadow: 0 0 1rem #000;
  scroll-snap-align: center;
  -webkit-scroll-snap-align: center;
}

.chooseCategory.main .categories .categoryBtn:nth-child(6) {
  margin-inline-end: 0;
}

.chooseCategory.main .categories .categoryBtn.empty {
  display: none;
  opacity: 0;
  pointer-events: none;
  margin: 0;
  padding: .75rem;
}

.chooseCategory.main .categories .categoryBtn.rtl {
  font-family: krd;
}

.chooseCategory.main .categories .categoryBtn > * {
  pointer-events: none;
}

.chooseCategory.main .categories .categoryBtn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 1rem;
  opacity: 0;
  z-index: -1;
}

.chooseCategory.main .categories .categoryBtn.active::before,
.chooseCategory.main .categories .categoryBtn:hover::before,
.chooseCategory.main .categories .categoryBtn:focus-visible::before {
  opacity: 1;
}

.chooseCategory.main .categories .categoryBtn img {
  fill: white;
  width: 1em;
  height: unset;
  object-fit: contain;
  aspect-ratio: 1;
  font-size: 1.5rem;
}

.rtl{
  font-family: krd;
  direction: rtl;
}

.iconMargin{
  margin-right: 0;
  margin-left: .25rem;
}

.iconMargin.rtl{
  margin-left: 0;
  margin-right: .25rem;
}

@keyframes background-pan {
  from {
    background-position: 0% center;
  }
  
  to {
    background-position: -200% center;
  }
}

.magic,
.mgtxt{
  transition: all 0s ease-in-out;
  -webkit-text-fill-color: white;
  text-fill-color: white;
  background: transparent;
}

.magic,
.magicBtn,
.magicBg,
.menu__img.err,
.preview .imageCon .bx-x::after,
.langs .langBtn::before,
.active-link::before,
.langs .langBtn::after,
.socialLinksCon a::before,
.underline::after,
.mgtxt:hover,
.mgtxt:focus-visible,
.chooseCategory.main .categories .categoryBtn::before{
  --magic-time: 9s;
  transition: all .3s ease-in-out;
  animation: background-pan var(--magic-time) ease-in-out infinite;
  background: linear-gradient(
    to right,
    var(--one),
    var(--two),
    var(--three),
    var(--one)
  );
  background-size: 200%;
  filter: drop-shadow(0 0 .5rem var(--two));
}

.mgtxt.active:hover,
.mgtxt.active:focus-visible{
  background: transparent;
  animation: unset;
  color: white;
  -webkit-text-fill-color: white;
  text-fill-color: white;
  text-shadow: 0 0 1rem black !important;
}

.magic,
.mgtxt:hover,
.mgtxt:focus-visible{
  --magic-time: 3s;
  animation: background-pan var(--magic-time) ease-in-out infinite;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-fill-color: transparent;
  white-space: nowrap;
  text-shadow: 0 0 1rem #ffffff15;
  transition: all .0s ease-in-out;
}

.magicBtn,
.magicBg{
  transition:
  left .3s ease-in-out,
  bottom .3s ease-in-out,
  opacity .3s ease-in-out,
  color .3s ease-in-out,
  visibility .3s ease-in-out !important;
}

.magicBg{
  opacity: .9;
}

.scrolltop.magicBg{
  opacity: .5;
}

.magic.p-1{
  padding: 0 1rem;
}

.active-link,
.magic.np,
.mgtxt.np:hover,
.mgtxt.np:focus-visible{
  padding: 0;
}

@supports not (-webkit-background-clip: text) {

  .magic,
  .magicBtn,
  .magicBg,
  .menu__img.err,
  .preview .imageCon .bx-x::after,
  .langs .langBtn::before,
  .active-link::before,
  .langs .langBtn::after,
  .socialLinksCon a::before,
  .active-link,
  .underline::after,
  .mgtxt,
  .mgtxt:hover,
  .mgtxt:focus-visible,
  .mgtxt.active:hover,
  .mgtxt.active:focus-visible{
    color: var(--first-color);
    background: var(--first-color);
    -webkit-background-clip: unset;
    background-clip: unset;
    -webkit-text-fill-color: unset;
    text-fill-color: unset;
  }

}

.rotate{
  position: fixed;
  height: 100%;
  width: 100%;
  background: var(--body-color);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 999;
}

.rotate object{
  width: 50%;
  max-height: 25%;
  height: 50%;
  aspect-ratio: 1/1;
}

@media screen and (min-width: 550px) and (max-width: 950px) and (min-height: 320px) and (max-height: 450px){
  body{
    position: fixed;
    overflow: hidden;
    margin: 0;
  }
  .rotate{
    display: flex;
  }
}

@media (max-width: 1000px){
  .mainContent{
    width: 100%;
  }

  .menu__container {
    column-gap: 3rem;
    row-gap: 3rem;
  }

  .chooseSection .sections{
    margin: 0 2.5rem;
  }
}

@media (max-width: 700px){

  .chooseCategory.main .categories {
    padding-inline-end: 0;
  }

  .chooseCategory.main .categories .categoryBtn.empty {
    display: revert;
  }

  body.start .bg {
    background-image: url(assets/bg.webp);
    filter: brightness(.25) blur(3px);
  }

  .chooseCategory.main .categories .categoryBtn {
    scroll-snap-align: none;
  }

  .preview .imageCon{
    height: auto;
    width: calc(100% - 3rem);
  }

  .preview .imageCon .bx-x{
    font-size: 1.5rem;
  }

  .menu__container {
    column-gap: 1.5rem;
    row-gap: 1.5rem;
  }

  .nav__link i{
    margin-right: 0;
    margin-left: 1rem;
  }

  .nav__link i.rtl{
    margin-right: 1rem;
    margin-left: 0;
  }

  .l-header {
    left: 0;
    max-width: revert;
    transform: revert;
  }

  .home__title {
    font-size: 3rem;
  }

  .menu__container {
    padding: 0 1.5rem;
  }

  .section-title,
  .section-subtitle,
  .about__description,
  .location__description,
  .contact__description {
    padding: 0;
    text-align: justify;
    text-align-last: center;
  }

  .chooseCategory.main {
    width: calc(100% - 3rem); 
  }

  video,
  video.rtl,
  img.about__data,
  img.about__data.rtl {
    order: 1;
    width: 100%;
    margin: 0 auto;
    bottom: 0;
  }

  .socialLinksCon.nobel,
  .socialLinksCon.nobel.rtl{
    align-items: center;
    justify-content: center;
    padding: 0;
    margin-top: 1.5rem;
  }

  .map{
    height: auto;
    aspect-ratio: 16/9;
  }

  .map,
  .map.rtl{
    width: 100%;
    margin: 0 auto;
    order: 0;
  }

  .mainContent{
    width: 100%;
  }

  .contact__button{
    margin-left: 0
  }

  .contact__container{
    flex-direction: column;
  }

  .contact__button{
    margin-right: 0;
  }

  .chooseCategory{
    margin-bottom: .75rem
  }

  .chooseSection.location,
  .chooseSection.location.rtl{
    position: relative;
    top: 0;
    right: 0;
    left: 1rem;
    width: calc(100% - 2rem);
  }

  .chooseSection.location .sections{
    background-color: var(--container-color);
    backdrop-filter: blur(0px);
    -webkit-backdrop-filter: blur(0px);
  }

  .chooseSection .sections{
    margin: 0 1.5rem;
    padding: .5rem 0;
  }

  .chooseContainer .chooseCategory{
    margin-bottom: 2rem;
  }

  .section-subtitle{
    justify-content: center;
  }

  .about__description,
  .location__description,
  .contact__description{
    margin-bottom: .5rem;
  }

}