@charset "UTF-8";
@import url("../webfonts/Graphik Arabic.otf");
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}
*:focus {
  outline: none !important;
}

:root {
  --primaryColor: #0E5E63;
  --SecondaryColor: #E7EFEF;
  --ThirdColor: #767676;
  --linear-gradient: linear-gradient(to right, #093f5366, #00000066);
  --mainColor1: #f6dfa2;
  --mainColor2: rgb(0, 0, 0);
  --mainColor3: #31ba44;
  --mainColor4: #ffffff;
  --mainColor5: #f2e7d8;
}

.border-primary-color {
  border-color: var(--primaryColor) !important;
}

.bg-gray {
  background-color: rgb(230, 230, 230);
}

.loading-screen {
  z-index: 11111111111111110000;
  display: flex;
}
.loading-screen img {
  width: 250px;
}

.header-div {
  height: 500px !important;
}

p {
  margin-bottom: 0px;
}

.h4-home {
  font-size: 40px;
}

.slider-home {
  height: 60vh;
}

.light-gray {
  color: rgb(153, 153, 153);
}

.third-color {
  color: var(--ThirdColor) !important;
}

.bg-third-color {
  background-color: var(--ThirdColor) !important;
}

.mainColor1 {
  color: var(--mainColor1);
}

.bg-mainColor1 {
  background-color: var(--mainColor1) !important;
}

.mainColor5 {
  color: var(--mainColor5);
}

.bg-mainColor5 {
  background-color: var(--mainColor5) !important;
}

body {
  font-size: 16px;
  box-sizing: border-box;
  font-family: "Montserrat", sans-serif;
  overflow-x: hidden;
  direction: ltr;
  text-align: left;
}

html[lang=ar] body {
  font-family: "Cairo", sans-serif;
  direction: rtl;
  text-align: right !important;
}

.bg-primary-color {
  background-color: var(--primaryColor) !important;
}

.primary-color {
  color: var(--primaryColor) !important;
}

.bg-Secondary-color {
  background-color: var(--SecondaryColor) !important;
}

.Secondary-color {
  color: var(--SecondaryColor) !important;
}

.search {
  top: 96%;
}

.search .checkin:first-child::after {
  display: none;
}

.choose-city::after {
  display: none;
}

.intl-tel-input.allow-dropdown {
  width: 100% !important;
}

.checkin {
  position: relative;
}

.checkin::after {
  position: absolute;
  top: 13%;
  bottom: 13%;
  left: -10%;
  content: "";
  border: 1px solid #b3b3b3;
}

.rate h4 {
  font-weight: 600;
  font-size: 48px;
  color: var(--mainColor4);
}
.rate h4::before {
  font-weight: 600;
  padding-inline: 3px;
  content: "+";
}
.rate p {
  font-weight: 400;
  color: var(--mainColor4);
}

html[lang=ar] .rate .row div:nth-child(2) div h4::after {
  content: "الف";
}

a {
  text-decoration: none;
}
a:hover {
  cursor: pointer;
}

footer {
  background-image: url("../imgs/home/Footer.png");
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  color: var(--mainColor4);
}
footer h4 {
  font-size: 20px;
  line-height: 36px;
}
footer form div {
  color: var(--mainColor4);
}
footer form div:hover {
  cursor: pointer;
}
footer .nav-link {
  font-size: smaller;
  color: var(--mainColor4);
}
footer .nav-link:hover {
  cursor: pointer;
  color: var(--mainColor4);
  background-color: var(--mainColor4);
  color: var(--mainColor2);
}

.scroll-to-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 50px;
  height: 50px;
  background: var(--primaryColor);
  color: white;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  z-index: 11111;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(174, 70, 61, 0.3);
}

.scroll-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.scroll-to-top:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(174, 70, 61, 0.4);
}

.floatwhatsapp {
  cursor: pointer;
  font-size: 25px;
  border-radius: 50%;
  right: 20px;
  text-align: center;
  color: var(--mainColor4);
  position: fixed;
  width: 50px;
  bottom: 70px;
  height: 50px;
  text-decoration: none;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
  z-index: 11111;
  border-radius: 50%;
}

.floatwhatsapp {
  background-color: var(--mainColor3);
  display: flex;
  transition: transform 0.2s ease-in-out;
  animation-name: pulse;
  animation-duration: 1.5s;
  animation-timing-function: ease-out;
  animation-iteration-count: infinite;
  animation-play-state: paused;
}
.floatwhatsapp:hover {
  transform: translateY(-3px);
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
  }
  80% {
    box-shadow: 0 0 0 14px rgba(37, 211, 102, 0);
  }
}
.btn-whatsapp-pulse-border::before {
  content: "";
  position: absolute;
  border-radius: 50%;
  padding: 5px;
  border: 5px solid #25d366;
  opacity: 0.75;
  animation-name: pulse-border;
  animation-duration: 1.5s;
  animation-timing-function: ease-out;
  animation-iteration-count: infinite;
}

@keyframes pulse-border {
  0% {
    padding: 20px;
    opacity: 0.75;
  }
  75% {
    padding: 30px;
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
.back-to-top {
  background-color: var(--primaryColor);
  border: 2px solid var(--primaryColor);
  display: none;
  bottom: 100px;
  color: var(--mainColor4);
  z-index: 111;
  transition: transform 0.2s ease-in-out;
  box-shadow: 1px 1px 2px #686868;
}
.back-to-top:hover {
  transform: translateY(-3px);
}

.social li {
  list-style: none;
}
.social li a {
  opacity: 100% !important;
  width: 40px;
  height: 40px;
  background-color: rgba(183, 233, 246, 0.2);
  text-align: center;
  line-height: 30px;
  font-size: 24px;
  margin: 0 7px;
  display: block;
  border-radius: 50%;
  position: relative;
  overflow: hidden;
  border: 0px solid rgba(255, 255, 255, 0.377);
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primaryColor);
}
.social li a::before {
  content: "";
  position: absolute;
  top: 101%;
  left: 0;
  width: 100%;
  height: 100%;
  background: #f00;
  transition: 0.5s;
  z-index: 2;
}
.social li a .icon {
  position: relative;
  transition: 0.5s;
  z-index: 3;
  color: var(--mainColor4);
  opacity: 1;
}
.social li a:hover .icon {
  color: var(--mainColor4);
  transform: rotateY(360deg);
  font-size: 20px;
}
.social li a:hover::before {
  top: 0;
}

.social li a:before {
  background: var(--primaryColor);
}

.social.social-svg li a:before {
  background: rgba(255, 255, 255, 0.308);
}

.social-svg a {
  background-color: transparent !important;
}

.cardsimg img,
.cardsimg video {
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  cursor: pointer;
}

.card:not(.bg-mission):hover {
  transition: all 0.6s ease;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px !important;
  cursor: pointer;
}
.card:not(.bg-mission):hover .img-card {
  border-radius: inherit;
}

.form-control[disabled] {
  background: var(--ThirdColor);
}

marquee img {
  max-width: 300px;
}

footer .list-footer {
  display: flex;
  flex-wrap: wrap;
}
footer .list-footer li {
  width: 50%;
}
footer p {
  color: var(--mainColor4);
}
footer span {
  color: var(--mainColor4);
  font-weight: 500;
}
footer a {
  color: var(--mainColor4);
  opacity: 100%;
  font-size: 16px;
  font-weight: 400;
}
footer a:hover {
  color: var(--mainColor4);
  opacity: 100%;
}
footer h4 {
  color: var(--mainColor4);
}
footer .social li {
  list-style: none;
}
footer .social li a {
  background-color: rgba(0, 0, 0, 0.4);
  border: 0px solid rgba(255, 255, 255, 0.377);
}
footer .social li a .icon {
  position: relative;
  transition: 0.5s;
  z-index: 3;
  color: var(--mainColor4);
  opacity: 1;
}

#navBar .nav-link.active {
  opacity: 100%;
}

.underline span {
  position: relative;
}
.underline span::after {
  position: absolute;
  content: "";
  width: 75%;
  height: 3px;
  bottom: -6px;
  border-radius: 12px !important;
  left: 0;
  background-color: var(--ThirdColor);
  transform-origin: bottom right;
  transition: transform 0.25s ease-out;
  transform: scaleX(1);
  transform-origin: bottom left;
}

.ul p {
  font-size: 16px !important;
  line-height: 24px;
}

.border-black {
  border-color: var(--mainColor2) !important;
}

a:hover {
  cursor: pointer;
}

.emcan {
  font-size: 14px;
  opacity: 90%;
}
.emcan span {
  font-size: inherit !important;
}

.nav-link span {
  position: relative;
  font-size: 16px !important;
}

.nav-link span::after {
  content: "";
  width: 0%;
  height: 2px;
  bottom: -5px;
  border-radius: 12px !important;
  background-color: var(--primaryColor);
  transition: all 0.25s ease-out;
  z-index: 111;
  display: flex;
  margin: auto;
}

.nav-link span {
  transition: color 0.5s ease, font-weight 0.5s ease;
}

.nav-link:hover span {
  font-weight: 700 !important;
}

.nav-link:hover span::after {
  width: 100%;
}

a.login,
button.login {
  background-color: rgb(35, 115, 169);
  transition: 0.7s;
  font-weight: 400;
  border-radius: 8px;
  font-size: 16px;
}
a.login:hover,
button.login:hover {
  background-color: #e7eff1;
  color: rgb(35, 115, 169);
}

label:not(.form-check-label) {
  font-size: 16px;
}

label.form-check-label {
  font-size: 14px;
}

a.btn {
  transition: 0.7s !important;
  border-radius: 8px;
}

/* Support */
footer li,
.dropdown-menu li:has(.dropdown-item) {
  transition: transform 0.3s ease-in-out !important;
}
footer li:hover,
.dropdown-menu li:has(.dropdown-item):hover {
  cursor: pointer;
  transform: translateX(5px) !important;
}

.form-check .form-check-input {
  margin-left: 0em;
  margin-inline: 3px;
}

