 /* #f1f0ee */
 /* #c9bab2 */
 /* #4a4053 */
 body {
   font-family: "Fredoka", sans-serif;
   line-height: 1.6;
   background: #f1f0ee;
   overflow-x: hidden;
   font-size: 20px;
 }

 body:before {
   content: "";
   position: fixed;
   top: 0;
   left: 0;
   z-index: 99;
   right: 0;
   bottom: 0;
   background: rgba(0, 0, 0, 0.2);
   opacity: 0;
   visibility: hidden;
   -webkit-transition: .1s all ease;
   -o-transition: .1s all ease;
   transition: .1s all ease;
 }

 body.offcanvas-menu:before {
   opacity: 1;
   visibility: visible;
 }

 /* Falling Stars */
 .stars {
   position: fixed;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   pointer-events: none;
 }

 .star {
   position: absolute;
   width: 2px;
   height: 2px;
   border-radius: 50%;
   animation: fall linear infinite, twinkle ease-in-out infinite;
   opacity: 0;
   box-shadow:
     0 0 4px #c9bab2,
     0 0 8px #4a4053,
     0 0 12px #c9bab2,
     0 0 16px #c9bab2;
 }

 @keyframes fall {
   0% {
     transform: translateY(-100vh) translateX(0) rotate(0deg);
     opacity: 1;
   }

   100% {
     transform: translateY(100vh) translateX(30px) rotate(360deg);
     opacity: 0;
   }
 }

 @keyframes twinkle {

   0%,
   100% {
     opacity: 0.3;
   }

   50% {
     opacity: 1;
   }
 }

 .cursor-follower {
   width: 60px;
   height: 60px;
   position: fixed;
   pointer-events: none;
   transition: transform 0.15s ease;
   z-index: 1000;
   display: flex;
   justify-content: center;
   align-items: center;
   opacity: 70%;
 }

 .cursor-icon {
   /* סגנונות עבור התמונה עצמה */
   transform: rotate(-80deg);
 }

 .cursor-icon {
   width: 80%;
   /* Adjust size as needed */
   height: 80%;
   /* Adjust size as needed */
   display: block;
   /* Remove default bottom margin */
 }

 .text-black {
   color: #4a4053 !important;
 }

 .text-secondary {
   color: #4a4053 !important;
 }

 .bg-primary-light {
   background-color: rgba(3, 137, 255, 0.05);
 }

 .bg-secondary-light {
   background-color: rgba(0, 0, 0, 0.05);
 }

 a {
   color: #c9bab2;
   -webkit-transition: .1s all ease;
   -o-transition: .1s all ease;
   transition: .1s all ease;
 }

 a:hover {
   color: #c9bab2;
   text-decoration: none;
 }

 ::-moz-selection {
   background: #4a4053;
   color: #ffffff;
 }

 ::selection {
   background: #4a4053;
   color: #ffffff;
 }

 .text-primary {
   color: #c9bab2 !important;
 }

 a.text-primary {
   color: #c9bab2 !important;
 }

 a.text-primary:hover {
   color: #c9bab2 !important;
 }

 h1,
 .h1,
 h2,
 .h2,
 h3,
 .h3,
 h4,
 .h4 {
   font-family: "Fredoka", sans-serif;
   color: #4a4053;
 }

 .whatsapp-widget {
   position: fixed;
   bottom: 20px;
   left: 20px;
   /* Changed to left for RTL */
   z-index: 1000;
 }

 .whatsapp-button {
   background-color: #c9bab2 !important;
   border: none;
   border-radius: 50%;
   width: 50px;
   height: 50px;
   display: flex;
   align-items: center;
   justify-content: center;
   cursor: pointer;
   box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2) !important;
   transition: transform 0.2s ease-in-out;
 }

 .whatsapp-button a {
   font-size: 35px;
   color: #4a4053 !important;
 }

 .whatsapp-button:hover {
   transform: scale(1.2);
 }

 .whatsapp-popup {
   display: none;
   position: absolute;
   bottom: 70px;
   left: 0;
   /* Changed to left for RTL */
   width: 250px;
   background-color: #f1f0ee !important;
   border-radius: 8px;
   box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2) !important;
   padding: 15px;
   text-align: right;
 }

 .whatsapp-popup.active {
   display: block;
 }

 .popup-header {
   display: flex;
   align-items: center;
   justify-content: space-between;
   margin-bottom: 10px;
   padding-bottom: 10px;
   border-bottom: 1px solid #eee !important;
 }

 .close-button {
   background-color: transparent;
   border: none;
   font-size: 25px;
   color: #555;
   cursor: pointer;
   margin-left: -5px;
   margin-top: -30px;
   padding: 0;
 }

 .close-button:hover {
   transform: scale(1.2);
   color: #4a4053;
 }

 .header-content {
   display: flex;
   align-items: center;
   gap: 10px;
   padding-right: 10px;
 }

 .profile-image {
   width: 70px;
   height: 70px;
   border-radius: 50%;
   object-fit: cover;
   margin: -15px -10px -20px 0;
   mix-blend-mode: multiply;
   transform: scaleX(-1);
 }


 .header-text {
   display: flex;
   flex-direction: column;
   text-align: right;
   margin-right: -15px;
 }

 .name {
   font-weight: bold;
   color: #333;
   font-size: 14px;
 }

 .subtitle {
   font-size: 14px;
   color: #666;
 }


 .popup-body {
   text-align: right;
 }

 .message-input-area {
   margin-bottom: 10px;
   font-size: 15px;
 }

 .message-input-area input {
   width: 100%;
   padding: 10px;
   border: 1px solid #ddd;
   border-radius: 5px;
   box-sizing: border-box;
   text-align: right;
 }



 .start-chat-button {
   display: inline-block;
   background-color: #c9bab2;
   color: #fff;
   font-weight: bold;
   font-size: 15px;
   padding: 10px 15px;
   text-decoration: none;
   border-radius: 5px;
   margin-top: 10px;
   transition: background-color 0.1s ease;
   text-align: center;
   width: 100%;
 }

 .start-chat-button:hover {
   background-color: #4a4053 !important;
   color: #c9bab2 !important;
 }

 .btn {
   background-color: #4a4053;
   width: 230px !important;
   padding-top: 14px !important;
   padding-bottom: 14px !important;
   padding-left: 20px !important;
   padding-right: 20px !important;
   border-top-left-radius: 40px !important;
   border-bottom-right-radius: 40px !important;
   font-size: 20px !important;
   border: 1px solid transparent !important;
 }

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

 .btn.btn-black {
   background: #4a4053 !important;
   color: #ffffff !important;
 }

 .btn.btn-black:hover {
   border-color: #4a4053 !important;
   background: transparent !important;
   color: #4a4053 !important;
 }

 .btn.btn-outline-black {
   background-color: #4a4053;
   color: #f1f0ee;
   border-color: #4a4053;
 }

 .btn.btn-outline-black:hover {
   border-color: #4a4053 !important;
   background: #f1f0ee !important;
   color: #4a4053 !important;
 }

 .btn-accessibility {
   background-color: #4a4053 !important;
   color: #f1f0ee !important;
 }

 .btn-accessibility:hover {
   border-color: #4a4053 !important;
   background: #f1f0ee !important;
   color: #4a4053 !important;
 }

 .form-control {
   border: none;
   font-size: 16px;
   height: 45px;
   padding-left: 0;
   padding-right: 0;
   background: transparent;
   border-bottom: 1px solid #43434d;
   border-radius: 0;
 }

 .form-control:active,
 .form-control:focus {
   border-color: #c9bab2;
   -webkit-box-shadow: none;
   box-shadow: none;
   background: transparent;
 }

 .gutter-v1 {
   margin-right: -20px;
   margin-left: -20px;
 }

 @media (max-width: 991.98px) {
   .gutter-v1 {
     margin-left: -15px;
     margin-right: -15px;
   }
 }

 .gutter-v1>.col,
 .gutter-v1>[class*="col-"] {
   padding-right: 20px;
   padding-left: 20px;
 }

 @media (max-width: 991.98px) {

   .gutter-v1>.col,
   .gutter-v1>[class*="col-"] {
     padding-right: 15px;
     padding-left: 15px;
   }
 }

 .gutter-v2 {
   margin-right: -5px;
   margin-left: -5px;
 }

 @media (max-width: 991.98px) {
   .gutter-v2 {
     margin-left: -15px;
     margin-right: -15px;
   }
 }

 .gutter-v2>.col,
 .gutter-v2>[class*="col-"] {
   padding-right: 5px;
   padding-left: 5px;
 }

 @media (max-width: 991.98px) {

   .gutter-v2>.col,
   .gutter-v2>[class*="col-"] {
     padding-right: 15px;
     padding-left: 15px;
   }
 }

 .gutter-v3 {
   margin-right: -40px;
   margin-left: -40px;
 }

 @media (max-width: 991.98px) {
   .gutter-v3 {
     margin-left: -15px;
     margin-right: -15px;
   }
 }

 .gutter-v3>.col,
 .gutter-v3>[class*="col-"] {
   padding-right: 40px;
   padding-left: 40px;
 }

 @media (max-width: 991.98px) {

   .gutter-v3>.col,
   .gutter-v3>[class*="col-"] {
     padding-right: 15px;
     padding-left: 15px;
   }
 }

 .spinner-border {
   color: #c9bab2;
 }

 /*PRELOADING------------ */
 #overlayer {
   width: 100%;
   height: 100%;
   position: fixed;
   z-index: 7100;
   background: #ffffff;
   top: 0;
   left: 0;
   right: 0;
   bottom: 0;
 }

 .loader {
   z-index: 7700;
   position: fixed;
   top: 50%;
   left: 50%;
   -webkit-transform: translate(-50%, -50%);
   -ms-transform: translate(-50%, -50%);
   transform: translate(-50%, -50%);
 }

 .logo img {
   width: 150px;
   margin-top: -20px;
 }

 .site-nav {
   position: absolute;
   width: 100%;
   z-index: 1;
 }

 .site-nav .nav-box {
   border: 2px solid #c9bab2;
   width: 45px;
   height: 45px;
   border-top-left-radius: 20px;
   border-bottom-right-radius: 20px;
 }

 .site-nav a {
   position: relative;
   z-index: 9;
   cursor: pointer;
 }

 .site-nav {
   /* padding-top: 10px; */
   padding-bottom: 10px;
 }

 .site-nav h1 {
   margin: 0;
   padding: 0;
   font-size: 24px;
 }

 /* .site-nav .site-navigation .site-menu {
   margin-bottom: 0;
 } */

 .site-nav .site-navigation .site-menu>li {
   display: inline-block;
 }

 .site-nav .site-navigation .site-menu>li>a {
   font-size: 14px;
   padding: 10px 15px;
   display: inline-block;
   text-decoration: none !important;
   color: rgba(255, 255, 255, 0.5);
   position: relative;
   font-weight: 700;
 }

 .site-nav .site-navigation .site-menu>li>a:hover {
   color: #ffffff;
 }

 .site-nav .site-navigation .site-menu>li.cta-button a {
   padding: 5px 22px;
   border: 1px solid rgba(0, 0, 0, 0.1);
   color: #4a4053;
   border-radius: 30px;
 }

 .site-nav .site-navigation .site-menu>li.cta-button a:hover {
   color: #ffffff;
   background: #ffffff;
   border-color: #ffffff;
 }

 .site-nav .site-navigation .site-menu>li.cta-button.active a {
   color: #4a4053;
   background: #ffffff;
   border-color: #ffffff;
 }

 .site-nav .site-navigation .site-menu>li.active>a {
   color: #ffffff;
 }

 .site-nav .site-navigation .site-menu .has-children {
   position: relative;
 }

 .site-nav .site-navigation .site-menu .has-children>a {
   position: relative;
   padding-right: 20px;
 }

 .site-nav .site-navigation .site-menu .has-children>a:before {
   position: absolute;
   content: "\e313";
   font-size: 14px;
   top: 50%;
   right: 0;
   -webkit-transform: translateY(-50%);
   -ms-transform: translateY(-50%);
   transform: translateY(-50%);
   font-family: 'icomoon';
 }

 .site-mobile-menu-close {
   display: block;
   position: relative;
   height: 30px;
   width: 30px;
   z-index: 99;
   right: 50px;
   cursor: pointer;
   top: -15px;
 }

 .site-mobile-menu-close>span {
   cursor: pointer;
   display: block;
   position: absolute;
   height: 30px;
   width: 30px;
 }

 .site-mobile-menu-close>span:before,
 .site-mobile-menu-close>span:after {
   position: absolute;
   content: "";
   width: 2px;
   height: 30px;
   background: #4a4053;
 }

 .site-mobile-menu-close>span:before {
   -webkit-transform: rotate(45deg);
   -ms-transform: rotate(45deg);
   transform: rotate(45deg);
 }

 .site-mobile-menu-close>span:after {
   -webkit-transform: rotate(-45deg);
   -ms-transform: rotate(-45deg);
   transform: rotate(-45deg);
 }

 .site-mobile-menu {
   background: transparent;
   backdrop-filter: blur(8px);
   width: 250px;
   position: fixed;
   right: 0;
   z-index: 2000;
   padding-top: 30px;
   height: calc(100vh);
   border-bottom-left-radius: 40px;
   text-align: right;
   -webkit-transform: translateX(100%);
   -ms-transform: translateX(100%);
   transform: translateX(100%);
   -webkit-transition: 0.8s all cubic-bezier(0.23, 1, 0.32, 1);
   -o-transition: 0.8s all cubic-bezier(0.23, 1, 0.32, 1);
   transition: 0.8s all cubic-bezier(0.23, 1, 0.32, 1);
 }

 .offcanvas-menu .site-mobile-menu {
   -webkit-box-shadow: -10px 0 20px -10px rgba(0, 0, 0, 0.1);
   box-shadow: -10px 0 20px -10px rgba(0, 0, 0, 0.1);
   -webkit-transform: translateX(0%);
   -ms-transform: translateX(0%);
   transform: translateX(0%);
 }

 .site-mobile-menu .site-mobile-menu-header {
   width: 100%;
   float: left;
   padding-left: 20px;
   padding-right: 20px;
 }

 .site-mobile-menu .site-mobile-menu-header .site-mobile-menu-close {
   float: left;
   margin-top: 8px;
 }

 .site-mobile-menu .site-mobile-menu-header .site-mobile-menu-close span {
   font-size: 30px;
   display: inline-block;
   padding-left: 10px;
   padding-right: 0px;
   line-height: 1;
   cursor: pointer;
   -webkit-transition: .1s all ease;
   -o-transition: .1s all ease;
   transition: .1s all ease;
 }
