@font-face {
  font-family: pinar;
  src:
    url(../fonts/pinar/woff2/Pinar-FD-Regular.woff2) format("woff2"),
    url(../fonts/pinar/ttf/Pinar-FD-Regular.ttf) format("truetype");
  font-weight: normal;
  font-style: normal;
  font-stretch: normal;
}

@font-face {
  font-family: pinar;
  src:
    url(../fonts/pinar/woff2/Pinar-FD-Medium.woff2) format("woff2"),
    url(../fonts/pinar/ttf/Pinar-FD-Medium.ttf) format("truetype");
  font-weight: 500;
  font-style: normal;
  font-stretch: normal;
}

@font-face {
  font-family: pinar;
  src:
    url(../fonts/pinar/woff2/Pinar-FD-SemiBold.woff2) format("woff2"),
    url(../fonts/pinar/ttf/Pinar-FD-SemiBold.ttf) format("truetype");
  font-weight: 600;
  font-style: normal;
  font-stretch: normal;
}

@font-face {
  font-family: pinar;
  src:
    url(../fonts/pinar/woff2/Pinar-FD-Bold.woff2) format("woff2"),
    url(../fonts/pinar/ttf/Pinar-FD-Bold.ttf) format("truetype");
  font-weight: bold;
  font-style: normal;
  font-stretch: normal;
}


/* base  */

:root {
  --color1: #F8931D;
  --color2: #02255F;
  --back: #fff;
  --font1: pinar;
}

body {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: var(--font1);
  direction: rtl;
  background-color: var(--back);
}

a {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
  color: var(--color1)
}

.ltr {
  direction: ltr;
}

.rtl {
  direction: rtl;
}

@media (min-width: 1400px) {

  .container,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl,
  .container-xxl {
    max-width: 1320px;
  }
}

@media (max-width: 767px) {
  .d-m-none {
    display: none !important;
  }

}

.col-20 {
  -ms-flex: 0 0 20%;
  flex: 0 0 20%;
  max-width: 20%;
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
}

@media (min-width: 768px) {
  .col-md-20 {
    -ms-flex: 0 0 20%;
    flex: 0 0 20%;
    max-width: 20%;
    position: relative;
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
  }
}

@media (min-width: 992px) {
  .col-lg-20 {
    -ms-flex: 0 0 20%;
    flex: 0 0 20%;
    max-width: 20%;
    position: relative;
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
  }
}

@media (max-width: 767.98px) {

  .navbar-expand-md>.container,
  .navbar-expand-md>.container-fluid,
  .navbar-expand-md>.container-lg,
  .navbar-expand-md>.container-md,
  .navbar-expand-md>.container-sm,
  .navbar-expand-md>.container-xl {
    padding-right: 15px;
    padding-left: 15px;
  }
}

/* navbar */

.navbar-custom {
  background-color: #fff;
  height: 89px;
  padding: 0;
  z-index: 1000;
  transition: 0.3s;
  position: absolute;
  width: 100%;
  z-index: 999;
  top: -100px;
  margin-top: 100px;
  transition: transform 0.5s ease-out, top 0.5s ease-out;
}

.navbar-custom.fixed {
  top: 0;
  margin-top: 0;
  position: fixed;
  height: 89px;
  box-shadow: 0px 0px 8px 0px #11100F26;
}

.navbar-fill {
  height: 89px;
}

.navbar-logo img {
  width: auto;
  height: 71px;
  object-fit: contain;
}

.navbar-logo {
  display: flex;
  align-items: center;
  margin-left: 40px;
  outline: none;
}

.nav-item {
  margin-left: 20px;
  white-space: nowrap;
}

.nav-item a.active {
  background: var(--color1);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 32px;
  border-radius: 40px;
  padding: 0 15px;
}

.nav-item a.active:hover {
  color: #fff !important;
  background: var(--color1);
}

.nav-item a {
  display: flex;
  align-items: center;
  padding: 20px 10px;
  font-size: 18px;
  color: #000;
  font-weight: 400;
}

.nav-item.dropdown {
  margin-top: -2px;
}

/* border hover  */

@media (min-width:768px) {
  .nav-item a {
    display: inline-block;
  }

  .nav-item:not(.dropdown) a::after {
    content: '';
    display: block;
    width: 0;
    height: 1px;
    background: var(--color1);
    transition: width .2s;
    border-radius: 5px;
    margin-top: 5px;
    margin-bottom: -5px;
  }

  .nav-item:not(.dropdown) a:hover::after {
    width: 100%;
    transition: width .3s;
  }
}

.nav-item a:hover {
  color: var(--color1) !important;
}

.navbar-right {
  display: flex;
  align-items: center;
  width: 100%;
}

.navbar-left {
  display: flex;
  align-items: center;
  justify-content: end;
  width: 100%;
  gap: 15px;
}

.navbar-btn {
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color1);
  border: 1px solid var(--color1);
  color: #fff;
  font-size: 18px;
  padding: 10px 30px;
  border-radius: 12px;
  transition: 0.3s;
}

.navbar-btn:hover {
  background: #fff;
  color: var(--color1);
}

.navbar-btn-text {
  font-size: 18px;
  color: #000;
  transition: 0.3s;
}

.navbar-btn-text:hover {
  color: var(--color1);
}






.navbar-search {
  border: 1px solid var(--color1);
  height: 44px;
  display: flex;
  align-items: center;
  border-radius: 0;
  padding: 0 10px;
  position: absolute;
  width: 250px;
  top: 0;
  background: #fff;
  left: 0;
  visibility: hidden;
  transition: 0.3s;
  opacity: 0;
}

.navbar-search.active {
  visibility: visible;
  top: 60px;
  opacity: 1;
}

.navbar-search button {
  font-size: 20px;
  background: transparent;
  border: 0;
  padding: 0;
  line-height: 1;
  transition: 0.3s;
  color: var(--color1);
}

.navbar-search input {
  border: 0;
  outline: none;
  width: 100%;
  height: 100%;
  font-size: 14px;
  padding-right: 5px;
}

/* 
ponsive navbar all size */

@media (max-width:767.5px) {

  .navbar-custom {
    height: 70px;
    padding: 10px 0;
  }

  .navbar-fill {
    height: 70px;
  }

  .navbar-custom.fixed {
    height: 70px;
  }

  .navbar-right {
    width: auto;
  }

  .navbar-left {
    width: auto;
  }

  .navbar-logo {
    margin-left: 0;
  }

  .navbar-btn {
    padding: 0 10px;
    height: 36px;
    border-radius: 10px;
    font-size: 14px;
  }

  .navbar-btn-text {
    font-size: 14px;
  }

  .navbar-btn span {
    display: none;
  }

  .navbar-btn-badge {
    display: flex;
    left: 0;
  }

  .navbar-logo img {
    height: 46px;
  }

  .navbar-search.active {
    top: 40px;
  }

  .nav-item a.active {
    width: max-content;
  }

}

@media (min-width:768px) and (max-width:1199px) {
  .navbar-logo {
    margin-left: 30px;
  }

  .nav-item:nth-child(6) {
    display: none;
  }

  .nav-item:nth-child(7) {
    display: none;
  }

  .nav-item:nth-child(8) {
    display: none;
  }

  .navbar-btn span {
    display: none;
  }
}

@media (min-width:1199px) and (max-width:1399px) {
  .navbar-btn span {
    display: none;
  }
}

@media (min-width:768px) {
  .navbar-nav {
    align-items: center;
  }
}


/* dropdown */
.dropdown a::after {
  margin-top: -2px;
  margin-right: 10px;
  border: 0;
  font-family: "raya-icon";
  content: '\f107';
}

.dropdown ul li a::after {
  content: unset;
}

.dropdown .dropdown>a:after {
  display: block;
  content: " ";
  float: left;
  border: 0;
  font-family: "raya-icon";
  content: '\f104';
  margin-top: 5px;
  margin-right: -10px;
}

.dropdown ul {
  left: 0;
  z-index: 1000;
  display: none;
  padding: 0.5rem 0;
  margin: 0.125rem 0 0;
  color: #212529;
  text-align: right;
  list-style: none;
  background-color: #fff;
  background-clip: padding-box;
  position: absolute;
  border: 0;
  border-radius: 5px;
  margin-top: 0px;
  border: 1px solid #e0e0e0;
  border-radius: 5px;
  min-width: 200px;
  border-radius: 8px;
  font-size: 14px;
  transition: opacity 0.3s ease-in-out;
  right: 0;
}

.dropdown ul li a {
  color: #444;
  font-size: 16px;
  display: block;
  white-space: nowrap;
  width: 100%;
  padding: 7px 14px;
  font-weight: normal;
}

.dropdown ul li a:hover {
  color: var(--color1);
}