.img-card-container {
  height: 250px;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.img-card {
  height: 240px;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.w-img-popup {
  width: 20%;
}

.gray-div {
  transition: all 0.8s ease;
}
.gray-div:hover {
  transform: scale(1.04);
  transform-origin: 50% 50%;
  cursor: pointer;
  box-shadow: rgba(136, 184, 81, 0.596) 2px 5px 5px -5px, rgba(0, 0, 0, 0.3) 0px 3px 1px -8px;
}

.card {
  transition: all 0.9s ease;
}

.img-card-container {
  overflow: hidden;
}
.img-card-container img {
  transition: all 0.8s ease;
}
.img-card-container img:hover {
  transform: scale(1.1);
  transform-origin: 50% 50%;
  cursor: pointer;
  margin-top: 0%;
}

.navbar-brand {
  max-height: 120px;
}
.navbar-brand img {
  transition: all 0.8s ease;
}
.navbar-brand img:hover {
  transform: scale(1.2);
  transform-origin: 50% 50%;
}

.connection p {
  font-size: 16px !important;
}
.connection a {
  font-size: 14px !important;
}

.rating .rounded-card {
  transition: all 1s ease !important;
  border-radius: 28px;
  box-shadow: hsla(0, 0%, 0%, 0.24) 4px 7px 7px -7px, rgba(0, 0, 0, 0.3) 0px 4px 3px -8px;
}
.rating .rounded-card:hover {
  transform: scale(1.05) !important;
  transform-origin: 50% 50%;
  box-shadow: hsla(0, 0%, 0%, 0.24) 4px 5px 5px -5px, rgba(0, 0, 0, 0.3) 0px 3px 1px -8px;
  cursor: pointer;
}

.container-home {
  z-index: 1;
  background-color: var(--primaryColor);
  color: var(--mainColor4);
}

h2 {
  font-size: 20px;
}

a.h2 {
  font-weight: 500;
}
a.h2 span:hover::after {
  transform: scaleX(0);
  transform-origin: bottom right;
}

span.arrow::after {
  display: none;
}

.first {
  font-size: 14px !important;
  font-weight: 400;
}

.img-card-protofilo {
  max-height: 350px;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}
.img-card-protofilo .sale span {
  min-width: 250px;
}

.opacity-low {
  opacity: 0.5;
}

.img-thumbnail {
  border: none !important;
}

.LanguageMenu .lan {
  font-family: "Cairo", sans-serif;
}

.LanguageMenu {
  color: var(--mainColor2);
}
.LanguageMenu svg {
  transition: transform 0.2s ease-in-out;
}
.LanguageMenu svg path {
  stroke: var(--mainColor2);
}
.LanguageMenu svg:hover {
  transform: rotateY(180deg);
}

.nav-link span {
  transition: all 0.3s ease-in-out;
}

.nav-link:hover span {
  color: var(--primaryColor) !important;
}

footer img {
  width: 170px;
}

.nav-link span {
  color: var(--mainColor2);
  font-weight: 500;
}

.nav-link.active span {
  font-weight: 700 !important;
}

.bg-img-service {
  background-image: url("../imgs/home/bg-secondary.png");
  background-position: left center;
  background-attachment: local;
  background-size: cover;
}

.bg-img.gallary {
  background-image: url("../imgs/background/gallary.svg");
  background-position: center center;
  background-attachment: local;
  background-size: cover;
}

.bg-img.contactus {
  background-image: url("../imgs/background/Wireframe - 3.svg");
  background-position: center center;
  background-attachment: local;
  background-size: cover;
}

.bg-img.team {
  background-image: url("../imgs/background/Wireframe - 6.svg");
  background-position: center center;
  background-attachment: local;
  background-size: cover;
}

.bg-img.portfolio {
  background-image: url("../imgs/background/Wireframe - 5.svg");
  background-position: center center;
  background-attachment: local;
  background-size: cover;
}

.bg-img.bg-policy {
  background-image: url("../imgs/home/e43f3adbbdb167c86d3140f7ab5d80f0.png");
  background-position: center center;
  background-attachment: local;
  background-size: cover;
}

.fw-medium {
  font-weight: 500 !important;
}

.border-thirdcolor {
  border-color: var(--ThirdColor) !important;
  color: var(--ThirdColor);
}
.border-thirdcolor:hover {
  background-color: var(--ThirdColor);
}

.primary-color-opecity {
  background-color: rgb(253, 219, 155);
}

a.btn {
  font-weight: 600;
}
a.btn:hover {
  background-color: var(--SecondaryColor) !important;
  cursor: pointer;
  transform: translateY(-2px) !important;
  color: var(--primaryColor) !important;
}

button.btn {
  transition: 0.8s !important;
}
button.btn:hover {
  opacity: 70%;
  cursor: pointer;
  color: var(--mainColor2) !important;
}

a.contact:hover {
  background-color: var(--SecondaryColor) !important;
  color: var(--primaryColor) !important;
}

button.bg-primary-color:hover {
  background-color: var(--SecondaryColor) !important;
  cursor: pointer;
  color: var(--mainColor2) !important;
}

.breadcrumb-item,
.breadcrumb-item a {
  color: var(--primaryColor) !important;
  font-size: 16px;
  font-weight: 600;
}

.breadcrumb-item a {
  font-weight: 400;
}

.video-js .vjs-big-play-button .vjs-icon-placeholder:before {
  content: "\f101";
  color: var(--mainColor5);
  display: flex;
  justify-content: center;
  align-items: center;
}

.video-js .vjs-big-play-button {
  cursor: pointer;
  background-color: var(--mainColor3);
  border-radius: 50%;
  height: 2em;
  width: 2em;
}

.list-group {
  font-size: 20px;
  font-weight: 400;
}

.video-js .vjs-tech {
  border-radius: inherit;
}

.breadcrumb-item a {
  color: #52474a !important;
}

.choose-city span::after {
  content: "...";
}

.Discover {
  font-size: 36px;
  line-height: 61px;
}

.input-group.position-relative:has(.choose-city:focus,
#checkOut:focus,
#checkIn:focus) {
  position: relative;
}
.input-group.position-relative:has(.choose-city:focus,
#checkOut:focus,
#checkIn:focus)::after {
  content: "";
  position: absolute;
  width: 20%;
  transform-origin: right bottom;
  height: 4px;
  transform: scaleX(0);
  transform: scaleX(1);
  transform-origin: bottom left;
  bottom: -5px;
  border-radius: 12px !important;
  background-color: var(--primaryColor);
  left: 0;
  transition: transform 0.25s ease-out;
  z-index: 11;
  transform-origin: bottom left;
}

/* When the icon is liked (active) */
.profile-picture {
  opacity: 1;
  height: 80px;
  width: 80px;
  position: relative;
  overflow: hidden;
  border-radius: 50%;
  background: url(../imgs/home/image-upload.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: auto;
  cursor: pointer;
}

.img-profile {
  background-size: 100% 100%;
  height: 120px;
  width: 120px;
}

.border-color {
  border-color: var(--primaryColor) !important;
}

.choose-city span::after {
  content: "...";
}

ul {
  list-style: none;
  list-style-position: inside;
}

.card-inf {
  font-size: 14px;
}

.rate-icon,
.liked-icon {
  z-index: 111111;
}

a.bg-primary-color {
  color: var(--mainColor4);
}

.bg-third-color {
  background-color: var(--ThirdColor);
}

.slider {
  width: 100%;
  margin: auto;
}

.slider .slide {
  padding: 20px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  background-color: #fff;
  border-radius: 8px;
  text-align: center;
}

.slider .slide img {
  border-radius: 50%;
}

.slider3 .slick-track {
  display: flex;
  align-items: center;
}

.container-icon {
  width: 90px;
  height: 90px;
  background-color: rgb(254, 237, 205);
}

.login {
  background-color: rgb(35, 115, 169);
}

::-moz-selection {
  color: #fff;
  background: #17a2b8;
}

::selection {
  color: #fff;
  background: #17a2b8;
}

.header h2 {
  font-size: 40px;
  font-weight: 600;
  line-height: 60px;
}

h3.small-title {
  font-size: 16px !important;
  color: var(--primaryColor);
  font-weight: 400;
  line-height: 60px;
  font-size: 14px;
}

/* Support */
.support-box {
  top: 2rem;
  position: relative;
  bottom: 0;
  text-align: center;
  display: block;
}

.b-btn {
  color: white;
  text-decoration: none;
  font-weight: bold;
}

.b-btn.paypal i {
  color: blue;
}

.b-btn:hover {
  text-decoration: none;
  font-weight: bold;
}

.b-btn i {
  font-size: 20px;
  color: yellow;
  margin-top: 2rem;
}

.gray-icon {
  fill: none;
}
.gray-icon.fill {
  fill: rgb(249, 160, 0);
}
.gray-icon:hover:not(.fill) {
  fill: rgb(249, 160, 0);
  cursor: pointer;
}

.grid-imgs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 12px 24px;
  grid-template-areas: "img1 img1" "img2 img3";
}
.grid-imgs div {
  height: 150px;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}
.grid-imgs .img1 {
  grid-area: img1;
}
.grid-imgs .img2 {
  grid-area: img2;
}
.grid-imgs .img3 {
  grid-area: img3;
}
.grid-imgs div:nth-child(-n+3) {
  position: relative;
  cursor: pointer;
}

.product-hover-last span {
  font-size: 36px;
  font-weight: 600;
}

.progress-bar {
  background-color: var(--primaryColor);
}

.progress {
  height: 12px;
}

.search-icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 4px solid rgba(255, 204, 51, 0.34);
}

html[lang=ar] .section-top-service .row.map::after {
  right: 0px;
  left: auto;
}
html[lang=ar] .dropdown-menu {
  text-align: right;
}
html[lang=ar] .layer-home.right {
  background-position: left top;
}
html[lang=ar] .LanguageMenu .lan {
  font-family: "Cairo", sans-serif;
}
html[lang=ar] .next-button {
  right: auto;
  left: 50px;
}
html[lang=ar] .prev-button {
  left: 0px;
  right: auto;
}
html[lang=ar] .arrow {
  transform: scaleX(-1);
}
html[lang=ar] .Newsletter input {
  background-position: 99% 50%;
}
html[lang=ar] .text-md-start {
  text-align: right !important;
}
html[lang=ar] .text-md-end {
  text-align: left !important;
}
html[lang=ar] .about-container::after {
  right: 2%;
  left: auto;
}
html[lang=ar] .accordion-button::after {
  margin-right: auto;
  margin-left: 0;
}
html[lang=ar] .intl-tel-input.allow-dropdown .selected-flag {
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
}
html[lang=ar] .iti__country-container,
html[lang=ar] .intl-tel-input.allow-dropdown .flag-container {
  left: auto !important;
  right: 0 !important;
}
html[lang=ar] input[type=tel] {
  padding-left: 10px;
  padding-right: 47px;
  direction: rtl !important;
}
html[lang=ar] .intl-tel-input.allow-dropdown .selected-flag {
  border-left: solid 1px rgba(221, 221, 221, 0.637);
  border-right: solid 0px rgba(221, 221, 221, 0.637);
}
html[lang=ar] .iti {
  direction: rtl;
}
html[lang=ar] .iti__dropdown-content {
  right: 0px;
  left: auto;
  width: auto !important;
}
html[lang=ar] .iti {
  position: relative;
  width: 100% !important;
}
html[lang=ar] .iti__dropdown-content {
  width: auto !important;
}

.iti {
  width: 100% !important;
}

.img-container img {
  transition: all 0.8s ease;
  width: 100%;
}
.img-container img:hover {
  transform: scale(1.07);
  transform-origin: 50% 50%;
  cursor: pointer;
}

.service-img div {
  border-radius: 300px 2000px 10000px 10000px;
  max-height: 90%;
  overflow: hidden;
}

.service-img::after {
  background-color: rgb(246, 223, 162);
  left: 0%;
  bottom: 0%;
  width: 380px;
  height: 380px;
}

.about h3 {
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
}

.w-img-popup {
  width: 50%;
}

p.text-secondary {
  color: var(--ThirdColor) !important;
  font-weight: 400;
}

.fw-medium {
  font-weight: 500;
}

.color-calendar {
  background-color: var(--mainColor4) !important;
  width: 100%;
}

.color-calendar .calendar__days {
  grid-template-columns: repeat(7, minmax(35px, 95px)) !important;
}

.color-calendar.basic .calendar__weekdays {
  grid-template-columns: repeat(7, minmax(20px, 105px)) !important;
}

.color-calendar .calendar__header {
  grid-template-columns: repeat(7, minmax(20px, 101px)) !important;
}

.color-calendar.basic .calendar__days .calendar__day-other {
  color: var(--primaryColor);
  opacity: 0.2;
}

.color-calendar.basic .calendar__days .calendar__day-selected .calendar__day-box {
  background-color: var(--primaryColor);
  box-shadow: 0 3px 15px -5px var(--primaryColor);
  border-radius: 50%;
  width: 30px;
  height: 30px;
}

.calendar__day-active {
  color: var(--mainColor2);
}

.calendar__day-today {
  color: var(--mainColor2) !important;
}

.color-calendar.basic .calendar__days .calendar__day-today .calendar__day-box {
  background-color: var(--primaryColor);
}

.time label:hover {
  cursor: pointer;
}

.time.active label {
  background-color: var(--primaryColor);
  color: var(--mainColor4);
  border-color: var(--primaryColor) !important;
}

.checkout input:focus {
  box-shadow: none;
}

.border-bottom:has(.Payment.active) .form-check-input:checked {
  background-color: var(--primaryColor);
}

div input[type=checkbox]:checked label {
  color: var(--ThirdColor);
}

.Newsletter {
  color: var(--mainColor4) !important;
}
.Newsletter input {
  background-color: transparent;
  background: 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='M11.5 19C15.6421 19 19 15.6421 19 11.5C19 7.35786 15.6421 4 11.5 4C7.35786 4 4 7.35786 4 11.5C4 15.6421 7.35786 19 11.5 19Z' stroke='black' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M20 20L18 18' stroke='currentColor' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") no-repeat 12px center;
  color: var(--mainColor4);
  background-position-x: 5px;
  background-position-y: center;
  background-size: auto;
  background-size: 22px 25px;
  padding-inline: 30px;
}
.Newsletter input::-moz-placeholder {
  color: var(--mainColor4);
}
.Newsletter input::placeholder {
  color: var(--mainColor4);
}
.Newsletter input:focus {
  background-color: transparent;
  color: var(--mainColor4);
}

.connection svg {
  transition: transform 0.2s ease-in-out;
}
.connection svg:hover {
  transform: translateY(-3px);
  cursor: pointer;
}

.carousel-caption {
  top: 10%;
  text-align: start;
}

.layer {
  z-index: 1;
  background-color: rgba(0, 0, 0, 0.3019607843);
}

.layer-home {
  background-image: url("../imgs/home/bg-div.png");
  background-repeat: no-repeat;
  background-position: bottom center;
  background-size: contain;
}

.layer-about {
  background-image: url("../imgs/home/bg-about.png");
  background-repeat: no-repeat;
  background-position: left top;
  background-size: contain;
}

.layer.layer-img {
  background-color: rgba(28, 58, 169, 0.67);
}

.carousel-item {
  height: 800px;
}
.carousel-item .img-slider {
  height: 100%;
}
.carousel-item .img-slider img {
  min-height: 100% !important;
}

.item-height {
  height: 75vh;
  overflow: hidden;
}
.item-height img,
.item-height video {
  max-width: 150%;
  -o-object-fit: cover;
     object-fit: cover;
}

.carousel-caption {
  z-index: 1;
  color: var(--mainColor4);
  right: 10%;
  top: 22%;
  left: 10%;
}

.carousel-indicators .active {
  background-color: var(--primaryColor) !important;
}

.carousel-dark .carousel-indicators [data-bs-target] {
  background-color: var(--mainColor4);
  width: 15px;
  height: 15px;
  border-radius: 50%;
  opacity: 1 !important;
  transition: 0.7s !important;
}

.about h3 {
  font-size: 14px;
  line-height: 22px;
  font-weight: 500;
  color: var(--primaryColor);
}

.accordion-button:not(.collapsed) {
  color: var(--mainColor2);
  background-color: transparent;
  box-shadow: none !important;
}

.accordion-button:focus {
  z-index: 3;
  outline: 0;
  box-shadow: none;
}

.row:has(.counter) {
  counter-reset: count 0;
}
.row:has(.counter) .counter {
  position: relative;
  counter-increment: count 1;
}
.row:has(.counter) .counter::before {
  width: 100%;
  height: 100%;
  content: "0" counter(count, decimal);
  color: var(--primaryColor);
  display: inline-flex;
  justify-content: center;
  align-items: center;
}

.accordion-home {
  counter-reset: count 0;
}
.accordion-home .accordion-button {
  position: relative;
  counter-increment: count 1;
  padding-inline: 86px 15px !important;
}
.accordion-home .accordion-button::before {
  position: absolute;
  left: 0px;
  margin-inline: 20px;
  left: -5px;
  border-radius: 50%;
  height: 50px;
  width: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--mainColor4);
  counter-increment: section;
  color: var(--mainColor2);
  content: "0" counter(count, decimal);
}