/* 
 .site-mobile-menu .site-mobile-menu-header .site-mobile-menu-logo {
   float: left;
   margin-top: 10px;
   margin-left: 0px;
 } */

 /* .site-mobile-menu .site-mobile-menu-header .site-mobile-menu-logo a {
   display: inline-block;
   text-transform: uppercase;
 } */

 /* .site-mobile-menu .site-mobile-menu-header .site-mobile-menu-logo a img {
   max-width: 70px;
 } */

 /* .site-mobile-menu .site-mobile-menu-header .site-mobile-menu-logo a:hover {
   text-decoration: none;
 } */

 .site-mobile-menu .site-mobile-menu-body {
   overflow-y: scroll;
   -webkit-overflow-scrolling: touch;
   position: relative;
   padding: 0 20px 20px 20px;
   height: calc(100vh - 52px);
   padding-bottom: 150px;
 }

 .site-mobile-menu .site-nav-wrap {
   padding: 0;
   margin: 0;
   list-style: none;
   position: relative;
 }

 .site-mobile-menu .site-nav-wrap a {
   padding: 8px 20px;
   display: block;
   position: relative;
   color: #4a4053;
 }

 .site-mobile-menu .site-nav-wrap a.active,
 .site-mobile-menu .site-nav-wrap a:hover {
   background-color: #f1f0ee;
   border-radius: 20px;
 }

 .site-mobile-menu .site-nav-wrap li {
   position: relative;
   display: block;
 }

 .site-mobile-menu .site-nav-wrap li.active>a {
   color: #c9bab2;
 }

 .site-mobile-menu .site-nav-wrap .arrow-collapse {
   position: absolute;
   right: 0px;
   top: 0px;
   z-index: 20;
   width: 36px;
   height: 36px;
   text-align: center;
   cursor: pointer;
   border-radius: 50%;
   border: 1px solid #f8f9fa;
 }

 .site-mobile-menu .site-nav-wrap .arrow-collapse:before {
   font-size: 14px;
   z-index: 20;
   font-family: "icomoon";
   content: "\e313";
   position: absolute;
   top: 50%;
   left: 50%;
   -webkit-transform: translate(-50%, -50%) rotate(-180deg);
   -ms-transform: translate(-50%, -50%) rotate(-180deg);
   transform: translate(-50%, -50%) rotate(-180deg);
   -webkit-transition: .1s all ease;
   -o-transition: .1s all ease;
   transition: .1s all ease;
 }

 .site-mobile-menu .site-nav-wrap .arrow-collapse.collapsed:before {
   -webkit-transform: translate(-50%, -50%);
   -ms-transform: translate(-50%, -50%);
   transform: translate(-50%, -50%);
 }

 .site-mobile-menu .site-nav-wrap>li {
   display: block;
   position: relative;
   float: left;
   width: 100%;
 }

 .site-mobile-menu .site-nav-wrap>li>a {
   padding-left: 20px;
   font-size: 19px;
   font-weight: bolder;
 }

 .site-mobile-menu .site-nav-wrap>li>ul {
   padding: 0;
   margin: 0;
   list-style: none;
 }

 .site-mobile-menu .site-nav-wrap>li>ul>li {
   display: block;
 }

 .site-mobile-menu .site-nav-wrap>li>ul>li>a {
   padding-left: 40px;
   font-size: 14px;
 }

 .site-mobile-menu .site-nav-wrap>li>ul>li>ul {
   padding: 0;
   margin: 0;
 }

 .site-mobile-menu .site-nav-wrap>li>ul>li>ul>li {
   display: block;
 }

 .site-mobile-menu .site-nav-wrap>li>ul>li>ul>li>a {
   font-size: 14px;
   padding-left: 60px;
 }

 .sticky-wrapper {
   position: absolute;
   z-index: 100;
   width: 100%;
 }

 .sticky-wrapper .site-navbar {
   -webkit-transition: .1s all ease;
   -o-transition: .1s all ease;
   transition: .1s all ease;
 }

 .sticky-wrapper .site-navbar .site-menu-toggle {
   color: #4a4053;
 }

 .sticky-wrapper .site-navbar .site-logo a {
   color: #4a4053;
 }

 .sticky-wrapper .site-navbar .site-menu>li>a {
   color: rgba(0, 0, 0, 0.8) !important;
 }

 .sticky-wrapper .site-navbar .site-menu>li>a:hover,
 .sticky-wrapper .site-navbar .site-menu>li>a.active {
   color: #4a4053 !important;
 }

 .sticky-wrapper.is-sticky .burger:before,
 .sticky-wrapper.is-sticky .burger span,
 .sticky-wrapper.is-sticky .burger:after {
   background: #4a4053;
   -webkit-transition: .0s all ease;
   -o-transition: .0s all ease;
   transition: .0s all ease;
 }

 .sticky-wrapper.is-sticky .site-navbar {
   background: #4a4053;
   border-bottom: 1px solid transparent;
   -webkit-box-shadow: 4px 0 20px -5px rgba(0, 0, 0, 0.1);
   box-shadow: 4px 0 20px -5px rgba(0, 0, 0, 0.1);
 }

 .sticky-wrapper.is-sticky .site-navbar .site-logo a {
   color: #4a4053 !important;
 }

 .sticky-wrapper.is-sticky .site-navbar .site-menu>li>a {
   color: #4a4053 !important;
 }

 .sticky-wrapper.is-sticky .site-navbar .site-menu>li>a:hover,
 .sticky-wrapper.is-sticky .site-navbar .site-menu>li>a.active {
   color: #c9bab2 !important;
 }

 .sticky-wrapper.is-sticky .site-navbar .site-menu>li.active a {
   color: #c9bab2 !important;
 }

 .sticky-wrapper .shrink {
   padding-top: 0px !important;
   padding-bottom: 0px !important;
 }