@media (min-width:767.5px) {
  .dropdown ul::before {
    content: "";
    position: absolute;
    top: -10px;
    right: 5px;
    transform: translateX(-50%) rotate(180deg);
    border-top: 10px solid var(--color1);
    border-right: 10px solid transparent;
    border-left: 10px solid transparent;
  }

  .dropdown .dropdown ul::before {
    content: unset;
  }

  .dropdown .dropdown {
    position: relative;
  }

  .dropdown .dropdown>ul {
    top: 0;
    right: 100%;
  }

  #overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: transparent;
    z-index: -20;
    transition: background 0.1s ease, z-index 0s;
    transition-delay: 0.1s, 0.4s;
  }

  #overlay.active {
    visibility: visible;
    transition: background 0.1s ease, z-index 0s;
    transition-delay: 0s, 0s;
    background: rgba(72, 72, 72, 0.6);
    z-index: 100;
  }

  .dropdown .dropdown:hover>a:after {
    border-left-color: #000;
  }

  .dropdown .dropdown:hover>ul {
    display: block;
  }

  .dropdown:hover>ul {
    display: block;
  }
}

/* offcanvas */
@media (max-width: 767.5px) {
  .dropdown ul::before {
    content: unset;
  }

  .dropdown a::after {
    content: '\f104';
    font-size: 16px;
    flex-grow: 1;
    justify-content: end;
    display: flex;
    align-items: center;
  }

  .dropdown .dropdown>a:after {
    margin-top: -2px;
    font-size: 16px;
  }

  .offcanvas-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100%;
    background-color: #f2f2f2;
    z-index: 9999;
    transition: all 0.3s ease-in-out;
  }

  .dropdown ul {
    left: unset;
    display: block;
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100%;
    background-color: #f3f3f3;
    z-index: 9999;
    transition: all 0.3s ease-in-out;
    margin: 0;
    padding: 0;
    border: 0;
  }

  .dropdown ul.active {
    right: 0;
  }

  .offcanvas-nav.active {
    right: 0;
  }


  .offcanvas-header {
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: var(--color1);
    background-color: #fff;
    padding: 0 15px;
    margin-bottom: 10px;
  }


  .offcanvas-header .close {
    background: transparent;
    border: 0;
    color: var(--color1);
    font-size: 20px;
  }

  .offcanvas-header .back {
    background: transparent;
    border: 0;
    color: var(--color1);
    font-size: 20px;
  }

  .nav-item {
    padding: 10px 20px;
    margin-left: 0px;
    display: flex;
  }

  .dropdown ul li a {
    padding: 10px 20px;
  }

  .nav-item a {
    padding: 0;
    display: flex;
    align-items: center;
    width: 100%;
    font-size: 14px;
    font-weight: normal;
  }

  .navbar-toggler {
    border: 0;
    margin: 0;
    padding: 0;
    color: var(--color1) !important;
    display: flex;
    margin-left: 10px;
  }
}


@media (min-width:768px) {
  .offcanvas-header {
    display: none;
  }
}


.dropdown-new .dropdown-menu {
  margin: 0;
  padding: 10px;
  border-radius: 8px;
}

.dropdown-new a::after {
  display: none;
}

.navbar-btn-badge {
  background: var(--color4);
  width: 15px;
  height: 15px;
  position: absolute;
  left: 10px;
  top: 0px;
  color: #fff;
  font-size: 12px !important;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  padding-top: 1px;
}

.btn.btn-custom {
  background: var(--color1);
  color: #fff;
}

/* jconfirm  */
.btn.btn-custom:hover {
  opacity: 0.8;
}

.jconfirm-box {
  border-radius: 10px !important;
}




/* basket offcanvas */

.offcanvas {
  position: fixed;
  bottom: 0;
  z-index: 1050;
  display: flex;
  flex-direction: column;
  max-width: 100%;
  /* visibility: hidden; */
  background-color: #fff;
  background-clip: padding-box;
  outline: 0;
  transition: transform .3s ease-in-out;
  top: 0;
  left: 0;
  width: 100%;
  max-width: 350px;
  border-right: 1px solid rgba(0, 0, 0, .2);
  transform: translateX(-100%);
}

.offcanvas.show {
  transform: none;
}

.offcanvas-body {
  padding: 20px 0;
  height: 100%;
  overflow: auto;
}

.offcanvas-head {
  padding: 21px 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #ccc;
}

.offcanvas-footer {
  padding: 15px;
  border-top: 1px solid #ccc;
}

.offcanvas-close {
  background: transparent;
  border: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  color: #444;
  padding: 0;
}

.basket-item-final {
  display: flex;
  flex-direction: column;
  margin-left: 10px;
  font-size: 18px;
  font-weight: bold;
  line-height: 1.3;
}

.basket-item {
  display: flex;
  align-items: center;
  border-bottom: 1px solid #ddd;
  padding-bottom: 10px;
  padding-top: 10px;
}

.basket-item:first-child {
  padding-top: unset;
}

.basket-item:last-child {
  border-bottom: 0;
}

.basket-item .product-order-count {
  max-width: 120px;
  height: auto;
  padding: 5px;
  margin-top: 5px;
}

.basket-item .product-order-count input {
  font-size: 16px;
}

.basket-item .product-order-count button {
  min-width: 26px;
  max-width: 26px;
  height: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.basket-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 5px;
}

.basket-total-title {
  font-size: 14px;
  font-weight: 600;
}

.basket-item-img {
  width: 130px;
  height: 70px;
  border-radius: 8px;
  object-fit: cover;
  border: 1px solid #ddd;
}

.basket-item-info {
  margin-right: 15px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.basket-item-count {
  margin-top: 5px;
  display: flex;
  align-items: end;
  margin-top: auto;
}

.basket-item-title {
  font-size: 14px;
  font-weight: 600;
  color: #000;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 2;
}

.basket-item-count span {
  color: var(--color1);
  font-size: 16px;
}

.basket-item-discount {
  color: #545454 !important;
  text-decoration: line-through;
  font-size: 14px !important;
}

.basket-link {
  background: var(--color1);
  color: #fff;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 38px;
  border-radius: 8px;
  margin-top: 10px;
  border: 1px solid var(--color1);
  transition: 0.3s;
}

.basket-link:hover {
  background-color: #fff;
  color: var(--color1);
}


.basket-item {
  padding: 15px;
}

.basket-total {
  margin-top: 0;
}

.offcanvas-title {
  font-weight: 600;
  color: #444;
  font-size: 18px;
  margin: 0;
}

#overlay-offcanvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: transparent;
  z-index: -20;
  transition: background 0.1s ease, z-index 0s;
  transition-delay: 0.1s, 0.4s;
}

#overlay-offcanvas.active {
  visibility: visible;
  transition: background 0.1s ease, z-index 0s;
  transition-delay: 0s, 0s;
  background: rgba(72, 72, 72, 0.6);
  z-index: 1000;
}


/* swiper */
.swiper {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  z-index: 1;
}

.swiper-center {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  z-index: 1;
}

.swiper-custom {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  z-index: 1;
}

.swiper-1 {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  z-index: 1;
}

.swiper-3 {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  z-index: 1;
}

.swiper-4 {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  z-index: 1;
}

.swiper-5 {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  z-index: 1;
}

.swiper-6 {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  z-index: 1;
}

.swiper-pagination-bullet {
  border-radius: 20px;
  width: 10px;
  height: 10px;
}

.swiper-pagination-bullet-active {
  width: 20px;
}

.swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: var(--color1);
}


.swiper-button-next:after,
.swiper-button-prev:after {
  font-size: 14px;
  font-weight: 600;
  color: var(--color1);
}

.swiper-button-next {
  width: 38px;
  height: 38px;
  background-color: #fff;
  border-radius: 12px;
  transition: 0.3s;
  opacity: 0;
}

.swiper-button-prev {
  width: 38px;
  height: 38px;
  background-color: #fff;
  border-radius: 12px;
  transition: 0.3s;
  opacity: 0;
}


.swiper-rtl:hover .swiper-button-next {
  opacity: 1;
}

.swiper-rtl:hover .swiper-button-prev {
  opacity: 1;
}

.swiper-button-next:hover {
  background: var(--color2);
}

.swiper-button-prev:hover {
  background: var(--color2);
}

.swiper-button-next:hover::after {
  color: #fff;
}

.swiper-button-prev:hover::after {
  color: #fff;
}




@media (max-width:767px) {
  .swiper-button-next {
    width: 30px;
    height: 30px;
    top: 55%;
  }

  .swiper-button-prev {
    width: 30px;
    height: 30px;
    top: 55%;
  }

  .swiper-button-next:after,
  .swiper-button-prev:after {
    font-size: 12px;
  }
}


/* animate */
.myAnim1 {
  animation: myAnim1 10s linear 0s infinite normal forwards;
}

.myAnim2 {
  animation: myAnim2 15s linear 0s infinite normal forwards;
}

.myAnim2-2 {
  animation: myAnim2 30s linear 0s infinite normal forwards;
}

.myAnim3 {
  animation: myAnim3 10s linear 0s infinite normal forwards;
}

.myAnim4 {
  animation: myAnim4 10s linear 0s infinite normal forwards;
}

@keyframes myAnim1 {

  0%,
  100% {
    transform: rotate(0deg);
    transform-origin: 50% 0;
  }

  10% {
    transform: rotate(2deg);
  }

  20%,
  40%,
  60% {
    transform: rotate(-4deg);
  }

  30%,
  50%,
  70% {
    transform: rotate(4deg);
  }

  80% {
    transform: rotate(-2deg);
  }

  90% {
    transform: rotate(2deg);
  }
}