html[lang=ar] .accordion-home .accordion-button {
  padding-inline: 15px 50px !important;
}

.accordion-home .accordion-button::after {
  width: 1rem !important;
  height: 1rem !important;
  background-size: 1rem !important;
}

.accordion-home .accordion-button:not(.collapsed)::after {
  background-image: var(--bs-accordion-btn-icon);
}

.overflow-auto-y {
  overflow-y: auto !important;
}

.slick-dots {
  display: flex;
  position: absolute;
  left: 0;
  justify-content: center;
  gap: 4px;
  right: 0;
  margin: 0;
  bottom: -30px;
  padding-inline: 3rem !important;
  list-style-type: none;
}

.slick-dots button {
  display: block;
  width: 15px;
  height: 15px;
  text-align: center;
  border-radius: 50%;
  border: none;
  background-color: var(--primaryColor);
  opacity: 0.5;
  text-indent: -9999px;
  transition: 0.7s !important;
}

.slider-img li {
  text-align: center;
}

li.slick-active button {
  opacity: 1;
}

.badge {
  z-index: 111;
}

input[type=checkbox] {
  height: 15px;
  width: 15px;
}

.btn-bg-load-more {
  border: 1px solid var(--primaryColor);
  font-size: 18px;
}

.vjs-control-bar {
  border-radius: inherit;
}

.video-js .vjs-big-play-button .vjs-icon-placeholder:before {
  content: "\f101";
  color: var(--primaryColor);
  display: flex;
  justify-content: center;
  align-items: center;
}

.video-js .vjs-big-play-button {
  cursor: pointer;
  background-color: var(--mainColor4);
  border-radius: 50%;
  height: 2em;
  width: 2em;
}

.video-js {
  background-color: #ffffff;
}

.ul-Methodology li {
  width: 50%;
}

.card-blue {
  background: #e7fdfd;
}

.bg-blue {
  background: #e7fdfd;
}

h3 {
  font-size: 24px;
  line-height: 100%;
}

.img-margin .img-card {
  height: 380px;
}

h4 {
  font-size: 24px;
}

h5,
.h5 {
  font-size: 18px;
  line-height: 100%;
  font-weight: 600;
}

.position-absolute .badge {
  border-radius: 0px 32px 32px 0px !important;
}

.calendar__day-active {
  color: var(--mainColor2);
}

.calendar__day-today {
  color: var(--mainColor2) !important;
}

.color-calendar.basic .calendar__days .calendar__day-today .calendar__day-box {
  background-color: var(--primaryColor);
}

.calendar__day-today {
  color: var(--mainColor4) !important;
}

.about-container::before {
  background-color: transparent;
  background-image: url("../imgs/home/Group (3).svg");
  background-size: contain;
  bottom: -25%;
  left: -10%;
  width: 300px;
  height: 300px;
  position: absolute;
  opacity: 25%;
  content: "";
}

.about-container::after {
  background-image: url("../imgs/home/Group (3).svg");
  background-size: contain;
  top: -25%;
  transform: scale(-1);
  right: -10%;
  opacity: 25%;
  width: 300px;
  height: 300px;
  position: absolute;
  content: "";
}

.about-container {
  position: relative;
  overflow: hidden;
}

h5.h5-home {
  font-size: 40px !important;
  line-height: 50px;
  font-weight: 600 !important;
  padding-inline: 2px;
}

.img-card {
  overflow: hidden;
}
.img-card img {
  transition: all 0.8s ease;
}
.img-card:hover {
  cursor: pointer;
}
.img-card:hover img {
  transform: scale(1.1);
  transform-origin: 50% 50%;
}

.about-card {
  height: 550px;
}

.card h4,
.card .h4 {
  font-size: 23px;
  line-height: 39px;
  font-weight: 500;
}

.intl-tel-input.separate-dial-code .selected-flag {
  border-right: solid 1px rgba(221, 221, 221, 0.637);
  background-color: transparent;
}

.flag-container:hover {
  background-color: transparent;
}

.intl-tel-input.allow-dropdown .flag-container:hover .selected-flag {
  background-color: transparent;
}

.search-nav {
  background-color: rgba(255, 255, 255, 0.2);
}

.subscrib:focus {
  border: 0px solid #000000 !important;
  outline: 0;
  box-shadow: 0 0 0 0rem rgba(13, 110, 253, 0.25);
  color: white;
}

.subscrib {
  color: white;
}

.pagination li a {
  border-radius: 50% !important;
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: transparent;
  border: 0px;
  color: var(--mainColor2);
}

.active > .page-link,
.page-link.active {
  background-color: var(--SecondaryColor);
  color: #000000;
}

.page-item {
  display: flex;
  align-items: center;
}

.page-item:first-child .page-link,
.page-item:last-child .page-link {
  background-color: transparent;
  padding: 20px !important;
  color: var(--mainColor2) !important;
}

html[lang=ar] .page-item:first-child .page-link, html[lang=ar] .page-item:last-child .page-link {
  transform: scaleX(-1);
}

.subscrib::-moz-placeholder {
  color: rgb(255, 255, 255) !important;
}

.subscrib::placeholder {
  color: rgb(255, 255, 255) !important;
}

button.prev-button,
button.next-button {
  width: 40px;
  height: 40px;
  z-index: 1;
  display: flex;
  bottom: -2%;
  justify-content: center;
  align-items: center;
  position: absolute;
  z-index: 1111111;
}
button.prev-button:hover,
button.next-button:hover {
  color: var(--primaryColor) !important;
  border-color: var(--primaryColor) !important;
}

