@charset "UTF-8";
.animated {
  animation-duration: 1.5s;
}

:root {
  --top-nav-height: 0px;
}

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

::-webkit-scrollbar-track {
  background: #702975;
}

::-webkit-scrollbar-thumb {
  background: #F08721;
}

::selection {
  background: #F08721;
  color: #702975;
}

.wow {
  visibility: hidden;
}

body {
  font-weight: 400;
  font-family: "cairo", sans-serif;
  position: relative;
  height: 100%;
}

body, html {
  overflow-x: hidden;
}

.py-50 {
  padding-top: 50px;
  padding-bottom: 50px;
}

.text-orange {
  color: #F08721;
}

.text-purple {
  color: #702975;
}

.bg-orange {
  background-color: #F08721;
}

.bg-purple {
  background-color: #702975;
}

.bg-light-purple {
  background-color: #F7F2F7;
}

.hover-orange:hover {
  color: #F08721 !important;
}

.hover-purple:hover {
  color: #702975 !important;
}

.ltr {
  direction: ltr;
  display: inline-flex;
}

@media (min-width: 1200px) {
  .container {
    max-width: 1142px;
  }
}
a {
  text-decoration: none;
  transition: 0.3s;
}

.bg-none {
  background-image: none !important;
}

.btn-1 {
  background-color: #F08721;
  color: white;
  padding: 10px 40px;
  border-radius: 23px;
  display: inline-block;
  transition: all 0.3s;
  font-weight: 600;
  font-size: 18px;
  box-shadow: 0px 3px 6px rgba(240, 135, 33, 0.5);
}
.btn-1:hover {
  background-color: #702975;
  color: white;
  box-shadow: 0px 3px 6px rgba(112, 41, 117, 0.5);
}

.btn-2 {
  background-color: #702975;
  color: white;
  padding: 10px 40px;
  border-radius: 23px;
  display: inline-block;
  transition: all 0.3s;
  font-weight: 600;
  font-size: 18px;
  box-shadow: 0px 3px 6px rgba(112, 41, 117, 0.5);
}
.btn-2:hover {
  background-color: #F08721;
  color: white;
  box-shadow: 0px 3px 6px rgba(240, 135, 33, 0.5);
}

.btn-2-border {
  background-color: transparent;
  color: #702975;
  padding: 10px 40px;
  border-radius: 23px;
  display: inline-block;
  transition: all 0.3s;
  font-weight: 600;
  font-size: 18px;
  border: 1px solid #702975;
}
.btn-2-border:hover {
  background-color: #702975;
  color: white;
  box-shadow: 0px 3px 6px rgba(112, 41, 117, 0.5);
}

.btn-white-border {
  background-color: transparent;
  color: white;
  padding: 10px 30px;
  border-radius: 23px;
  display: inline-block;
  transition: all 0.3s;
  font-weight: 600;
  font-size: 18px;
  border: 1px solid white;
}
.btn-white-border:hover {
  background-color: #F08721;
  color: white;
  box-shadow: 0px 3px 6px rgba(240, 135, 33, 0.5);
}

/*Lazy Load*/
.lazy-blur {
  filter: blur(20px);
  transition: filter 0.5s ease, opacity 0.5s ease;
}

.lazy-loaded {
  filter: blur(0);
  opacity: 1;
}

/* TOP HEADER*/
.top-bar {
  margin-bottom: 14px;
}
@media screen and (max-width: 768px) {
  .top-bar {
    display: none;
  }
}
.top-bar .contact-info ul {
  gap: 20px;
  margin-bottom: 0;
}
.top-bar .contact-info ul li {
  color: white;
  font-size: 15px;
  font-weight: 600;
}
.top-bar .contact-info ul li i {
  margin-inline-end: 4px;
}
.top-bar .contact-info ul li a {
  color: white;
}
.top-bar .contact-info ul li a:hover {
  color: #F08721;
}

.social-media ul {
  gap: 10px;
  margin-bottom: 0;
}
.social-media ul li a {
  width: 30px;
  height: 30px;
  border-radius: 5px;
  color: #fff;
  font-size: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}
.social-media ul li a:has(.fa-facebook-f) {
  background-color: #1976D2;
}
.social-media ul li a:has(.fa-youtube) {
  background-color: #E21A20;
}
.social-media ul li a:has(.fa-linkedin-in) {
  background-color: #0077B5;
}
.social-media ul li a:has(.fa-instagram) {
  background: #F08721 !important;
  position: relative;
  overflow: hidden;
}
.social-media ul li a:has(.fa-instagram) i {
  position: relative;
  z-index: 2;
}
.social-media ul li a:has(.fa-instagram):before {
  content: "";
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%);
  background: -webkit-radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  transition: 0.3s;
  opacity: 1;
}
.social-media ul li a:has(.fa-instagram):hover:before {
  opacity: 0;
  transition: 0.3s;
}
.social-media ul li a:has(.fa-x-twitter) {
  background-color: transparent;
  border: 2px solid #fff;
}
.social-media ul li a:has(.fa-x-twitter):hover {
  border-color: #F08721;
}
.social-media ul li a:hover {
  background-color: #F08721;
}

.main-header {
  position: fixed;
  top: 14px;
  left: 0;
  right: 0;
  transition: 0.3s;
  z-index: 20;
}
.main-header .header-main-content {
  background: rgba(255, 255, 255, 0.83);
  border-radius: 11px;
  padding: 8px 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: 0.3s;
}
@media only screen and (max-width: 600px) {
  .main-header .header-main-content {
    padding: 12px 8px;
  }
  .main-header .header-main-content .btn {
    padding: 8px 25px;
    font-size: 14px;
  }
}
.main-header.header-fixed {
  transform: translateY(var(--top-nav-offset));
  background: #fff;
  box-shadow: 0px 16px 35px 0px #0000001A;
}
.main-header.header-fixed .header-main-content {
  border-radius: 0;
}
.main-header .header-menu {
  z-index: 20;
  transition: 0.3s;
}
.main-header .logo-img img {
  width: 100%;
  max-width: 99px;
  transition: 0.3s;
}
@media only screen and (max-width: 600px) {
  .main-header .logo-img img {
    max-width: 60px;
  }
}