@keyframes myAnim2 {

  0%,
  100% {
    transform: translateY(0);
  }

  10%,
  30%,
  50%,
  70% {
    transform: translateY(-8px);
  }

  20%,
  40%,
  60% {
    transform: translateY(8px);
  }

  80% {
    transform: translateY(6.4px);
  }

  90% {
    transform: translateY(-6.4px);
  }
}

@keyframes myAnim3 {

  0%,
  100% {
    transform: rotate(0deg);
    transform-origin: 50% 100%;
  }

  10% {
    transform: rotate(2deg);
  }

  20%,
  40%,
  60% {
    transform: rotate(-4deg);
  }

  30%,
  50%,
  70% {
    transform: rotate(4deg);
  }

  80% {
    transform: rotate(-2deg);
  }

  90% {
    transform: rotate(2deg);
  }
}

@keyframes myAnim4 {
  0% {
    animation-timing-function: ease-out;
    transform: scale(1);
    transform-origin: center center;
  }

  10% {
    animation-timing-function: ease-in;
    transform: scale(0.91);
  }

  17% {
    animation-timing-function: ease-out;
    transform: scale(0.98);
  }

  33% {
    animation-timing-function: ease-in;
    transform: scale(0.87);
  }

  45% {
    animation-timing-function: ease-out;
    transform: scale(1);
  }
}

.animate {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 600ms ease-out, transform 600ms ease-out;
  will-change: opacity, transform;
}

.animate.is-visible {
  opacity: 1;
  transform: translateY(0);
}



/* home */

.home-wrap-1::before {
  content: '';
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.3) 100%);
  position: absolute;
  z-index: -1;
  right: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

.home-wrap-1 {
  height: calc(100vh - 89px);
  background-size: cover;
  background-position: center;
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  padding: 50px 0;
  min-height: 500px;
}

.icon-login::before {
  content: "";
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M8.89844 7.56023C9.20844 3.96023 11.0584 2.49023 15.1084 2.49023H15.2384C19.7084 2.49023 21.4984 4.28023 21.4984 8.75023V15.2702C21.4984 19.7402 19.7084 21.5302 15.2384 21.5302H15.1084C11.0884 21.5302 9.23844 20.0802 8.90844 16.5402' stroke='white' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M15.0011 12H3.62109' stroke='white' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M5.85 8.65039L2.5 12.0004L5.85 15.3504' stroke='white' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  pointer-events: none;
}

.icon-logout::before {
  content: "";
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M15.1016 7.56023C14.7916 3.96023 12.9416 2.49023 8.89156 2.49023H8.76156C4.29156 2.49023 2.50156 4.28023 2.50156 8.75023V15.2702C2.50156 19.7402 4.29156 21.5302 8.76156 21.5302H8.89156C12.9116 21.5302 14.7616 20.0802 15.0916 16.5402' stroke='white' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M8.99891 12H20.3789' stroke='white' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M18.15 8.65039L21.5 12.0004L18.15 15.3504' stroke='white' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
}

.icon-users::before {
  content: "";
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M9.15859 10.87C9.05859 10.86 8.93859 10.86 8.82859 10.87C6.44859 10.79 4.55859 8.84 4.55859 6.44C4.55859 3.99 6.53859 2 8.99859 2C11.4486 2 13.4386 3.99 13.4386 6.44C13.4286 8.84 11.5386 10.79 9.15859 10.87Z' stroke='white' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M16.4112 4C18.3512 4 19.9112 5.57 19.9112 7.5C19.9112 9.39 18.4113 10.93 16.5413 11C16.4613 10.99 16.3713 10.99 16.2812 11' stroke='white' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M4.15875 14.56C1.73875 16.18 1.73875 18.82 4.15875 20.43C6.90875 22.27 11.4188 22.27 14.1688 20.43C16.5888 18.81 16.5888 16.17 14.1688 14.56C11.4288 12.73 6.91875 12.73 4.15875 14.56Z' stroke='white' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M18.3398 20C19.0598 19.85 19.7398 19.56 20.2998 19.13C21.8598 17.96 21.8598 16.03 20.2998 14.86C19.7498 14.44 19.0798 14.16 18.3698 14' stroke='white' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
}

.home-wrap-1-info {
  display: flex;
  flex-direction: column;
  height: 100%;
  align-items: start;
  justify-content: center;
}

.home-wrap-1-title {
  font-size: 40px;
  color: #fff;
  font-weight: 700;
  line-height: 1.6;
  margin-bottom: 25px;
}

.home-wrap-1-btn {
  height: 62px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5px 25px;
  background: var(--color1);
  border: 1px solid var(--color1);
  border-radius: 12px;
  color: #fff;
  font-weight: 700;
  font-size: 18px;
  transition: 0.3s;
}

.home-wrap-1-btn:hover {
  background: #fff;
  color: var(--color1);
}

.home-wrap-1-box {
  backdrop-filter: blur(8px);
  padding: 60px 40px;
  background: #14100D80;
  border-radius: 12px;
  color: #fff;
}

.home-wrap-1-box-title {
  font-size: 24px;
  font-weight: 700;
}

.form-type input {
  background: transparent;
  border: 0;
  width: 100%;
  height: 100%;
  outline: none;
}

.form-type {
  position: relative;
  background: #FFFFFF4D;
  margin: 20px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
}

.form-type input::placeholder {
  color: #fff;
}

.form-type input {
  background: transparent;
  border: 0;
  width: 100%;
  height: 100%;
  outline: none;
  padding: 0 50px;
  color: #fff;
  font-size: 16px;
  cursor: pointer;
}

.form-type select {
  background: transparent;
  border: 0;
  width: 100%;
  height: 100%;
  outline: none;
  padding: 0 50px;
  color: #fff;
  font-size: 16px;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}

.form-type::after {
  content: "\f107";
  font-family: "raya-icon";
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  font-size: 18px;
  color: #fff;
}

.passenger-selector {
  position: relative;
  display: inline-block;
  width: 100%;
  height: 100%;
}

.passenger-button {
  cursor: pointer;
  padding: 0 50px;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
}

.passenger-content {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #fff;
  color: #000;
  padding: 5px;
  z-index: 100;
  align-items: center;
  gap: 5px;
  border-radius: 12px;
  justify-content: space-between;
  width: 150px;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  top: 0;
}

.passenger-content button {
  padding: 5px 10px;
  cursor: pointer;
  width: 34px;
  height: 34px;
  border: 0;
  background: var(--color1);
  color: #fff;
  font-size: 22px;
  line-height: 0;
  padding-top: 7px;
  border-radius: 10px;
  transition: 0.3s;
}

.passenger-content button:hover {
  background: var(--color2);
  color: #fff;
}

.passenger-content input {
  text-align: center;
  padding: 0 !important;
  width: 60px;
  color: #000;
  font-size: 18px;
  font-weight: 600;
}

.form-type-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 48px;
  font-size: 18px;
  border-radius: 12px;
  border: 0;
  margin-top: 20px;
  background: var(--color1);
  color: #fff;
  font-weight: 600;
  transition: 0.3s;
}

.form-type-btn:hover {
  background: var(--color2);
  color: #fff;
}


/* home wrap 2 */

.home-wrap-title {
  font-size: 32px;
  font-weight: 700;
  text-align: center;
  margin-top: 100px;
  color: #121212;
  margin-bottom: 35px;
}

.card-hotel {
  display: block;
  background: #F3F3F3;
  padding: 12px;
  border-radius: 24px;
  color: #121212;
}

.card-hotel-img-body {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
}

.card-hotel-img {
  width: 100%;
  height: 189px;
  object-fit: cover;
  transition: opacity 0.5s ease, transform 2s cubic-bezier(0, 0, 0.44, 1.18);
}

.card-hotel-img-body:hover img {
  transform: scale(1.05);
}

.card-hotel-title {
  font-size: 18px;
  font-weight: 700;
  margin-top: 20px;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 1;
  color: #121212;
}

.card-hotel-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 15px;
}

.card-hotel-rate {
  font-size: 14px;
  color: #121212;
}

.card-hotel-rate i {
  color: var(--color1);
  font-size: 18px;
}

.card-hotel-com {
  font-size: 14px;
  font-weight: 700;
  color: var(--color1);
  color: #121212;
}

.card-hotel-address {
  margin-top: 10px;
  font-size: 14px;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 1;
  color: #121212;
}

.card-hotel-price {
  font-size: 14px;
  font-weight: 700;
  margin-top: 15px;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 1;
  color: #121212;
}

.card-hotel-tag {
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
  display: grid;
  margin-top: 15px;
}

.card-hotel-tag span {
  border: 0.5px solid #000000;
  font-size: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 29px;
  border-radius: 6px;
  font-weight: 400;
  color: #121212;
}

.card-hotel-btn {
  height: 41px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color1);
  border-radius: 12px;
  margin-top: 15px;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  transition: 0.3s;
}

.card-hotel-btn:hover {
  background: var(--color2);
}

/* home wrap 3 */


.card-postal {
  display: block;
}