.next-button {
  right: 0px;
}

.prev-button {
  right: 50px;
}

.parent {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 1fr);
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  max-height: 500px;
}
.parent div {
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}
.parent div img {
  max-width: 200%;
}
.parent .div1 {
  grid-area: 1/1/3/3;
}
.parent .div2 {
  grid-area: 1/3/2/4;
}
.parent .div3 {
  grid-area: 1/4/2/5;
}
.parent .div4 {
  grid-area: 2/3/3/4;
}
.parent .div5 {
  grid-area: 2/4/3/5;
}

.projects .parent {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 1fr);
  grid-column-gap: 24px;
  grid-row-gap: 24px;
}
.projects .parent div {
  cursor: pointer;
}
.projects .parent .div1 {
  grid-area: 1/1/2/2;
}
.projects .parent .div2 {
  grid-area: 1/2/2/3;
}
.projects .parent .div3 {
  grid-area: 1/3/2/4;
}
.projects .parent .div4 {
  grid-area: 2/1/3/4;
}

.container-reverse-store .row:nth-child(even) {
  flex-direction: row-reverse;
}

.img-card:has(.layer) {
  height: 280px;
}

.container-divs div {
  background-color: white;
}
.container-divs div:nth-child(3n+1),
.container-divs div:nth-child(3n+2) {
  width: 50%;
}
.container-divs div:nth-child(3n+1) {
  padding-inline-end: 12px;
}
.container-divs div:nth-child(3n+2) {
  padding-inline-start: 12px;
}
.container-divs div:nth-child(3n) {
  margin-block: 24px;
  width: 100%;
}

.sevices-fade {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.26) 35%, rgb(4, 5, 21) 100%);
}

.fs-10 {
  font-size: 10px;
}

.fs-12 {
  font-size: 12px;
}

.fs-16 {
  font-size: 16px;
}

.fs-14 {
  font-size: 14px;
}

.fs-18 {
  font-size: 18px;
}

.fs-20 {
  font-size: 20px;
}

.fs-22 {
  font-size: 22px;
}

.fs-24 {
  font-size: 24px;
}

.fs-26 {
  font-size: 26px;
}

.fs-28 {
  font-size: 28px;
}

.fs-30 {
  font-size: 30px;
}

.fs-32 {
  font-size: 32px;
}

.fw-500 {
  font-weight: 500;
}

.fw-600 {
  font-weight: 600;
}

.fw-900 {
  font-weight: 900;
}

.img-product-slider img {
  width: 100%;
  display: block;
  background-color: var(--ThirdColor);
}
.img-product-slider .img-display {
  overflow: hidden;
}
.img-product-slider .img-showcase {
  display: flex;
  width: 100%;
  transition: all 0.5s ease;
}
.img-product-slider .img-showcase img {
  min-width: 100%;
}
.img-product-slider .img-select {
  padding-block: 10px;
  display: flex;
  gap: 10px;
}
.img-product-slider .img-item:nth-child(1),
.img-product-slider .img-item:nth-child(2),
.img-product-slider .img-item:nth-child(3) {
  margin: 0;
}
.img-product-slider .img-item:hover {
  opacity: 0.8;
}

.img-slider {
  height: 80px;
  transition: all 0.8s ease;
}
.img-slider img {
  width: 89%;
}
.img-slider:hover {
  transform: scale(1.04);
  transform-origin: 50% 50%;
  cursor: pointer;
}

.waves {
  text-decoration-line: underline;
  text-decoration-style: wavy;
  text-decoration-color: var(--primaryColor);
}

.slick-list {
  overflow: visible;
}

.img-container-cards .img-card {
  height: 143px;
  max-width: 80%;
}

.container-fluid:has(.img-container-cards) .img-container-cards:first-child .d-flex .img-card {
  position: absolute;
  right: 10%;
  top: 0px;
  bottom: 0px;
}
.container-fluid:has(.img-container-cards) .img-container-cards:first-child .d-flex {
  justify-content: start;
  position: relative;
}
.container-fluid:has(.img-container-cards) .img-container-cards:first-child .d-flex:first-child,
.container-fluid:has(.img-container-cards) .img-container-cards:first-child .d-flex:last-child {
  justify-content: end;
}
.container-fluid:has(.img-container-cards) .img-container-cards:last-child .d-flex {
  justify-content: end;
  position: relative;
}
.container-fluid:has(.img-container-cards) .img-container-cards:last-child .d-flex .img-card {
  position: absolute;
  left: 10%;
  top: 0px;
  bottom: 0px;
}
.container-fluid:has(.img-container-cards) .img-container-cards:last-child .d-flex:first-child,
.container-fluid:has(.img-container-cards) .img-container-cards:last-child .d-flex:last-child {
  justify-content: start;
}

.nav-bar-padding {
  padding-top: 60px;
}

.navbar-brand img {
  max-width: 150px;
  transition: all 0.8s ease;
}

.navbar-toggler {
  color: var(--mainColor2) !important;
}

.card:has(.top-card) .top-card {
  top: 0%;
}

.intl-tel-input.separate-dial-code .selected-dial-code {
  padding-left: 23px;
}

.card:has(.img-card-service) {
  height: 450px;
}

.img-container {
  height: 420px;
}

.slider-container .grid {
  transition: all 0.8s ease;
}

.typed-cursor {
  display: none;
}

.expert {
  padding-inline: 30px;
}
.expert li {
  color: #000000;
  font-weight: 700;
}
.expert li::after {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  background-image: url("../imgs/home/Stickers V11.png");
  background-size: contain;
  left: -28px;
  right: auto;
  background-repeat: no-repeat;
}

html[lang=ar] .expert li::after {
  right: -28px;
  left: auto;
}

html[lang=ar] .offcanvas-start {
  left: auto;
  right: 0;
  transform: translateX(100%);
}

html[lang=ar] .country-list {
  text-align: right;
}

.slider-img {
  height: 436px;
}

.lan:hover {
  color: white;
}

.slick-slider .slick-track {
  margin-left: initial;
  margin-right: initial;
}

.slick-slide {
  padding-inline: 10px;
   height: auto !important;
}

.object-fit-cover {
  -o-object-fit: cover;
     object-fit: cover;
}

.welcome-text {
  display: none;
}

a.LanguageMenu:hover,
a.LanguageMenu span:hover {
  color: var(--primaryColor);
}
a.LanguageMenu:hover svg path,
a.LanguageMenu span:hover svg path {
  stroke: var(--primaryColor);
}

.navbar-nav {
  text-wrap: nowrap;
}

.accordion-button:not(.collapsed) {
  color: var(--mainColor2) !important;
}

.accordion-button:not(.collapsed)::before {
  background: var(--mainColor4) !important;
  color: var(--primaryColor) !important;
}

.fa-star {
  color: var(--primaryColor);
}

.slider-container {
  transition: all 0.8s ease;
}

.slider-container.active {
  box-shadow: 0 12px 18px rgba(0, 0, 0, 0.3), 0 4px 6px rgba(0, 0, 0, 0.2);
  transform: translateY(-4px);
}

.form-check .form-check-input {
  height: 16px;
  width: 16px;
}

.form-check-input:checked {
  background-color: var(--primaryColor);
  border-color: var(--primaryColor);
}

body:has(.form-scroll) {
  background-image: url("../imgs/home/Registeration.png");
}

.bg-about {
  background-image: url("../imgs/home/bg-about.png");
  background-size: 100% 100%;
  background-repeat: no-repeat;
}

.form-control:focus {
  outline: 0px !important;
  box-shadow: 0 0 0 0rem rgba(248, 71, 1, 0.034) !important;
}

.form-control:not(:-moz-read-only):focus {
  border: 2px solid var(--primaryColor) !important;
  background-color: rgba(248, 71, 1, 0.034);
}

.form-control:not(:read-only):focus {
  border: 2px solid var(--primaryColor) !important;
  background-color: rgba(248, 71, 1, 0.034);
}

.form-check-input:focus {
  border-color: var(--SecondaryColor);
  outline: 0;
  box-shadow: 0 0 0 0.1rem var(--SecondaryColor);
}

