/*
 * ----- Levitate Global Stylesheet -----
 * --------------------------------------------------------------------------------------------------------
 * This global stylesheet contains generalised styling for the entire website.
 * Only modify styles, don't add styles directly to it.
 * --------------------------------------------------------------------------------------------------------
*/
/*
* =============================================
* Initial styling
* ============================================= 
*/
:root {
  font-size: 16px;
  --primary: #E8B923;
  --secondary: #14213C;
  --ternary: #BC5090;
  --quernary: #517CB4;
  --dark: #000000;
  --darkAlt: #010712;
  --lightAlt: #F1F9FF;
  --light: #fff;
  --gradient: linear-gradient(90deg, #FFB832 0%, #BA8A1B 100%);
  --border: rgba(255, 255, 255, 10%);
  --headings: "Rift", Helvetica, Verdana, Arial, sans-serif;
  --text: "Sharp Sans", Helvetica, Verdana, Arial, sans-serif;
  --subHeads: "Sharp Sans";
  --ease: all 0.35s ease;
  --cubic: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  --marqueeLogos: 0;
  --topbarHeight: 0;
}
h1, h2, h3, h4, h5, h6 {
  font-family: var(--headings);
}
h1, h2, h3, h4, h5, h6, p, ul, li {
  margin: 0;
}
html {
  scroll-behavior: smooth;
}
html, body {
  max-width: 100vw;
  overflow-x: hidden;
}
.topBarWrapper {
  max-width: 100%;
}
body {
  font-weight: 600;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-family: var(--text);
}
/**
  * Typography
  * --------------- */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 115% !important;
  color: var(--dark);
}
h1 {
  font-size: 2.25rem;
}
@media (min-width: 768px) {
  h1 {
    font-size: 3.25rem;
  }
}
h2 {
  font-size: 2.25rem;
}
@media (min-width: 768px) {
  h2 {
    font-size: 2.5rem;
  }
}
h3 {
  font-size: 1.875rem;
}
@media (min-width: 768px) {
  h3 {
    font-size: 2rem;
  }
}
h4 {
  font-size: 1.35rem;
}
h5 {
  font-size: 1.25rem;
}
h6 {
  font-size: 1.1rem;
}
p, ul, ol {
  font-size: 1rem;
  line-height: 175%;
  font-weight: 400;
}
@media (min-width: 768px) {
  p, ul, ol {
    font-size: 1.1rem;
  }
}
p {
  margin-bottom: 1rem;
}
p:last-child {
  margin-bottom: 0;
}
.header .menu a:not(.actions a)::after {
  content: "";
  position: absolute;
  bottom: -7px;
  right: 0;
  width: 0;
  height: 1.5px;
  border-radius: 1rem;
  transition: var(--ease);
}
.header .menu a:not(.actions a):hover::after {
  width: 100%;
  right: unset;
  left: 0;
  background-color: var(--primary);
}
.header .menu a {
  position: relative;
}
/**
  * Heading Wrapper
  * -------------------- */