.card-postal-img-body::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background: var(--color1);
  border-radius: 4px;
  box-shadow: 0px 4px 12px 0px #00000040;
  transform: rotate(-3deg);
  z-index: -1;
  transition: transform 2s cubic-bezier(0, 0, 0.44, 1.18);
  right: 0;
}

.card-postal-img-body::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background: var(--color2);
  border-radius: 4px;
  box-shadow: 0px 4px 12px 0px #00000040;
  transform: rotate(3deg);
  z-index: -2;
  transition: transform 2s cubic-bezier(0, 0, 0.44, 1.18);
  right: 0;
}

.card-postal-img-body {
  position: relative;
  z-index: 1;
}

.card-postal-img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  border: 3px solid #FFFFFF;
}

.card-postal-img-body:hover::after {
  transform: rotate(-3deg);
}

.card-postal-img-body:hover::before {
  transform: rotate(3deg);
}

.card-postal-title {
  font-size: 24px;
  text-align: center;
  color: #121212;
  margin-top: 25px;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 1;
}

/* home wrap 4 */

.home-wrap-4 {
  position: relative;
}

.home-wrap-4::before {
  content: '';
  width: 100%;
  height: 150px;
  position: absolute;
  background: var(--color1);
  right: 0;
  left: 0;
  bottom: 0;
  margin: auto;
  border-radius: 50%;
  filter: blur(250px);
  z-index: -1;
  opacity: 0.5;
}

.home-wrap-4-title {
  font-size: 20px;
  font-weight: 700;
  color: #121212;
  margin-top: 15px;
}

.home-wrap-4-text {
  color: #121212;
  font-size: 18px;
  margin-top: 15px;
}

.home-wrap-5-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 100px;
  margin-bottom: 35px;
}

.home-wrap-5-title {
  font-size: 32px;
  font-weight: 700;
  color: #121212;
}

.home-wrap-5-link {
  color: #121212;
  font-size: 18px;
  font-weight: 700;
}

.home-wrap-5-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 30px;
}

.home-wrap-5-col:nth-child(1) {
  grid-area: 1 / 1 / 3 / 2;
  height: 500px;
}

.home-wrap-5-col:nth-child(2) {
  grid-area: 1 / 2 / 2 / 3;
}

.home-wrap-5-col:nth-child(3) {
  grid-area: 2 / 2 / 3 / 3;
}

.card-wide::before {
  content: '';
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.7) 100%);
  position: absolute;
  width: 100%;
  height: 100%;
  right: 0;
  top: 0;
  z-index: -1;
}

.card-wide {
  display: flex;
  overflow: hidden;
  border-radius: 16px;
  position: relative;
  height: 100%;
  flex-direction: column;
  justify-content: space-between;
  background-size: cover;
  z-index: 1;
  padding: 30px;
}

.card-wide-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.card-wide-title {
  font-size: 26px;
  font-weight: 700;
  color: #fff;
}

.card-wide-rate {
  display: flex;
  align-items: center;
  font-size: 18px;
  color: var(--color1);
}

.card-wide-discount {
  height: 36px;
  background: var(--color1);
  width: max-content;
  margin-right: auto;
  align-items: center;
  display: flex;
  justify-content: center;
  color: #000;
  font-weight: 700;
  padding: 10px 15px;
  border-radius: 10px;
}

/* home wrap 6  */

.home-wrap-6 {
  background: #F3F3F3;
  padding: 100px 0;
  margin-top: 100px;
}

.home-wrap-6 .home-wrap-title {
  margin-top: 0;
}

.home-wrap-6 .card-hotel {
  background: #fff;
}

/* home wrap 7 */

.home-wrap-7::before {
  content: '';
  background: #00000026;
  position: absolute;
  width: 100%;
  height: 100%;
  right: 0;
  top: 0;
  z-index: -1;
}

.home-wrap-7 {
  position: relative;
  padding: 100px 0;
  z-index: 1;
}

.home-wrap-7-box {
  background: #41404080;
  backdrop-filter: blur(16.600000381469727px);
  padding: 40px;
  border-radius: 12px;
  width: 50%;
  margin-right: auto;
}

.home-wrap-7-title {
  text-align: center;
  font-size: 32px;
  font-weight: 700;
  color: #fff;
}

.home-wrap-7-title::after {
  content: '';
  display: block;
  margin-top: 20px;
  background-image: linear-gradient(90deg, #FFFFFF00 0%, var(--color1) 50.48%, #FFFFFF00 100%);
  height: 3px;
}

.home-wrap-7-text {
  font-size: 24px;
  color: #fff;
  text-align: center;
  margin-top: 20px;
}

.home-wrap-7-btn {
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color1);
  border-radius: 12px;
  margin-top: 20px;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  transition: 0.3s;
  gap: 10px;
}

.home-wrap-7-btn:hover {
  background: var(--color2);
  color: #fff;
}

/* home wrap 8 */


.home-wrap-8 {
  background: #F3F3F3;
  padding: 100px 0;
}

.home-wrap-8 .home-wrap-title {
  margin-top: 0;
}

.home-wrap-8 .card-blog {
  background: #fff;
}

.card-blog {
  border-radius: 12px;
  display: block;
  padding: 0;
  background: #F3F3F3;
  margin: 10px 0;
}

.card-blog-img-body {
  position: relative;
  overflow: hidden;
  border-radius: 12px 12px 0 0;
}

.card-blog-img-body:hover img {
  transform: scale(1.05);
}

.card-blog-img {
  width: 100%;
  height: 328px;
  object-fit: cover;
  transition: opacity 0.5s ease, transform 2s cubic-bezier(0, 0, 0.44, 1.18);
}

.card-blog-info {
  padding: 20px;
}

.card-blog-title {
  font-size: 18px;
  color: #000;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 1;
  font-weight: 700;
}

.card-blog-btn {
  height: 49px;
  display: flex;
  align-items: center;
  font-size: 18px;
  color: var(--color1);
  margin-top: 10px;
  gap: 5px;
  transition: 0.3s;
  font-weight: 700;
}

.card-blog-btn:hover {
  color: var(--color2);
}

/* responsive */

@media (max-width:767px) {

  .home-wrap-1 {
    height: auto;
    padding: 30px 0;
  }

  .home-wrap-1-info {
    height: auto;
    align-items: center;
  }

  .home-wrap-1-title {
    font-size: 20px;
    text-align: center;
    line-height: 2;
  }

  .home-wrap-1-btn {
    height: 46px;
    font-size: 12px;
    padding: 10px 15px;
    border-radius: 12px;
  }

  .home-wrap-1-box {
    padding: 20px;
    text-align: center;
    margin-top: 30px;
  }

  .home-wrap-1-box-title {
    font-size: 18px;
  }

  .form-type {
    margin-top: 15px;
    height: 42px;
    border-radius: 10px;
  }

  .form-type input {
    font-size: 14px;
    padding: 0 45px;
  }

  .icon-logout::before {
    width: 20px;
    height: 20px;
  }

  .icon-login::before {
    width: 20px;
    height: 20px;
  }

  .icon-users::before {
    width: 20px;
    height: 20px;
  }

  .passenger-button {
    padding: 0 45px;
    font-size: 14px;
  }

  .passenger-content button {
    width: 32px;
    height: 32px;
  }

  .passenger-content {
    width: 120px;
  }

  .passenger-content input {
    width: 30px;
  }

  .form-type-btn {
    font-size: 16px;
    margin-top: 15px;
    height: 42px;
  }

  .home-wrap-title {
    margin-top: 30px;
    font-size: 18px;
    margin-bottom: 25px;
  }

  .card-hotel-img {
    height: 135px;
  }

  .card-hotel-title {
    font-size: 14px;
    margin-top: 15px;
  }

  .card-hotel-com {
    font-size: 12px;
  }

  .card-hotel-rate {
    font-size: 12px;
  }

  .card-hotel-rate i {
    font-size: 14px;
  }

  .card-hotel-address {
    margin-top: 10px;
    font-size: 12px;
  }

  .card-hotel-price {
    font-size: 12px;
  }

  .card-hotel-tag {
    display: flex;
    white-space: nowrap;
    overflow: auto;
  }

  .card-hotel-tag span {
    padding: 0 10px;
  }

  .card-hotel-btn {
    height: 36px;
  }

  .card-postal-img {
    width: 100%;
    height: 280px;
  }

  .card-postal-title {
    font-size: 16px;
    margin-top: 20px;
  }

  .home-wrap-4-item {
    text-align: center;
  }

  .home-wrap-4-title {
    font-size: 16px;
  }

  .home-wrap-4-text {
    font-size: 14px;
  }

  .home-wrap-5-title {
    font-size: 16px;
  }

  .home-wrap-5-flex {
    margin-top: 35px;
    margin-bottom: 20px;
  }

  .home-wrap-5-link {
    font-size: 14px;
  }


  .home-wrap-5-grid {
    display: flex;
    flex-direction: column;
    gap: 15px;
  }

  .home-wrap-5-col:nth-child(1) {
    height: auto;
  }

  .card-wide {
    padding: 20px;
    height: 200px;
    background-size: cover;
  }

  .card-wide-title {
    font-size: 16px;
  }

  .card-wide-rate {
    font-size: 14px;
  }

  .card-wide-discount {
    height: 30px;
    font-size: 14px;
    padding: 10px;
  }

  .home-wrap-6 {
    margin-top: 30px;
    padding: 30px 0;
  }

  .home-wrap-7 {
    padding: 30px 0;
    background-size: cover;
  }

  .home-wrap-7-box {
    width: 100%;
    padding: 20px;
  }

  .home-wrap-7-title {
    font-size: 18px;
  }

  .home-wrap-7-text {
    font-size: 14px;
  }

  .home-wrap-7-btn {
    height: 40px;
    font-size: 14px;
  }

  .home-wrap-8 {
    padding: 30px 0;
  }

  .card-blog-img {
    height: 170px;
  }

  .card-blog-info {
    padding: 15px;
  }

  .card-blog-title {
    font-size: 14px;
  }

  .card-blog-btn {
    font-size: 12px;
    margin-top: 5px;
    height: 32px;
  }
}


