:root {
  --primary-color: #21272a;
  --secondery-color: #c49a6c;
  --black-color: #000000;
  --white-color: #ffffff;
  --body-bg: var(--white-color);
  --border-raduis: 24px;
}
body {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 400;
  font-size: 14px;
  box-sizing: border-box;
  background-color: var(--body-bg);
  color: var(--primary-color);
  margin: 0;
  padding: 0;
  line-height: 1.4;
}
html[dir="rtl"] body {
  font-family: "Tajawal", sans-serif;
}
::-webkit-scrollbar {
  width: 8px;
  height: 0;
}
::-webkit-scrollbar-track {
  background: var(--white-color);
  border-radius: 0px;
}
::-webkit-scrollbar-track-piece {
  background: transparent;
}
::-webkit-scrollbar-thumb {
  background-color: var(--secondery-color);
  border: 2px solid transparent;
  background-clip: padding-box;
  border-radius: 5px;
}
*,
*::before,
*::after {
  box-sizing: border-box;
}
*:focus {
  outline: none !important;
}
a,
button,
img,
input {
  -webkit-transition: 0.3s ease;
  -o-transition: 0.3s ease;
  transition: 0.3s ease;
}
a:hover {
  color: var(--secondery-color);
}
img {
  max-width: 100%;
}
.img-cont > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.img-effect {
  position: relative;
  overflow: hidden;
}
.img-effect > img {
  transition: 0.5s ease;
}
.img-effect:hover > img {
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
  transform: scale(1.1);
}
.img-effect::before {
  position: absolute;
  top: 0;
  left: -75%;
  z-index: 2;
  display: block;
  content: "";
  width: 50%;
  height: 100%;
  background: -webkit-linear-gradient(
    left,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.3) 100%
  );
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.3) 100%
  );
  -webkit-transform: skewX(-25deg);
  transform: skewX(-25deg);
}
.img-effect:hover::before {
  -webkit-animation: shine 1s;
  animation: shine 1s;
}
@-webkit-keyframes shine {
  100% {
    left: 125%;
  }
}
@keyframes shine {
  100% {
    left: 125%;
  }
}
.fixbtn {
  background: transparent;
  border-radius: 0;
  border: none;
  padding: 0;
}
.fixanc {
  text-decoration: none;
}
.fixul {
  padding: 0;
  margin: 0;
}
.fixh,
.fixp {
  margin: 0;
}
.fixinput {
  box-shadow: none;
  outline: none;
}
.fixinput:focus,
.fixinput:active {
  outline: none;
  box-shadow: none;
}
.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}
/*lazyload*/
.lazy-img {
  transition: 0.3s;
}
.loading-img {
  background-color: #ddd !important;
  position: relative;
  overflow: hidden;
}
.loading-img img {
  opacity: 0 !important;
  -webkit-filter: blur(40px);
  filter: blur(40px);
}
.loaded-img img {
  opacity: 1;
  -webkit-filter: blur(0);
  filter: blur(0);
}
.slide_primary,
.slide_secondery,
.slide_white {
  position: relative;
  z-index: 1;
}
.slide_primary::before,
.slide_secondery::before,
.slide_white::before {
  content: "";
  width: 0;
  height: 100%;
  position: absolute;
  z-index: -1;
  transition: 0.3s ease;
  inset-inline-start: 50%;
  inset-inline-end: 50%;
}
.slide_primary::before {
  background-color: var(--primary-color);
}
.slide_secondery::before {
  background-color: var(--secondery-color);
}
.slide_white::before {
  background-color: var(--white-color);
}
.slide_primary:hover::before,
.slide_secondery:hover::before,
.slide_white:hover::before {
  width: 100%;
  inset-inline-start: 0;
  inset-inline-end: 0;
}
.slide_primary:hover {
  border-color: var(--primary-color) !important;
}
.slide_secondery:hover {
  border-color: var(--secondery-color) !important;
  color: var(--white-color) !important;
}
.slide_white:hover {
  border-color: var(--white-color) !important;
  color: var(--secondery-color) !important;
}
.header {
  padding: 14px 0;
  border-bottom: 1px solid #dde1e6;
}
.logo {
  width: 140px;
}
.nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-list {
  display: flex;
  align-items: center;
}
.nav-list > li {
  padding: 5px 12px;
}
.nav-list > li > a {
  font-size: 16px;
  color: var(--primary-color);
  font-weight: 500;
  text-decoration: none;
}
.nav-list > li > a:hover {
  color: var(--secondery-color);
}
.nav-tools {
  display: flex;
  align-items: center;
}
.nav-tools .language-cont {
  margin: 0 16px;
}
.language-cont .lang-anc {
  border-radius: 50%;
  width: 40px;
  height: 40px;
  border: 1px solid var(--secondery-color);
  font-size: 14px;
  color: var(--secondery-color);
  font-weight: 700;
  font-family: "Tajawal";
}
.language-cont .lang-anc:hover {
  background-color: var(--secondery-color);
  color: var(--white-color);
}
.contact_us .contact_anc {
  background-color: var(--secondery-color);
  color: var(--white-color);
  width: 192px;
  height: 48px;
  font-size: 16px;
  font-weight: 500;
  margin-inline-start: 16px;
  text-transform: uppercase;
  box-shadow: 0 0 0 5px transparent;
  animation: lightOnOff 1.5s infinite;
}
@keyframes lightOnOff {
  0% {
    box-shadow: 0 0 0 0 var(--secondery-color);
  }
  100% {
    box-shadow: 0 0 0 10px transparent;
  }
}
.contact_us .contact_anc:hover {
  box-shadow: none;
  animation: none;
}
.main-section {
  background-image: url("../images/back.jpg");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  padding: 124px 0;
}
.hero-sec {
  display: -ms-grid;
  display: grid;
  -ms-grid-template-columns: repeat(2, 1fr);
  grid-template-columns: repeat(2, 1fr);
  gap: 72px;
  align-items: center;
  justify-items: end;
}
.text-cont {
  position: relative;
}
.text-cont::after {
  content: url(../images/shape2.png);
  display: inline-block;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  inset-inline-start: calc(100% + 20px);
}
html[dir="rtl"] .text-cont::after
{
   transform: rotateY(180deg);
}
.hero-sec .title {
  font-size: 14px;
  color: var(--secondery-color);
  font-weight: 500;
}
.hero-sec .big-title {
  font-size: 72px;
  font-weight: 600;
  position: relative;
  margin-top: 4px;
  margin-bottom: 32px;
}
.hero-sec .big-title::after,
.services-head .title::after {
  content: url(../images/shape1.png);
  display: inline-block;
  position: absolute;
  bottom: -30px;
}
.hero-sec .big-title::after {
  inset-inline-start: 70px;
}
.hero-sec .description {
  font-size: 18px;
  color: #808080;
}
.hero-sec .explore-anc {
  width: 225px;
  height: 53px;
  background-color: transparent;
  border: 2px solid var(--secondery-color);
  font-size: 18px;
  color: var(--secondery-color);
  margin-top: 32px;
  margin-bottom: 48px;
}
.partners-title {
  font-size: 24px;
  font-weight: 500;
  color: #0d0d0d;
  margin-bottom: 20px;
}
.partners {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}
.partner-item {
  width: 100px;
  height: 100px;
  overflow: hidden;
  aspect-ratio: 100 / 100;
}
.partner-item > img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.hero-img {
  aspect-ratio: 420 / 600;
  max-width: 420px;
  width: 420px;
  border-top-left-radius: 500px;
  border-top-right-radius: 500px;
  overflow: hidden;
}
.scroll-down {
  margin-top: 48px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: fit-content;
}
.scroll-down > a {
  width: 22px;
  height: 35px;
  border: 1px solid var(--primary-color);
  border-radius: 17px;
  text-align: center;
  margin: auto;
  display: inline-block;
  margin-inline-end: 10px;
}
.scroll-down > a > i {
  color: var(--primary-color);
  position: relative;
  -webkit-animation-name: scr;
  -webkit-animation-duration: 1.5s;
  -webkit-animation-iteration-count: infinite;
  -webkit-animation-direction: reverse;
  animation-name: scr;
  animation-duration: 1.5s;
  animation-iteration-count: infinite;
  animation-direction: reverse;
  animation-timing-function: ease-in-out;
}
@keyframes scr {
  0% {
    top: -1px;
  }
  50% {
    top: 8px;
  }
  100% {
    top: -1px;
  }
}
.our-services {
  margin: 100px 0;
}
.services-head {
  margin-bottom: 48px;
}
.services-head .title {
  font-size: 48px;
  color: #0d0d0d;
  font-weight: 500;
  position: relative;
}
.services-head .title::after {
  inset-inline-start: 40px;
}
.services-head .description {
  font-size: 16px;
  font-weight: 600;
  text-align: justify;
}
.services-nav {
  justify-content: center;
  gap: 16px;
  margin-bottom: 30px;
}
.services-nav .nav-link {
  font-size: 16px;
  font-weight: 600;
  color: var(--secondery-color);
  border: 1px solid var(--secondery-color);
  border-radius: 8px;
}
.services-nav .nav-link:hover {
  background-color: var(--secondery-color);
  color: var(--white-color);
}
.service-item {
  position: relative;
}
.service-img {
  display: flex;
  aspect-ratio: 302 / 473;
  border-top-left-radius: 150px;
  border-top-right-radius: 150px;
  overflow: hidden;
  position: relative;
}
.service-img::after {
  content: "";
  display: inline-block;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
      0deg,
      rgba(255, 255, 255, 0.24) 0%,
      rgba(255, 255, 255, 0.24) 100%
    ),
    linear-gradient(180deg, rgba(222, 222, 222, 0) 0%, #dedede 100%);
  box-shadow: 0px 4px 27.3px 0px rgba(0, 0, 0, 0.06);
}
.service-name {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 24px;
  font-size: 20px;
  font-weight: 700;
  color: var(--primary-color);
  transition: 0.5s ease;
}
.service-desc
{
  position: absolute;
  width: 100%;
  height: 100%;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  text-align: center;
  transform: scale(0);
  visibility: hidden;
  opacity: 0;
  transform-origin: bottom left;
  transition: 0.5s ease;
  font-size: 16px;
  bottom: 0;
}
html[dir="rtl"].service-desc
{
  transform-origin: bottom right;
}
.service-item:hover .service-name {
  visibility: hidden;
  opacity: 0;
  transform: translateY(-100px);
}
.service-item:hover .service-desc
{
  transform: scale(1);
  visibility: visible;
  opacity: 1;
}
.custom-slider {
  position: relative;
}
.custom-slider .swiper-btns {
  gap: 16px;
  margin-top: 40px;
}
.custom-slider .swiper-btn {
  transition: 0.3s ease;
}
.our-services .custom-slider .swiper-btn,.packages-sec .custom-slider .swiper-btn {
  position: static;
  width: 40px;
  height: 40px;
  background-color: var(--secondery-color);
  border-radius: 50%;
  color: var(--white-color);
  font-size: 18px;
  margin-top: 0;
}
.our-services .custom-slider .swiper-btn:hover,.packages-sec .custom-slider .swiper-btn:hover {
  background-color: var(--primary-color);
}
html[dir="rtl"] .our-services .custom-slider .swiper-button-prev i:before,html[dir="rtl"] .packages-sec .custom-slider .swiper-button-prev i:before {
  content: "\f061";
}
html[dir="rtl"] .our-services .custom-slider .swiper-button-next i:before,html[dir="rtl"] .packages-sec .custom-slider .swiper-button-next i:before {
  content: "\f060";
}
.custom-slider .swiper-btn::after {
  display: none;
}
.team-section,
.faqs {
  background-image: url("../images/back.jpg");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  padding: 175px 0;
}
.section-head {
  text-align: center;
  margin-bottom: 60px;
}
.section-head .title {
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--primary-color);
}
.section-head .subtitle {
  font-size: 42px;
  font-weight: 700;
  text-transform: capitalize;
  color: #21272a;
  margin-top: 5px;
}
/****************packages****************/
.packages-sec
{
  margin: 153px 0;
}
.pkg-cont {
    display: flex;
    aspect-ratio: 356 / 680;;
}
.member-img {
  aspect-ratio: 308 / 361;
  border-top-left-radius: 150px;
  border-top-right-radius: 150px;
  overflow: hidden;
}
.member-details {
  text-align: center;
  margin-top: 16px;
}
.member-name {
  font-size: 18px;
  color: var(--primary-color);
}
.member-job {
  font-size: 18px;
  color: #697077;
  margin-top: 4px;
  margin-bottom: 10px;
}
.member-social {
  gap: 16px;
}
.member-social > li > a {
  font-size: 18px;
  color: #697077;
}
.member-social > li > a:hover {
  color: var(--secondery-color);
}
.testimonials {
  margin: 153px 0;
}
.testimonial-item {
  text-align: center;
  border: 1px solid #dde1e6;
  padding: 24px;
}
.rate i {
  color: #bdbdbd;
}
.rate i.active {
  color: #f5c74d;
}
.testimonial-txt {
  font-size: 15px;
  color: var(--primary-color);
  margin: 16px 0;
}
.user-icon {
  width: 48px;
  height: 48px;
  background-color: #f2f4f8;
  color: var(--primary-color);
  font-size: 24px;
  border-radius: 50%;
  margin: auto;
}
.user-name {
  font-size: 20px;
  font-weight: 700;
  margin-top: 16px;
}
.testimonials .swiper-btn {
  color: var(--primary-color);
  font-size: 24px;
}
.testimonials .swiper-button-next {
  right: -40px;
}
.testimonials .swiper-button-prev {
  left: -40px;
}
.testimonials .swiper-btn:hover {
  color: var(--secondery-color);
}
.faqs {
  padding: 104px 0;
}
.faqs .accordion-item {
  border-radius: var(--border-raduis);
  margin-bottom: 24px;
  border: unset;
}
.faqs .accordion-button {
  background-color: #f9f9fb;
  font-size: 18px;
  font-weight: 700;
  border: none;
  color: var(--primary-color);
  border-radius: unset;
  align-items: flex-start;
}
.faqs .accordion-item:first-of-type .accordion-button {
  border-radius: 0;
}
.faqs .accordion-button:focus {
  box-shadow: none;
}
.faqs .accordion-body {
  background-color: #f9f9fb;
  color: #808080;
  padding-top: 0;
  font-size: 16px;
}
.faqs .accordion-button:not(.collapsed) {
  box-shadow: none;
}
.faqs .accordion-button::after {
  width: 18px;
  height: 18px;
  background-size: 18px;
}
footer {
  background-color: #0b2a48;
  padding-top: 80px;
  position: relative;
}
footer .footer-logo {
  filter: brightness(0) invert(1);
}
.about-footer {
  color: var(--white-color);
  font-weight: 500;
  font-size: 16px;
  margin-top: 32px;
  margin-bottom: 24px;
}
footer .foot-title {
  font-size: 18px;
  color: var(--white-color);
  margin-bottom: 16px;
  font-weight: 500;
}
.contact-methods > li {
  display: flex;
  align-items: center;
}
.contact-methods > li:not(:last-child) {
  margin-bottom: 16px;
}
.contact-methods .contact-icon {
  font-size: 22px;
  color: var(--white-color);
  margin-inline-end: 12px;
}
.contact-methods .contact-info {
  font-size: 16px;
  color: var(--white-color);
}
.foot-list > li:not(:last-child) {
  margin-bottom: 14px;
}
.foot-list > li > a {
  font-size: 16px;
  color: var(--white-color);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  position: relative;
}
.foot-list > li > a::before {
  content: "\f101";
  font-family: "Line Awesome Free";
  font-weight: 900;
  font-size: 12px;
  margin-inline-end: 3px;
}
html[dir='rtl'] .foot-list > li > a::before
{
  content: "\f100";
}
.foot-list > li > a:hover {
  color: var(--secondery-color);
  transform: translateX(5px);
}
html[dir='rtl'] .foot-list > li > a:hover {
  transform: translateX(-5px);
}
.social-list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.social-list .social-anc {
  color: var(--white-color);
  font-size: 18px;
  margin-inline-end: 16px;
  margin-bottom: 10px;
  border-radius: 50%;
}
.social-list .social-anc:hover {
  color: var(--secondery-color);
}
.copy-rights {
  font-size: 14px;
  background-color: #335270;
  color: var(--white-color);
  text-align: center;
  padding: 22px 0;
  margin-top: 87px;
}
.not-found-content
{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 0;
}
.not-found-content .error-icon
{
    font-size: 100px;
    color: var(--secondery-color)
}
.not-found-content .error-text
{
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-color);
}
.page_404_error .title
{
    font-size: 32px;
    color: var(--primary-color);
    text-align: center;
    margin-top: 10px;
    margin-bottom: 20px;
}
.page_404_error .search-box
{
    margin: auto;
}