.form-bg {
  background-image: url("../imgs/home/form-bg.png");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.form-img.form-bg {
  background-image: url("../imgs/home/form-img.png");
}

.form-bg:has(.img-phonesmart) {
  background-image: url("../imgs/home/form-download-bg.png");
}

.about-bg {
  background-image: url("../imgs/home/Lingkaran.png");
  background-position: right center;
  background-repeat: no-repeat;
}

.carousel-control-prev,
.carousel-control-next {
  display: none;
}

.bg-header {
  background-image: url("../imgs/home/bgg.png");
}

.grid .grid-item .img-card {
  width: 100%;
}

.small-absolute {
  height: 450px;
}

input[type=location] {
  overflow: clip !important;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none'><path d='M15.5 11C15.5 12.933 13.933 14.5 12 14.5C10.067 14.5 8.5 12.933 8.5 11C8.5 9.067 10.067 7.5 12 7.5C13.933 7.5 15.5 9.067 15.5 11Z' stroke='%23202020' stroke-width='1.5'/><path d='M12 2C16.8706 2 21 6.03298 21 10.9258C21 15.8965 16.8033 19.3847 12.927 21.7567C12.6445 21.9162 12.325 22 12 22C11.675 22 11.3555 21.9162 11.073 21.7567C7.2039 19.3616 3 15.9137 3 10.9258C3 6.03298 7.12944 2 12 2Z' stroke='%23202020' stroke-width='1.5'/></svg>");
  background-repeat: no-repeat;
  background-position: right 9px center;
  background-size: 16px 16px;
}

.layer-home.right {
  background-position: right top;
}

html[lang=ar] input[type=location] {
  background-position: left 9px center;
}

.circle {
  animation: rotate-circle 2s infinite linear;
}

@keyframes rotate-circle {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.modal {
  z-index: 111111;
}

.connection svg {
  transition: all 0.8s ease;
}
.connection:hover {
  cursor: pointer;
}
.connection:hover svg {
  transform: translateY(-4px);
}

.sevices-cards.views .card {
  height: 380px;
}

.sevices-cards .card svg {
  transition: all 0.8s ease;
}
.sevices-cards .card:hover {
  cursor: pointer;
}
.sevices-cards .card:hover svg {
  transform: scale(1.2);
  transform-origin: 50% 50%;
}

.btn-service {
  transition: all 1s ease;
}

.btn-service:hover {
  box-shadow: inset 0 0 0 2em transparent;
  border: 1px solid rgba(245, 105, 46, 0.6);
  cursor: pointer;
  transform: translateY(0px) !important;
  color: rgba(245, 105, 46, 0.6) !important;
}

.password-container {
  position: relative;
  display: flex;
}

.toggle-password {
  position: absolute;
  right: 20px;
  left: auto;
  top: 33%;
  border: none;
  background-color: transparent;
  cursor: pointer;
  font-size: 16px;
  line-height: 1;
}

input::-ms-reveal {
  display: none;
}

html[lang=ar] .toggle-password {
  left: 20px;
  right: auto;
}

.border:has(.Payment.active) {
  color: var(--primaryColor) !important;
  border-color: var(--primaryColor) !important;
}

.border.account-type.active {
  border-color: var(--primaryColor) !important;
}

/* .first-img {
  width: 90%;
} */



/* html[lang=ar] .second-img {
  transform: translate(50%, 14%);
  right: 0px;
  left: auto;
} */

.img-shape {
  position: relative;
}
.img-shape img {
  border-radius: 64% 50% 60% 58%;
}
.img-shape::after {
  position: absolute;
  content: "";
  z-index: 1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("../imgs/home/after.png") right no-repeat;
  background-size: contain;
}

.img-container:has(.first-img) {
  position: relative;
}
.img-container:has(.first-img)::after {
  position: absolute;
  content: "";
  z-index: 1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("../imgs/home/aftershape.png") top right no-repeat;
}
.img-container:has(.first-img) .img-shape::after {
  background: unset;
}

.text-bg-blue {
  background-color: #013c76;
}

.badge-min::after,
.badge-min::before {
  content: "";
  display: inline-block;
  width: 12px;
  align-items: center;
  border: 1px dashed gray;
}

.bg-profile {
  background-image: url(../imgs/home/bg-profile.png);
  background-repeat: no-repeat;
  background-position: center center;
}

button.form-select {
  min-width: 170px;
}

html[lang=ar] .form-select {
  position: relative;
  background-position: left 0.75rem center;
  text-align: right;
}

.drive::after,
.arrive::after {
  background-repeat: no-repeat;
  background-position: center center;
  background-size: auto;
  align-items: center;
  content: "";
  display: inline-block;
  width: 2.25rem;
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 1111;
}

.location::after,
.date::after,
.people::after {
  background-repeat: no-repeat;
  background-position: top center;
  background-size: auto;
  align-items: center;
  content: "";
  display: inline-block;
  width: 24px;
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 1111;
  right: 0;
}

.form-icons .location,
.form-icons .date,
.form-icons .people {
  padding-inline: 26px;
}

.drive::after {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none'><rect width='24' height='24' rx='6' fill='%23EC7E0D'/><path fill-rule='evenodd' clip-rule='evenodd' d='M5.625 10.7383C5.625 7.28842 8.50791 4.5 11.9951 4.5C15.4921 4.5 18.375 7.28842 18.375 10.7383C18.375 12.4768 17.7428 14.0907 16.7021 15.4587C15.5541 16.9676 14.1391 18.2823 12.5464 19.3143C12.1819 19.5528 11.8529 19.5708 11.4528 19.3143C9.85105 18.2823 8.43607 16.9676 7.29787 15.4587C6.25649 14.0907 5.625 12.4768 5.625 10.7383ZM9.89566 10.9322C9.89566 12.0879 10.8387 12.9969 11.9951 12.9969C13.1522 12.9969 14.1043 12.0879 14.1043 10.9322C14.1043 9.7855 13.1522 8.83228 11.9951 8.83228C10.8387 8.83228 9.89566 9.7855 9.89566 10.9322Z' fill='white'/></svg>");
}

.arrive::after {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none'><circle cx='12' cy='12' r='12' fill='%23EC7E0D'/><circle cx='12' cy='12' r='3' fill='white'/></svg>");
}

.location::after {
  background-image: url("data:image/svg+xml;utf8,<svg width='20' height='22' viewBox='0 0 20 22' fill='none' xmlns='http://www.w3.org/2000/svg'><path d='M11.6177 20.367C11.1841 20.773 10.6044 21 10.0011 21C9.39785 21 8.81818 20.773 8.38449 20.367C4.41302 16.626 -0.909237 12.4469 1.68627 6.37966C3.08963 3.09916 6.45834 1 10.0011 1C13.5439 1 16.9126 3.09916 18.316 6.37966C20.9082 12.4393 15.599 16.6389 11.6177 20.367Z' stroke='%23D4A763' stroke-width='1.5'/><path d='M13.5 10C13.5 11.933 11.933 13.5 10 13.5C8.067 13.5 6.5 11.933 6.5 10C6.5 8.067 8.067 6.5 10 6.5C11.933 6.5 13.5 8.067 13.5 10Z' stroke='%23D4A763' stroke-width='1.5'/></svg>");
}

.date::after {
  background-image: url("data:image/svg+xml;utf8,<svg width='22' height='22' viewBox='0 0 22 22' fill='none' xmlns='http://www.w3.org/2000/svg'><path d='M17 1V3M5 1V3' stroke='%23D4A763' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/><path d='M10.9955 12H11.0045M10.9955 16H11.0045M14.991 12H15M7 12H7.00897M7 16H7.00897' stroke='%23D4A763' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/><path d='M2.5 7H19.5' stroke='%23D4A763' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/><path d='M1.5 11.2432C1.5 6.88594 1.5 4.70728 2.75212 3.35364C4.00424 2 6.01949 2 10.05 2H11.95C15.9805 2 17.9958 2 19.2479 3.35364C20.5 4.70728 20.5 6.88594 20.5 11.2432V11.7568C20.5 16.1141 20.5 18.2927 19.2479 19.6464C17.9958 21 15.9805 21 11.95 21H10.05C6.01949 21 4.00424 21 2.75212 19.6464C1.5 18.2927 1.5 16.1141 1.5 11.7568V11.2432Z' stroke='%23D4A763' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/><path d='M2 7H20' stroke='%23D4A763' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/></svg>");
}

.people::after {
  background-image: url("data:image/svg+xml;utf8,<svg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'><path d='M18.6161 20H19.1063C20.2561 20 21.1707 19.4761 21.9919 18.7436C24.078 16.8826 19.1741 15 17.5 15M15.5 5.06877C15.7271 5.02373 15.9629 5 16.2048 5C18.0247 5 19.5 6.34315 19.5 8C19.5 9.65685 18.0247 11 16.2048 11C15.9629 11 15.7271 10.9763 15.5 10.9312' stroke='%23D4A763' stroke-width='1.5' stroke-linecap='round'/><path d='M4.48131 16.1112C3.30234 16.743 0.211137 18.0331 2.09388 19.6474C3.01359 20.436 4.03791 21 5.32572 21H12.6743C13.9621 21 14.9864 20.436 15.9061 19.6474C17.7889 18.0331 14.6977 16.743 13.5187 16.1112C10.754 14.6296 7.24599 14.6296 4.48131 16.1112Z' stroke='%23D4A763' stroke-width='1.5'/><path d='M13 7.5C13 9.70914 11.2091 11.5 9 11.5C6.79086 11.5 5 9.70914 5 7.5C5 5.29086 6.79086 3.5 9 3.5C11.2091 3.5 13 5.29086 13 7.5Z' stroke='%23D4A763' stroke-width='1.5'/></svg>");
}

.img-seat {
  height: 80px;
  width: 80px;
}

td {
  vertical-align: middle;
}

.bg-model {
  background-image: url("../imgs/home/layer-home.png") !important;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: right center;
}

.price {
  align-items: center;
  display: flex;
}

.price:after {
  content: "";
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none'><path d='M20.5713 18.0522C20.458 18.9684 20.4084 19.3653 19.9854 20.2583L13.4893 21.6001C13.6386 20.6348 13.8376 19.8904 14.1611 19.4438L20.5713 18.0522ZM11.5225 11.7339L13.4639 11.313V5.17822C14.1871 4.3664 14.632 4.00229 15.5049 3.5415V10.8696L20.5713 9.77002C20.458 10.6862 20.4084 11.0831 19.9854 11.9761L15.5049 12.9233V14.9829L20.5713 13.9116C20.458 14.8277 20.4084 15.2247 19.9854 16.1177L15.5049 17.0425V17.062L13.4639 17.4839V13.354L11.5225 13.7642V16.3677L11.4893 16.3735C11.0428 17.1564 10.4132 18.0972 9.80566 18.8481L3.42871 20.062C3.48589 19.2418 3.60562 18.7799 3.97656 17.9536L9.48145 16.7603V14.1958L4.37891 15.2759C4.43607 14.4556 4.55587 13.9937 4.92676 13.1675L9.48145 12.1772V4.0376C10.2047 3.22567 10.6494 2.86075 11.5225 2.3999V11.7339Z' fill='black'/></svg>");
  width: 24px;
  height: 24px;
  display: inline-block;
  align-items: center;
}

.price.primary-color::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M20.5713 18.0522C20.458 18.9684 20.4084 19.3653 19.9854 20.2583L13.4893 21.6001C13.6386 20.6348 13.8376 19.8904 14.1611 19.4438L20.5713 18.0522ZM11.5225 11.7339L13.4639 11.313V5.17822C14.1871 4.3664 14.632 4.00229 15.5049 3.5415V10.8696L20.5713 9.77002C20.458 10.6862 20.4084 11.0831 19.9854 11.9761L15.5049 12.9233V14.9829L20.5713 13.9116C20.458 14.8277 20.4084 15.2247 19.9854 16.1177L15.5049 17.0425V17.062L13.4639 17.4839V13.354L11.5225 13.7642V16.3677L11.4893 16.3735C11.0428 17.1564 10.4132 18.0972 9.80566 18.8481L3.42871 20.062C3.48589 19.2418 3.60562 18.7799 3.97656 17.9536L9.48145 16.7603V14.1958L4.37891 15.2759C4.43607 14.4556 4.55587 13.9937 4.92676 13.1675L9.48145 12.1772V4.0376C10.2047 3.22567 10.6494 2.86075 11.5225 2.3999V11.7339Z' fill='%23D4A763'/%3E%3C/svg%3E");
}

.price.offer:after {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none'><path d='M20.5713 18.0522C20.458 18.9684 20.4084 19.3653 19.9854 20.2583L13.4893 21.6001C13.6386 20.6348 13.8376 19.8904 14.1611 19.4438L20.5713 18.0522ZM11.5225 11.7339L13.4639 11.313V5.17822C14.1871 4.3664 14.632 4.00229 15.5049 3.5415V10.8696L20.5713 9.77002C20.458 10.6862 20.4084 11.0831 19.9854 11.9761L15.5049 12.9233V14.9829L20.5713 13.9116C20.458 14.8277 20.4084 15.2247 19.9854 16.1177L15.5049 17.0425V17.062L13.4639 17.4839V13.354L11.5225 13.7642V16.3677L11.4893 16.3735C11.0428 17.1564 10.4132 18.0972 9.80566 18.8481L3.42871 20.062C3.48589 19.2418 3.60562 18.7799 3.97656 17.9536L9.48145 16.7603V14.1958L4.37891 15.2759C4.43607 14.4556 4.55587 13.9937 4.92676 13.1675L9.48145 12.1772V4.0376C10.2047 3.22567 10.6494 2.86075 11.5225 2.3999V11.7339Z' fill='black'/></svg>");
  width: 16px;
  height: 16px;
  background-size: contain;
}

/* Price Range Slider Styles */
.range-input-price input[type=range] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 100%;
  outline: none;
  position: absolute;
  margin: 0;
  padding: 0;
  background: transparent;
}