/* footer */

.footer {
  margin-top: 80px;
  background-color: var(--color2);
  position: relative;
  padding: 40px;
  border-radius: 32px;
  margin-bottom: 15px;
  padding-bottom: 0;
  overflow: hidden;
}

.footer-logo-body {
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-logo-body {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  width: 130px;
  height: 130px;
  padding: 15px;
  border-radius: 50%;
  border: 5px solid #E49233;
}

.footer-logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.footer-social {
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-social a {
  width: 38px;
  height: 38px;
  margin: 0 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: #fff;
  transition: 0.3s;
}

.footer-social .icon-instagram {
  padding-top: 1px;
  padding-right: 2px;
}

.footer-social .icon-telegram {
  font-size: 14px;
}

.footer-social .icon-phone {
  padding-top: 3px;
}

.footer-social a:hover {
  color: var(--color1);
}

.footer-namad {
  display: flex;
  flex-wrap: wrap;
}

.footer-namad img {
  margin-top: 25px;
  width: 100px;
  height: 110px;
  object-fit: contain;
}

.footer-header {
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  margin-top: 50px;
}

.footer-header::after {
  content: '';
  width: 100%;
  background: linear-gradient(270deg, var(--color1) 0%, #FFFFFF00 100%);
  height: 3px;
  display: block;
  margin-top: 20px;
}

.footer-text {
  text-align: justify;
  font-size: 16px;
  margin-top: 20px;
  line-height: 1.7;
  color: #fff;
  max-width: 90%;
}

.footer-ul {
  list-style: none;
  margin: 0;
  padding: 0;
  margin-top: 20px;
}

.footer-ul.footer-wrap {
  display: flex;
  flex-wrap: wrap;
}

.footer-ul.footer-wrap li {
  width: 50%;
}

.footer-link {
  font-size: 15px;
  font-weight: normal;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  color: #fff;
}

.footer-link:hover {
  color: var(--color1);
}

.footer-link i {
  width: 24px;
  margin-left: 10px;
  display: flex;
  font-size: 16px;
  color: #fff;
}

.footer-link img {
  width: 24px;
  margin-left: 10px;
}

.footer-bottom {
  background-color: #041E4A;
  padding: 15px 20px;
  border-radius: 20px 20px 0 0;
  margin-top: 30px;
}

.footer-bottom-item {
  font-size: 12px;
  color: #fff;
  display: flex;
  height: 100%;
  align-items: center;
  gap: 2px;
  font-weight: 600;
}

.footer-bottom-item span {
  font-size: 14px;
  color: #fff;
}

.footer-bottom-item a {
  color: #fff;
}

.footer-bottom-item a:hover {
  color: var(--color1);
}

@media (max-width:767px) {
  .footer {
    margin-top: 40px;
    padding: 20px;
  }

  .footer-text {
    font-size: 12px;
    max-width: 100%;
    margin-bottom: 20px;
  }

  .footer-logo-body {
    width: 100px;
    height: 100px;
    padding: 10px;
    margin: auto;
  }

  .footer-header {
    font-size: 14px;
    margin-top: 15px;
  }

  .footer-link {
    font-size: 14px;
  }

  .footer-bottom-item {
    font-size: 12px;
    justify-content: center;
  }

  .footer-social {
    margin-top: 15px;
  }

  .footer-social a {
    width: 32px;
    height: 32px;
  }

  .footer-bottom {
    border-radius: 20px;
  }
}

/* inner */


/* breadcrumb */

.breadcrumb {
  font-size: 14px;
  margin: 0;
  padding: 0;
  background: transparent;
  margin-top: 20px;
  margin-bottom: 30px;
}

li.breadcrumb-item a {
  color: #7D7D7D;
}

.breadcrumb-item.active a {
  color: #000;
}

li.breadcrumb-item a:hover {
  color: var(--color2);
}

@media (max-width:767px) {
  li.breadcrumb-item {
    white-space: nowrap;
  }

  .breadcrumb {
    font-size: 12px;
    flex-wrap: nowrap;
    overflow: auto;
    height: 22px;
  }
}


/* pagination */


.pagination {
  direction: rtl;
  justify-content: center;
  padding-top: 20px;
  margin-bottom: 0;
  padding-bottom: 20px;
}

.page-link {
  width: 38px;
  height: 38px;
  border: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color2);
  margin: 0 5px;
  background: unset;
  padding-top: 10px;
  background: #0000000D;
  border: 0;
  border-radius: 12px !important;
  transition: 0.3s;
}

a.page-link:hover {
  background: var(--color1);
  color: #fff;
}


.page-item:first-child .page-link {
  margin-right: 6px;
}

span.page-link:hover {
  background: #fff;
  color: var(--color1);
}

.page-link:focus {
  box-shadow: unset;
}

.page-item.active .page-link {
  color: #fff;
  background-color: var(--color2);
}

.page-item-title .page-link {
  height: 38px;
  font-size: 14px;
  width: 38px;
  color: var(--color2);
}

.page-item-title .page-link:hover {
  background: var(--color1);
  color: #fff;
}

@media (max-width:767px) {
  .pagination {
    padding-top: 0;
    padding-bottom: 20px;
  }

  .page-link {
    margin: 0;
  }

  .page-link span {
    display: none;
  }


  .page-item-title {
    display: none;
  }

  .page-link {
    width: 30px;
    height: 30px;
    margin: 0 3px;
  }

}


/* sort */

.sort-body {
  display: flex;
  align-items: center;
  margin-top: 20px;
  margin-bottom: 25px;
}

.sort-title {
  color: #323232;
  font-size: 14px;
  font-weight: 600;
  margin-left: 15px;
}

.sort-item-flex {
  display: flex;
  gap: 15px;
}

.sort-item:hover {
  color: var(--color1);
}

.sort-item {
  background: #fff;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #222222;
  font-size: 14px;
  font-weight: 500;
  padding: 5px 10px;
  border-radius: 30px;
  transition: 0.3s;
}

.sort-item.active {
  color: var(--color1);
}

@media (max-width:767px) {
  .sort-title {
    font-size: 14px;
    white-space: nowrap;
    margin-left: 10px;
  }

  .sort-item-flex {
    overflow: auto;
    gap: 10px;
  }

  .sort-item {
    height: 32px;
    font-size: 14px;
    padding: 5px;
    white-space: nowrap;
  }

  .sort-body {
    margin-bottom: 15px;
    margin-top: -15px;
  }

}


/* switch */


.sort-switch {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0;
}

.sort-switch span {
  cursor: pointer;
  font-weight: 600;
  color: #000;
  margin: 0;
  font-size: 14px;
}

input[type="checkbox"].switch {
  font-size: 16px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 3em;
  height: 1.5em;
  background: #ddd;
  border-radius: 3em;
  position: relative;
  cursor: pointer;
  outline: none;
  -webkit-transition: all .2s ease-in-out;
  transition: all .2s ease-in-out;
  opacity: 1;
  right: auto !important;
  left: auto !important;
  position: relative;
}

input[type="checkbox"].switch:after {
  position: absolute;
  content: "";
  width: 1.5em;
  height: 1.5em;
  border-radius: 50%;
  background: #fff;
  -webkit-box-shadow: 0 0 0.25em rgba(0, 0, 0, .3);
  box-shadow: 0 0 0.25em rgba(0, 0, 0, .3);
  -webkit-transform: scale(.7);
  transform: scale(.7);
  left: 0;
  -webkit-transition: all .2s ease-in-out;
  transition: all .2s ease-in-out;
}

input[type="checkbox"].switch:checked {
  background: var(--color2);
}

input[type="checkbox"].switch:checked:after {
  left: calc(100% - 1.5em);
}

input[type="checkbox"].switch:after {
  position: absolute;
  content: "";
  width: 1.5em;
  height: 1.5em;
  border-radius: 50%;
  background: #fff;
  -webkit-box-shadow: 0 0 0.25em rgba(0, 0, 0, .3);
  box-shadow: 0 0 0.25em rgba(0, 0, 0, .3);
  -webkit-transform: scale(.7);
  transform: scale(.7);
  left: 0;
  -webkit-transition: all .2s ease-in-out;
  transition: all .2s ease-in-out;
}


/* range  */
.acc-range-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 15px;
  font-weight: 500;
  color: #222222;
  margin-bottom: 10px;
  font-size: 14px;
}

.acc-range-info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 5px;
  font-size: 12px;
  color: #222222;
}


