/*font-style*/
@font-face {
  font-family: "pinar";
  src: url("../../Fonts/pinar/Pinar-Regular.woff2") format("woff2"),
    url("../../Fonts/pinar/Pinar-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: "pinar";
  src: url("../../Fonts/pinar/Pinar-Bold.woff2") format("woff2"),
    url("../../Fonts/pinar/Pinar-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
}


@font-face {
  font-family: "iranyekan";
  font-weight: normal;
  src: url("../../Fonts/iranyekan/ttf/iranyekanwebregular.ttf")
      format("truetype"),
    url("../../Fonts/iranyekan/ttf/iranyekanwebbold.ttf") format("woff");
}

@font-face {
  font-family: "iranyekan";
  font-weight: bold;
  src: url("../../Fonts/fonts/iranyekan/woff/iranyekanwebregular.woff")
      format("truetype"),
    url("../../Fonts/iranyekan/woff/iranyekanwebbold.woff") format("woff");
}

body {
  font-family: "iranyekan","pinar", sans-serif;
  direction: rtl;
  line-height: 1.5;
  background-color: #ffffff;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}
/*font-style*/

* {
  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 (width >= 64rem /* 1024px */) {
  .contain {
    width: 85% !important;
    margin: 0 auto;
  }
}

.datepicker-plot-area {
  width: 270px;
  font-family: inherit !important;
}

.before_design {
  z-index: 1;
}
.before_design::before {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  content: "";
  z-index: -1;
  border-radius: inherit;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transform-origin: bottom left;
  transform-origin: bottom left;
  transition: -webkit-transform 500ms cubic-bezier(0.86, 0, 0.07, 1);
  -webkit-transition: -webkit-transform 500ms cubic-bezier(0.86, 0, 0.07, 1);
  transition: transform 500ms cubic-bezier(0.86, 0, 0.07, 1);
  transition: transform 500ms cubic-bezier(0.86, 0, 0.07, 1),
    -webkit-transform 500ms cubic-bezier(0.86, 0, 0.07, 1);
  -webkit-transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
  transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
}


.bg_before_primary.before_design::before{
  background-color: var(--theme-primary);
}

.bg_before_dark.before_design::before{
  background-color: #121212;
}

.before_design:hover:before {
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transform-origin: top right;
  transform-origin: top right;
}
.before_design_buttom{
  z-index: 1;
}
.before_design_buttom::before {
  background-color: var(--theme-primary);
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 0;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
  z-index: -1;
}

.group:hover .before_design_buttom:before {
  height: 100%;
}

.befor_after_design::after {
  left: -50px;
}
.befor_after_design::before {
  right: -50px;
}
.befor_after_design::after,
.befor_after_design::before {
  position: absolute;
  top: 10px;
  content: "";
  width: 37px;
  height: 10px;
  background-image: url(../../Images/design/before.png);
}


.bg_blur{
  background: rgba(247, 243, 238, 0.8);
    -webkit-backdrop-filter: blur(2px);
    backdrop-filter: blur(2px);
}
.pdp-container {
  max-width: 95vw !important;
  overflow: auto;
  z-index: 9999;
  box-sizing: border-box;
}


.overlay-anim:before {
  background: rgba(255, 255, 255, 0.3);
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 0;
  opacity: 1;
  z-index: 9;
  pointer-events: none;
}
.overlay-anim:hover:before {
  height: 100%;
  opacity: 0;
  -webkit-transition: all 400ms linear;
  transition: all 400ms linear;
}

.after_dark_design:after{
  background-color: rgba(0 ,0, 0, 0.4);
    content: "";
    position: absolute;
    inset: 0;
    height: 100%;
    width: 100%;
}

.border-design{
  z-index: 1;
}
.border-design::after{
  border: 1px solid var(--theme-primary);
    content: "";
    inset: 10px;
    position: absolute;
    z-index: -1;
  
}


.animation_img img {
  position: relative;
  width: 100%;
  display: block;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}
.animation_img img:first-child {
  position: absolute;
  inset: 0;
  z-index: 1;
  -webkit-transform: translateX(50%) scaleX(2);
          transform: translateX(50%) scaleX(2);
  opacity: 0;
  -webkit-filter: blur(10px);
          filter: blur(10px);
}


.group:hover .animation_img img:first-child {
  -webkit-transform: translateX(0) scaleX(1);
          transform: translateX(0) scaleX(1);
  opacity: 1;
  -webkit-filter: blur(0);
          filter: blur(0);
}
.group:hover .animation_img img:nth-child(2) {
  -webkit-transform: translateX(-50%) scaleX(2);
          transform: translateX(-50%) scaleX(2);
  opacity: 0;
  -webkit-filter: blur(10px);
          filter: blur(10px);
}

.group-product li.group-product_after::after {
    content: "،";
    display: inline-block;
    margin: 0 5px;
    vertical-align: middle;
}
.group-product li{
  display: flex;
  align-items: center;
}


.group-product li:last-child.group-product_after::after {
    display: none;
}

.undeline_design::before {
  position: absolute;
  inset-inline-start: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background-color: var(--theme-primary);
  content: "";
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}
.undeline_design:hover:before {
  width: 100%;
}

.go-to-top {
  background: var(--theme-primary);
  border-radius: 50%;
  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);
}


.header_design::after {
  background-image: linear-gradient(180deg, #000000 0%, rgb(0 0 0 / 40%) 100%);
  content: "";
  position: absolute;
  inset: 0;
  height: 100%;
  width: 100%;
}


/* icon-room */
.h_room_icon{
  background-size: cover;
  object-position: center center;
}
.fitness{
  background-image: url(../../Images/Icon/weightlifting.png);
}

.fitness-light{
  background-image: url(../../Images/Icon/weightlifting-white.png);
}

.moble{
  background-image: url(../../Images/Icon/moble.png);
}
.moble-light{
  background-image: url(../../Images/Icon/moble-white.png);
}

.wifi{
  background-image: url(../../Images/Icon/wifi.png);
}

.wifi-light{
  background-image: url(../../Images/Icon/wifi-white.png);
}

.television{
    background-image: url(../../Images/Icon/television.png);

}
.television-light{
    background-image: url(../../Images/Icon/television-white.png);

}
.shower{
    background-image: url(../../Images/Icon/shower.png);

}

.shower-light{
    background-image: url(../../Images/Icon/shower-white.png);

}

/* icon-room */

 .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;

    
}