/* עטיפת התפריט */
.dropdown-dresses {
  position: relative;
}

/* טקסט של הכותרת */
.dropdown-dresses-label {
  cursor: pointer;
  font-size: 19px !important;
  margin-right: 18px;
  font-weight: bolder !important;
  color: #4a4053 !important;
  display: flex;
  align-items: center;
  gap: 5px;
}

/* החץ */
.dropdown-dresses-arrow {
  display: inline-block;
  transition: transform 0.3s ease-in-out;
}

/* תפריט נפתח */
.dropdown-dresses-menu {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-in-out, padding 0.3s;
  list-style: none;
  background-color: #f1f0ee;
  border-radius: 8px;
  margin: 0;
  padding: 0;
  /* position: absolute;
  top: 100%;
  right: 10px;
  z-index: 99; */
  width: 200px;
  height: 25vh;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

/* פריטי תפריט */
.dropdown-dresses-menu li a {
  display: block;
  color: #4a4053;
  font-size: 16px !important;
  text-decoration: none;
  margin-right: 15px;
  margin-bottom: 5px;
}

.dropdown-dresses-menu li a:hover {
  background-color: #f6e7e0;
  font-weight: bold;
}

/* פתיחה + סיבוב */
#dropdown-dresses-toggle:checked + .dropdown-dresses-label .dropdown-dresses-arrow {
  transform: rotate(180deg);
}