:root {
  --clr-prim: var(--color2);
  --clr-prim-h: var(--color2);
  --clr-bad: var(--color2);
  --clr-box: #F9F9F9;
  --clr-box-dark: gray;
  --clr-border: #D9D9D9;
  --txt-clr: #333333;
  --shadow: 0px 3px 6px 0px rgba(0, 0, 0, 0.1);
  --cubic: cubic-bezier(0.11, 0.54, 0.33, 1.01);
}

.dual-range {
  --range-size: 12px;
  --range-width: 100%;
  --handle-size: 1.3;
  height: 6px;
  width: var(--range-width);
  background: #cccccc;
  border-radius: 50px;
  position: relative;
  user-select: none;
  right: 5px;
}

.dual-range .highlight {
  position: absolute;
  height: 6px;
  width: calc(var(--x-2) - var(--x-1) + var(--range-size) * var(--handle-size));
  left: var(--x-1);
  background: var(--clr-prim);
  z-index: 1;
  border-radius: 50px;
}

.dual-range .handle {
  width: calc(var(--range-size) * var(--handle-size));
  height: calc(var(--range-size) * var(--handle-size));
  background: var(--color2);
  position: absolute;
  box-shadow: var(--shadow);
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  cursor: grab;
}

.dual-range .handle:active {
  cursor: grabbing;
}

.dual-range .handle.left {
  left: var(--x-1);
}

.dual-range .handle.right {
  left: var(--x-2);
}

/* list */

.list-product .row {
  margin-left: -7px;
  margin-right: -7px;
}

.list-product .col-6 {
  padding-left: 8px;
  padding-right: 8px;
}

.head-title {
  font-size: 16px;
  color: #222222;
  margin-top: 15px;
  margin-bottom: 20px;
}

.head-title strong {
  font-weight: 600;
  margin-right: 5px;
}

p#no-results {
  text-align: center;
  font-size: 14px;
  margin-top: 15px;
}

.filter-box {
  border-radius: 24px;
  background: #F3F3F3;
  user-select: none;
}

.filter-title {
  font-size: 16px;
  font-weight: 600;
  color: #222222;
}

.filter-text {
  font-size: 14px;
  font-weight: 700;
  margin-top: 8px;
  color: var(--color2);
}

.filter-row {
  padding: 20px;
  border-bottom: 2px solid #E6EAED;
}

.filter-row:last-child {
  border-bottom: 0;
}

.filter-search {
  display: flex;
  background: #FFFFFF80;
  height: 42px;
  margin-top: 15px;
  align-items: center;
  border-radius: 8px;
  padding: 0 15px;
  border: 2px solid #E4E4E4;
}

.filter-search input {
  background: transparent;
  width: 100%;
  height: 100%;
  border: 0;
  outline: none;
  font-size: 12px;
}

.filter-search button {
  background: transparent;
  padding: 0;
  border: 0;
  display: flex;
  align-items: center;
  color: #787878;
  margin-top: 5px;
  font-size: 14px;
}

.filter-btn-collapce {
  color: #222222;
  font-size: 14px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}

.filter-btn-collapce.collapsed:after {
  transform: rotate(180deg);
}

.filter-btn-collapce:after {
  content: '\f107';
  font-family: "raya-icon";
  transition: 0.3s;
}

.filter-check-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 20px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 400;
  color: #222222;
}

.filter-check-item div {
  display: flex;
  align-items: center;
}

.filter-check-item input {
  width: 18px;
  height: 18px;
  accent-color: var(--color2);
  margin-left: 10px;
  cursor: pointer;
}

.filter-tag-body {
  display: flex;
  flex-wrap: wrap;
}

.filter-tag {
  border: 1px solid var(--color1);
  font-size: 13px;
  color: var(--color2);
  border-radius: 20px;
  padding: 2px 8px;
  margin-top: 15px;
  margin-left: 10px;
  transition: 0.3s;
}

.filter-tag:hover {
  background: var(--color1);
  color: #fff;
}

.filter-row-title {
  font-size: 14px;
  font-weight: 700;
  color: #222222;
  margin-top: 15px;
}

.filter-row-item {
  display: flex;
  align-items: center;
  color: #222222;
  margin-top: 15px;
  position: relative;
  font-size: 14px;
}

.filter-row-item:after {
  content: '\f104';
  font-family: "raya-icon";
  display: block;
  margin-right: auto;
}

.show-more {
  margin-top: 50px;
}

.show-more-content::before {
  content: "";
  height: 100%;
  position: absolute;
  width: 100%;
  background: linear-gradient(180deg, hsla(0, 0%, 100%, 0) 50%, #fff);
  bottom: 0;
}

.show-more-content {
  position: relative;
  font-size: 14px;
  line-height: 2;
  max-height: 195px;
  overflow: hidden;
}

.show-more-content.active {
  max-height: 100%;
}

.show-more-content.active::before {
  content: unset;
}

.show-more-btn {
  cursor: pointer;
  font-size: 15px;
  color: var(--color1);
  transition: 0.3s;
  margin-top: 15px;
}

.show-more-btn:hover {
  color: var(--color2);
}

.f-star {
  display: flex;
  flex-direction: row-reverse;
  color: #E49233;
  font-size: 16px;
}

.f-star .icon-star-empty {
  opacity: 0.5;
}


@media (max-width:767px) {
  .products {
    margin-bottom: -30px;
  }

  .head-title {
    font-size: 14px;
    margin-top: 15px;
    margin-bottom: 15px;
  }


  .filter-search {
    background: #eee;
  }

  .filter-box {
    position: fixed;
    top: 0;
    right: 0;
    height: 100%;
    z-index: 9999;
    transform: translateX(+100%);
    transition: 0.5s;
    width: 70%;
    background: #fff;
    border-radius: 0;
    overflow: auto;
  }

  .filter-box.active {
    transform: translateX(0);
  }

  .filter-btn-mobile {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 9;
    background: var(--color2);
    color: #fff;
    border-radius: 33px;
    font-size: 18px;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-right: 1px;
    padding-top: 2px;
  }


  .show-more {
    margin-top: 15px;
  }

  .show-more-content {
    font-size: 12px;
    text-align: justify;
    max-height: 140px;
  }
}


@media (min-width:768px) {
  .filter-sticky {
    position: sticky;
    top: 25px;
  }

  .filter-btn-mobile {
    display: none;
  }
}


/* inner new */

.map-wrapper::before {
  content: '';
  background: #00000080;
  position: absolute;
  z-index: -1;
  width: 100%;
  height: 100%;
  right: 0;
  top: 0;
}

.map-wrapper {
  height: 180px;
  border-radius: 24px;
  overflow: hidden;
  display: flex;
  align-items: end;
  justify-content: center;
  padding: 20px;
  position: relative;
  z-index: 1;
  margin-bottom: 25px;
}

.map-wrapper-btn {
  display: flex;
  height: 41px;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  padding: 10px;
  width: 100%;
  color: #fff;
  font-weight: 600;
  background: #E49233;
  font-size: 14px;
  transition: 0.3s;
}


.map-wrapper-btn:hover {
  background: var(--color2);
  color: #fff;
}

.banner-wrapper::before {
  content: '';
  background: #00000080;
  position: absolute;
  z-index: -1;
  width: 100%;
  /*height: 100%;*/
  right: 0;
  top: 0;
}

.banner-wrapper {
  height: 442px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  z-index: 1;
  background-position: center;
  background-size: cover;
}

.banner-wrapper-title {
  font-size: 40px;
  font-weight: 700;
  color: #fff;
}

.list-box {
  background: #F3F3F3;
  border-radius: 24px;
  padding: 35px;
  margin-top: 60px;
}

.list-box-title {
  font-size: 30px;
  font-weight: 700;
}

.list-content {
  margin-top: 60px;
  line-height: 2;
}


.faq-body {
  margin-top: 30px;
}

.faq-item {
  background: #fff;
  border-radius: 16px;
  margin-bottom: 20px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-question {
  padding: 25px 20px;
  cursor: pointer;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  font-weight: 600;
  font-size: 16px;
}

.faq-question::after {
  content: '+';
  font-size: 24px;
  color: #fff;
  background: #000;
  transition: transform 0.3s ease;
  min-width: 26px;
  height: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  padding-top: 2px;
}

.faq-item.active .faq-question::after {
  content: '-';
  transform: rotate(180deg);
  padding-top: 4px;
  background: var(--color1);
}

.faq-answer {
  height: 0;
  overflow: hidden;
  transition: height 0.4s ease;
  padding: 0 20px;
}

.faq-answer-content {
  padding: 25px 0;
}

.list-content {
  font-size: 15px;
  line-height: 1.9;
  color: #333;
  direction: rtl;
}

.list-content h1,
.list-content h2,
.list-content h3,
.list-content h4,
.list-content h5,
.list-content h6 {
  font-weight: 700;
  line-height: 1.6;
  margin: 24px 0 12px;
  color: #111;
}

.list-content h1 {
  font-size: 28px;
}

.list-content h2 {
  font-size: 24px;
}

.list-content h3 {
  font-size: 20px;
}

.list-content h4 {
  font-size: 18px;
}

.list-content h5 {
  font-size: 16px;
}

.list-content h6 {
  font-size: 14px;
}

.list-content p {
  margin-bottom: 16px;
  font-size: 15px;
  color: #444;
}

.list-content ul,
.list-content ol {
  margin: 16px 0;
  padding-right: 20px;
}

.list-content ul li,
.list-content ol li {
  margin-bottom: 8px;
  line-height: 1.8;
}

.list-content a {
  color: #0d6efd;
  text-decoration: none;
}

.list-content a:hover {
  text-decoration: underline;
}

.list-content img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 16px 0;
  display: block;
}

.list-content blockquote {
  border-right: 4px solid #0d6efd;
  padding: 12px 16px;
  margin: 16px 0;
  background: #f7f9fc;
  color: #555;
}

.list-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 16px 0;
}

