@import url("https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap");
.img200 {
  aspect-ratio: 1/1;
  width: 200px;
}

body,
html {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  /* Prevent horizontal scroll */
}

.fh1 {
  font-size: 7rem;
  line-height: 1;
  font-weight: 700;
}

.fs1 {
  font-size: 22.4px;
}

.fs-0 {
  font-size: 70.4px;
  font-weight: 600;
}

.fw400 {
  font-weight: 400;
}

.menutoggle {
  display: none;
  cursor: pointer;
}

.topheader {
  background-color: transparent;
  width: 100%;
  height: 25px;
  position: fixed;
  text-align: right;
  margin: 0;
  z-index: 9999;
}

.salted {
  width: 50%;
  background-color: #f87A1F;
  float: right;
  height: 25px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  color: #98144d;
  padding-right: 10px;
}

.salted::before {
  content: "";
  position: absolute;
  top: 0;
  left: -19px;
  width: 20px;
  /* Full width of the parent */
  height: 25px;
  background-color: #f87A1F;
  -webkit-clip-path: polygon(75% 0, 100% 0%, 100% 100%, 0% 100%);
          clip-path: polygon(75% 0, 100% 0%, 100% 100%, 0% 100%);
}

.salted ul {
  list-style: none;
  text-decoration: none;
  font-size: 12px;
  margin: 5px 0px;
}

.salted ul li {
  margin: 0px 10px;
  display: block;
}

.salted ul i {
  position: relative;
  top: 2px;
}

.myheader {
  width: 100%;
  background-color: transparent;
  height: 100px;
  position: fixed;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 3% 5%;
  transition: transform 0.3s ease, background-color 0.3s ease;
  z-index: 9999999;
  top: 25px;
}

.myheader.scrolled {
  border-bottom: 0px solid white;
  top: 0;
  background-color: #98144d;
  /* Solid color when scrolled */
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  /* Optional: Add a shadow for better visibility */
}

.menu {
  display: flex;
  list-style: none;
  list-style: none;
  margin: 0;
  padding: 0;
}

.logo {
  width: auto;
  height: auto;
  display: flex;
  align-items: center;
  font-size: 48px;
  color: white;
  font-weight: 800;
  letter-spacing: 2px;
}

.logosharjah {
  width: 250px;
  height: auto;
  margin-left: 20px;
}

.menu > li {
  position: relative;
  /* Needed for submenu positioning */
  margin: 0px 10px;
}

.menu > li > a {
  text-decoration: none;
  color: white;
  padding: 15px 20px;
  display: block;
  font-family: "Outfit", serif;
}

.menu > li > a:hover {
  color: #f87A1F;
}

/* Style for the submenu */
.submenu {
  display: none;
  /* Hide submenu by default */
  position: absolute;
  top: 100%;
  /* Position below the parent menu */
  left: 0;
  background-color: #ffffff;
  list-style: none;
  margin: 0;
  padding: 0;
  z-index: 1000;
  /* Ensure it appears above other elements */
  border-radius: 5px;
  overflow: hidden;
}

.submenu li:not(:last-child) {
  border-bottom: 1px solid red;
}

.submenu li a {
  color: #98144d;
  text-decoration: none;
  padding: 10px 15px;
  display: block;
  min-width: 220px;
}

.submenu li a:hover {
  background-color: #f87A1F;
  color: white;
}

/* Show submenu on hover */
.menulist:hover .submenu {
  display: block;
}

