
@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;
  --first-color: #E66526;
  --first-color-alt: #7F3917;
  --text-color-light: #A6A6A6;
  --title-color: #F1F3F2;
  --text-color: #fff;
/*  --body-color: #1D2521;*/
/*  --container-color: #27302C;*/
  --body-color: #0e0e0e;
  --container-color: #1D2521;
/*  --container-color: #1a1a1a;*/
  --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;

  --orange: #ff864a;
  --gold: #fcd458;
  --yellow: #eda214;

}

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

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

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

::-webkit-scrollbar-thumb {
  background: var(--gold);
  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: none
}

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(--gold) #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;
}

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

/* event */

.snowflake {
  position: fixed;
  top: -20px;
  color: inherit!important;
  font-size: 10px;
  opacity: .85;
  animation: fall linear infinite;
  pointer-events: none;
  z-index: 100;
}

@keyframes fall {

  to {
    transform: translate(5rem, 100dvh) rotate(1turn);
    transform: translate(5rem, 100vh) rotate(1turn);
    opacity: 0;
  }

}

.light {
  position: fixed;
  top: -20px;
  color: inherit!important;
  font-size: 10px;
  opacity: .85;
  animation: light linear infinite;
  pointer-events: none;
  filter: blur(20px);
  z-index: 100;
}

@keyframes light {

  to {
    transform: translate(5rem, 30dvh) rotate(1turn);
    transform: translate(5rem, 30vh) rotate(1turn);
    opacity: 0;
  }

}

/* event */

.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.png);
  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{
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  position: fixed;
  top: 0;
  z-index: -1;
  background: linear-gradient(to bottom,#0007,#0007),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{
  width: 100%;
  position: fixed;
  bottom: 10%;
  left: 50%;
  transform: translateX(-50%);
  display: grid;
  grid-auto-flow: column;
  place-content: center;
  place-items: center;
  grid-gap: .75rem;
}

.langs .langsLabel{
  position: absolute;
  top: calc(-50% - 1rem);
  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;
}

.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;
  border-radius: 50%;
}

.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: 0;
  z-index: 101;
  transition: .3s ease-in-out;
  border-radius: 0 0 1rem 1rem;
  border-bottom: 1px solid transparent;
}

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

@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{
  margin-bottom: var(--mb-2);
}

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

.nav__logo{
  position: relative;
  font-size: 1.5rem;
}

.nav__logo span{
  position: relative;
  z-index: 1;
}

.nav__logo .event{
  position: absolute;
  pointer-events: none;
}

.nav__logo .event.ramadan{
  width: 100%;
  top: calc(100% - .7rem);
  left: 0;
  filter: drop-shadow(0 0 .5rem #ffbd21);
}

.nav__logo .event.newroz{
  width: calc(100% + 20px);
  height: 70px;
  top: -30px;
  left: -10px;
  opacity: .5;
  object-fit: fill;
  filter: drop-shadow(0 0 .5rem #ffbd21);
}

.nav__logo .event.eid{
  width: 100%;
  top: calc(100% - .7rem);
  left: 50%;
  filter: drop-shadow(0 0 .5rem #ffbd21);
  transform: translateX(-50%);
}

.nav__logo .event.off{
  display: none;
}

.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);
  border-bottom: 1px solid #ffffff05;
}

.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: var(--biggest-font-size);
  color: var(--first-color);
  margin-bottom: var(--mb-2);
  transition: margin-bottom .3s ease-in-out,
  opacity .3s ease-in-out;
}

.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%;
  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{
  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{
  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 1.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;
}

.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;
  justify-content: space-between;
  align-items: center;
}

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

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

.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;
}

.menu__name::after{
  position: absolute;
  content: "\eab7";
  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);
}

.menu__detail{
  text-transform: capitalize;
}

.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{
  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(3, 210px);
    column-gap: 3rem;
    row-gap: 3rem;
  }

  .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(--orange);
}

.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 #FF5722;
  -webkit-animation: spin 2s linear infinite;
  animation: spin 2s linear infinite;
  filter: drop-shadow(0 0 .5rem #FF980033);
}

.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: #FF9800;
  -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: #FFC107;
  -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, rgba(14,14,14,1) 71%, rgba(14,14,14,0.5830532896752452) 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: center;
  align-items: center;
  margin: 0 7rem;
  padding: .5rem 0;
  background-color: var(--container-color);
  border-radius: 10rem;
  box-shadow: 0 .25rem .25rem #00000025;
}

.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;
  width: 25%;
  box-shadow: 0 0 0 .1rem transparent;
  text-transform: capitalize;
  text-shadow: 0 0 1rem #ffffff15;
  font-family: poppins;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  text-align: center;
}

.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 .categories .categoryBtn:last-child,
.chooseSection .sections .sectionBtn:last-child{
  margin-right: .5rem;
  margin-left: 0;
}

.chooseCategory .categories.rtl .categoryBtn:last-child,
.chooseSection .sections.rtl .sectionBtn:last-child{
  margin-left: .5rem;
  margin-right: 0;
}

.chooseCategory .categories .categoryBtn:nth-child(2),
.chooseSection .sections .sectionBtn:nth-child(2){
  margin-left: .5rem;
  margin-right: 0;
}

.chooseCategory .categories.rtl .categoryBtn:nth-child(2),
.chooseSection .sections.rtl .sectionBtn:nth-child(2){
  margin-right: .5rem;
  margin-left: 0;
}

.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,
.active-link,
.underline::after,
.mgtxt:hover,
.mgtxt:focus-visible{
  --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(--orange),
    var(--gold),
    var(--yellow),
    var(--orange)
  );
  background-size: 200%;
}

.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,
.active-link,
.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;
  }

  .chooseCategory .categories,
  .chooseSection .sections{
    margin: 0 2.5rem;
  }
}

@media (max-width: 700px){

  .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;
  }

  video,
  video.rtl{
    order: 1;
    width: calc(100% - 2rem);
    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: calc(100% - 2rem);
    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);
  }

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

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

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

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

}