@media (max-width: 1199px) {
  .testimonials-slider .swiper-btns {
    display: none;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .nav-list > li > a {
    font-size: 12px;
  }
}

@media (min-width: 992px) {
  .main-nav .language-cont,.packages-sec .custom-slider .swiper-btns {
    display: none;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .foot-list > li > a,
  .contact-methods .contact-info {
    font-size: 10px;
  }
  footer .foot-title {
    font-size: 14px;
  }
  .about-footer {
    font-size: 12px;
  }
  .foot-list > li > a::before {
    font-size: 8px;
  }
  .contact-methods .contact-icon {
    font-size: 18px;
  }
}

@media (max-width: 991px) {
  .logo {
    max-width: 90px;
  }
  .footer-logo {
    max-width: 130px;
  }
  .contact_us .contact_anc {
    margin-inline-end: 0;
    height: 48px;
    font-size: 12px;
    width: 140px;
    height: 40px;
  }
  .active-sidenav {
    overflow: hidden;
  }
  .active-sidenav .header-content .container {
    width: 100%;
    max-width: 100%;
  }
  .menu-bar {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: var(--secondery-color);
    cursor: pointer;
    z-index: 9999;
    margin-inline-start: 10px;
    transition: 0.3s ease;
  }
  .menu-bar.nav_btn {
    background-color: transparent;
  }
  .bar1,
  .bar2,
  .bar3 {
    display: inline-block;
    width: 25px;
    height: 2px;
    background-color: var(--white-color);
    margin: 2px 0;
    transition: 0.4s;
  }
  .nav_btn .bar1,
  .nav_btn .bar2,
  .nav_btn .bar3 {
    background-color: var(--primary-color);
  }
  .nav_btn .bar1 {
    transform: translate(0, 7px) rotate(-45deg);
  }
  .nav_btn .bar2 {
    opacity: 0;
  }
  .nav_btn .bar3 {
    transform: translate(0, -5px) rotate(45deg);
  }
  .main-nav {
    height: 100%;
    width: 0px;
    position: fixed;
    z-index: 999;
    top: 0;
    inset-inline-start: 0;
    overflow: hidden;
    -webkit-transition: 0.5s ease;
    -o-transition: 0.5s ease;
    transition: 0.3s ease;
    padding-top: 90px;
    opacity: 0;
    visibility: hidden;
    overflow-y: auto;
    background-color: var(--white-color);
  }
  .main-nav.open-nav {
    width: 100%;
    opacity: 1;
    visibility: visible;
  }
  .nav-list {
    flex-direction: column;
    align-items: flex-start;
  }
  .nav-list > li {
    padding: 7px 20px;
  }
  .nav-list > li > a {
    font-size: 20px;
  }
  .nav-tools .language-cont {
    display: none;
  }
  .main-nav .language-cont {
    position: absolute;
    top: 16px;
    inset-inline-start: 18px;
  }
  .main-section {
    padding: 50px 0;
  }
  .hero-sec {
    -ms-grid-template-columns: repeat(1, 1fr);
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
    justify-items: center;
    text-align: center;
  }
  .hero-sec .explore-anc,
  .scroll-down {
    margin-left: auto;
    margin-right: auto;
  }
  .scroll-down {
    margin-top: 30px;
  }
  .hero-sec .big-title {
    font-size: 36px;
  }
  .hero-sec .description {
    font-size: 14px;
  }
  .text-cont::after {
    display: none;
  }
  .hero-img {
    order: 1;
  }
  .hero-sec .details {
    order: 2;
  }
  .partners {
    justify-content: center;
  }
  .hero-sec .big-title::after {
    left: 50%;
    transform: translateX(-50%);
  }
  .services-head .title {
    font-size: 24px;
    margin-bottom: 40px;
  }
  .services-head .description {
    font-size: 14px;
  }
  .services-nav .nav-link {
    font-size: 14px;
  }
  .service-name {
    font-size: 16px;
  }
  .section-head .title {
    font-size: 18px;
  }
  .section-head .subtitle {
    font-size: 20px;
  }
  .member-name {
    font-size: 14px;
  }
  .member-job {
    font-size: 12px;
  }
  .packages-sec,
  .testimonials {
    margin: 50px 0;
  }
  .team-section,
  .faqs {
    padding: 60px 0;
  }
  .section-head {
    margin-bottom: 30px;
  }
  .faqs .accordion-button {
    font-size: 14px;
  }
  .faqs .accordion-body {
    font-size: 12px;
  }

  .copy-rights {
    margin-top: 40px;
  }
    /***********************Not Found Page ************/
    .not-found-content .error-icon
    {
        font-size: 70px;
    }
    .not-found-content .error-text
    {
        font-size: 20px;
    }
    .page_404_error .title
    {
        font-size: 22px;
    }
}

@media (max-width: 767px) {
  .copy-rights {
    font-size: 11px;
  }
  .hero-img {
    order: 1;
    width: 300px;
  }
  .footer-logo {
    margin: auto;
  }
  .foot-links {
    margin: 20px 0;
    text-align: center;
  }
  footer .socials {
    text-align: center;
  }
  .social-list {
    justify-content: center;
  }
  .foot-list {
    max-height: none;
    flex-direction: row;
    justify-content: center;
  }
  .foot-list > li {
    padding: 10px;
  }
  .foot-list > li:not(:last-child) {
    margin-bottom: 0;
  }
  footer::before {
    display: none;
  }
  .about-footer {
    text-align: center;
  }
  .contact-methods {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}