.range-input-price input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  height: 18px;
  width: 18px;
  background-color: var(--primaryColor);
  opacity: 1 !important;
  cursor: pointer;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  position: relative;
  z-index: 3;
  border-radius: 50%;
  transform: translateY(-50%);
}

.range-input-price input[type=range]::-moz-range-thumb {
  height: 18px;
  width: 18px;
  background-color: var(--primaryColor);
  cursor: pointer;
  opacity: 1;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  position: relative;
  z-index: 3;
  transform: translateY(-50%);
}

.range-input-price input[type=range]::-webkit-slider-runnable-track {
  width: 100%;
  height: 5px;
  background: transparent;
}

.range-input-price input[type=range]::-moz-range-track {
  width: 100%;
  height: 5px;
  background: transparent;
}

.range-min-price {
  z-index: 2;
}

.range-max-price {
  z-index: 2;
}

html[lang=ar] .progress-price,
html[lang=ar] .range-input-price input[type=range] {
  direction: ltr;
}

.card:has(.banner) {
  background: url("../imgs/home/banner.png") no-repeat center;
  background-size: 100% auto;
  background-position: top;
}

.profile .nav-link {
  color: var(--mainColor4) !important;
}
.profile .nav-link svg path {
  stroke: var(--mainColor4);
}
.profile .nav-link.active {
  background-color: var(--mainColor4) !important;
  color: var(--mainColor2) !important;
}
.profile .nav-link.active svg path {
  stroke: var(--mainColor2);
}

.editProfile {
  color: var(--primaryColor);
}
.editProfile.change {
  color: var(--mainColor4);
  background-color: var(--primaryColor);
}

.canceled {
  color: #e04646;
  background-color: rgba(224, 70, 70, 0.1490196078);
}

.joined {
  color: #0e9a54;
  background-color: rgba(14, 154, 84, 0.2);
}

.dropdown-toggle::after {
  display: none;
}

.custom-tooltip {
  --bs-tooltip-bg: #00000066;
  color: white;
}

.text-blue {
  color: #013c76;
}

.form-scroll {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.rate {
  height: 46px;
}

.rate:not(:checked) > input {
  position: absolute;
  top: -9999px;
}

.rate:not(:checked) > label {
  width: 1em;
  overflow: hidden;
  white-space: nowrap;
  cursor: pointer;
  font-size: 30px;
  color: #ccc;
  transition: all 0.3s ease-in-out;
}

.rate:not(:checked) > label:before {
  content: "☆";
}

.rate > input:checked ~ label:before {
  color: var(--primaryColor);
  content: "★";
}

.rate:not(:checked) > label:hover,
.rate:not(:checked) > label:hover ~ label {
  color: var(--primaryColor);
  scale: 1.2;
}

.rate > input:checked + label:hover,
.rate > input:checked + label:hover ~ label,
.rate > input:checked ~ label:hover,
.rate > input:checked ~ label:hover ~ label,
.rate > label:hover ~ input:checked ~ label {
  content: "★";
}

.phone-frame {
  position: relative;
  border: 11.334px solid #111;
  border-radius: 35px;
  overflow-y: hidden;
}

.phone-frame::after {
  content: "";
  width: 80px;
  height: 20px;
  margin: 0 auto;
  top: 0px;
  background-color: #111;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  display: inline-flex;
  justify-content: center;
  position: absolute;
  left: 0;
  right: 0;
}

.phone-frame img {
  display: block;
  max-height: 100%;
}

.img-phonesmart .small-absolute {
  z-index: 1111;
}

.img-phonesmart .small-absolute:first-child {
  transform: translateX(-60%);
  z-index: -1;
}

.img-phonesmart .small-absolute:last-child {
  transform: translateX(60%);
  z-index: -1;
}

.img-phonesmart .small-absolute {
  top: 0px;
  bottom: 0px;
}

.img-phonesmart .small-absolute:nth-child(2) .phone-frame {
  transform: scaleY(1.08);
}

.reservistion {
  background-image: url("../imgs/home/Frame.png");
}

.bg-cancelation {
  background-color: #9a0e0e;
}

::-webkit-scrollbar-thumb {
  background: var(--primaryColor);
}

::-webkit-scrollbar {
  width: 10px;
}

.form-icons input::-moz-placeholder {
  color: var(--mainColor4);
}

.form-icons input::placeholder {
  color: var(--mainColor4);
}

.form-icons select {
  color: var(--mainColor4);
}

.form-icons select option {
  color: var(--mainColor2);
}

.search-result input::-moz-placeholder {
  color: #5a5a5a;
}

.search-result input::placeholder {
  color: #5a5a5a;
}
.search-result select {
  color: #5a5a5a;
}
.search-result select option {
  color: var(--mainColor2);
}

.profile-fllow .nav-pills .nav-link {
  background-color: var(--mainColor4);
  color: var(--mainColor2) !important;
}

.nav-pills .nav-link {
  background-color: transparent;
  border: 0px solid var(--primaryColor);
  font-size: 16px;
  color: var(--mainColor2) !important;
  min-width: 150px;
}

.nav-pills .nav-link.active,
.nav-pills .show > .nav-link {
  background-color: transparent !important;
  color: var(--primaryColor) !important;
  font-weight: 600;
}

.profile .nav-link {
  color: var(--mainColor2) !important;
  border-radius: 11px;
}

.profile .nav-link svg path {
  stroke: var(--mainColor2);
}

.profile .nav-link.active {
  background-color: var(--primaryColor) !important;
  color: var(--mainColor4) !important;
}

.profile-fllow .accordion-button::after {
  background-image: url("data:image/svg+xml,%3Csvg%20width%3D%2232%22%20height%3D%2232%22%20viewBox%3D%220%200%2032%2032%22%20fill%3D%22none%22%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%3E%3Cpath%20d%3D%22M25.333%2012L17.0409%2019.1075C16.4418%2019.6211%2015.5576%2019.6211%2014.9584%2019.1075L6.66634%2012%22%20stroke%3D%22%23041115%22%20stroke-width%3D%222%22%20stroke-linecap%3D%22round%22/%3E%3C/svg%3E");
}

.carousel-item:has(.tilie):not(.title-center) img {
  -o-object-fit: unset !important;
     object-fit: unset !important;
}

.profile-fllow .accordion-button:not(.collapsed) {
  color: var(--mainColor2) !important;
}

.bg-xyz {
  background-image: url("../imgs/home/bg-xyz.png");
  background-size: contain;
}

.text-dark {
  color: #5a5a5a !important;
}

.rounded-start-0 {
  border-top-left-radius: 10px !important;
  border-bottom-left-radius: 10px !important;
  border-top-right-radius: 0px !important;
  border-bottom-right-radius: 0px !important;
}

.rounded-end-0 {
  border-top-left-radius: 0px !important;
  border-bottom-left-radius: 0px !important;
  border-top-right-radius: 10px !important;
  border-bottom-right-radius: 10px !important;
}

html[lang=ar] .rounded-start-0 {
  border-top-left-radius: 10px !important;
  border-bottom-left-radius: 10px !important;
  border-top-right-radius: 0px !important;
  border-bottom-right-radius: 0px !important;
}
html[lang=ar] .rounded-end-0 {
  border-top-left-radius: 0px !important;
  border-bottom-left-radius: 0px !important;
  border-top-right-radius: 10px !important;
  border-bottom-right-radius: 10px !important;
}
html[lang=ar] .gallary .next-button {
  left: 50%;
  right: auto;
  transform: translatex(50%);
}
html[lang=ar] .gallary .prev-button {
  right: 50%;
  left: auto;
  transform: translatex(-50%);
}

.profile-fllow .nav-link.active h6 {
  color: var(--mainColor4) !important;
}

.img-card-container {
  height: 262px;
  display: flex;
  justify-content: center;
  overflow: hidden;
}

.bg-img {
  height: 345px;
}

.filter .nav-link {
  position: relative;
  color: var(--ThirdColor) !important;
  border-radius: 10px !important;
  font-size: 14px;
  font-weight: 600;
  padding-inline: 0px;
  min-width: unset;
  transition: color 0.3s ease;
}
.filter .nav-link.active {
  background-color: var(--SecondaryColor);
  color: var(--primaryColor) !important;
}

.filter.products {
  position: relative;
}
.filter.products::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background-color: var(--primaryColor);
  border-radius: 2px;
  transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1), width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 111;
}
.filter.products .nav-link.active::after {
  content: unset;
}

.star.active svg {
  fill: #ffa033;
}

.grid {
  display: flex;
  gap: 15px;
}