.search-form-wrapper {
  background-color: rgba(255, 255, 255, 0.85);
  border-radius: 12px;
  margin-top: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  opacity: 0;
  visibility: hidden;
  max-height: 0;
  transition: 0.3s;
}
.search-form-wrapper .search-form {
  display: flex;
  align-items: center;
  width: 100%;
  position: relative;
}
.search-form-wrapper .search-form .search-btn {
  border: none !important;
  color: #702975;
  font-size: 20px;
  transition: 0.3s;
}
.search-form-wrapper .search-form .search-btn:hover {
  color: #F08721;
}
.search-form-wrapper .search-form .form-control {
  padding-block: 10px;
  width: 100%;
  background-color: transparent;
  border: none;
  color: #702975;
  font-size: 18px;
  box-shadow: none;
}
.search-form-wrapper .search-form .form-control::placeholder {
  color: #702975;
  font-size: 14px;
  opacity: 0.5;
}
.search-form-wrapper.active {
  opacity: 1;
  visibility: visible;
  padding: 10px 25px;
  transition: 0.3s;
  max-height: 100px;
  margin-top: 5px;
}

.header-main-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.main-menu {
  display: flex;
  align-items: center;
  margin-bottom: 0;
}
.main-menu a {
  text-transform: capitalize;
  transition: 0.3s;
}

.main-menu > li {
  margin-inline-end: 45px;
}
.main-menu > li > a {
  color: #702975;
  font-size: 18px;
  transition: 0.3s;
  display: block;
  font-weight: 700;
}
@media only screen and (max-width: 1024px) {
  .main-menu > li > a {
    font-size: 16px;
  }
}
.main-menu > li:hover > a {
  color: #F08721;
}

.main-menu > li:last-of-type {
  margin: 0;
}

.show-submenu,
.show-overlay {
  opacity: 1;
  visibility: visible;
}

.main-menu .menu-item-has-children {
  position: relative;
  line-height: 50px;
  padding: 0;
}
.main-menu .menu-item-has-children > a {
  color: #702975;
  column-gap: 5px;
  display: flex;
  align-items: baseline;
  position: relative;
}
.main-menu .menu-item-has-children > a::after {
  content: "";
  position: relative;
  font-family: "Font Awesome 6 Pro";
  font-weight: 900;
  font-size: 10px;
  color: #702975;
  transition: 0.3s;
}
.main-menu .menu-item-has-children:hover > a {
  color: #F08721;
}
.main-menu .menu-item-has-children:hover > a::after {
  color: #F08721;
}
.main-menu .menu-item-has-children:hover .sub-menu {
  opacity: 1;
  visibility: visible;
  top: 100%;
  pointer-events: auto;
}
.main-menu .menu-item-has-children .sub-menu {
  width: 230px;
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  transform-origin: center top;
  transform-style: preserve-3d;
  border-radius: 8px;
  z-index: 12;
  background-color: #fff;
  position: absolute;
  top: 80px;
  right: -22px;
  list-style: none;
  box-shadow: 0px 2px 13px 9px rgba(0, 0, 0, 0.02);
  padding: 12px;
  transition: 0.3s;
}
.main-menu .menu-item-has-children .sub-menu li {
  text-align: center;
  transition: 0.3s;
}
.main-menu .menu-item-has-children .sub-menu a {
  padding: 10px;
  align-items: center;
  font-size: 17px;
  font-weight: 500;
  border-radius: 4px;
  line-height: 1.5;
  color: #702975;
  text-align: center;
  justify-content: flex-start;
  display: flex;
  width: 100%;
  column-gap: 10px;
  transition: color linear 0.2s;
}
.main-menu .menu-item-has-children .sub-menu a:hover {
  color: #F08721;
}

.bars {
  z-index: 20;
  display: none;
  flex-direction: column;
  align-items: center;
  row-gap: 6px;
  background: none;
  border: 0;
}
.bars .line {
  flex-shrink: 0;
  width: 25px;
  display: block;
  height: 1.5px;
  background-color: #F08721;
  transition: 0.3s;
}

.rotate-line1 {
  transform: rotate(45deg) translateX(-2px) translateY(-2px);
  transform-origin: 0% 0%;
}

.rotate-line3 {
  transform: rotate(-45deg) translateX(0px) translateY(0px);
  transform-origin: 0 100%;
}

.bars .hide-line2 {
  transform: translateX(-30px);
  opacity: 0;
  visibility: hidden;
}

.header-icons {
  display: flex;
  align-items: center;
  column-gap: 24px;
}
.header-icons .header-icon {
  font-size: 20px;
  color: #702975;
  cursor: pointer;
  transition: all 0.3s;
}
.header-icons .header-icon:hover {
  color: #F08721;
}

.search-icon {
  width: 25px;
}
.search-icon.active i:before {
  content: "";
  font-family: "Font Awesome 6 Pro";
}

