@font-face {
  font-family: "Dana";
  src: url("../fonts/DanaYadAlefAlefAlef-Normal.woff") format("truetype");
}
@font-face {
  font-family: "Levin";
  src: url("../fonts/GveretLevinAlefAlefAlef-Regular.woff") format("truetype");
}
@font-face {
  font-family: "Gadi";
  src: url("../fonts/gadi-almog-regular-aaa.woff") format("truetype");
}
* {
  direction: rtl;
}

body {
  font-family: "Open Sans", sans-serif;
  direction: rtl;
  text-align: center;
  color: #0c0c0c;
  background-color: #ffffff;
  overflow-x: hidden;
  font-family: "Heebo";
  -webkit-font-smoothing: antialiased;
}

h2 {
  font-size: 32px;
  font-weight: lighter;
  text-align: center;
}

h3 {
  font-size: 25px;
}

.service-cta {
  display: inline-block;
  margin-top: 16px;
}

span {
  font-size: 18px;
  font-weight: 300;
  color: #705858;
  line-height: 29px;
  text-align: center;
}
span .bold {
  font-weight: 800;
}

::selection {
  color: #ffffff;
  background-color: #D4A5A5;
}

ul,
li {
  padding: 0;
  margin: 0;
  list-style: none;
}

.fixedWhatsapp {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
  width: 50px;
  height: 50px;
  background: rgba(88, 157, 103, 0.5607843137);
  border-radius: 50px;
  padding: 3px;
}
.fixedWhatsapp a {
  font-size: 31px;
  color: #fff;
}

button,
.button {
  box-shadow: 0px 10px 15px -3px rgba(0, 0, 0, 0.1);
  margin-top: 15px;
  border: none;
  text-transform: uppercase;
  display: inline-block;
  padding: 10px;
  background-color: #D4A5A5;
  color: white;
  border-radius: 5px;
  transition: all 0.3s;
  border: none;
  max-width: 200px;
  margin: 30px auto 10px;
  font-weight: bold;
}

h1,
h2,
h3 {
  color: #705858;
  font-family: Alef;
  font-weight: 700;
}

.heading_container {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.heading_container p {
  margin-top: 10px;
  margin-bottom: 0;
}
.heading_container.heading_center {
  align-items: center;
  text-align: center;
}

a,
a:hover,
a:focus {
  text-decoration: none;
}

a:hover,
a:focus {
  color: initial;
}

.btn,
.btn:focus {
  outline: none !important;
  box-shadow: none;
}

/*header section*/
.logo {
  position: absolute;
  width: 120px;
  left: 50%;
  transform: translateX(-50%);
  top: 25px;
}
.logo img {
  width: 120px;
}

.hero-bg {
  padding: 90px 30px 50px;
  background-image: url("../assets/hero.jpg");
  background-size: cover;
  display: flex;
  flex-direction: column;
}
.hero-bg h2 {
  font-size: 32px;
}
.hero-bg span {
  font-size: 20px;
  line-height: 34px;
  margin: 10px auto 0;
  max-width: 420px;
}
.hero-bg .heart {
  margin: 0 auto 30px;
  width: 50px;
}
.hero-bg .heart img {
  width: 100%;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero_area {
  display: flex;
  flex-direction: column;
}

.header_section {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
}
.header_section .container-fluid {
  padding-right: 25px;
  padding-left: 25px;
}

/*end header section*/
/* hamburger button */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: rgba(255, 255, 255, 0.85);
  border: none;
  border-radius: 8px;
  cursor: pointer;
  padding: 10px;
  position: absolute;
  right: 20px;
  top: calc(50% + 12px);
  transform: translateY(-50%);
  z-index: 1001;
  box-shadow: 0 1px 6px rgba(0, 0, 0, 0.1);
}
.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: #705858;
  border-radius: 2px;
  transition: all 0.3s;
}
@media (max-width: 767px) {
  .hamburger {
    display: flex;
  }
}

/* mobile menu */
.mobile-menu {
  position: fixed;
  top: -100%;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(8px);
  z-index: 2000;
  transition: top 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  border-radius: 0;
}
.mobile-menu.open {
  top: 0;
}
.mobile-menu__close {
  position: absolute;
  top: -20px;
  right: 16px;
  background: transparent !important;
  border: none;
  box-shadow: none;
  font-size: 20px;
  cursor: pointer;
  color: #705858;
  padding: 4px;
}
.mobile-menu__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 50px 24px 28px;
  direction: rtl;
}
.mobile-menu__logo {
  width: 110px;
  object-fit: contain;
}
.mobile-menu__links {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
}
.mobile-menu__links a {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  color: #705858;
  text-decoration: none;
  padding: 10px 14px;
  border-radius: 10px;
  background: #f9f3f3;
}
.mobile-menu__links a i {
  color: #D4A5A5;
  font-size: 17px;
}
.mobile-menu__social {
  display: flex;
  gap: 16px;
}
.mobile-menu__social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #D4A5A5;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 18px;
  text-decoration: none;
}