.grid {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.grid .grid-item .img-card {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

li:not(:last-child) .icon.step::after {
  position: absolute;
  content: "";
  border: 1px #9b9b9b dashed;
  top: 0px;
  bottom: 0px;
  transform: translateY(30px);
  right: 50%;
  width: 1px;
}

.icon.step {
  position: relative;
}

.hide {
  display: none;
}

.error {
  border-color: red;
}

.valid-msg {
  color: green;
}

.error-msg {
  color: red;
}

.intl-tel-input.allow-dropdown {
  width: 100% !important;
}

/* wrapper & spinner */
.img-wrapper {
  position: relative;
  display: inline-block;
  overflow: hidden;
  width: 30px;
  height: 30px;
}

.img-wrapper img {
  display: block;
  width: 100%;
  height: auto;
  opacity: 0;
  transition: opacity 0.3s ease-in;
}

.img-loader {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
}

.img-loader::after {
  content: "";
  width: 28px;
  height: 28px;
  border: 3px solid #ccc;
  border-top-color: var(--primaryColor);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
.bg-mission {
  background-image: url("../imgs/home/bg-mission.png");
}

.btn-danger:hover {
  color: #fff !important;
  background-color: #bb2d3b !important;
  border-color: var(--bs-btn-hover-border-color) !important;
}

html[lang=ar] .input-group > :not(:first-child):not(.dropdown-menu):not(.valid-tooltip):not(.valid-feedback):not(.invalid-tooltip):not(.invalid-feedback) {
  margin-right: -1px;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  border-top-left-radius: 7px;
  border-bottom-left-radius: 7px;
}

.dropdown-item.active,
.dropdown-item:active {
  background-color: transparent;
}

.gallary .next-button {
  left: 50%;
  right: auto;
  transform: translatex(50%);
}
.gallary .prev-button {
  right: 50%;
  left: auto;
  transform: translatex(-50%);
}

/* Dark Theme Support */
[data-theme=dark] {
  --text-color: #e5e5e5;
  --card-bg: #2d2d2d;
  --border-color: #404040;
  --bs-bg-opacity: 0.5;
}

[data-theme=dark] body {
  background-color: var(--card-bg) !important;
  color: var(--text-color) !important;
}

[data-theme=dark] .offcanvas-start {
  background-color: var(--card-bg) !important;
}

[data-theme=dark] .card,
[data-theme=dark] .bg-white {
  background-color: transparent !important;
  color: var(--text-color) !important;
}

[data-theme=dark] .Secondary-color {
  background-color: var(--primaryColor) !important;
}

[data-theme=dark] .text-black-50 {
  color: #a0a0a0 !important;
}

[data-theme=dark] p.text-secondary {
  color: var(--mainColor4) !important;
}

[data-theme=dark] .layer-home {
  background-color: transparent !important;
}

[data-theme=dark] .navContainer {
  background-color: var(--card-bg) !important;
  border-bottom-color: var(--border-color) !important;
}
[data-theme=dark] .navContainer .nav-link span {
  color: var(--text-color) !important;
}
[data-theme=dark] .navContainer .nav-link.active span {
  color: var(--primaryColor) !important;
}

[data-theme=dark] .LanguageMenu span,
.LanguageMenu svg path {
  color: var(--text-color) !important;
  stroke: var(--text-color) !important;
}

[data-theme=dark] .accordion-item {
  background-color: var(--card-bg) !important;
  border-color: var(--border-color) !important;
}

[data-theme=dark] .text-black {
  color: var(--mainColor4) !important;
}

[data-theme=dark] .bg-Secondary-color {
  background-color: transparent !important;
}

[data-theme=dark] .bg-light {
  background-color: rgba(198, 171, 171, 0.29) !important;
}

[data-theme=dark] .filter .nav-link {
  color: white !important;
}

[data-theme=dark] .profile-fllow .nav-pills .nav-link {
  color: var(--mainColor4) !important;
  background-color: var(--card-bg);
}

[data-theme=dark] .dropdown-menu {
  background-color: var(--card-bg) !important;
}
[data-theme=dark] .dropdown-menu .text-black {
  color: var(--text-color) !important;
}

[data-theme=dark] .price::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M20.5713 18.0522C20.458 18.9684 20.4084 19.3653 19.9854 20.2583L13.4893 21.6001C13.6386 20.6348 13.8376 19.8904 14.1611 19.4438L20.5713 18.0522ZM11.5225 11.7339L13.4639 11.313V5.17822C14.1871 4.3664 14.632 4.00229 15.5049 3.5415V10.8696L20.5713 9.77002C20.458 10.6862 20.4084 11.0831 19.9854 11.9761L15.5049 12.9233V14.9829L20.5713 13.9116C20.458 14.8277 20.4084 15.2247 19.9854 16.1177L15.5049 17.0425V17.062L13.4639 17.4839V13.354L11.5225 13.7642V16.3677L11.4893 16.3735C11.0428 17.1564 10.4132 18.0972 9.80566 18.8481L3.42871 20.062C3.48589 19.2418 3.60562 18.7799 3.97656 17.9536L9.48145 16.7603V14.1958L4.37891 15.2759C4.43607 14.4556 4.55587 13.9937 4.92676 13.1675L9.48145 12.1772V4.0376C10.2047 3.22567 10.6494 2.86075 11.5225 2.3999V11.7339Z' fill='%23D4A763'/%3E%3C/svg%3E");
}

[data-theme=dark] .profile-fllow .accordion-button:not(.collapsed) {
  color: var(--text-color) !important;
}

.theme-toggle {
  position: fixed;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  background: var(--primaryColor);
  color: white;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  z-index: 1000;
  box-shadow: 0 4px 15px rgba(174, 70, 61, 0.3);
  transition: all 0.3s ease;
  z-index: 11111;
}

.theme-toggle:hover {
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 6px 20px rgba(82, 75, 12, 0.4);
}

#navBar .nav-link.active {
  background-color: transparent !important;
}

.size {
  background-color: var(--SecondaryColor);
  flex: 0 1 60px;
}

.size:has(input:checked[type=radio]) {
  background-color: var(--primaryColor) !important;
  color: white !important;
}

.registeration:has(input:checked[type=radio]) {
  border-color: var(--primaryColor) !important;
}

.slider-nav .slick-slide.slick-current.slick-active .border {
  border-color: var(--primaryColor) !important;
}

.slider-nav .slick-slide.slick-current.slick-active .border {
  border-color: var(--primaryColor) !important;
}

.slider-services .prev-button {
  right: auto;
  left: 0px;
}

.slider-services .prev-button,
.slider-services .next-button {
  top: 50%;
  transform: translateY(-50%);
}

.color.border-color {
  position: relative;
}
.color.border-color::after {
  position: absolute;
  top: 0px;
  right: 0px;
  left: 0px;
  bottom: 0px;
  display: flex;
  justify-content: center;
  align-items: center;
  content: "✓";
  color: white;
  font-size: 30px;
}

.border.account-type.active {
  border-color: var(--primaryColor) !important;
  color: var(--primaryColor) !important;
}
.border.account-type.active svg {
  fill: var(--primaryColor) !important;
}

.form-check.Payment {
  background-color: #f9f9f9 !important;
}

.form-check-input {
  height: 20px !important;
  width: 20px !important;
  box-shadow: 0 0 0 0.05rem var(--primaryColor);
}

.rate p {
  text-wrap: wrap;
}

.object-fit-contain {
  -o-object-fit: contain;
     object-fit: contain;
}

.form-check.address:has(input:checked[type=radio]) .bg-light {
  background-color: var(--SecondaryColor) !important;
}

.btn-close {
  background-image: none;
  display: flex;
  align-items: center;
  justify-content: center;
}

.bg-products {
  background-image: url(assets/imgs/home/form.png);
  background-repeat: no-repeat;
  background-size: 100% auto;
}

.bg-contact-img h6 span.border-bottom {
  position: relative;
  border-bottom: 0px !important;
}
.bg-contact-img h6 span.border-bottom::after {
  content: "";
  width: 30px;
  position: absolute;
  bottom: -5px;
  left: 0;
  right: 0;
  height: 3px;
  background-color: var(--primaryColor);
  border-radius: 2px;
}

.border-bottom:last-of-type {
  border: 0;
}

body:not(:has(.header-div)) .navContainer {
  position: unset;
}

.card:has(.service-card__right) {
  clip-path: polygon(15% 0, 100% 0, 100% 100%, 0% 100%);
}

a:has(.arrow) .arrow,
button:has(.arrow) .arrow {
  transition: transform 0.3s ease-in-out !important;
}

button:has(.arrow) {
  transition: transform 0.3s ease-in-out !important;
}

a:has(.arrow):hover {
  transform: translate(5px, 0px) !important;
}

.card:has(.service-card__right) {
  background-image: url("../imgs/home/Services.png");
  background-size: cover;
}

.apnd-img {
  display: flex;
  height: 200px;
  position: relative;
  text-align: center;
  overflow: hidden;
  border-radius: 5px;
}

.apnd-img img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
  border-radius: 5px;
}

.apnd-img i {
  position: absolute;
  right: 15px;
  top: 4px;
  color: #d2d2d2;
  cursor: pointer;
}

html[lang=ar] .text-start {
  text-align: right !important;
}

html[lang=ar] .slider-services .next-button {
  right: 0px;
  left: auto;
}

html[lang=ar] .accordion-home .accordion-button::before {
  right: 0px;
  left: auto;
}

html[lang=ar] .accordion-home .accordion-button {
  padding-inline: 86px 15px !important;
  text-align: right !important;
}

.slider-home-nav .layer {
  background: rgba(14, 94, 99, 0.1490196078);
}

.services-fade {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.4) 85%, rgb(0, 0, 0) 100%);
}