.dropdown-parent {
  position: relative;
  display: inline-block;
}
.dropdown-parent .dropdown-list {
  width: 230px;
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  transform-origin: center top;
  transform-style: preserve-3d;
  border-radius: 8px;
  z-index: 12;
  background-color: #F8F4EC;
  position: absolute;
  top: 80px;
  inset-inline-end: -22px;
  list-style: none;
  box-shadow: 0px 16px 35px 0px #0000001A;
  padding: 12px;
  transition: all 0.4s;
}
.dropdown-parent .dropdown-list li {
  text-align: center;
  transition: 0.3s;
}
.dropdown-parent .dropdown-list a {
  padding: 10px;
  align-items: center;
  font-size: 18px;
  color: #702975;
  text-align: center;
  justify-content: flex-start;
  display: flex;
  width: 100%;
  column-gap: 10px;
  transition: 0.3s;
}
.dropdown-parent .dropdown-list a:hover {
  color: #F08721;
}
.dropdown-parent:hover .dropdown-list {
  opacity: 1;
  visibility: visible;
  top: 100%;
  pointer-events: auto;
}

/*media query*/
@media only screen and (max-width: 1200px) {
  .menu-item-has-children .sub-menu {
    inset-inline-start: 0;
    transform: unset;
  }

  .main-menu > li {
    margin-inline-end: 25px;
  }
}
@media only screen and (max-width: 992px) {
  .navigation .container {
    padding-inline: 12px;
  }

  .rotate-line3 {
    transform: -45deg translateX(-1px) translateY(0px);
  }

  .logo-img {
    margin-inline-end: auto;
  }

  .header-main-content {
    height: auto;
    justify-content: flex-end;
    column-gap: 25px;
  }

  .main-menu {
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    margin-top: 10px;
  }

  .main-menu > li {
    margin-inline-end: 0;
    margin-bottom: 25px;
  }

  .main-menu > li:nth-child(5) {
    margin-inline-start: unset;
  }

  .main-menu > li > a {
    font-size: 18px;
    font-weight: 500;
  }

  .main-menu > li:nth-child(4) {
    margin-inline-start: 0;
  }

  .bars {
    display: flex;
  }

  .navigation {
    overflow-y: auto;
    position: fixed;
    opacity: 0;
    transition-duration: 1s;
    visibility: hidden;
    top: 0;
    inset-inline-start: 0;
    width: 100%;
    height: 100vh;
    padding: 20px;
    background-color: #fff;
    transition: 0.3s;
    z-index: 20;
    clip-path: circle(9.8% at 0 0);
  }

  .open-sidebar {
    opacity: 1;
    visibility: visible;
    clip-path: circle(141.4% at 0 0);
  }

  .main-menu .menu-item-has-children > a::after {
    font-size: 14px;
    transition: 0.3s;
    color: #702975;
  }

  .main-menu .menu-item-has-children > a.icon-rotate::after {
    transform: rotate(180deg);
  }

  .main-menu .menu-item-has-children > a::after {
    font-size: 15px;
  }

  .main-menu .menu-item-has-children .sub-menu {
    position: static;
    background-color: unset;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: unset;
    padding: 0;
    display: none;
    transition: none;
    width: 100%;
    padding-top: 18px;
  }
  .main-menu .menu-item-has-children .sub-menu li {
    display: flex;
    align-items: center;
    column-gap: 10px;
    padding-inline-start: 14px;
  }
  .main-menu .menu-item-has-children .sub-menu li:before {
    content: "";
    font-family: "Font Awesome 6 Pro";
    font-weight: 300;
    color: #702975;
    font-size: 14px;
    transition: 0.3s;
  }
  .main-menu .menu-item-has-children .sub-menu li:not(:last-of-type) {
    margin-bottom: 17px;
  }

  .main-menu .menu-item-has-children .sub-menu li {
    text-align: start;
  }

  .main-menu .menu-item-has-children:hover .sub-menu {
    transform: unset;
  }

  .main-menu .menu-item-has-children .sub-menu a {
    display: flex;
    padding: 0;
    gap: 8px;
    width: max-content;
  }

  .main-menu .menu-item-has-children {
    width: 100%;
    padding: 0;
  }

  .main-menu .menu-item-has-children > a {
    justify-content: space-between;
    cursor: pointer;
  }

  .main-menu .menu-item-has-children {
    line-height: normal;
  }
}
@media only screen and (max-width: 768px) {
  .navigation .container {
    padding-inline: 20px;
  }

  .main-menu .menu-item-has-children .sub-menu li a:hover {
    background-color: transparent;
    color: #702975;
  }

  .main-menu .menu-item-has-children {
    padding: 0;
  }
}
/*HERO SECTION*/
.inner-hero {
  padding-bottom: 14px;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}
.inner-hero .hero-title {
  font-size: 35px;
  font-weight: bold;
  padding-bottom: 45px;
  color: #fff;
  text-align: center;
}
@media only screen and (max-width: 768px) {
  .inner-hero .hero-title {
    font-size: 25px;
    padding-block: 25px;
  }
}

.hero-swiper {
  height: 100vh;
}
.hero-swiper img {
  filter: brightness(53%);
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-swiper .hero-content {
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 9;
  color: #fff;
  width: 100%;
}
.hero-swiper .hero-title {
  font-size: 42px;
  font-weight: bold;
  margin-bottom: 24px;
}
@media only screen and (max-width: 768px) {
  .hero-swiper .hero-title {
    font-size: 30px;
  }
}
.hero-swiper .hero-text {
  font-size: 21px;
  margin-bottom: 40px;
  line-height: 1.9;
  font-weight: 500;
}
@media only screen and (max-width: 768px) {
  .hero-swiper .hero-text {
    font-size: 16px;
  }
}
@media only screen and (max-width: 600px) {
  .hero-swiper .hero-text {
    font-size: 15px;
  }
}
.hero-swiper .swiper-pagination {
  bottom: 20px !important;
}

.swiper-pagination-bullet {
  width: 16px;
  height: 16px;
  background: transparent;
  border: 2px solid #702975;
  opacity: 1;
  border-radius: 50%;
  margin: 0 5px;
  transition: 0.3s;
}
.swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: #702975;
  opacity: 1;
  border-radius: 7px;
  width: 46px;
  transition: 0.3s;
}

