/*font-style*/

@font-face {
  font-family: "Vazirmatn";
  src: url("../../Fonts/vazir/Vazirmatn-Thin.ttf") format("truetype");
  font-weight: 100;
  font-style: normal;
}

@font-face {
  font-family: "Vazirmatn";
  src: url("../../Fonts/vazir/Vazirmatn-ExtraLight.ttf") format("truetype");
  font-weight: 200;
  font-style: normal;
}

@font-face {
  font-family: "Vazirmatn";
  src: url("../../Fonts/vazir/Vazirmatn-Light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
}

@font-face {
  font-family: "Vazirmatn";
  src: url("../../Fonts/vazir/Vazirmatn-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: "Vazirmatn";
  src: url("../../Fonts/vazir/Vazirmatn-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: "Vazirmatn";
  src: url("../../Fonts/vazir/Vazirmatn-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
}

@font-face {
  font-family: "Vazirmatn";
  src: url("../../Fonts/vazir/Vazirmatn-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: "Vazirmatn";
  src: url("../../Fonts/vazir/Vazirmatn-ExtraBold.ttf") format("truetype");
  font-weight: 800;
  font-style: normal;
}

@font-face {
  font-family: "Vazirmatn";
  src: url("../../Fonts/vazir/Vazirmatn-Black.ttf") format("truetype");
  font-weight: 900;
  font-style: normal;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Vazirmatn", sans-serif;
  direction: rtl;
  color: #444444;
  
  background-color: #ebebf2;
}

* {
  scrollbar-color: var(--theme-Primary) transparent !important; /* Firefox */
}

*::-webkit-scrollbar {
  width: 0.25rem;
  height: 0rem;
}

*::-webkit-scrollbar-thumb {
  background-color: var(--theme-Primary);
  border-radius: 1rem;
  border: 2px solid transparent;
  background-clip: content-box;
}

@media screen and (max-width: 1023px) {
  .contain {
    width: 98% !important;
    margin: 0 auto;
  }
}
@media screen and (min-width: 1280px) {
  .contain {
    width: 90% !important;
    margin: 0 auto;
  }
}

.bg-blur{
background: rgba(255, 255, 255, 0.65);
    backdrop-filter: blur(9.5px);
    -webkit-backdrop-filter: blur(9.5px);
}

 .menu-navigation {
    
    box-shadow: 0 -16px 25px rgba(0, 0, 0, 0.05), 7px 3px 12px rgba(0, 0, 0, 0.12) inset;
    border-radius: .5rem;
    margin: 0 .5rem;
}

.menu_bar_bottom_home{
    margin: 0 auto;
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 9999px;
    border-width: 2px;
    background-color: #fff;
    /* background-color: var(--theme-Primary); */
    -webkit-box-shadow: 0 -16px 25px rgba(0,0,0,0.05),7px 3px 12px rgba(0,0,0,0.12) inset;
    box-shadow: 0 -16px 25px rgba(0,0,0,0.05) inset,7px 3px 12px rgba(0,0,0,0.12) inset;
    display: flex;
    align-items: center;
    place-content: center;

    
}

.go-to-top {
  background: var(--theme-Primary);
  border-radius: 10px;
  cursor: pointer;
  overflow: hidden;
  position: fixed;
  inset-inline-start: 15px;
  bottom: 0;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  width: 2rem;
  height: 2rem;
  -webkit-transform: translate3d(0, 100px, 0);
  -ms-transform: translate3d(0, 100px, 0);
  transform: translate3d(0, 100px, 0);
  z-index: 9999;
}
.go-to-top.add-class-top {
  -webkit-transform: translate3d(0, -15px, 0);
  -moz-transform: translate3d(0, -15px, 0);
  -ms-transform: translate3d(0, -15px, 0);
  -o-transform: translate3d(0, -15px, 0);
}