.mobile-menu__backdrop {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
  z-index: 1999;
}
.mobile-menu__backdrop.open {
  display: block;
}

/* tribe section */
.tribe_section {
  position: relative;
  overflow: hidden;
  padding: 80px 20px;
  min-height: 520px;
  background: linear-gradient(160deg, #f9f0f0 0%, #f0f4f9 50%, #f4f0f9 100%);
}
@media (max-width: 767px) {
  .tribe_section {
    min-height: 70vh;
    padding: 60px 20px;
  }
}
.tribe_section video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: none;
}
.tribe_section video[src] {
  display: block;
}
.tribe_section #tribe-bg-image[src] {
  display: block !important;
}
.tribe_section .tribe_overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
}
.tribe_section .tribe_inner {
  position: relative;
  z-index: 2;
  max-width: 620px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}
.tribe_section .tribe_inner h2 {
  margin-bottom: 0;
  font-size: 36px;
  color: #fff;
}
.tribe_section .tribe_inner #tribe-subtitle {
  font-size: 20px;
  color: #f9d6e0;
  font-family: Alef;
  font-weight: 700;
  margin: 0;
}
.tribe_section .tribe_inner #tribe-description {
  font-size: 18px;
  color: #fff;
  line-height: 32px;
  max-width: 540px;
  margin: 0;
}
.tribe_section .tribe_inner ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.tribe_section .tribe_inner ul li span {
  font-size: 17px;
  color: #fff;
  font-weight: 600;
}
.tribe_section .tribe_inner .button {
  margin-top: 8px;
  font-size: 16px;
  padding: 12px 30px;
  max-width: 220px;
}

/* testimonials section */
.testimonials_section {
  padding: 40px 0;
}
.testimonials_section h2 {
  margin-bottom: 30px;
  padding: 0 20px;
}