/*Start now section*/
.start-now {
  background: url("../images/start-now-bg.webp") center center no-repeat;
  background-size: cover;
  padding: 20px 0;
  position: relative;
}
@media only screen and (max-width: 768px) {
  .start-now {
    padding: 20px 0;
  }
}
@media only screen and (max-width: 600px) {
  .start-now {
    text-align: center;
  }
}
.start-now .start-now-title {
  font-size: 35px;
  font-weight: bold;
  color: #000;
  margin-bottom: 15px;
}
@media only screen and (max-width: 768px) {
  .start-now .start-now-title {
    font-size: 25px;
  }
}
.start-now .start-now-text {
  font-weight: 500;
  font-size: 18px;
  line-height: 1.9;
}
@media only screen and (max-width: 600px) {
  .start-now .start-now-img {
    margin-top: 20px;
    text-align: center;
    width: 70%;
    margin-inline: auto;
  }
  .start-now .start-now-img img {
    margin-inline: auto;
  }
}

/* initial-steps section*/
.initial-steps {
  padding-block: 50px 0;
}

.initial-steps-content {
  text-align: center;
}
.initial-steps-content .icon {
  width: 60px;
  height: 60px;
  margin-inline: auto;
  position: relative;
}
.initial-steps-content .icon:before {
  content: "";
  position: absolute;
  top: 0;
  left: -15px;
  width: 60px;
  display: block;
  height: 60px;
  background: rgba(112, 41, 117, 0.1);
  border-radius: 50%;
}
.initial-steps-content .icon img {
  width: 100%;
  height: auto;
  object-fit: contain;
  margin-inline-start: -30px;
}

.initial-steps-title {
  font-size: 20px;
  font-weight: bold;
  margin-block: 15px;
}
@media only screen and (max-width: 768px) {
  .initial-steps-title {
    font-size: 18px;
  }
}
@media only screen and (max-width: 600px) {
  .initial-steps-title {
    font-size: 16px;
  }
}

.initial-steps-text {
  font-size: 16px;
  line-height: 1.8;
}

/* features section*/
.features-section {
  padding-block: 50px 50px;
}

.shape-bg {
  /* background-image: url("../images/shape-bg.webp"); */
  background-size: cover;
  background-attachment: fixed;
}

.v-shape-bg {
  /* background-image: url("../images/v-shape-bg.webp"); */
  background-size: cover;
  background-attachment: fixed;
}

.features-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  /* centers the last row */
}

.single-feature {
  flex: 0 0 calc((100% - 120px) / 7);
  max-width: calc((100% - 120px) / 7);
  background: #F7F2F7;
  border-radius: 10px;
  padding: 10px 6px;
  text-align: center;
  align-content: center;
  transition: 0.3s;
  min-height: 100px;
}
@media only screen and (max-width: 768px) {
  .single-feature {
    flex: 0 0 calc((100% - 60px) / 4);
    max-width: calc((100% - 60px) / 4);
  }
}
@media only screen and (max-width: 600px) {
  .single-feature {
    flex: 0 0 calc((100% - 30px) / 2);
    max-width: calc((100% - 30px) / 2);
  }
}
.single-feature .icon {
  width: 35px;
  height: 35px;
  margin-inline: auto;
  position: relative;
  margin-bottom: 5px;
}
.single-feature .icon img {
  width: 100%;
  height: auto;
  object-fit: contain;
  transition: 0.3s;
}
.single-feature .single-feature-title {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 0;
}
.single-feature a {
  color: #000;
}
.single-feature:hover {
  background: #702975;
  color: #fff;
  transition: 0.3s;
  box-shadow: 0px 3px 6px rgba(112, 41, 117, 0.5);
  transform: translateY(-10px);
}
.single-feature:hover a {
  color: #fff;
}
.single-feature:hover img {
  filter: brightness(0) invert(1);
  transition: 0.3s;
}

/*CTA section*/
.cta {
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  position: relative;
  padding-block: 60px;
}
.cta:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.53);
}
.cta .cta-content {
  position: relative;
  text-align: center;
  z-index: 1;
  color: #fff;
  max-width: 70%;
  margin-inline: auto;
}
@media only screen and (max-width: 600px) {
  .cta .cta-content {
    max-width: 100%;
  }
}
.cta .cta-content .cta-title {
  font-size: 35px;
  font-weight: bold;
  margin-bottom: 15px;
}
@media only screen and (max-width: 768px) {
  .cta .cta-content .cta-title {
    font-size: 30px;
  }
}
@media only screen and (max-width: 600px) {
  .cta .cta-content .cta-title {
    font-size: 25px;
  }
}
.cta .cta-content .cta-desc {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.8;
  margin-bottom: 15px;
}
@media only screen and (max-width: 768px) {
  .cta .cta-content .cta-desc {
    font-size: 16px;
  }
}

.section-title {
  font-weight: bold;
  font-size: 35px;
  position: relative;
  margin-bottom: 50px;
  text-transform: uppercase;
}
@media only screen and (max-width: 768px) {
  .section-title {
    font-size: 30px;
  }
}
@media only screen and (max-width: 600px) {
  .section-title {
    font-size: 20px;
  }
}

.section-desc {
  font-size: 18px;
  font-weight: 500;
  width: 70%;
  margin-inline: auto;
  line-height: 1.8;
}
@media only screen and (max-width: 768px) {
  .section-desc {
    font-size: 16px;
    width: 100%;
  }
}

/*SERVICES SECTION*/
.services-section {
  padding-block: 50px;
}