.headingWrapper {
  display: flex;
  gap: 1.5rem;
  padding: 0;
}
@media (min-width: 768px) and (max-width: 1199px) {
  .headingWrapper {
    align-items: center;
    text-align: center;
  }
}
@media (min-width: 768px) {
  .headingWrapper h2 {
    margin: auto;
    max-width: 75%;
  }
}
@media (min-width: 1200px) {
  .headingWrapper h2 {
    margin: unset;
    max-width: 100%;
  }
}
@media (min-width: 768px) {
  .headingWrapper.centered {
    justify-content: center;
    text-align: center;
  }
  .headingWrapper.centered .divider {
    justify-content: center;
  }
  .headingWrapper.centered h2 {
    margin: 0 auto;
    max-width: 45rem;
  }
}
.headerActions {
  gap: 1rem;
}
.headerActions .menu {
  display: flex;
  list-style: none;
  gap: 10px;
  align-items: center;
  padding: 0;
}
.headerActions > ul > li {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: auto;
  position: relative;
  overflow: hidden;
  padding: 0.75rem 1.2rem;
  border: solid #000 1.5px;
  border-radius: 55px;
}
.headerActions > ul > li > a {
  font-size: 14px;
  line-height: 100%;
  font-family: var(--headings);
}
.headerActions > ul > li.imageOnly {
  padding: 0;
  border: none;
  border-radius: 0;
}
.header.absolute {
  position: absolute;
  width: 100%;
}
.row {
  padding: 0;
  width: 100%;
}
.wrapper {
  width: 100%;
  max-width: 1512px;
  margin: 0 auto;
  padding: 5rem 1.5rem;
  z-index: 1;
}
@media (min-width: 768px) {
  .wrapper {
    padding: 5rem 2rem;
  }
}
@media (min-width: 1200px) {
  .wrapper {
    padding: 5rem 3rem;
  }
}
@media (min-width: 1500px) {
  .wrapper {
    padding: 5rem;
  }
}
.wrapperFull {
  padding-left: 0;
  padding-right: 0;
  max-width: 100%;
}
@media (max-width: 991px) {
  .wrapperFull {
    padding-left: 20px;
    padding-right: 20px;
  }
}
/**
  * Buttons
  * -------------- */