.hscroll-track {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 10px 24px 20px;
  cursor: grab;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
}
.hscroll-track:active {
  cursor: grabbing;
}
.hscroll-track::-webkit-scrollbar {
  height: 4px;
}
.hscroll-track::-webkit-scrollbar-track {
  background: transparent;
}
.hscroll-track::-webkit-scrollbar-thumb {
  background: #D4A5A5;
  border-radius: 4px;
}
.hscroll-track img {
  height: 270px;
  width: auto;
  flex-shrink: 0;
  border-radius: 12px;
  object-fit: contain;
  background: #f9f3f3;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  user-select: none;
}
.hscroll-track img:hover {
  transform: scale(1.02);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

/* lightbox */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
  z-index: 9000;
  align-items: center;
  justify-content: center;
}
.lightbox.open {
  display: flex;
}
.lightbox__img {
  max-width: 90vw;
  max-height: 90vh;
  border-radius: 8px;
  object-fit: contain;
  user-select: none;
}
.lightbox__close, .lightbox__prev, .lightbox__next {
  position: absolute;
  background: rgba(255, 255, 255, 0.15);
  border: none;
  color: #fff;
  cursor: pointer;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  font-size: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.lightbox__close:hover, .lightbox__prev:hover, .lightbox__next:hover {
  background: rgba(255, 255, 255, 0.3);
}
.lightbox__close {
  top: 20px;
  right: 20px;
  font-size: 18px;
}
.lightbox__prev {
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
}
.lightbox__next {
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
}

.help_section {
  padding: 60px 15px;
  background: linear-gradient(180deg, #fbeeee 0%, #f1f7f2 50%, #f4f1fb 100%);
}
.help_section h3 {
  font-weight: 800;
}
.help_section li span {
  display: block;
  color: #705858;
  margin-top: 4px;
}
.help_section li span img {
  width: 34px;
  margin: 7px 0;
}
@media (min-width: 576px) {
  .help_section li span img {
    width: 24px;
  }
}
.help_section .box {
  position: relative;
  margin-top: 25px;
  background-color: #ffffff;
  border-radius: 10px;
  border-radius: 15px;
  overflow: hidden;
}
.help_section .box .img-box {
  background: #f1f2f3;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 190px;
  width: 190px;
  margin: 20px auto 0;
  border: 9px solid #D4A5A5;
  border-radius: 200px;
  overflow: hidden;
}
.help_section .box .img-box img {
  height: 100%;
  transition: all 0.2s;
}
.help_section .box .detail-box {
  padding: 25px 20px;
}
.help_section .box .detail-box p {
  font-size: 15px;
}
.help_section .box .detail-box h6 {
  margin-top: 10px;
}
.help_section .box:hover .img-box img {
  transform: scale(1.1);
}
@media (min-width: 576px) {
  .help_section .row.grid {
    flex-direction: column;
  }
  .help_section .row.grid .col-lg-3 {
    width: 100% !important;
    max-width: 100% !important;
  }
  .help_section .row.grid .innersec {
    display: flex;
    text-align: right;
  }
  .help_section .row.grid .innersec .detail-box {
    width: 75%;
  }
  .help_section .row.grid .innersec .detail-box ul {
    padding-left: 30px;
  }
  .help_section .row.grid .innersec .detail-box ul li {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 15px;
  }
  .help_section .row.grid .innersec .detail-box ul li span {
    text-align: right;
  }
  .help_section .row.grid .button {
    margin-top: 10px;
  }
}

.gift_section {
  padding: 30px 20px;
  background: linear-gradient(180deg, #5f7285 0%, #748da3 50%, #8fa6ba 100%);
}
.gift_section span {
  display: block;
  margin: 10px auto 0;
  color: #ffffff;
}
.gift_section h2 {
  color: #ffffff;
}
.gift_section .button {
  background-color: #ffffff;
  color: #705858;
}

.about_section {
  padding-top: 40px;
  position: relative;
  min-height: 500px;
  overflow: hidden;
  color: #fff;
}

.about_section {
  position: relative;
  min-height: 500px;
  padding-bottom: 50px;
  overflow: hidden;
  color: #fff;
}
.about_section > .container {
  position: relative;
  z-index: 1;
}
.about_section .about_section__bg {
  position: absolute;
  left: 0;
  right: 0;
  top: -20%;
  height: 140%;
  background: url("/assets/bgfixed.png") center/cover no-repeat;
  will-change: transform;
  z-index: 0;
  pointer-events: none;
}
@media (prefers-reduced-motion: reduce) {
  .about_section .about_section__bg {
    transform: none !important;
  }
}
.about_section .row {
  flex-direction: row-reverse;
}
.about_section .img-box {
  display: none;
  position: relative;
  justify-content: center;
  padding: 70px 50px;
}
@media (min-width: 576px) {
  .about_section .img-box {
    display: flex;
  }
}
.about_section .img-box img {
  width: 100%;
  max-width: 400px;
  position: relative;
  z-index: 2;
}
.about_section .detail-box {
  color: #705858;
  padding: 0 10px;
}
.about_section .detail-box h2 {
  color: #ffffff;
  font-weight: 500;
}
.about_section .detail-box h3 {
  margin-bottom: 10px;
  font-size: 30px;
}
.about_section .detail-box .sub {
  font-size: 20px;
  margin-bottom: 10px;
}
.about_section .detail-box span {
  font-size: 20px;
  color: #ffffff;
  font-weight: 300;
}
.about_section .detail-box .bigger {
  font-size: 21px;
  color: #D4A5A5;
  line-height: 33px;
  font-family: "Gadi";
  margin-top: 20px;
  display: block;
}
.about_section .detail-box a {
  display: inline-block;
  padding: 10px 45px;
  background-color: #ffbe33;
  color: #ffffff;
  border-radius: 45px;
  transition: all 0.3s;
  border: none;
  margin-top: 15px;
}

.footer_section {
  background-image: url(../assets/hero.jpg);
  background-size: cover;
  background-color: #F0EBF5;
  color: #ffffff;
  padding: 75px 0 40px 0;
  text-align: center;
}
.footer_section .footerLogo {
  margin: 0 auto 30px;
  width: 150px;
}
.footer_section .footerLogo img {
  width: 100%;
}
.footer_section h4 {
  font-size: 28px;
}
.footer_section h4,
.footer_section .footer-logo {
  font-weight: 600;
  margin-bottom: 20px;
  font-family: "Dancing Script", cursive;
}
.footer_section p {
  color: #dbdbdb;
}
.footer_section .footer-col {
  margin-bottom: 30px;
}
.footer_section .footer_contact .contact_link_box {
  display: flex;
  flex-direction: column;
}
.footer_section .footer_contact .contact_link_box span {
  font-size: 22px;
}
.footer_section .footer_contact .contact_link_box a {
  margin: 5px 0;
  color: #ffffff;
}
.footer_section .footer_contact .contact_link_box a i {
  margin-left: 10px;
  color: #D4A5A5;
  font-size: 20px;
}
.footer_section .footer-logo {
  display: block;
  font-weight: bold;
  font-size: 38px;
  line-height: 1;
  color: #ffffff;
}
.footer_section .footer_social {
  display: flex;
  justify-content: center;
  margin-top: 20px;
  margin-bottom: 10px;
}
.footer_section .footer_social a {
  background-color: #705858;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #F0EBF5;
  width: 30px;
  height: 30px;
  border-radius: 100%;
  border-radius: 100%;
  margin: 0 2.5px;
  font-size: 18px;
}
.footer_section .footer-info {
  text-align: center;
  margin-top: 25px;
}
.footer_section .footer-info a,
.footer_section .footer-info span {
  color: #705858;
}
.footer_section .footer-info a {
  text-decoration: underline;
}