.single-service-card {
  position: relative;
  border-radius: 10px;
  transition: 0.3s;
  height: 100%;
  padding: 24px 30px;
  text-align: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.single-service-card:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: white;
  border-radius: 10px;
  transition: 0.3s;
}
.single-service-card .service-content {
  position: relative;
  z-index: 1;
}
.single-service-card .icon {
  width: 75px;
  height: 75px;
  margin: 0 auto 15px;
  transition: 0.3s;
  position: relative;
  flex-shrink: 0;
}
.single-service-card .icon:before {
  content: "";
  position: absolute;
  top: 0;
  left: 20px;
  width: 76px;
  height: 76px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  transition: 0.3s;
  z-index: -1;
}
.single-service-card .icon img {
  width: 100%;
  height: auto;
  object-fit: contain;
}
.single-service-card .single-service-title {
  font-weight: 600;
  font-size: 20px;
  color: #000;
  line-height: 1.8;
  transition: 0.3s;
  margin-bottom: 8px;
}
.single-service-card .single-service-title a {
  color: #000;
  transition: 0.3s;
}
.single-service-card .single-service-desc {
  font-size: 16px;
  color: #000;
  transition: 0.3s;
}
.single-service-card:hover {
  transform: translateY(-5px);
  box-shadow: rgba(112, 41, 117, 0.5) 0px 3px 6px;
}
.single-service-card:hover:after {
  transition: 0.3s;
  background: rgba(112, 41, 117, 0.87);
}
.single-service-card:hover .single-service-title, .single-service-card:hover .single-service-desc {
  color: white;
}
.single-service-card:hover .single-service-title a, .single-service-card:hover .single-service-desc a {
  color: white;
}
.single-service-card:hover .icon img {
  filter: brightness(0) invert(1);
  transition: 0.3s;
}
.single-service-card:hover .icon:before {
  transition: 0.3s;
  left: -17px;
}

/*PACKAGES SECTION*/
.packages {
  padding-block: 50px;
}
.packages .wrapper {
  position: relative;
}
.packages .swiper-button-next, .packages .swiper-button-prev {
  color: #702975;
}
.packages .swiper-button-next:after, .packages .swiper-button-prev:after {
  font-size: 25px;
}
@media only screen and (max-width: 600px) {
  .packages .swiper-button-next, .packages .swiper-button-prev {
    display: none;
  }
}
.packages .swiper-button-next {
  transform: translateX(50px);
}
.packages .swiper-button-prev {
  transform: translateX(-50px);
}

.single-package-card {
  border-radius: 10px;
  background: #fff;
  transition: 0.3s;
  height: 100%;
  padding: 24px 40px;
  font-size: 18px;
  font-weight: 500;
}
@media only screen and (max-width: 1024px) {
  .single-package-card {
    font-size: 16px;
  }
}
.single-package-card .single-package-title {
  display: flex;
  gap: 7px;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.single-package-card .package-period {
  margin-bottom: 20px;
}
.single-package-card .package-features {
  line-height: 1.8;
  margin-bottom: 20px;
}
.single-package-card .single-package-price {
  font-weight: bold;
  font-size: 25px;
  margin-bottom: 20px;
}
.single-package-card:hover {
  background: #702975;
  color: #fff;
  box-shadow: rgba(112, 41, 117, 0.5) 0px 3px 6px;
}
.single-package-card:hover .btn {
  background: #fff;
  color: #702975;
}

/* Shipping Methods section */
.shipping-methods {
  padding-block: 50px;
}

.orbit-wrapper {
  position: relative;
  width: 500px;
  height: 500px;
  margin: 120px auto 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.center-logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  width: 216px;
  height: 216px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 0 1px #702975;
}

.center-logo img {
  width: 80%;
  height: auto;
  object-fit: contain;
}

.orbit-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(112, 41, 117, 0.6);
}

.orbit-outer {
  width: 550px;
  height: 550px;
  animation: rotate-clockwise 50s linear infinite;
}

.orbit-inner {
  width: 360px;
  height: 360px;
  animation: rotate-counter-clockwise 45s linear infinite;
}

.orbit-item {
  position: absolute;
  width: 80px;
  height: 80px;
  background: white;
  overflow: hidden;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 0 1px #702975;
  transition: transform 0.3s ease;
}

.orbit-item img {
  width: 100%;
  height: auto;
  object-fit: contain;
  animation: counter-rotate-clockwise 50s linear infinite;
}

.orbit-inner .orbit-item img {
  width: 100%;
  height: auto;
  object-fit: contain;
  animation: counter-rotate-counter-clockwise 45s linear infinite;
}

/* Orbit item positioning */
/* .orbit-outer .orbit-item {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(calc(360deg / 7 * var(--i))) translateY(-275px) rotate(calc(-360deg / 7 * var(--i)));
}

.orbit-inner .orbit-item {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(calc(360deg / 4 * var(--i))) translateY(-180px) rotate(calc(-360deg / 4 * var(--i)));
} */