.list-content table th,
.list-content table td {
  border: 1px solid #ddd;
  padding: 10px;
  text-align: right;
}

.list-content table th {
  background: #f2f2f2;
  font-weight: 600;
}



@media (max-width: 768px) {

  .banner-wrapper {
    height: auto;
    min-height: 200px;
    padding: 30px 0;
  }

  .banner-wrapper-title {
    font-size: 20px;
  }

  .list-content {
    font-size: 14px;
    line-height: 1.8;
  }

  .list-box {
    margin-top: 10px;
    padding: 20px;
  }

  .list-box-title {
    font-size: 18px;
  }

  .faq-question {
    padding: 15px 10px;
    font-size: 12px;
  }

  .faq-answer-content {
    padding: 15px 0;
    font-size: 14px;
  }

  .list-content h1 {
    font-size: 22px;
  }

  .list-content h2 {
    font-size: 20px;
  }

  .list-content h3 {
    font-size: 18px;
  }

  .list-content h4 {
    font-size: 16px;
  }

  .list-content p {
    font-size: 14px;
  }
}

/* single product */

.product-img-body {
  display: flex;
  flex-direction: column;
  position: relative;
}

.product-main-img {
  background-color: #fff;
  border: 1px solid #eee;
  text-align: center;
  width: 100%;
  border-radius: 24px;
  overflow: hidden;
  max-height:450px !important;
}

.product-other-img {
  display: flex;
  flex-wrap: wrap;
  margin-top: 10px;
  margin-bottom: -15px;
}

.product-other-img a {
  width: 100%;
}

.product-other-img img {
  display: flex;
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: 15px;
  border: solid 1px #eee !important;
  background-color: #fff !important;
}

.mz-thumb-selected img {
  border: solid 1px var(--color1) !important;
  filter: unset !important;
}

/* owl */

.product-other-img .owl-next {
  position: absolute;
  left: 5px;
  top: 28%;
  z-index: 9;
  border-radius: 40px !important;
  box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.27) !important;
  background-color: #fff !important;
  color: #000 !important;
  width: 32px;
  height: 32px;
}

.product-other-img .owl-prev {
  position: absolute;
  right: 5px;
  top: 28%;
  z-index: 9;
  border-radius: 40px !important;
  box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.27) !important;
  background-color: #fff !important;
  color: #000 !important;
  width: 32px;
  height: 32px;
}

.product-other-img .owl-next span {
  display: none;
}

.product-other-img .owl-prev span {
  display: none;
}

.product-other-img .owl-next:after {
  content: " ";
  font-family: "raya-icon";
  content: '\f104';
  font-size: 18px;
}

.product-other-img .owl-prev:after {
  content: " ";
  font-family: "raya-icon";
  content: '\f105';
  font-size: 18px;
}

.owl-theme .owl-nav .disabled {
  opacity: 0;
}

@media (max-width:767px) {
  .product-other-img img {
    height: 80px;
  }

  .product-other-img .owl-next {
    top: 22%;
  }

  .product-other-img .owl-prev {
    top: 22%;
  }
}

/* magic zoom */

.mz-hint-message {
  font-family: var(--font1);
}

.mz-hint-message::before {
  content: unset;
}

.mz-hint-message {
  display: inline-block;
  background: rgba(49, 51, 61, 0.7);
  border-radius: 2em;
  padding: .7em 1.1em;
  font-family: var(--font1);
}

a#productImgae>.mz-figure>img {
  height: 500px !important;
  max-height: 500px !important;
  object-fit: cover !important;
  max-width: 100% !important;
}

.MagicZoom>img,
.mz-figure>img {
  height: 500px !important;
  max-height: 500px !important;
  object-fit: cover !important;
  max-width: 100% !important;
}

.MagicZoom {
  /* width: auto; */
  width: 100%;
}

.MagicZoom figure {
  /* width: auto; */
  width: 100%;
}

@media (max-width:767px) {
  a#productImgae>.mz-figure>img {
    height: 200px !important;
    max-height: 200px !important;
    object-fit: cover !important;
  }

  .MagicZoom>img,
  .mz-figure>img {
    height: 200px !important;
    max-height: 200px !important;
    object-fit: cover !important;
  }
}


/* / */

@media (min-width:768px) {

  .position-md-sticky {
    position: sticky;
    top: 110px;
  }
}

.hotel-box {
  background: #F3F3F3;
  border-radius: 24px;
  padding: 24px;
  margin-bottom: 25px;
  max-height: 600px;
}

.hotel-box-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 15px;
}

.hotel-box-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.hotel-box-star {
  display: flex;
  color: var(--color1);
}

.hotel-box-price span {
  font-size: 20px;
  color: #000;
  font-weight: bold;
  margin-right: auto;
  margin-left: 15px;
}

.hotel-box-price {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid #00000033;
  border-bottom: 1px solid #00000033;
  padding-block: 25px;
  margin-block: 20px;
}

.hotel-box-btn {
  border: 1px solid #E49233;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  margin-top: 30px;
  border-radius: 10px;
  color: #E49233;
  font-weight: 600;
  transition: 0.3s;
}
.hotel-box-btn iframe{
  width: 100% !important;
  height:auto;
  padding: 5px;
}

.hotel-box-btn:hover {
  background: var(--color1);
  color: #fff;
}

.final-box {
  background: #F3F3F3;
  border-radius: 24px;
  padding: 24px;
  padding-top: 4px;
}

.final-box .icon-login::before {
  filter: invert(1);
}

.final-box .icon-logout::before {
  filter: invert(1);
}

.final-box .form-type {
  background: #fff;
}

.final-box .form-type input::placeholder {
  color: #000;
}

.final-box .form-type input {
  color: #000;
}

.final-box-top {
  margin-top: 20px;
}

.final-box-row {
  position: relative;
  font-size: 15px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* .final-box-row::after {
  content: '\f107';
  font-family: 'raya-icon';
  font-size: 20px;
  color: var(--color1);
} */

.final-box-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 15px;
}

.final-box-price {
  font-size: 18px;
  font-weight: bold;
  color: #000;
}

.final-box-bottom {
  border-top: 1px solid rgba(0, 0, 0, 0.2);
  margin-top: 20px;
}

.final-box-btn {
  border: 1px solid #E49233;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 42px;
  margin: 20px 0;
  border-radius: 10px;
  font-weight: 600;
  transition: 0.3s;
  background: #E49233 !important;
  color: #fff;
  transition: 0.3s;
}

.final-box-btn:hover {
  background: var(--color2) !important;
  color: #fff;
}

.hotel-row-title {
  font-size: 22px;
  font-weight: 700;
  color: #000;
  margin-top: 60px;
  margin-bottom: 25px;
}

.hotel-items {
  background: #F3F3F3;
  padding: 30px 25px;
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
}

.hotel-otagh {
  background: #F3F3F3;
  padding: 30px;
  border-radius: 24px;
  margin-bottom: 30px;
}

.hotel-otagh-img {
  width: 140px;
  height: 115px;
  border-radius: 6px;
  object-fit: cover;
}

.hotel-otagh-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.hotel-otagh-right {
  display: flex;
  align-items: start;
  gap: 20px;
}

.hotel-otagh-title {
  font-size: 18px;
  font-weight: 700;
  color: #000;
}