#dropdown-dresses-toggle:checked ~ .dropdown-dresses-menu {
  max-height: 500px;
  padding: 10px 0;
}

 #accessibilityModalRTL {
   z-index: 9999;
   direction: rtl;
 }

 .modal-content {
   direction: rtl !important;
   margin-top: 30px;
   background-color: #f1f0ee !important;
 }

 .modal-header h4 {
   margin: auto;
   color: #4a4053;
   text-decoration-line: underline;
 }

 .modal-footer .btn {
   margin: auto;
 }

 .modal-footer .btn:hover {
   background-color: #fff;
   color: #4a4053;
 }

 .start-chat-button-footer {
   color: #4a4053;
   padding: 10px 15px;
   font-size: 14px;
   border-radius: 5px;
   text-decoration: none;
   display: inline-block;
   text-align: center;
   font-weight: bold;
   transition: background 0.3s;
 }

 .whatsapp-icon {
   max-width: 20px;
 }

 /* Burger */
 .burger {
   width: 28px;
   height: 32px;
   cursor: pointer;
   position: relative;
 }

 .burger.light:before,
 .burger.light span,
 .burger.light:after {
   background: #ffffff;
 }

 .burger:before,
 .burger span,
 .burger:after {
   width: 100%;
   height: 2px;
   display: block;
   background: #c9bab2;
   /* border-radius: 2px; */
   position: absolute;
   opacity: 1;
 }

 .burger:before,
 .burger:after {
   -webkit-transition: top 0.35s cubic-bezier(0.23, 1, 0.32, 1), opacity 0.35s cubic-bezier(0.23, 1, 0.32, 1), background-color 1.15s cubic-bezier(0.86, 0, 0.07, 1), -webkit-transform 0.35s cubic-bezier(0.23, 1, 0.32, 1);
   transition: top 0.35s cubic-bezier(0.23, 1, 0.32, 1), opacity 0.35s cubic-bezier(0.23, 1, 0.32, 1), background-color 1.15s cubic-bezier(0.86, 0, 0.07, 1), -webkit-transform 0.35s cubic-bezier(0.23, 1, 0.32, 1);
   -o-transition: top 0.35s cubic-bezier(0.23, 1, 0.32, 1), transform 0.35s cubic-bezier(0.23, 1, 0.32, 1), opacity 0.35s cubic-bezier(0.23, 1, 0.32, 1), background-color 1.15s cubic-bezier(0.86, 0, 0.07, 1);
   transition: top 0.35s cubic-bezier(0.23, 1, 0.32, 1), transform 0.35s cubic-bezier(0.23, 1, 0.32, 1), opacity 0.35s cubic-bezier(0.23, 1, 0.32, 1), background-color 1.15s cubic-bezier(0.86, 0, 0.07, 1);
   transition: top 0.35s cubic-bezier(0.23, 1, 0.32, 1), transform 0.35s cubic-bezier(0.23, 1, 0.32, 1), opacity 0.35s cubic-bezier(0.23, 1, 0.32, 1), background-color 1.15s cubic-bezier(0.86, 0, 0.07, 1), -webkit-transform 0.35s cubic-bezier(0.23, 1, 0.32, 1);
   -webkit-transition: top 0.35s cubic-bezier(0.23, 1, 0.32, 1), -webkit-transform 0.35s cubic-bezier(0.23, 1, 0.32, 1), opacity 0.35s cubic-bezier(0.23, 1, 0.32, 1), background-color 1.15s cubic-bezier(0.86, 0, 0.07, 1);
   content: "";
 }

 .burger:before {
   top: 4px;
 }

 .burger span {
   top: 15px;
 }

 .burger:after {
   top: 26px;
 }

 /* Hover */
 .burger:hover:before {
   top: 7px;
 }

 .burger:hover:after {
   top: 23px;
 }

 /* Click */
 .burger.active span {
   opacity: 0;
 }

 .burger.active:before,
 .burger.active:after {
   top: 40%;
 }

 .burger.active:before {
   -webkit-transform: rotate(45deg);
   -moz-transform: rotate(45deg);
   filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=5);
   /*for IE*/
 }

 .burger.active:after {
   -webkit-transform: rotate(-45deg);
   -moz-transform: rotate(-45deg);
   filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=-5);
   /*for IE*/
 }

 .burger:focus {
   outline: none;
 }

 .untree_co-section {
   padding: 7rem 0;
 }

 .untree_co-section .heading,
 .untree_co-section .subheading {
   color: #4a4053;
 }

 .untree_co-section .heading strong,
 .untree_co-section .subheading strong {
   color: #c9bab2;
   font-weight: 700;
   font-size: 55px;
   letter-spacing: 1px;
   font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif
 }

 .untree_co-section .heading {
   font-size: 40px;
 }

 .untree_co-section .subheading {
   font-size: 22px;
   font-weight: 400;
   font-family: "Fredoka", sans-serif;
 }

 .section-heading {
   font-size: 30px;
   color: #4a4053;
 }

 .item {
   text-align: right;
   border: none;
   margin-bottom: 30px;
   border-radius: 4px;
 }

 .item p {
   direction: rtl;
 }

 .item a {
   display: block;
   overflow: hidden;
   position: relative;
   border-radius: 4px;
 }

 .item a img {
   position: relative;
   -webkit-transform: scale(1);
   -ms-transform: scale(1);
   transform: scale(1);
   -webkit-transition: .1s all ease-in-out;
   -o-transition: .1s all ease-in-out;
   transition: .1s all ease-in-out;
 }

 .item .item-wrap {
   display: block;
   position: relative;
 }

 .item .item-wrap:after {
   z-index: 2;
   position: absolute;
   content: "";
   top: 0;
   left: 0;
   right: 0;
   bottom: 0;
   background: rgba(0, 0, 0, 0.4);
   visibility: hidden;
   opacity: 0;
   -webkit-transition: .1s all ease-in-out;
   -o-transition: .1s all ease-in-out;
   transition: .1s all ease-in-out;
 }

 .item .item-wrap>span {
   position: absolute;
   top: 50%;
   left: 50%;
   z-index: 3;
   -webkit-transform: translate(-50%, -50%) scale(0);
   -ms-transform: translate(-50%, -50%) scale(0);
   transform: translate(-50%, -50%) scale(0);
   color: #ffffff;
   font-size: 1.7rem;
   opacity: 0;
   visibility: hidden;
   -webkit-transition: .1s all ease;
   -o-transition: .1s all ease;
   transition: .1s all ease;
 }

 .item .item-wrap:hover:after {
   opacity: 1;
   visibility: visible;
 }

 .item .item-wrap:hover span {
   margin-top: 0px;
   opacity: 1;
   visibility: visible;
   -webkit-transform: translate(-50%, -50%) scale(1);
   -ms-transform: translate(-50%, -50%) scale(1);
   transform: translate(-50%, -50%) scale(1);
 }

 .item:hover a img {
   -webkit-transform: scale(0.50);
   -ms-transform: scale(0.50);
   transform: scale(0.50);
   -webkit-transition: .1s all ease-in-out;
   -o-transition: .1s all ease-in-out;
   transition: .1s all ease-in-out;
 }

 .gsap-reveal-img {
   line-height: 0;
 }

 .gsap-reveal-img .reveal-wrap {
   position: relative;
   overflow: hidden;
   display: inline-block;
 }

 .gsap-reveal-img .reveal-wrap .cover {
   position: absolute;
   top: 0;
   right: 0;
   width: 100%;
   height: 100%;
   background: #eeeeee;
   margin-right: -100%;
   z-index: 9;
 }

 .gsap-reveal-img .reveal-wrap .reveal-content {
   opacity: 1;
   visibility: visible;
   position: relative;
   display: inline-block;
   /* Added display for content width */
 }

 .gsap-reveal-img .reveal-wrap .reveal-content .portfolio-item-content h3 {
   margin-bottom: 10px;
   font-size: 16px;
   font-weight: bold;
 }

 .gsap-reveal {
   position: relative;
   display: inline-block;
   overflow: hidden;
 }

 @media (max-width: 991.98px) {
   .gsap-reveal.gsap-reveal-filter {
     overflow: visible !important;
   }
 }

 .gsap-reveal .cover {
   position: absolute;
   top: 0;
   left: 0;
   right: 0;
   bottom: 0;
   background: black;
 }

 .gsap-reveal-hero {
   line-height: 0;
   color: #4a4053;
 }

 .gsap-reveal-hero .reveal-wrap {
   position: relative;
   overflow: hidden;
   display: inline-block;
   /* Added display for content width */
 }

 .gsap-reveal-hero .reveal-wrap .cover {
   position: absolute;
   top: 0;
   right: 0;
   width: 100%;
   height: 100%;
   background: #eeeeee;
   z-index: 2;
 }

 .gsap-reveal-hero .reveal-wrap .reveal-content {
   line-height: 1.5;
   z-index: 1;
   display: inline-block;
   -webkit-transform: translateX(0);
   -ms-transform: translateX(0);
   transform: translateX(0);
   position: relative;
 }

 /* circle progress bar*/
 .progressbar {
   display: inline-block;
   margin: 25px;
 }

 .progressbar .caption {
   font-size: 14px;
 }

 .progressbar .number {
   font-size: 16px;
 }

 .circle {
   width: 100%;
   margin: 0 auto;
   margin-top: 10px;
   display: inline-block;
   position: relative;
   text-align: center;
 }

 .circle canvas {
   vertical-align: middle;
   margin-bottom: 20px;
 }

 .circle div {
   position: absolute;
   top: 30px;
   left: 0;
   width: 100%;
   text-align: center;
   line-height: 40px;
   font-size: 20px;
 }

 .circle strong i {
   font-style: normal;
   font-size: 0.6em;
   font-weight: normal;
 }

 .circle span {
   display: block;
   margin-top: 12px;
 }

 .wave {
   margin-bottom: 10px;
 }

 .wave svg {
   width: 100px;
   height: 20px;
 }

 .wave path {
   stroke: #c9bab2;
   stroke-width: 2px;
   stroke-linecap: round;
   fill: none;
 }

 .testimonial-wrap .owl-stage-outer {
   padding-top: 5rem;
   padding-bottom: 5rem;
 }

 .testimonial-v1 {
   /* box-shadow:  0 1px 4px  rgba(0,0,0,0.16),inset 0 0 50px  #f1f0ee; */
   text-align: center;
   padding: 20px;
   border: 2px solid #e9e1de;
   -webkit-transition: .1s all ease;
   -o-transition: .1s all ease;
   transition: .1s all ease;
   position: relative;
   border-radius: 20px;
 }

 .testimonial-v1 img {
   width: 80px !important;
   border-radius: 50%;
   margin: 0 auto 20px auto;
   margin-top: -70px;
 }

 .testimonial-v1 h3 {
   font-size: 16px;
   font-weight: 700;
   color: #4a4053;
   line-height: 1;
 }

 .testimonial-v1 p {
   font-size: 18px;
   font-family: "Fredoka", sans-serif;
   color: #4a4053;
   /* min-height: 15vh; */
   /* max-height: 15vh; */
 }

 .testimonial-v1 .caption {
   font-size: 13px;
 }

 .owl-3-slider .owl-nav,
 .single-slider .owl-nav {
   position: absolute;
   top: 50%;
   width: 100%;
   -webkit-transform: translateY(-50%);
   -ms-transform: translateY(-50%);
   transform: translateY(-50%);
 }

 @media (max-width: 767.98px) {

   .owl-3-slider .owl-nav,
   .single-slider .owl-nav {
     display: none;
   }
 }

 .owl-3-slider .owl-nav .owl-next,
 .owl-3-slider .owl-nav .owl-prev,
 .single-slider .owl-nav .owl-next,
 .single-slider .owl-nav .owl-prev {
   position: absolute;
   top: 50%;
   -webkit-transform: translateY(-50%);
   -ms-transform: translateY(-50%);
   transform: translateY(-50%);
 }

 .owl-3-slider .owl-nav .owl-next span,
 .owl-3-slider .owl-nav .owl-prev span,
 .single-slider .owl-nav .owl-next span,
 .single-slider .owl-nav .owl-prev span {
   font-size: 1.2rem;
 }

 .owl-3-slider .owl-nav .owl-prev,
 .single-slider .owl-nav .owl-prev {
   -webkit-transition: .1s all ease;
   -o-transition: .1s all ease;
   transition: .1s all ease;
   left: -30px;
 }

 .owl-3-slider .owl-nav .owl-prev:hover,
 .single-slider .owl-nav .owl-prev:hover {
   left: -35px;
   color: #c9bab2;
 }

 .owl-3-slider .owl-nav .owl-next,
 .single-slider .owl-nav .owl-next {
   right: -30px;
   -webkit-transition: .1s all ease;
   -o-transition: .1s all ease;
   transition: .1s all ease;
 }

 .owl-3-slider .owl-nav .owl-next span,
 .single-slider .owl-nav .owl-next span {
   display: block;
   -webkit-transform: rotate(-180deg);
   -ms-transform: rotate(-180deg);
   transform: rotate(-180deg);
 }

 .owl-3-slider .owl-nav .owl-next:hover,
 .single-slider .owl-nav .owl-next:hover {
   right: -35px;
   color: #c9bab2;
 }

 .loader-portfolio-wrap {
   display: none;
   opacity: 0;
   visibility: hidden;
   left: 50%;
   top: 0px;
   -webkit-transform: translateX(-50%);
   -ms-transform: translateX(-50%);
   transform: translateX(-50%);
   position: absolute;
 }

 .loader-portfolio,
 .site-loader {
   width: 2rem;
   height: 2rem;
   margin: 2rem auto;
   border-radius: 50%;
   border: 0.3rem solid rgba(255, 255, 255, 0.3);
   border-top-color: #ffffff;
   -webkit-animation: 1.5s spin infinite linear;
   animation: 1.5s spin infinite linear;
 }

 .loader-portfolio.dark,
 .site-loader.dark {
   border: 0.3rem solid rgba(0, 0, 0, 0.3);
   border-top-color: #4a4053;
 }

 @-webkit-keyframes spin {
   to {
     -webkit-transform: rotate(360deg);
     transform: rotate(360deg);
   }
 }

 @keyframes spin {
   to {
     -webkit-transform: rotate(360deg);
     transform: rotate(360deg);
   }
 }

 .gallery-container {
   padding: 3rem;
   direction: rtl;
 }

 .gallery-item {
   position: relative;
   margin-bottom: 2rem;
   cursor: pointer;
   transition: transform 0.3s ease;
   border-radius: 8px;
   overflow: hidden;
 }

 .gallery-item:hover {
   transform: translateY(-5px);
 }

 .gallery-item img.main-image {
   width: 100%;
   height: 400px;
   object-fit: cover;
   border-radius: 8px;
 }

 .item-caption {
   position: absolute;
   bottom: 0;
   right: 12px;
   left: 12px;
   background: #f1f0ee;
   color: #4a4053;
   padding: 1rem;
   font-weight: 500;
   text-align: center;
   border-bottom-right-radius: 8px;
   border-bottom-left-radius: 8px;
   opacity: 0;
   transition: opacity 0.3s ease;
 }

 .gallery-item:hover .item-caption {
   opacity: 0.8;
   color: #4a4053;
 }

 .item-caption-dresses {
   position: absolute;
   bottom: 30px;
   right: 12px;
   left: 12px;
   background: #f1f0ee;
   color: #4a4053;
   padding: 1rem;
   font-weight: 600;
   text-align: center;
   border-bottom-right-radius: 8px;
   border-bottom-left-radius: 8px;
   opacity: 0.9;
 }

 #main-dress {
   opacity: 0;
   transform: translateY(50px);
   transition: opacity 0.8s ease-out, transform 0.9s ease-out;
 }

 #main-dress.show {
   opacity: 1;
   transform: translateY(0);
 }

 .gallery-item-dresses:hover {
   transform: scale(1.07);
   transition: transform 0.3s ease, box-shadow 0.3s ease;
 }

 .gallery-item-dresses:hover .item-caption-dresses {
   color: #4a4053;
 }

 .hidden-data {
   display: none;
 }

 .modal-title {
   color: #4a4053;
 }

 .modal-content {
   background-color: #fff;
   border-radius: 15px;
 }

 .modal-content img {
   object-fit: cover;
   border-radius: 8px;
 }

 .modal-header {
   border-bottom: none;
 }

 .modal-body {
   padding: 2rem;
 }

 .modal-image-container {
   position: relative;
   overflow: hidden;
 }

 .main-image img {
   /* width: 30px;
    max-height: 80vh;
    border-radius: 10px;
    cursor: pointer; */
   width: 100%;
   height: 400px;
   object-fit: cover;
   cursor: pointer;
   border-radius: 8px;
 }

 .modal-image {
   width: 100%;
   height: auto;
   cursor: zoom-in;
   transition: transform 0.3s ease;
 }

 .evening-dresses {
   display: none;
   position: fixed;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   background-color: rgba(0, 0, 0, 0.8);
   z-index: 1000;
 }

 .evening-dresses-content {
   direction: rtl;
   position: fixed;
   top: 50%;
   left: 50%;
   padding: 20px;
   transform: translate(-50%, -50%);
   max-width: 100%;
   display: flex;
   align-items: center;
 }

 .evening-dresses-content .image-container {
   /* transform: scaleX(-1); */
   display: flex;
   overflow-x: scroll;
   scroll-behavior: smooth;
   width: 100%;
   padding: 20px;
 }

 .evening-dresses-content img {
   width: 380px;
   height: 480px;
   margin: 12px;
   border: 2px solid #fff;
   cursor: zoom-in;
   object-fit: cover;
   transition: transform 0.3s ease, box-shadow 0.3s ease;
   border-radius: 8px;
   flex-shrink: 0;
 }

 .evening-dresses-content img:hover {
   border-radius: 10px;
   transform: scale(1.1);
   box-shadow: 0 0 15px #c9bab2;
 }

 /* הסתרת פסי הגלילה */
 .evening-dresses-content .image-container::-webkit-scrollbar {
   /* display: none; */
 }

 .close-button-dresses {
   position: absolute;
   top: 5px;
   font-size: 35px;
   cursor: pointer;
 }

 .close-button-desktop {
   right: 30px;
   color: #fff;
 }

 .close-button-mobile {
   display: none;
   right: 30px;
   color: #fff;
 }

 .scroll-button {
   background-color: rgba(0, 0, 0, 0.5);
   color: white;
   border: none;
   padding: 10px;
   cursor: pointer;
   font-size: 20px;
   border-radius: 5px;
 }

 .fullscreen-image {
   display: none;
   position: fixed;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   background-color: rgba(0, 0, 0, 0.9);
   z-index: 1001;
   text-align: center;
 }

 .fullscreen-image img {
   max-width: 90%;
   max-height: 90%;
   position: absolute;
   top: 50%;
   left: 50%;
   transform: translate(-50%, -50%);
   border-radius: 8px;
 }

 /* גלריה ראשית */