.project-fade {
  background: linear-gradient(180deg, rgba(15, 12, 0, 0.6156862745) 45%, #0f0c00 100%);
}

.img-card-version .img-card {
  height: 300px !important;
}

.accordion-button {
  background-color: var(--mainColor4);
}

.hero {
  position: relative;
  height: 100vh;
  background: linear-gradient(90deg, #1e3666 0%, #1b4a64 25%, #176062 50%, #13725e 75%, #0d905a 100%);
  overflow: hidden;
}

/* geometric shapes */
.hero::before,
.hero::after {
  content: "";
  position: absolute;
  background: rgba(0, 0, 0, 0.08);
}

.hero::before {
  width: 35%;
  height: 120%;
  right: -10%;
  top: -10%;
  clip-path: polygon(20% 0, 100% 0, 100% 100%, 0 100%);
}

.hero::after {
  width: 25%;
  height: 60%;
  right: 10%;
  bottom: -10%;
  clip-path: polygon(0 0, 100% 30%, 80% 100%, 0 70%);
}

/* content */
.content {
  position: relative;
  color: #fff;
  padding: 80px 60px;
  max-width: 600px;
}

.small {
  font-size: 20px;
  opacity: 0.9;
}

h1 {
  font-size: 32px;
  margin: 10px 0;
}

h2 {
  font-size: 28px;
  margin: 0;
}

.tiny {
  font-size: 18px;
  opacity: 0.85;
}

.coming {
  display: block;
  margin-top: 80px;
  font-size: 18px;
  opacity: 0.9;
}

.order-tracking {
  text-align: center;
  width: 25%;
  position: relative;
  display: block;
}

.order-tracking .is-complete {
  display: block;
  position: relative;
  border-radius: 50%;
  height: 20px;
  width: 20px;
  border: 0px solid #afafaf;
  background-color: var(--SecondaryColor);
  margin: 0 auto;
  transition: background 0.25s linear;
  -webkit-transition: background 0.25s linear;
  z-index: 2;
}

.order-tracking .is-complete:after {
  display: block;
  position: absolute;
  content: "";
  height: 20px;
  width: 20px;
  margin: auto 0;
  border: 2px solid #afafaf;
  opacity: 0;
}

.order-tracking.completed .is-complete {
  border-color: var(--primaryColor);
  border-width: 0px;
  background-color: var(--primaryColor);
  font-weight: 700;
}

.order-tracking.completed .is-complete:after {
  border-color: #fff;
  border-width: 4px;
  width: 15px;
  height: 15px;
  background-color: var(--primaryColor);
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  opacity: 1;
  border-radius: 50%;
}

.order-tracking p {
  color: #a4a4a4;
  font-size: 16px;
  margin-top: 8px;
  margin-bottom: 0;
  line-height: 20px;
}

.order-tracking p span {
  font-size: 14px;
}

.order-tracking.completed p {
  color: #000;
  font-weight: 600;
}
.order-tracking.completed p svg path {
  fill: #1e1e1e;
}

.order-tracking::before {
  content: "";
  display: block;
  height: 3px;
  width: calc(100% - 40px);
  border-bottom: 2px dashed var(--SecondaryColor);
  top: 9px;
  position: absolute;
  left: calc(-50% + 20px);
  z-index: 0;
}

.order-tracking:first-child:before {
  display: none;
}

.order-tracking.completed:before {
  border-bottom: 2px solid var(--primaryColor);
}

html[lang=ar] .order-tracking::before {
  right: calc(-50% + 20px);
  left: auto;
}

.list-group-item {
  transition: all 0.2s ease;
}
.list-group-item .check {
  display: none;
}
.list-group-item:has(input[type=checkbox]:checked) {
  border-radius: 6px;
}
.list-group-item:has(input[type=checkbox]:checked) .check {
  display: block;
}
.list-group-item:has(input[type=checkbox]:checked) span {
  font-weight: 500;
  color: var(--primaryColor);
}
.list-group-item input[type=checkbox] {
  cursor: pointer;
  border-color: #d1d5db;
}
.list-group-item input[type=checkbox]:checked {
  background-color: var(--primaryColor);
  border-color: var(--primaryColor);
}

.bg-delivery {
  color: #02aa27;
  background: rgba(2, 170, 39, 0.2);
}

.bg-charged {
  background: rgba(68, 157, 251, 0.2);
  color: #449dfb;
}

.bg-prepared {
  background: #e77918;
}

.bg-delivery,
.bg-charged,
.bg-prepared {
  text-align: center;
  min-height: 25px !important;
}

table:not(.table-cart) tbody tr {
  position: relative;
}
table:not(.table-cart) tbody tr::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border: 1px solid #d8d8d8;
  border-radius: 5px;
}

textarea.message {
  background-image: url('data:image/svg+xml;utf8,<svg width="30" height="30" viewBox="0 0 30 30" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M22.475 13.4879V18.4879C22.475 18.8129 22.4625 19.1254 22.425 19.4254C22.1375 22.8004 20.15 24.4753 16.4875 24.4753H15.9875C15.675 24.4753 15.375 24.6254 15.1875 24.8754L13.6875 26.8754C13.025 27.7629 11.95 27.7629 11.2875 26.8754L9.78748 24.8754C9.62498 24.6629 9.2625 24.4753 8.9875 24.4753H8.48751C4.50001 24.4753 2.5 23.4879 2.5 18.4879V13.4879C2.5 9.82538 4.18751 7.83788 7.55001 7.55038C7.85001 7.51288 8.16251 7.50037 8.48751 7.50037H16.4875C20.475 7.50037 22.475 9.50038 22.475 13.4879Z" stroke="%23B3B3B3" stroke-width="1.88921" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/><path d="M27.4719 8.48788V13.4879C27.4719 17.1629 25.7844 19.1379 22.4219 19.4254C22.4594 19.1254 22.4719 18.8129 22.4719 18.4879V13.4879C22.4719 9.50038 20.4719 7.50037 16.4844 7.50037H8.48438C8.15938 7.50037 7.84687 7.51288 7.54688 7.55038C7.83438 4.18788 9.82187 2.50037 13.4844 2.50037H21.4844C25.4719 2.50037 27.4719 4.50038 27.4719 8.48788Z" stroke="%23B3B3B3" stroke-width="1.88921" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/><path d="M16.8694 16.5629H16.8806" stroke="%23B3B3B3" stroke-width="2.51895" stroke-linecap="round" stroke-linejoin="round"/><path d="M12.4944 16.5629H12.5056" stroke="%23B3B3B3" stroke-width="2.51895" stroke-linecap="round" stroke-linejoin="round"/><path d="M8.11937 16.5629H8.13062" stroke="%23B3B3B3" stroke-width="2.51895" stroke-linecap="round" stroke-linejoin="round"/></svg>');
  position: relative;
  background-position: left 0.75rem top !important;
  padding-inline: 3rem !important;
  background-repeat: no-repeat !important;
}

html[lang=ar] textarea.message {
  background-position: right 0.75rem center !important;
}

.breadcrumb-item + .breadcrumb-item::before {
  padding-inline: 10px;
}

.cart-part {
  display: none;
}

.cart-part.active {
  display: block;
}

.products-list,
.details-card {
  display: none;
}

.step-active {
  display: block;
}

.border-off::after {
  position: absolute;
  content: "";
  background-image: url("data:image/svg+xml,%3Csvg width='360' height='21' viewBox='0 0 360 21' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M356.673 12.5367C279.953 15.0059 209.664 -0.254645 132.419 2.94233C87.0579 4.81969 44.1757 8.6244 2.50029 17.7571' stroke='%23FCBE00' stroke-width='5' stroke-linecap='round'/%3E%3C/svg%3E");
  right: 0px;
  left: 0px;
  width: 100%;
  background-repeat: no-repeat;
  background-position: center bottom;
  height: 2rem;
  bottom: -1.7rem;
}
.border-off::before {
  content: "";
  position: absolute;
  background-image: url("data:image/svg+xml,%3Csvg width='71' height='69' viewBox='0 0 71 69' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M60.0844 36.1985C60.8338 31.2983 62.278 26.4659 63.712 21.7931C64.0241 20.7881 65.0805 20.2013 66.0373 20.5516C67.0255 20.8342 67.5657 21.8972 67.2844 22.8342C65.8907 27.3616 64.4738 32.0416 63.7712 36.7174C63.6258 37.7158 62.6732 38.432 61.6514 38.2979C60.6303 38.1641 59.9398 37.1973 60.0844 36.1985Z' fill='%23FCBE00'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M36.8903 41.6018C32.9377 31.3857 30.3002 20.6993 26.0952 10.5329C25.6892 9.61282 26.144 8.50854 27.088 8.11639C28.0328 7.72455 29.1356 8.14114 29.5109 9.12918C33.7369 19.3051 36.3947 30.0006 40.3683 40.2263C40.7274 41.207 40.2457 42.2988 39.2833 42.6827C38.3524 42.9989 37.2494 42.5826 36.8903 41.6018Z' fill='%23FCBE00'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M3.59579 42.3629C7.57617 44.4062 11.5567 46.4492 15.5378 48.4928C16.4706 48.9141 16.8222 50.0557 16.347 50.987C15.871 51.918 14.7701 52.2388 13.8366 51.8172C9.84947 49.7708 5.86282 47.7251 1.87636 45.679C0.974236 45.1897 0.62724 44.0506 1.1079 43.1217C1.55785 42.2608 2.69435 41.8739 3.59579 42.3629Z' fill='%23FCBE00'/%3E%3C/svg%3E");
  right: 0px;
  left: 0px;
  width: 100%;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: left bottom;
  height: 50px;
  top: -60px;
}

.product-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.5s ease;
}

.product-card:hover .product-img {
  transform: scale(1.05); /* Zoom effect on image hover */
}

/* --- Hover Overlay & Actions --- */
.product-hover-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.1490196078);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.product-card:hover .product-hover-overlay {
  opacity: 1;
}

/* Quick Shop Button Styling */
.quick-shop-btn {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  border-width: 2px !important;
}

.product-card:hover .quick-shop-btn {
  opacity: 1;
  transform: translateY(0);
}

/* Wishlist Button Styling */
.wishlist-btn {
  color: var(--mainColor4);
}

.wishlist-btn:hover svg path, .wishlist-btn .icon-heart.liked path {
  fill: #dc3545;
  stroke: none;
}

.favorite-outline {
  fill: none;
  stroke: #1e1e1e;
}

/* --- Details --- */
.product-title {
  font-weight: 600;
  color: #333;
}

.product-subtitle {
  font-size: 0.85rem;
}

.product-price {
  margin-top: 5px;
}

.adv-card {
  background: #ffffff;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: all 0.4s ease;
}

.adv-card__image {
  position: relative;
  overflow: hidden;
  height: 250px;
}

.adv-card__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.5s ease;
}

.adv-card__category {
  display: inline-block;
  padding: 0.25rem 0.75rem;
}

.adv-card__title {
  font-size: 1.5rem;
  color: #1f2937;
  margin-bottom: 0.75rem;
  transition: color 0.3s ease;
}

.adv-card__description {
  color: #6b7280;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.adv-card__footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1rem;
  border-top: 1px solid #e5e7eb;
}

.adv-card__date {
  color: #6b7280;
  font-size: 0.9rem;
}

.adv-card__date i {
  margin-right: 0.25rem;
}

.adv-card__link {
  color: var(--primaryColor) !important;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.adv-card__link i {
  margin-left: 0.25rem;
  transition: transform 0.3s ease;
}

.adv-card__link:hover {
  color: #764ba2;
}

.adv-card__link:hover i {
  transform: translateX(5px);
}

.adv-card--rotate:hover {
  transform: translateY(-15px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.adv-card--hover-lift:hover .adv-card__image img {
  transform: scale(1.1);
}

.adv-card--hover-lift:hover .adv-card__title {
  color: var(--primary-color);
}

.adv-card--rotate:hover {
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.adv-card--rotate:hover .adv-card__image img {
  transform: scale(1.05) rotate(1deg);
}

.product-hover-overlay {
  background-color: rgba(149, 38, 46, 0.3215686275);
}

.quick-shop-btn {
  transform: scalex(1.4);
}

.quick-shop-btn:hover {
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  background-color: #7f0a12 !important;
  color: white !important;
}

.avatar-group {
  display: flex;
  margin-left: 15px;
}

.avatar {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
  margin-left: -15px;
  transition: transform 0.2s ease;
}

html[lang=ar] .avatar {
  margin-left: auto;
  margin-right: -15px;
}
html[lang=ar] .avatar-group {
  margin-right: auto;
}

.avatar:first-child {
  margin-left: 0;
}

.avatar:hover {
  transform: scale(1.1);
  z-index: 10;
}

.custom-list {
  list-style: none;
  padding-left: 0;
}

.custom-list li {
  display: flex;
}

.custom-list li::before {
  display: inline-flex;
  content: "";
  width: 24px;
  height: 24px;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url("data:image/svg+xml;utf8,<svg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'><path d='M15 4.5L11 8.5L7 10L5.5 11.5L12.5 18.5L14 17L15.5 13L19.5 9M9 15L4.5 19.5M14.5 4L20 9.5' stroke='%230E5E63' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/></svg>");
}

.social-form li:not(:last-child)::after {
  content: "|";
  position: absolute;
  right: -0.75rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--mainColor4);
}

html[lang=ar] .social-form li:not(:last-child)::after {
  left: -0.75rem;
  right: auto;
}

.social li {
  position: relative;
}

body:has(.form-scroll) .navContainer, body:has(.form-scroll) footer {
  display: none;
}

.navContainer .fa-chevron-down {
  color: var(--mainColor2);
}

.navbar-brand1 {
  display: none;
}

.payment:has(input:checked[type=radio]) {
  background: var(--SecondaryColor) !important;
}/*# sourceMappingURL=style.css.map */