.hotel-otagh-left {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.hotel-otagh-mute {
  font-size: 14px;
  color: #000;
}

.hotel-otagh-price {
  font-size: 18px;
  font-weight: 700;
  color: #000;
}

.hotel-otagh-btn {
  border: 1px solid #E49233;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 42px;
  border-radius: 10px;
  transition: 0.3s;
  background: #E49233;
  color: #fff;
  transition: 0.3s;
  padding: 0 20px;
  gap: 10px;
}

.hotel-otagh-btn:hover {
  background: var(--color2);
  color: #fff;
}

.hotel-otagh-items {
  border-top: 1px solid rgba(0, 0, 0, 0.2);
  margin-top: 20px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  padding-top: 20px;
}

.hotel-otagh:last-child {
  margin-bottom: 0;
}

@media (max-width:767px) {
  .product-main-img {
    border-radius: 16px;
  }

  .hotel-row-title {
    font-size: 14px;
    margin-top: 25px;
    margin-bottom: 20px;
  }

  .hotel-items {
    padding: 20px;
    border-radius: 16px;
    gap: 10px;
    flex-direction: column;
    align-items: start;
    font-size: 14px;
  }

  .hotel-items img {
    width: 22px;
    margin-left: 10px;
  }

  .hotel-otagh {
    border-radius: 16px;
    padding: 15px;
  }

  .hotel-otagh-img {
    width: 60px;
    height: 60px;
  }

  .hotel-otagh-left {
    width: 100%;
    align-items: end;
    gap: 10px;
  }

  .hotel-otagh-btn {
    height: 38px;
    font-size: 14px;
  }

  .hotel-otagh-price {
    font-size: 14px;
  }

  .hotel-otagh-items {
    margin-top: 15px;
    padding-top: 15px;
    gap: 15px;
    font-size: 14px;
    justify-content: start;
  }

  .hotel-otagh-title {
    font-size: 14px;
  }

  .hotel-box {
    padding: 15px;
    border-radius: 16px;
    margin-top: 20px;
  }

  .hotel-box-title {
    font-size: 14px;
  }

  .hotel-box-flex {
    font-size: 14px;
  }

  .hotel-box-price {
    font-size: 14px;
  }

  .hotel-box-price span {
    font-size: 14px;
  }

  .hotel-box-address {
    font-size: 12px;
  }

  .hotel-box-btn {
    font-size: 14px;
    margin-top: 15px;
    height: 38px;
  }
}

/* / */

.hotel-box-img {
  width: 60px;
  height: 60px;
  border-radius: 6px;
  margin-left: 15px;
}

.hote-box-mute {
  font-size: 14px;
  line-height: 2;
  margin-top: 10px;
}

.hotel-box .filter-btn-collapce:after {
  font-size: 21px;
  color: var(--color1);
}

.hotel-box-row {
  display: flex;
  align-items: center;
}

.fr-body {
  padding: 30px;
}

.fr-row {
  gap: 10px;
  display: flex;
  align-items: center;
}

.fr-dot {
  background: #D9D9D9;
  width: 16px;
  height: 16px;
  border-radius: 50px;
}

.fr-time {
  font-size: 18px;
  width: 50px;
  text-align: center;
  font-weight: 600;
}

.fr-space {
  margin: 5px 0;
  margin-right: 73px;
  padding: 15px 0;
  border-right: 1px solid #ccc;
  padding-right: 22px;
  color: #000;
  font-size: 14px;
}

.fr-text {
  font-size: 18px;
}

.hotel-step {
  background: #F3F3F3;
  display: flex;
  justify-content: space-between;
  border-radius: 16px;
  padding: 25px;
  margin-bottom: 25px;
  align-items: center;
  gap: 25px;
}

.hotel-step-border {
  width: 100%;
  border-top: 2px dashed #00000047;
  display: flex;
  align-items: center;
}

.hotel-step-item img {
  padding: 5px;
  border-radius: 50px;
}

.hotel-step-item {
  white-space: nowrap;
  gap: 10px;
  display: flex;
  align-items: center;
  font-size: 14px;
}

.hotel-step-item.active {
  font-weight: bold;
}

.hotel-step-item.active img {
  background: var(--color1);
}

.hotel-form {
  background: #F3F3F3;
  border-radius: 24px;
  padding: 24px;
}

.hotel-form-head {
  font-size: 22px;
  color: #000;
  margin-bottom: 15px;
}

.hotel-form-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  border-top: 1px solid rgba(0, 0, 0, 0.2);
  padding: 25px 0;
  margin-top: 20px;
  margin-bottom: 20px;
}

.hotel-form-title {
  font-weight: 600;
}

.hotel-form-group {
  display: flex;
  gap: 30px;
}

.hotel-form-radio {
  margin: 0;
  display: flex;
  align-items: center;
  gap: 5px;
  cursor: pointer;
}

.hotel-form-radio input {
  width: 18px;
  height: 18px;
  accent-color: var(--color2);
}

.hotel-form-input {
  background: #FFFFFF;
  border: 0;
  width: 100%;
  height: 48px;
  padding: 15px;
  border-radius: 12px;
}

.hotel-form-textarea {
  background: #FFFFFF;
  border: 0;
  width: 100%;
  padding: 15px;
  border-radius: 12px;
}

@media (max-width:767px) {
  .hotel-step-item {
    flex-direction: column;
  }

  .hotel-form-row {
    flex-direction: column;
    align-items: start;
    gap: 15px;
  }

}

/*  */

.new-box {
  background: #F3F3F3;
  border-radius: 24px;
  padding: 25px;
  margin: 25px 0;
}

.new-row-title {
  font-size: 18px;
  font-weight: 500;
  margin-top: 30px;
  margin-bottom: 20px;
}


.new-box-title {
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  font-size: 22px;
  font-weight: 700;
  padding-bottom: 20px;
  margin-bottom: 20px;
}

.new-table {
  width: 100%;
  border-collapse: collapse;
  border-radius: 12px;
  overflow: hidden;
}

.new-table th {
  background: #0a2c66;
  color: #fff;
  padding: 10px;
  font-size: 14px;
  text-align: center !important;
  font-family: var(--back);
}

.new-table tbody {
  background: #fff;
}

.new-table td {
  padding: 10px;
  border-bottom: 1px solid #eee;
  text-align: center;
  font-size: 14px;
  color: #000;
  font-weight: 600;
  font-family: var(--back);
}

.new-payment {
  margin: 0;
  display: block;
}

.new-payment input {
  display: none;
}

.new-payment-body {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px;
  border-radius: 8px;
  margin-bottom: 10px;
  cursor: pointer;
}

.pay-check {
  width: 20px;
  height: 20px;
  background: #fff;
  border: 1px solid var(--color2);
  border-radius: 6px;
}

.pay-logo {
  width: 100px;
  /*height: 40px;*/
  object-fit: contain;
}

.new-payment input:checked+div .pay-check {
  background: var(--color1);
}

.new-payment input:checked+div {
  border: 1px solid var(--color1);
}

.new-rules p {
  font-size: 13px;
  line-height: 1.8;
}

.new-rules span {
  color: #ff7a00;
}

.new-box-mute {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 10px;
  font-weight: bold;
  margin-bottom: 20px;
}

@media (max-width: 768px) {

  .new-row {
    overflow: auto;
  }

  .new-box-title {
    font-size: 16px;
    margin-bottom: 0;
  }

  .new-row-title {
    font-size: 16px;
  }

  .new-rules p {
    margin-top: 15px;
  }
}




.back-box {
  background: #f9f9f9;
  padding: 30px;
  max-width: 450px;
  margin: auto;
  margin-top: 40px;
  border-radius: 16px;
  border: 1px solid #ddd;
}

.back-box-icon {
  width: 80px;
  margin: auto;
}

.back-box-subtitle {
  text-align: center;
  font-size: 20px;
  font-weight: bold;
  margin-top: 20px;
  color: #444;
}

.back-box-title {
  text-align: center;
  font-size: 18px;
  color: #444;
  margin-top: 15px;
}

.back-box-info {
  background: #fff;
  border: 1px solid #ddd;
  padding: 20px;
  border-radius: 16px;
  margin-top: 20px;
}

.back-box-flex{
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.back-box-flex-2{
  margin-top: 15px;
  border-top: 1px solid #ddd;
  padding-top: 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}


.back-box-price {
  color: #25ae88;
  font-size: 18px;
  font-weight: 600;
  line-height: 1;
}

.back-box-price span {
  font-size: 16px;
  margin-right: 5px;
}

.back-box-text {
  font-size: 16px;
  color: #000;
}

.back-box-number {
  font-size: 16px;
  color: #000;
}

.back-box-btn-success {
  background: var(--color2);
  border: 1px solid var(--color2);
  color: #fff;
  margin-top: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px;
  border-radius: 15px;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  transition: 0.3s;
}

.back-box-btn-success:hover {
  color: #fff;
  background: var(--color2);
  border: 1px solid var(--color2);

}

.back-box-btn-failed {
  background: #D75A4A;
  border: 1px solid #D75A4A;
  color: #fff;
  margin-top: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px;
  border-radius: 15px;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  transition: 0.3s;
}

.back-box-btn-failed:hover {
  color: #fff;
  background: #89372d;
}


@media (max-width: 767px) {
  .back-box {
    margin: auto;
    margin-top: 20px;
    padding: 20px;
  }

  .back-box-icon {
    width: 60px;
  }

  .back-box-subtitle {
    font-size: 18px;
  }

  .back-box-title {
    font-size: 16px;
  }

  .back-box-info {
    padding: 15px;
  }

  .back-box-price {
    font-size: 16px;
  }

  .back-box-text {
    font-size: 14px;
  }
  .back-box-btn-success {
    margin-top: 40px;
    padding: 12px;
    font-size: 14px;
  }
  .back-box-btn-failed {
    margin-top: 40px;
    padding: 12px;
    font-size: 14px;
  }
}