.evening-dresses-girl img {
   width: 100%;
   height: 400px;
   object-fit: cover;
   cursor: pointer;
   border-radius: 8px;
}

.gallery-thumb {
  width: 280px;
  height: auto;
  border-radius: 8px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.gallery-thumb:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

/* girl-dresses */
.gallery-thumb {
  width: 100%;
  max-width: 300px;
  border-radius: 8px;
  transition: transform 0.3s ease, border 0.3s ease;
  cursor: pointer;
}
.gallery-thumb:hover {
  transform: scale(1.03);
  border: 3px solid #c9bab2;
}

#main-girl-dress {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.8s ease-out, transform 0.9s ease-out;
}
#main-girl-dress.show {
  opacity: 1;
  transform: translateY(0);
}

/* Lightbox – מוסתר בהתחלה */
.lightbox-hidden {
  display: none !important;
}

/* רקע הלייטבוקס */
#lightbox-girl,
#lightbox-single-girl {
  position: fixed;
  inset: 0;
  background-color: rgba(74, 64, 83, 0.9);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow-y: auto;
}

/* תוכן הלייטבוקס */
.lightbox-content,
.lightbox-single-wrapper {
  background: #fff;
  padding: 10px;
  border-radius: 12px;
  max-width: 90%;
  max-height: 90%;
  overflow: auto;
  text-align: center;
}