.getintouch {
  background-color: #f87A1F;
  color: #98144d;
  padding: 8px 20px;
  min-width: 180px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.getintouch i {
  font-size: 24px;
}

.getintouch :hover {
  color: white !important;
  text-decoration: none;
}

.banner {
  width: 100%;
  background-color: rgb(240, 240, 240);
  height: 100vh;
  background-image: url("../img/banner/bkimage4.jpg");
  background-size: cover;
  /* Ensures the image covers the entire banner */
  background-position: center;
  /* Centers the image within the banner */
  display: flex;
  /* Enable Flexbox on the parent container */
  align-items: center;
  /* Centers child vertically */
  justify-content: center;
  /* Centers child horizontally */
}

.banercontainer {
  position: relative;
  width: 75%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100vh;
  padding-top: 5%;
}

.bannercontent {
  min-width: 50%;
  max-width: 40%;
  color: white !important;
  font-weight: 200;
}

.bannercontent p {
  font-size: 22.4px;
  color: white;
  line-height: 1.5;
  margin-top: 4%;
  width: 80%;
  font-weight: 200;
}

.brwrapper {
  color: #f87A1F;
}

.packagecontainer {
  width: 100%;
  margin-top: 2rem;
  display: flex;
}

.package {
  background-color: #f87A1F;
  max-width: 270px;
  min-width: 250px;
  position: relative;
  height: 50px;
  display: flex;
  align-items: center;
  padding: 1%;
  color: #98144d;
  border-top-left-radius: 20px;
  border-bottom-left-radius: 20px;
  padding-left: 20px;
  font-weight: 500;
}

.package::after {
  content: "";
  /* Add content to make the pseudo-element appear */
  position: absolute;
  top: 0;
  right: -25px;
  width: 50px;
  /* Adjust width to your needs */
  height: 50px;
  background-color: #f87A1F;
  -webkit-clip-path: polygon(0 0, 100% 0%, 50% 100%, 0% 100%);
          clip-path: polygon(0 0, 100% 0%, 50% 100%, 0% 100%);
}

.packageright {
  margin-left: -30px;
  display: flex;
  align-items: center;
  background-color: #98144d;
  padding-right: 20px;
  min-width: 40%;
  max-width: 40%;
  padding-left: 10%;
}

.packagerthird {
  margin-top: 7%;
  background-color: rgba(230, 13, 56, 0.7);
  border-radius: 20px;
  padding: 3%;
  width: 72%;
  background-image: url("../img/banner/packagebk.png");
  background-size: cover;
  /* Ensures the image covers the entire banner */
  background-position: center;
  /* Centers the image within the banner */
}

.packagerthird ul {
  margin-left: 5%;
}

.packagerthird li {
  font-size: 16px;
  line-height: 1.5;
  list-style: none;
}

.packagerthird h5 {
  font-weight: 300;
  font-size: 19.2px;
}

.mtbtnred {
  background-color: #f87A1F;
  padding: 10px 20px;
  border-radius: 10px;
  font-weight: 300;
  top: 25%;
}

.girl {
  position: absolute;
  bottom: 0;
  right: 10%;
  height: 80%;
  width: auto;
  contain: content;
  z-index: 9;
}

.circle {
  position: absolute;
  bottom: 10px;
  right: -10%;
  height: auto;
  width: 42%;
  contain: content;
  /* Apply the animation */
  animation: rotateCircle 85s linear infinite;
}

@keyframes rotateCircle {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.mtredbtn {
  background-color: #f87A1F;
  padding: 10px 20px;
  text-align: center;
  border-radius: 20px;
  font-weight: 400;
  color: white;
  display: block;
  width: 250px;
}

.mt10px {
  margin-left: 0px;
  position: relative;
}

.testimonial-slider {
  max-width: 100%;
  margin: 0 auto;
  margin-top: 5%;
  position: relative;
}

.testimonial-slider .slick-slide {
  margin: 0 12px;
  /* Add space between slides */
}

.testimonial-slider {
  padding: 0 12px;
  /* Adjust slider padding to prevent clipping */
}

.testinomialsbox {
  background: #f9f9f9;
  padding: 5%;
  border-radius: 5px;
  margin: 10px;
  height: 200px;
  border-radius: 20px;
  border: 2px solid #98144d;
}

.testinomialsbox h4 {
  margin-top: 15px;
  font-size: 14px;
  color: white;
  position: absolute;
  bottom: 5%;
  background-color: #98144d;
  padding: 5px 10px;
  border-radius: 5px;
  font-weight: 400;
}

.slick-prev,
.slick-next {
  font-size: 24px;
  color: #333;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  bottom: -50px;
  /* Position the arrows at the bottom */
  z-index: 10;
  transition: background 0.3s, color 0.3s;
}

.slick-prev:hover,
.slick-next:hover {
  background: #333;
  color: #fff;
}

.slick-prev {
  left: 45%;
  /* Position arrow slightly left */
}

.slick-next {
  right: 45%;
  /* Position arrow slightly right */
}

@media (max-width: 1600px) {
  .salted {
    width: 55%;
  }
  .fs-0 {
    font-size: 48px;
  }
  .fh1 {
    font-size: 96px;
  }
  .fdigiflogo {
    width: auto;
    height: 80px;
  }
  .logosharjah {
    width: auto;
    height: 45px;
  }
  .packagerthird h5 {
    font-weight: 300;
    font-size: 16px;
  }
  .packagerthird li {
    font-size: 14px;
    width: 100%;
  }
}
@media (max-width: 1366px) {
  .salted {
    width: 70%;
  }
  .menu {
    margin-left: -5%;
  }
  .fh1 {
    font-size: 64px;
  }
  .fs-0 {
    font-size: 49.6px;
  }
  .bannercontent p {
    font-size: 19.2px;
    color: white;
    line-height: 1.5;
    margin-top: 4%;
    width: 80%;
  }
  .fdigiflogo {
    width: auto;
    height: 80px;
  }
  .logosharjah {
    width: 135px;
    height: auto;
  }
  .packagerthird h5 {
    font-weight: 300;
    font-size: 16px;
  }
  .packagerthird li {
    font-size: 14px;
    width: 100%;
  }
}
@media (max-width: 576px) {
  .topheader {
    display: none !important;
  }
  .salted {
    width: 80%;
    height: 27px;
    flex-wrap: wrap;
  }
  .salted::before {
    left: -19px;
    width: 20px;
    /* Full width of the parent */
    height: 27px;
  }
  .salted ul {
    font-size: 12px;
  }
  .salted ul li:first-child {
    display: none;
  }
  .menutoggle {
    display: block;
    color: white;
    font-size: 3rem;
    margin-right: 2%;
    z-index: 99;
  }
  .myheader {
    width: 100%;
    height: auto;
    padding: 2%;
    z-index: 9;
    border: none;
  }
  .logo {
    width: auto;
    height: auto;
  }
  .fdigiflogo {
    width: auto;
    height: 60px;
  }
  .logosharjah {
    width: auto;
    height: 50px;
    margin-left: 10px;
  }
  .menu {
    display: block;
    background-color: #98144d;
    position: absolute;
    right: -100%;
    top: 0;
    width: 75%;
    height: 100vh;
    transition: all 1s;
  }
  /* Show menu */
  .menu.active {
    right: 0;
  }
  /* Style for the submenu */
  .submenu {
    display: none;
    position: relative;
    transition: 1s all;
  }
  .getintouch {
    display: none;
  }
  .fh1 {
    font-size: 3rem;
  }
  .fs-0 {
    font-size: 2rem;
  }
  .fs1 {
    font-size: 1rem;
  }
  .banner {
    width: 100%;
    height: 100vh;
    overflow: hidden;
  }
  .banercontainer {
    width: 100%;
    margin-left: 0%;
    padding: 1rem;
    padding-top: 0%;
  }
  .bannercontent {
    min-width: 100%;
    max-width: 100%;
  }
  .packagecontainer {
    width: 100%;
    margin-top: 40px;
    display: flex;
    border-radius: 50px;
    overflow: hidden;
  }
  .package {
    max-width: auto;
    min-width: 200px;
    border-radius: 10px;
    padding-left: 15px;
  }
  .packageright {
    margin-left: 0px;
  }
  .packagerthird {
    padding: 3%;
    width: 100%;
    height: 220px;
    margin-top: 40px;
  }
  .packagerthird ul {
    margin-left: 2%;
  }
  .packagerthird li {
    font-size: 11.2px;
    line-height: 1.5;
    list-style: none;
    display: block;
    width: 55%;
  }
  .packagerthird h5 {
    font-weight: 400;
    font-size: 16px;
    display: block;
    width: 70%;
    margin-bottom: 20px;
  }
  .girl {
    position: absolute;
    bottom: 0%;
    right: 0%;
    height: auto;
    width: 60%;
  }
  .circle {
    position: absolute;
    bottom: 0px;
    right: 30%;
    height: auto;
    width: 70%;
    /* Optimize animation */
    will-change: transform;
    /* Continuous rotation animation */
    animation: rotateCircle 85s linear infinite;
  }
  .mtredbtn {
    background-color: #f87A1F;
    padding: 10px 20px;
    text-align: center;
    border-radius: 50px;
    font-weight: 400;
    color: white;
    display: block;
    width: 250px;
  }
  .tr-breadcurmb-shape-1 {
    position: relative !important;
  }
  .displynone {
    display: none;
  }
  .mt-mobile {
    margin-top: 35px;
  }
}
@media (max-width: 576px) {
  .girl {
    position: absolute;
    bottom: 0%;
    right: 0%;
    height: auto;
    width: 50%;
  }
  .circle {
    position: absolute;
    bottom: 0px;
    right: 30%;
    height: auto;
    width: 50%;
    /* Optimize animation */
    will-change: transform;
    /* Continuous rotation animation */
    animation: rotateCircle 85s linear infinite;
  }
  .img200 {
    aspect-ratio: 1/1;
    width: auto;
  }
}/*# sourceMappingURL=my.css.map */