
/********* COMMON *********/
:root {
    --pxs-color-theme-bg-yellow: #faa61a;
    --pxs-color-theme-primary: #ed1c24;
}

/********* HEADER *********/
.header .top-bar {
    background-color: #181818;
}
.header .top-bar .top-right-content .header-btn .pxs-header-btn {
    height: 45px;
    line-height: 45px;
    padding: 0px 45px;
    border-radius: 4px;
    text-transform: uppercase;
}
.header .top-bar .top-bar-inner .top-left-content .top-left-list li:nth-child(1) a i {
    font-size: 16px;
    margin-bottom: 0;
}
.header .primary-header-inner .header-menu-wrap .sub-menu li li:hover {
    background-color: var(--pxs-color-theme-primary);
}

/********* BANNER *********/
.hero-left .hero-thumb .counter-item {
    background-color: #faa61a;
}
.hero-bottom .hero-author-info {
    column-gap: 18px;
}

/********* Top Destinations *********/
.project-box:before {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.01) 0%, #181818 80%);
}

/********* UMRAH PACKAGES *********/
.event-item .event-content-wrap .event-content .event-content-left .activity span:nth-child(1) {
    border-right: 0;
}

/********* FLIGHTS *********/
.offer-item .offer-content .offer-title {
    font-weight: 700;
    text-shadow: 2px 2px rgba(0, 0, 0, 0.5);
}

/********* SUBSCRIBE *********/
.bg-red2 {
    background-color: #fef6f6;
}

/********* FOOTER *********/
.footer-section {
    padding-top: 0;
}
footer span.ftr-adrs {
    font-size: 18px;
    color: #FFF;
    font-weight: 600;
    padding-left: 10px;
}
.widget-item .widget-header:before,
.widget-item .widget-header:after {
    background-color: #faa61a;
}
.widget-item.item-2 {
    margin-left: 0;
}
.footer-section:before {
    background-color: #ed1c24;
}

/* Pre Loader */
.preloader {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 5000;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    background-color: white;
    transition: opacity 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
  }
  
  .preloader__wrap {
    overflow: hidden;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 72px;
    height: 72px;
    border-radius: 30px;
    background-color: white;
    box-shadow: 0px 2px 24px 0px #00000014;
    animation-name: preloaderWraper;
    animation-iteration-count: infinite;
    animation-duration: 1.8s;
    animation-timing-function: ease;
  }
  
  .preloader__icon {
    position: absolute;
    animation-name: preloader;
    animation-iteration-count: infinite;
    animation-duration: 1.8s;
    animation-timing-function: ease;
  }
  
  .preloader__title {
    font-size: 47px;
    font-weight: 600;
    line-height: 68px;
    letter-spacing: 0em;
    margin-top: 16px;
  }
  
  .preloader.-is-hidden {
    opacity: 0;
    pointer-events: none;
  }
  
  @keyframes preloaderWraper {
    0% {
      transform: scale(1);
    }
    50% {
      transform: scale(1.2);
    }
    100% {
      transform: none;
    }
  }
  
  @keyframes preloader {
    0% {
      transform: translateY(150%) scale(1);
    }
    50% {
      transform: translateY(0%) scale(1.2) rotate(20deg);
    }
    100% {
      transform: translateY(-150%) rotate(-20deg);
    }
  }
  