/* גלריית תמונות ממוזערות בתוך הלייטבוקס */
.lightbox-thumbs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.lightbox-thumbs img {
  object-fit: cover;
}

.lightbox-img {
  max-width: 160px;
  cursor: pointer;
  border-radius: 8px;
  transition: transform 0.3s;
}
.lightbox-img:hover {
  transform: scale(1.05);
}

/* תצוגת תמונה בודדת מוגדלת */
.lightbox-single-img {
  max-width: 100%;
  max-height: 80vh;
  border-radius: 10px;
}

/* כפתור סגירה */
.lightbox-close {
  position: absolute;
  top: 10px;
  right: 20px;
  background: none;
  border: none;
  font-size: 36px;
  color: #c9bab2;
  cursor: pointer;
}


 /* Mobile Styles  */
 @media (max-width: 768px) {
   .evening-dresses-content {
     position: fixed;
     top: 50%;
     left: 50%;
     padding: 0;
     transform: translate(-50%, -50%);
     max-width: 95%;
     /* Adjust max-width for mobile */
     display: flex;
     align-items: center;
   }

   .evening-dresses-content .image-container {
     width: 100%;
     padding: 10px;
   }

   .evening-dresses-content img {
     width: 70vw;
     height: auto;
     max-height: 70vh;
     margin: 8px;
     border-radius: 4px;
   }

  .fullscreen-image img {
    max-height: 85% !important;
  }

   .main-image img {
     height: 70vh;
   }

   .gallery-item-dresses img {
    margin-top: 30px;
   }

   .lightbox-content,
  .lightbox-single-wrapper {
    max-width: 95%;
    max-height: 95%;
  }

   .lightbox-img {
    max-width: 250px;
  }

   .item-caption-dresses {
     bottom: 0;
   }

   .gallery-item-dresses:hover {
     transform: none;
   }

   .close-button-mobile {
     display: block;
     /* Show mobile close button */
   }

   .scroll-button {
     display: none;
     /* Hide scroll buttons */
   }

   .fullscreen-image .close-button-mobile {
     display: block;
     /* Show mobile close button for fullscreen image */
   }

   .fullscreen-image img {
     max-width: 95%;
     max-height: 95%;
   }
 }

 .thumbnail-container {
   display: flex;
   gap: 1rem;
   margin-top: 1rem;
 }

 .thumbnail-container img {
   max-height: 90px;
   max-width: 82px;
 }

 .thumbnail {
   width: 100px;
   height: 100px;
   object-fit: cover;
   cursor: pointer;
   border-radius: 4px;
   transition: opacity 0.3s ease;
 }

 .thumbnail:hover {
   opacity: 0.8;
 }

 .contact-box {
   direction: rtl;
   background: #ede9e7;
   border-radius: 50px;
   padding-top: 50px;
   padding-bottom: 50px;
   padding-left: 50px;
   padding-right: 50px;
 }

 .service [class*="icon-"] {
   font-size: 50px;
   position: relative;
   display: inline-block;
 }

 .service [class*="icon-"] img {
   width: 120px;
 }

 /* .service [class*="icon-"]:after {
   position: absolute;
   content: "";
   border-radius: 50%;
   width: 35px;
   height: 35px;
   background: rgba(3, 137, 255, 0.2);
   bottom: -0px;
   right: -0px;
   z-index: -1;
 } */

 .service h3 {
   font-size: 16px;
   font-weight: 700;
   color: #4a4053;
 }

 .lines-wrap {
   position: fixed;
   z-index: -1;
   left: 0;
   top: 0;
   width: 100%;
   height: 100%;
   overflow: hidden;
 }

 @media (max-width: 767.98px) {
   .lines-wrap {
     display: none;
   }
 }

 .lines-wrap .lines-inner {
   position: absolute;
   width: 1140px;
   left: 50%;
   margin-left: -570px;
   top: 0;
   height: 100%;
   border-left: 1px solid #efefef;
   border-right: 1px solid #efefef;
 }

 .lines-wrap .lines-inner .lines {
   position: absolute;
   left: 33.333333%;
   right: 33.333333%;
   height: 100%;
   border-left: 1px solid #efefef;
   border-right: 1px solid #efefef;
 }

 #about-section {
   margin-top: 3rem;
   color: #4a4053;
   font-family: "Fredoka", sans-serif;
 }

 #about-section .container {
   background: #ede9e7;
   border-radius: 50px;
   padding-top: 50px;
   padding-bottom: 50px;
   padding-left: 50px;
   padding-right: 50px;
 }

 #about-section .container .author-wrap {
   margin-top: -150px;
 }

 .portfolio-item {
   overflow: hidden;
 }

 .portfolio-item img {
   -webkit-transition: .1s all ease;
   -o-transition: .1s all ease;
   transition: .1s all ease;
   position: relative;
   -webkit-transform: scale(1);
   -ms-transform: scale(1);
   transform: scale(1);
 }

 .portfolio-item:hover img {
   -webkit-transform: scale(1.09);
   -ms-transform: scale(1.09);
   transform: scale(1.09);
 }

 .portfolio-item,
 .blog-item {
   display: block;
   overflow: hidden;
   position: relative;
 }

 .portfolio-item .overlay,
 .blog-item .overlay {
   position: relative;
   z-index: 8;
   opacity: 0;
   visibility: hidden;
   -webkit-transition: .1s all ease;
   -o-transition: .1s all ease;
   transition: .1s all ease;
 }

 .portfolio-item .overlay,
 .portfolio-item .overlay:before,
 .blog-item .overlay,
 .blog-item .overlay:before {
   position: absolute;
   top: 0;
   left: 0;
   right: 0;
   bottom: 0;
 }

 .portfolio-item .overlay:before,
 .blog-item .overlay:before {
   background: rgba(0, 0, 0, 0.5);
   content: "";
 }

 .portfolio-item .wrap-icon,
 .blog-item .wrap-icon {
   position: absolute;
   right: 20px;
   color: #ffffff;
   top: 20px;
 }

 .portfolio-item .portfolio-item-content,
 .blog-item .portfolio-item-content {
   position: absolute;
   bottom: 20px;
   left: 20px;
   right: 20px;
 }

 .portfolio-item .portfolio-item-content h3,
 .portfolio-item .portfolio-item-content p,
 .blog-item .portfolio-item-content h3,
 .blog-item .portfolio-item-content p {
   color: #ffffff;
   margin: 0;
   padding: 0;
 }

 .portfolio-item .portfolio-item-content h3,
 .blog-item .portfolio-item-content h3 {
   font-size: 18px;
 }

 .portfolio-item .portfolio-item-content p,
 .blog-item .portfolio-item-content p {
   font-size: 12px;
   color: rgba(255, 255, 255, 0.5);
 }

 .portfolio-item:hover .overlay,
 .blog-item:hover .overlay {
   opacity: 1;
   visibility: visible;
 }

 #services-section {
   position: relative;
 }

 .bg-image-why-us {
   background-attachment: fixed;
   background-size: cover;
   opacity: 0.2;
   position: absolute;
   margin-top: 40px;
   top: 0;
   left: 0;
   /* right: 10%; */
   width: 100%;
   height: 100%;
   border-radius: 80px;
   z-index: -1;
 }

 .bg-image-why-us {
   background-attachment: fixed;
   background-size: cover;
   background-image: url("/images/bg-image-why-us.png");
   opacity: 0.2;
   position: absolute;
   margin-top: 40px;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   border-radius: 80px;
   z-index: -1;

   @media (max-width: 768px) {
     background-image: url("/images/cotton-plant.jpg");
     background-attachment: scroll;
   }
 }

 .testimonial {
   max-width: 500px;
   text-align: center;
   margin-bottom: 30px;
 }

 .testimonial .name {
   font-size: 18px;
   color: #4a4053;
 }

 .testimonial .img-wrap img {
   margin: 0 auto;
   width: 70px;
   border-radius: 50%;
 }

 .site-footer {
   color: #4a4053;
   direction: rtl;
   padding: 20px 0;
   text-align: center;
 }

 .footer-content {
   display: flex;
   justify-content: center;
 }

 .footer-links {
   list-style: none;
   padding: 0;
   margin: 0;
   display: flex;
   flex-wrap: wrap;
   justify-content: center;
 }

 .footer-links li {
   flex-basis: calc(50% - 10px);
   margin: 5px;
   box-sizing: border-box;
 }

 .footer-links li a {
   text-decoration: none;
   color: #4a4053;
   padding: 10px 10px;
   display: block;
   text-align: center;
 }

 .footer-links li a:hover {
   color: #c9bab2;
   border-radius: 20px;
 }

 .copyright p a {
   color: #4a4053;
   font-weight: bold;
 }

 .copyright p span:hover {
   color: #c9bab2;
 }

 @media (max-width: 500px) {

  .logo img {
   width: 100px;
   margin-top: -10px;
 }

  .cursor-follower {
    display: none;
  }
  
   .footer-links li {
     flex-basis: 100%;
   }
 }