.btnGroup {
  flex-wrap: wrap;
  align-items: center;
  gap: 1.5rem;
  margin-top: 10px;
}
@media (min-width: 768px) {
  .btnGroup {
    justify-content: flex-start;
  }
}
@media (min-width: 1200px) {
  .btnGroup {
    justify-content: flex-start;
  }
}
.btn .elementor-button {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  width: auto;
  padding: 16px 2rem;
  border: 2px solid;
  border-radius: 8px;
  font-family: var(--text);
  font-size: 16px;
  line-height: 1;
  font-weight: 600;
  text-transform: capitalize;
  transition: var(--ease);
}
.btn .elementor-button span.elementor-button-text {
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (min-width: 1200px) {
  .btn .elementor-button {
    font-size: 14px;
  }
}
.btn .elementor-button .elementor-button-content-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
}
.btn .elementor-button svg {
  width: 20px;
  height: 20px;
  transition: var(--ease);
}
.btn .elementor-button:hover {
  filter: brightness(105%);
}
.btn .elementor-button:hover svg {
  transition: var(--ease);
  transform: translateX(0.2rem);
}
.width-auto .elementor-button {
  display: inline-flex;
}
ul.slick-dots {
  margin-bottom: 0;
  padding: 0;
  display: inline-block;
  width: 100%;
  text-align: center;
  margin-left: 0;
  margin-top: 50px;
}
ul.slick-dots li {
  display: inline-block;
}
ul.slick-dots li button {
  color: transparent;
  font-size: 0;
  background-color: transparent;
  width: 34px !important;
  height: 34px;
  padding: 0;
  line-height: 30px;
  margin: 0 10px;
  border-radius: 100px;
}
@media (max-width: 767px) {
  ul.slick-dots li button {
    width: 24px !important;
    height: 24px;
  }
}
ul.slick-dots .slick-active button {
  width: 70px !important;
}
@media (max-width: 767px) {
  ul.slick-dots .slick-active button {
    width: 50px !important;
  }
}
.jet-listing-grid__slider .jet-slick-dots {
  align-items: center;
  justify-content: center;
  width: 100%;
  margin: 10px 0;
  padding: 0;
  margin-top: 40px;
}
@media (max-width: 500px) {
  .jet-listing-grid__slider .jet-slick-dots {
    margin-top: 20px;
  }
}
.jet-listing-grid__slider .jet-slick-dots li {
  color: transparent;
  font-size: 0;
  background-color: transparent;
  width: 34px;
  height: 34px;
  padding: 0;
  line-height: 30px;
  margin: 0 5px;
  border-radius: 100px;
}
@media (max-width: 767px) {
  .jet-listing-grid__slider .jet-slick-dots li {
    width: 24px;
    height: 24px;
  }
}
.top-arrow .jet-listing-grid__slider-icon.slick-arrow {
  top: 0;
  left: auto;
  margin-top: -325px;
  width: 110px;
  height: 65px;
  line-height: 65px;
  border-radius: 100px;
}
@media (max-width: 767px) {
  .top-arrow .jet-listing-grid__slider-icon.slick-arrow {
    display: none !important;
  }
}
.top-arrow .prev-arrow {
  right: 135px;
}
@media (max-width: 1200px) {
  .top-arrow .slick-arrow {
    display: none !important;
  }
}
/*
.top-arrow {
    .jet-listing-grid__slider {
        .jet-slick-dots {
            position: absolute;
            width: 100px;
            display: inline-block;
            right: 0;
            top: 15vh;
            text-align: center;

            @media (max-width: 500px) {
                position: static;
                width: 100%;
                display: flex;
            }
            li {
                border: 6px solid;
                margin: 10px auto;

                @media (max-width: 500px) {
                    margin: 0 3px;
                    border: 3px solid;
                }

                &:nth-child(1) {
                    width: 41px;
                    height: 41px;
                }
                &:nth-child(2) {
                    width: 36px;
                    height: 36px;
                }
                &:nth-child(3) {
                    width: 32px;
                    height: 32px;
                }
                &:nth-child(4) {
                    width: 27px;
                    height: 27px;
                }
                &:nth-child(5) {
                    width: 18px;
                    height: 18px;
                }
                &:nth-child(6) {
                    width: 12px;
                    height: 12px;
                }
            }
        }
    }
}
*/
.dark-footer {
  background-color: var(--darkfooter);
}
.dark-footer .col h5 {
  color: var(--darkfootertext);
}
.dark-footer .col a {
  color: var(--darkfootertext);
  font-family: inherit;
}
.dark-footer .col:hover {
  color: var(--hovercolor);
}
.dark-footer .col li svg {
  fill: var(--socialcolor);
}
.dark-footer .col.colOne img {
  max-width: 260px;
}
.dark-footer .col.colOne ul {
  flex-direction: row;
  justify-content: center;
}
.dark-footer .col.colOne ul i {
  font-size: 25px;
  color: var(--socialcolor);
}
.dark-footer .hasSeperator::after {
  background: #fff;
  opacity: 0.25;
}
.dark-footer .copyrightWrapper.dualCols * {
  color: var(--darkfootertext);
  font-family: inherit;
  font-size: 16px;
}
.dark-footer .fieldInputSubmit {
  color: var(--darkfootertext);
  background: var(--socialcolor);
  border-color: var(--socialcolor);
}
.dark-footer .formWrapper .field svg {
  fill: var(--socialcolor);
}
.dark-footer .submitBtn svg {
  fill: var(--darkfootertext);
}
.contactGroup .contactCol {
  padding: 60px 40px;
  border-radius: 20px;
  gap: 25px;
  border: 2px solid;
}
.contactGroup .contactCol .elementor-widget-text-editor * {
  font-size: 16px;
  line-height: 20px;
}
.contactGroup .contactCol .elementor-widget-text-editor a {
  font-family: var(--headings);
  font-weight: bold;
  font-size: 22px;
}
@media (max-width: 1140px) {
  .contactGroup .contactCol .elementor-widget-text-editor a {
    font-size: 16px;
    font-weight: 600;
  }
}
@media screen and (max-width: 1199px) {
  .contactGroup .contactCol {
    flex-direction: column;
    text-align: center;
    width: 100%;
  }
}
.banner {
  background-repeat: no-repeat;
  background-size: cover;
  align-items: center;
  justify-content: center;
}
@media (min-width: 768px) {
  .banner {
    background-position: center bottom;
  }
}
@media (min-width: 1200px) {
  .banner .wrapper {
    min-height: 700px;
    padding-top: 6rem;
    padding-bottom: 6rem;
  }
}
.banner .eyebrow {
  color: #fff;
}
.banner .btn.blue .elementor-button:hover {
  background: transparent;
  color: var(--light);
  border-color: var(--light);
}
.wrapper.centered {
  justify-content: center;
  align-items: center;
  gap: 3rem;
  text-align: center;
}
@media (min-width: 768px) {
  .wrapper.centered {
    gap: 5rem;
  }
}
.wrapper.centered .headingWrapper {
  align-items: center;
}
.homeBanner .wrapper {
  min-height: calc(100vh - 5rem);
}
@media screen and (max-width: 767px) {
  .homeBanner .wrapper {
    min-height: auto;
  }
}
@media (min-width: 768px) {
  .homeBanner .wrapper {
    min-height: calc(85vh - 5rem);
    padding-top: 7.5rem;
    padding-bottom: 7.5rem;
  }
}
@media screen and (max-width: 1199px) {
  .homeBanner .wrapper .left-banner {
    width: 100%;
    text-align: center;
  }
  .homeBanner .wrapper .right-banner {
    display: none;
  }
}
@media screen and (max-width: 1199px) {
  .homeBanner .wrapper {
    min-height: auto;
  }
}
.mainBanner .wrapper {
  min-height: calc(100vh - 5rem);
}
@media (min-width: 768px) {
  .mainBanner .wrapper {
    min-height: calc(85vh - 5rem);
    padding-top: 7.5rem;
    padding-bottom: 12.5rem;
  }
}
/*.innerBanner .wrapper {
    min-height: calc(100vh - 5rem);

    @media (min-width: 768px) {
        min-height: calc(85vh - 5rem);
        padding-top: 7.5rem;
        padding-bottom: 12.5rem;
    }
}*/
.light-footer {
  background-color: #052136;
}
.light-footer .footerWrapper .col h5 {
  color: var(--light);
}
.light-footer .footerWrapper .col h5 svg {
  fill: var(--primary);
  width: 80px;
}
.light-footer .footerWrapper .col a {
  color: var(--light);
  font-family: inherit;
}
.light-footer .footerWrapper .col a:hover {
  color: var(--primary);
}
.light-footer .footerWrapper .col li svg {
  fill: var(--primary);
}
.light-footer .footerWrapper .col.colOne img {
  max-width: 85%;
  margin: auto;
  margin-bottom: 0;
  margin-top: 0;
}
.light-footer .footerWrapper .col.colOne ul {
  flex-direction: row;
  justify-content: center;
}
.light-footer .footerWrapper .col.colOne ul i {
  font-size: 25px;
  color: var(--primary);
}
.light-footer .footerWrapper .hasSeperator::after {
  background: #fff;
  opacity: 0.25;
}
.light-footer .footerWrapper .copyrightWrapper.dualCols * {
  color: var(--lightfootertext);
  font-family: inherit;
  font-size: 16px;
}
.light-footer .footerWrapper .fieldInputSubmit {
  color: var(--light);
  background: var(--socialcolor);
  border-color: var(--socialcolor);
}
.light-footer .footerWrapper .formWrapper .field svg {
  fill: var(--primary);
}
.light-footer .footerWrapper .formWrapper .submitBtn svg {
  fill: var(--light);
}
.light-footer .copyrightWrapper {
  color: white;
}
.light-footer .copyrightWrapper .col.colTwo {
  display: flex;
  gap: 1rem;
}
.light-footer .copyrightWrapper .col.colTwo a {
  color: white;
  font-size: 18px;
}
#primary, .elementor-location-single {
  position: relative;
  z-index: 1;
}
@keyframes spinnerText {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.spinner {
  display: flex;
  justify-content: center;
  align-items: center;
  width: fit-content;
  height: fit-content;
  border-radius: 50%;
  padding: 1rem;
}
.spinnerInner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  width: 256px;
  height: 256px;
  border-radius: 100%;
  position: absolute;
  right: 100px;
  bottom: calc(-7.5rem - 80px);
  z-index: 10;
  background-image: linear-gradient(110deg, #3CBEE8 0%, #0A6CB2 100%);
}
.spinnerInner .centerLogo {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 50%;
  height: 50%;
  margin: auto;
  object-fit: contain;
}
.homeSpinner .vectorText {
  animation: spinnerText 20s linear infinite;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}
@media (min-width: 1600px) {
  .spinnerInner {
    width: 320px;
    height: 320px;
  }
  .spinnerInner h3 {
    font-size: 15px;
    letter-spacing: 10px;
  }
}
@media (min-width: 1400px) {
  .homeSpinner {
    padding: 1rem;
  }
}
.common-form .elementor-form-fields-wrapper input {
  line-height: 35px;
  height: auto;
  padding: 10px 20px;
  border-radius: 40px;
  font-size: 16px;
  border: 1px solid rgba(31, 31, 37, 0.1);
}
@media (max-width: 767px) {
  .common-form .elementor-form-fields-wrapper input {
    font-size: 13px;
  }
}
.common-form .elementor-form-fields-wrapper select {
  line-height: 35px;
  height: auto;
  padding: 15px 20px;
  border-radius: 40px;
  font-size: 16px;
  border: 1px solid rgba(31, 31, 37, 0.1);
}
@media (max-width: 767px) {
  .common-form .elementor-form-fields-wrapper select {
    font-size: 13px;
  }
}
.common-form .elementor-form-fields-wrapper textarea {
  line-height: 35px;
  height: auto;
  padding: 10px 20px;
  border-radius: 30px;
  font-size: 16px;
  border: 1px solid rgba(31, 31, 37, 0.1);
}
@media (max-width: 767px) {
  .common-form .elementor-form-fields-wrapper textarea {
    font-size: 13px;
  }
}
.common-form .elementor-form-fields-wrapper .elementor-field-type-acceptance {
  direction: rtl;
}
.common-form .elementor-form-fields-wrapper .elementor-field-type-acceptance label.elementor-field-label {
  position: static;
  width: calc(100% - 15px);
  float: right;
  height: auto;
  color: white;
  font-family: var(--headings);
  font-weight: 600;
  direction: ltr;
  padding-left: 15px;
}
.common-form .elementor-form-fields-wrapper button.elementor-button.elementor-size-sm {
  min-height: auto;
  line-height: 60px;
  padding: 0 30px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: bold;
  font-family: var(--headings);
  background-color: var(--secondary);
  color: var(--dark);
}
.common-form .elementor-form-fields-wrapper button.elementor-button.elementor-size-sm svg {
  width: 24px;
}
.lightForm .elementor-form-fields-wrapper input {
  background-color: var(--light);
  border: 1px solid white;
}
.lightForm .elementor-form-fields-wrapper select {
  background-color: var(--light);
  border: 1px solid white;
}
.lightForm .elementor-form-fields-wrapper textarea {
  background-color: var(--light);
  border: 1px solid white;
}
.lightForm .elementor-form-fields-wrapper .elementor-field-type-acceptance {
  direction: rtl;
}
.lightForm .elementor-form-fields-wrapper .elementor-field-type-acceptance label.elementor-field-label {
  position: static;
  width: calc(100% - 15px);
  float: right;
  height: auto;
  color: white;
  font-family: var(--headings);
  font-weight: 600;
  direction: ltr;
  padding-left: 15px;
}
.lightForm .elementor-form-fields-wrapper button.elementor-button.elementor-size-sm {
  background-color: var(--ternary);
  color: var(--light);
  border-radius: 45px;
}
.lightForm .elementor-form-fields-wrapper button.elementor-button.elementor-size-sm svg {
  width: 14px;
}
.lightForm .e-form__buttons, .lightForm .elementor-field-type-submit {
  justify-content: flex-start;
}
@media screen and (max-width: 1200px) {
  .noBgMob {
    background-image: none !important;
  }
}
.padTopBottom, .midPad {
  padding-top: 2rem;
  padding-bottom: 2rem;
}
.nopadBottom {
  padding-bottom: 0rem;
}
.nopadTop {
  padding-top: 0rem;
}
.dark-text .nts * {
  color: var(--dark);
}
.marginSep {
  margin-top: 60px;
}
.padBottom {
  padding-bottom: 2rem;
}
.padTop {
  padding-top: 2rem;
}
.marginSep {
  margin-top: 60px;
}
.headerLayout .menu a:not(.actions a)::after {
  content: "" !important;
  position: absolute;
  bottom: -7px;
  right: 0;
  width: 0;
  height: 2px;
  border-radius: 1rem;
  z-index: 1;
  transition: var(--ease);
}
.headerLayout .menu a {
  position: relative;
}
.headerLayout .menu a:not(.actions a):hover::after, .headerLayout .menu .current-menu-item a:after {
  width: 100% !important;
  right: unset;
  left: 0;
  background-color: var(--primary);
}
.mobileNav {
  background: transparent;
  height: auto;
  width: auto;
  align-items: center;
  justify-content: center;
  border-radius: 0;
  gap: 2rem;
}
.mobileNav .navToggle {
  background-color: #fff;
}
.mobileNav .navToggle:after, .mobileNav .navToggle:before {
  background-color: #fff;
}
.mobileNav .navToggleWrap {
  position: relative;
  width: 60px;
  height: 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: var(--dark);
  padding: 15px;
  border-radius: 100px;
  position: relative;
}
.mobileNav .navToggleWrap .navToggle:after {
  top: 40px;
  width: 30px;
  left: auto;
  right: auto;
}
.mobileNav .navToggleWrap .navToggle:before {
  top: 20px;
  width: 30px;
  left: auto;
  right: auto;
}
@media (max-width: 567px) {
  .mobileNav .headerBtn {
    display: none;
  }
}
.mobileMenu {
  background-color: var(--dark);
}
.mobileMenu .mobileLogin {
  display: none !important;
}
.mobileMenu .closeMenu {
  background: var(--primary);
  border: solid var(--dark) 1px;
}
.mobileMenu .closeMenu .closeToggle {
  background-color: var(--dark);
}
.mobileMenu .closeMenu .closeToggle::before {
  background-color: var(--dark);
}
.mobileMenu .menu a {
  color: var(--light) !important;
}
@media (max-width: 767px) {
  .colOne img {
    height: auto;
  }
  .footerWrapper .col {
    padding: 0rem 0;
  }
  .footerContent {
    padding-bottom: 2rem;
    padding-top: 2rem;
  }
}
@media (max-width: 450px) {
  .footerWrapper {
    grid-template-columns: repeat(1, 1fr);
  }
}
.backgroundLight, .bgLight {
  background-color: var(--lightBg);
}
.backgroundPrimary, .bgPrimary {
  background-color: var(--primary);
}
.filterCheckbox {
  margin: 40px 0 !important;
}
.filterCheckbox .jet-radio-list__button {
  color: var(--dark);
  font-size: 14px;
  font-family: var(--text);
  font-weight: 600;
  background-color: var(--light);
  padding: 15px 30px;
  text-transform: capitalize;
  border: 1px solid white;
  border-radius: 100px;
  min-width: 150px;
  text-align: center;
  justify-content: center;
}
.filterCheckbox .jet-radio-list__row {
  margin: 0 !important;
  margin-top: 0;
}
.filterCheckbox fieldset {
  gap: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 567px) {
  .filterCheckbox fieldset {
    flex-direction: column;
  }
}
.filterCheckbox .jet-radio-list__input:checked ~ .jet-radio-list__button {
  color: var(--light);
  background-color: var(--primary);
  border-color: var(--primary);
}
@media (max-width: 750px) {
  .filterCheckbox {
    display: none;
  }
}
.overflowVisible .swiper {
  overflow: visible;
}
.showMob {
  display: none;
}
@media (max-width: 1200px) {
  .showMob {
    display: flex;
  }
}
.socialItems {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 20px;
}
.socialItems a {
  width: 100%;
  max-width: fit-content;
}
.socialItems a svg {
  width: 36px;
  height: 36px;
  fill: var(--primary);
}
.copyrightWrapper {
  justify-content: space-between;
  color: var(--light);
  font-size: 16px;
  gap: 0;
}
.copyrightWrapper p {
  color: var(--light);
  font-size: 16px;
}
.copyrightWrapper a {
  color: var(--light);
  font-size: 16px;
}
.copyrightWrapper .col.colTwo {
  display: flex;
  gap: 20px;
}