/* Keyframe animations */
@keyframes rotate-clockwise {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
@keyframes rotate-counter-clockwise {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(-360deg);
  }
}
@keyframes counter-rotate-clockwise {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(-360deg);
  }
}
@keyframes counter-rotate-counter-clockwise {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
/* Responsive design */
@media (max-width: 768px) {
  .orbit-wrapper {
    width: 350px;
    height: 350px;
    margin-top: 0;
  }

  .orbit-outer {
    width: 300px;
    height: 300px;
  }

  .orbit-inner {
    width: 180px;
    height: 180px;
  }

  .orbit-outer .orbit-item {
    transform: translate(-50%, -50%) rotate(calc(360deg / 7 * var(--i))) translateY(-150px) rotate(calc(-360deg / 7 * var(--i))) !important;
  }

  .orbit-inner .orbit-item {
    transform: translate(-50%, -50%) rotate(calc(360deg / 4 * var(--i))) translateY(-90px) rotate(calc(-360deg / 4 * var(--i))) !important;
  }

  .orbit-item {
    width: 50px;
    height: 50px;
  }

  .orbit-item img {
    width: 30px;
    height: 30px;
  }

  .center-logo {
    width: 60px;
    height: 60px;
  }

  .center-logo img {
    width: 35px;
    height: 35px;
  }
}
/* Partners*/
.partners-slider .logo-wrapper {
  border-radius: 10px;
  background: #fff;
  border: 3px solid #0000001a;
  margin: 0 auto;
  transition: 0.3s;
  height: 140px;
  width: 235px;
  align-content: center;
  text-align: center;
}
@media only screen and (max-width: 768px) {
  .partners-slider .logo-wrapper {
    height: 100px;
    width: 150px;
  }
}
.partners-slider .logo-wrapper img {
  max-width: 70%;
  max-height: 70%;
  margin: auto;
  object-fit: contain;
  transition: 0.3s;
}
.partners-slider .logo-wrapper:hover {
  border-color: #702975;
}
.partners-slider .logo-wrapper:hover img {
  transform: scale(1.1);
}

/*Blogs*/
.blogs {
  /* background: url("../images/blogs-bg.webp") 0 0 no-repeat; */
  /* background-size: cover; */
  min-height: 400px; /* or whatever height you need */
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 0 0;
}

.single-blog-card {
  background: #fff;
  border-radius: 26px;
  transition: 0.3s;
}
.single-blog-card .blog-card-img {
  border-radius: 26px 26px 0 0;
  overflow: hidden;
  height: 260px;
  position: relative;
  margin-bottom: 5px;
}
.single-blog-card .blog-card-img img {
  transition: 0.3s;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.single-blog-card .blog-card-img .post-date {
  border-radius: 0px 10px 10px 0px;
  background: #fff;
  position: absolute;
  top: 26px;
  left: 0;
  padding: 8px 10px;
  font-size: 16px;
  font-weight: 500;
  color: #702975;
  z-index: 1;
  transition: 0.3s;
}
.single-blog-card .blog-card-img .post-date i {
  margin-inline-end: 5px;
}
.single-blog-card .blog-card-info {
  padding: 16px;
}
.single-blog-card .blog-title {
  font-size: 18px;
  font-weight: 600;
  color: #702975;
  transition: 0.3s;
  margin-bottom: 15px;
}
.single-blog-card .blog-title a {
  color: #702975;
  transition: 0.3s;
}
.single-blog-card .blog-desc {
  font-size: 16px;
  color: #3D3F41;
  font-weight: 500;
  line-height: 1.8;
  margin-bottom: 25px;
}
.single-blog-card:hover {
  filter: drop-shadow(0px 3px 6px rgba(112, 41, 117, 0.25));
  transform: translateY(-5px);
}
.single-blog-card:hover .blog-card-img img {
  transform: scale(1.1);
}
.single-blog-card:hover .post-date {
  background: #702975;
  color: #fff;
}
.single-blog-card:hover .btn {
  background: #702975;
  color: #fff;
}
.single-blog-card.main-blog-post {
  display: flex;
  gap: 40px;
  margin-bottom: 20px;
}
@media only screen and (max-width: 768px) {
  .single-blog-card.main-blog-post {
    flex-direction: column;
    gap: 20px;
  }
}
.single-blog-card.main-blog-post .blog-card-img {
  flex: 0 0 50%;
  height: 400px;
  border-radius: 10px;
  box-shadow: 0px 3px 6px rgba(112, 41, 117, 0.25);
}
@media only screen and (max-width: 768px) {
  .single-blog-card.main-blog-post .blog-card-img {
    height: 260px;
    flex: auto;
  }
}
.single-blog-card.main-blog-post .blog-card-img .post-date {
  background: #702975;
  color: #fff;
}
.single-blog-card.main-blog-post .blog-title {
  font-size: 25px;
  font-weight: bold;
}
@media only screen and (max-width: 768px) {
  .single-blog-card.main-blog-post .blog-title {
    font-size: 20px;
  }
}
.single-blog-card.main-blog-post .btn-2-border {
  background: #702975;
  color: #fff;
}
.single-blog-card.main-blog-post .btn-2-border:hover {
  background: white;
  color: #702975;
  border-color: #702975;
  box-shadow: none;
}
.single-blog-card.main-blog-post:hover {
  filter: none;
  transform: none;
}

.single-blog-post-sidebar {
  display: flex;
  gap: 16px;
  transition: 0.3s;
}
.single-blog-post-sidebar:not(:last-child) {
  margin-bottom: 20px;
  border-bottom: 1px solid rgba(4, 11, 54, 0.1);
}
.single-blog-post-sidebar img {
  width: 122px;
  height: 60px;
  object-fit: cover;
  border-radius: 10px;
  flex-shrink: 0;
}
.single-blog-post-sidebar a {
  color: black;
}
.single-blog-post-sidebar:hover {
  filter: drop-shadow(0px 3px 6px rgba(112, 41, 117, 0.25));
  transform: translateX(-5px);
}
.single-blog-post-sidebar:hover a {
  color: #702975;
}

.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 50px;
}
.pagination li {
  display: inline-block;
  margin: 0 5px;
}
.pagination li a {
  display: block;
  min-width: 20px;
  font-size: 16px;
  font-weight: bold;
  color: #702975;
  transition: 0.3s;
}
.pagination li a:hover, .pagination li a.active {
  color: #F08721;
}
.pagination li:first-child a, .pagination li:last-child a {
  gap: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/*FOOTER*/
footer {
  margin-top: 10px;
}

.footer-contacts-bar {
  background: #702975;
  border-radius: 10px;
  padding: 23px 40px;
  color: #fff;
  font-size: 16px;
  font-weight: bold;
  margin-bottom: -35px;
  position: relative;
}
.footer-contacts-bar ul {
  margin: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
}
@media (max-width: 768px) {
  .footer-contacts-bar ul {
    gap: 10px;
  }
}
@media (max-width: 600px) {
  .footer-contacts-bar ul {
    justify-content: start;
    gap: 20px;
  }
  .footer-contacts-bar ul li {
    flex-wrap: wrap;
  }
}
.footer-contacts-bar ul li {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.footer-contacts-bar ul li i {
  font-size: 22px;
}
.footer-contacts-bar ul li a {
  color: #fff;
}
.footer-contacts-bar ul li a:hover {
  color: #F08721;
}

.footer-wrapper {
  /* background-image: linear-gradient(to top, rgba(0, 0, 0, 0.88), rgba(0, 0, 0, 0.88)), url("../images/footer-bg.webp"); */
    background-image: linear-gradient(to top, rgba(0,0,0,0.88), rgba(0,0,0,0.88));
    padding-block: 80px 0;
    color: #fff;
    min-height: 400px; /* or whatever height you need */
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}
.footer-logo img {
    min-width: 65% !important;
    width: auto !important;
}
.footer-brief {
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  margin-top: 12px;
  line-height: 2;
}
@media (max-width: 600px) {
  .footer-brief {
    margin-bottom: 40px;
  }
}

.footer-title {
  font-weight: bold;
  margin-bottom: 16px;
}
@media (max-width: 600px) {
  .footer-title {
    position: relative;
    margin-top: 10px;
  }
  .footer-title:before {
    content: "";
    position: absolute;
    top: 10px;
    left: 0px;
    width: 10px;
    height: 10px;
    border-bottom: 2px solid white;
    border-right: 2px solid white;
    transform: rotate(45deg);
    transition: 0.3s;
  }
  .footer-title.open:before {
    transform: rotate(225deg);
    transition: 0.3s;
  }
}

.footer-nav {
  margin: 0;
  padding: 0;
  list-style: none;
}
@media (max-width: 768px) {
  .footer-nav {
    margin-bottom: 35px;
  }
}
.footer-nav li {
  margin-bottom: 10px;
}
.footer-nav li a {
  color: #AAAAAA;
  transition: 0.3s;
}
.footer-nav li a:hover {
  color: #F08721;
  margin-inline-start: 5px;
}

.address-list li {
  margin-bottom: 20px;
  line-height: 2;
}
.address-list li a {
  display: flex;
  gap: 10px;
  align-items: baseline;
}
.address-list li a p {
  margin-bottom: 0;
}

.copyright-wrapper {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-block: 20px;
  font-size: 12px;
  font-weight: 600;
  margin-top: 30px;
}
@media (max-width: 600px) {
  .copyright-wrapper .d-flex {
    flex-wrap: wrap;
    justify-content: center !important;
  }
}

.floating-icons {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 18;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
}
.floating-icons .up-btn {
  background-color: #F08721;
  filter: drop-shadow(0px 3px 6px rgba(239, 62, 104, 0.47));
  color: white;
  padding: 10px;
  border-radius: 50%;
  cursor: pointer;
  transition: 0.3s;
  width: 40px;
  height: 40px;
  text-align: center;
  line-height: 20px;
  opacity: 0;
  visibility: hidden;
  z-index: 20;
}
.floating-icons .up-btn.show {
  opacity: 1;
  visibility: visible;
  transition: 0.3s;
}
.floating-icons .up-btn:hover {
  background-color: #702975;
  color: white;
}
.floating-icons .whatsapp-icon {
  background-color: #2AA81A;
  color: white;
  padding: 10px;
  font-size: 28px;
  border-radius: 50%;
  cursor: pointer;
  transition: 0.3s;
  width: 60px;
  height: 60px;
  text-align: center;
  line-height: 20px;
  z-index: 20;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  animation: pulse-green 2s infinite;
}
.floating-icons .whatsapp-icon:hover {
  background-color: #F08721;
  color: white;
}

/*pulsing animation*/
@keyframes pulse-green {
  0% {
    box-shadow: 0 0 0 0 rgba(42, 168, 26, 0.93);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(225, 78, 29, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(225, 78, 29, 0);
  }
}
/*Sign in Page*/
.signin-img-wrapper {
  min-height: 100vh;
  height: 100%;
  padding: 100px 15px 100px;
  width: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  align-content: center;
  text-align: center;
}
.signin-img-wrapper .hero-title {
  font-size: 42px;
  font-weight: bold;
  color: #fff;
  width: 50%;
  margin-inline: auto;
  line-height: 1.9;
}
@media (max-width: 768px) {
  .signin-img-wrapper .hero-title {
    width: 90%;
    font-size: 30px;
  }
}

.signin-form-wrapper {
  align-content: center;
  padding: 0px 120px;
  height: 80%;
}
@media (max-width: 768px) {
  .signin-form-wrapper {
    padding: 40px 20px;
  }
}
.signin-form-wrapper .btn {
  width: 100%;
  border-radius: 10px;
  margin-top: 30px;
}

.common-form label {
  font-size: 18px;
  margin-bottom: 10px;
  display: block;
}
.common-form .input-wrapper {
  position: relative;
  margin-bottom: 20px;
}
.common-form .form-control {
  border-radius: 10px;
  border: 1px solid rgba(112, 112, 112, 0.47);
  min-height: 48px;
}
.common-form .form-control::placeholder {
  font-size: 16px;
  color: rgba(112, 112, 112, 0.44);
}
.common-form .form-control:focus {
  box-shadow: none;
  border-color: #F08721;
  box-shadow: 0 2px 10px #f0872124;
}
.common-form .form-check-label {
  font-size: 15px;
}

.forget-password {
  font-size: 15px;
  color: #000;
}
.forget-password:hover {
  color: #F08721;
}

.form-check-input {
  background-color: transparent;
  border: 1px solid #bdbdbd !important;
  width: 20px;
  height: 20px;
  box-shadow: none !important;
  outline: none !important;
  margin: 0;
  border-radius: 5px;
  cursor: pointer;
}
.form-check-input:checked {
  background-color: #702975;
  border: 1px solid #702975 !important;
  border-radius: 5px;
}

html[dir=rtl] [type=email], html[dir=rtl] [type=number], html[dir=rtl] [type=tel], html[dir=rtl] [type=url] {
  direction: ltr;
}

.form-title {
  font-size: 35px;
  font-weight: bold;
  text-align: center;
  /* margin-bottom: 20px; */
}

.numbers-list {
  list-style: none;
  padding: 0;
  margin: 0;
  counter-reset: count;
  line-height: 2.5;
}
.numbers-list li {
  counter-increment: count;
}
.numbers-list li:before {
  content: counter(count);
  color: white;
  width: 28px;
  height: 28px;
  font-weight: bold;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #000;
  margin-inline-end: 10px;
}

/*FAQ page*/
.single-faq-item {
  margin-bottom: 25px;
}
.single-faq-item .faq-title {
  border-radius: 10px;
  background: #fff;
  border: 1px solid rgba(112, 41, 117, 0.19);
  box-shadow: 0px 3px 6px rgba(112, 41, 117, 0.25);
  padding: 12px 30px;
  font-size: 20px;
  font-weight: 600;
  color: #702975;
  cursor: pointer;
  position: relative;
  transition: 0.3s;
}
.single-faq-item .faq-title::after {
  content: "";
  position: absolute;
  inset-inline-end: 30px;
  top: 50%;
  transform: translateY(-50%);
  font-family: "Font Awesome 6 Pro";
  font-weight: 900;
  font-size: 15px;
  color: #702975;
  transition: 0.3s;
}
.single-faq-item .faq-title.active {
  background: #702975;
  color: #fff;
}
.single-faq-item .faq-title.active::after {
  transform: translateY(-50%) rotate(180deg);
  transition: 0.3s;
  color: #fff;
}
.single-faq-item .faq-content {
  font-size: 18px;
  font-weight: 500;
  line-height: 2;
  padding-block: 20px;
  display: none;
}

@media only screen and (max-width: 600px) {
  .faq-img, .complains-img {
    width: 40%;
    margin: 0 auto 30px;
  }
}

.custom-file-upload .file-upload {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 6px;
}
.custom-file-upload .file-upload__right {
  display: flex;
  align-items: center;
  gap: 10px;
}
.custom-file-upload .file-upload__title {
  font-weight: 600;
  font-size: 20px;
}
.custom-file-upload .file-upload__icon {
  flex: 0 0 22px;
}
.custom-file-upload .file-upload__hint {
  color: #C0C0C0;
  font-size: 16px;
  user-select: none;
  font-weight: 500;
}
.custom-file-upload .file-upload__choose {
  color: #702975;
  font-weight: 700;
  font-size: 16px;
  cursor: pointer;
  text-decoration: none;
  outline: none;
  border: none;
  background: none;
  transition: 0.3s;
}
.custom-file-upload .file-upload__choose:hover {
  color: #F08721;
}
.custom-file-upload .file-upload input[type=file] {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.payments-list, .shipping-list {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
  align-items: center;
}
.payments-list .payment-item, .payments-list .shipping-item, .shipping-list .payment-item, .shipping-list .shipping-item {
  flex: 1 0 auto;
  max-width: 170px;
  text-align: center;
  transition: 0.3s;
}
.payments-list .payment-item img, .payments-list .shipping-item img, .shipping-list .payment-item img, .shipping-list .shipping-item img {
  width: 100%;
  height: auto;
  object-fit: contain;
}
@media only screen and (max-width: 600px) {
  .payments-list .payment-item, .payments-list .shipping-item, .shipping-list .payment-item, .shipping-list .shipping-item {
    flex: 0 0 auto;
  }
}
.payments-list:hover .payment-item:not(:hover), .payments-list:hover .shipping-item:not(:hover), .shipping-list:hover .payment-item:not(:hover), .shipping-list:hover .shipping-item:not(:hover) {
  filter: grayscale(100%);
}

@media only screen and (max-width: 600px) {
  .content-wrapper {
    text-align: center;
  }
}

.fz9 {
  font-size: 9px;
}

.fz10 {
  font-size: 10px;
}

.fz11 {
  font-size: 11px;
}

.fz12 {
  font-size: 12px;
}

.fz13 {
  font-size: 13px;
}

.fz14 {
  font-size: 14px;
}

.fz15 {
  font-size: 15px;
}

.fz16 {
  font-size: 16px;
}

.fz18 {
  font-size: 18px;
}

.fz20 {
  font-size: 20px;
}

.fz22 {
  font-size: 22px;
}

.fz24 {
  font-size: 24px;
}

.fz25 {
  font-size: 25px;
}
@media only screen and (max-width: 600px) {
  .fz25 {
    font-size: 20px;
  }
}

.fz26 {
  font-size: 26px;
}

.fz30 {
  font-size: 30px;
}

.fz35 {
  font-size: 35px;
}

.fz40 {
  font-size: 40px;
}

.fz45 {
  font-size: 45px;
}

/* language selector */
.language-selector {
  flex-shrink: 0;
  display: flex;
}

.language-btn {
  background-color: transparent;
  color: #702975;
  display: inline-block;
  transition: all 0.3s;
  font-size: 18px;
}
.language-btn .fa-chevron-down {
  font-size: 12px;
}
.language-btn:hover {
  color: #F08721;
}

.dropdown-parent .dropdown-list a.active {
    color: #F08721;
}

@media only screen and (max-width: 600px) {
  .header-icons {
    -moz-column-gap: 10px;
         column-gap: 10px;
  }
}
#loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}
#loader img {
  width: 100px;
}
a{
  cursor: pointer;
}
/*# sourceMappingURL=main.css.map */
