@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

* {
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

:root {
  --clr-white: #fff;
  --clr-light: #f2f2f2;
  --clr-dark: #101010;
  --clr-paragraph: #444;
  --clr-primary: #0098f5;
  --clr-yellow: #ff9b00;
  --clr-border: #ddd;
}

body {
  overflow-x: hidden;
  font-size: 14px;
  line-height: 1.5;
  color: var(--clr-dark);
}

p {
  color: var(--clr-paragraph);
  font-size: 16px;
  margin: 0 0 15px;
}

a {
  transition: 0.3s ease-in-out;
  text-decoration: none;
  color: var(--clr-primary);
}

a:hover {
  text-decoration: none;
  color: var(--clr-primary);
}

ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
}

img {
  max-width: 100%;
}

/* header */
.top_bar_links {
  display: flex;
  align-items: center;
  justify-content: end;
  gap: 30px;
}

.top_bar_header {
  background: rgb(0 152 245 / 50%);
  padding: 7px 0px;
}

ul.top_bar_links li a {
  color: #fff;
  font-size: 14px;
  text-transform: capitalize;
}

header {
  position: fixed;
  top: 0px;
  left: 0;
  width: 100%;
  z-index: 99;
  will-change: transform;
  transition: transform 0.5s cubic-bezier(0.694, 0.048, 0.335, 1),
    background 0.3s;
  transform: translateY(0);
}

.hide-nav {
  transform: translateY(-120%) !important;
  -webkit-transform: translateY(-120%) !important;
}

.sticky-header {
  background: var(--clr-white);
  box-shadow: 0 0 10px rgb(0 0 0 / 30%);
  padding: 0;
}

header .navbar {
  padding: 20px 0;
  transition: all 0.3s ease-in-out;
}

.sticky-header .navbar {
  padding: 5px 0;
}

.header-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 30px;
}

.navbar-brand {
  padding: 0;
  margin: 0;
}

.navbar-brand img {
  width: 120px;
  min-width: 120px;
}

.navigation-container {
  display: flex;
  gap: 40px;
  align-items: center;
}

.navbar-nav {
  gap: 40px;
}

.navbar-nav .nav-link {
  padding: 10px 0 !important;
  font-size: 16px;
  font-weight: 500;
  color: var(--clr-white);
  position: relative;
}

/* dropdown css */

.dropdownItem {
  position: relative;
}

.navbar-nav .dropdownItem .nav-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.dropdownItem .nav-link::after {
  content: "\e5cf";
  font-family: "Material Icons";
  font-size: 24px;
  line-height: normal;
  color: var(--clr-white);
  transition: all 0.2s ease-in-out;
}

.dropdownMenu {
  background: var(--clr-white);
  border-radius: 10px;
  transition: all 0.3s ease-in-out;
  overflow: hidden;
  position: absolute;
  top: 100%;
  left: 0;
  white-space: nowrap;
  transform: translateY(-15px);
  opacity: 0;
  pointer-events: none;
  max-height: 300px;
  overflow: auto;
  box-shadow: 0 5px 20px -3px rgb(0 0 0 / 20%);
}

.dropdownMenu a {
  padding: 10px 15px;
  display: flex;
  border-bottom: 1px solid var(--clr-border);
  transition: all 0.3s ease-in-out;
  color: var(--clr-dark);
}

.dropdownMenu a:hover {
  background: #f5f5f5;
  color: var(--clr-primary);
}

.dropdownMenu li:last-child a {
  border-bottom: 0;
}

.dropdownItem:hover::after {
  transform: rotate(180deg);
}

.dropdownItem:hover .dropdownMenu {
  opacity: 1;
  transform: translateY(0);
  pointer-events: visible;
}

/* dropdown css end */

.sticky-header.show-nav .navbar-nav .nav-link,
.sticky-header.hide-nav .navbar-nav .nav-link,
.sticky-header .dropdownItem .nav-link::after {
  color: var(--clr-dark);
}

.dropdownItem .nav-link::after {
  content: "\e5cf";
  font-family: "Material Icons";
  font-size: 24px;
  line-height: normal;
  color: var(--clr-white);
  transition: all 0.2s ease-in-out;
}

.navbar-nav .dropdownItem .nav-link.active::after,
.navbar-nav .dropdownItem:hover .nav-link,
.navbar-nav .dropdownItem:hover .nav-link::after {
  color: var(--clr-primary);
}

.sticky-header .navbar-nav .nav-link.active,
.sticky-header .navbar-nav .nav-link:hover,
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--clr-primary);
}

/* without banner header */

.without_banner_header .navbar {
  padding: 10px 0;
  transition: all 0.3s ease-in-out;
  /* background: var(--clr-white); */
  box-shadow: 0 0 10px rgb(0 0 0 / 10%);
}

.without_banner_header .navbar-nav .nav-link {
  color: var(--clr-dark);
}

.without_banner_header .navbar-nav .nav-link:hover,
.without_banner_header .navbar-nav .nav-link:active {
  color: var(--clr-primary);
}

.without_banner_header .ToggleBtn span {
  background-color: var(--clr-dark);
}

.without_banner_header .top_bar_header {
  background-color: var(--clr-primary);
}

/* header end */

/* header new */

/* header */

.ToggleBtn {
  border: 0;
  background: transparent;
  display: inline-flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 5px;
  min-width: 50px;
}

.ToggleBtn span {
  display: block;
  width: 24px;
  background: var(--clr-light);
  height: 2px;
  transition: 0.3s ease-in-out;
}

.ToggleBtn span:nth-child(2) {
  width: 16px;
}

.ToggleBtn:hover span:nth-child(2) {
  width: 24px;
}

.ToggleBtn:hover span:first-child,
.ToggleBtn:hover span:last-child {
  width: 16px;
}

.VerificationBtn {
  font-size: 20px;
}

/* side nav */
.ToggleBtn-menu {
  display: flex;
  align-items: center;
}

.sidenav {
  position: fixed;
  top: 0;
  right: var(--sidenav_right, -300px);
  width: 300px;
  height: 100vh;
  transition: all 0.2s ease-in-out;
  z-index: 100;
}

.sidenav-body {
  width: 100%;
  height: 100%;
  background: var(--clr-white);
  padding: 20px;
  box-shadow: 0 0 15px rgb(0 0 0 / 15%);
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  z-index: 999;
}

.sidenav-overlay {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
  transition: all 0.3s ease-in-out;
  opacity: 0;
  visibility: hidden;
}

.sidenav.active {
  --sidenav_right: 0;
}

.sidenav.active>.sidenav-overlay {
  opacity: 1;
  visibility: visible;
}

.sidenav__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  aspect-ratio: 1;
  border: 1px solid var(--clr-dark);
  cursor: pointer;
  background: transparent;
}

.sidenav__list {
  flex: 1;
  overflow: auto;
}

.sidenav__list .sidenav__link {
  padding: 10px 0;
  display: flex;
  color: var(--clr-dark);
  font-weight: 500;
  font-size: 16px;
}

.sidenav__list .sidenav__link:hover,
.sidenav__list .sidenav__link.active {
  color: var(--clr-primary);
}

.submenu-panel {
  display: none;
}

.submenu-panel.active {
  display: block;
}

.menu-header {
  font-weight: 800;
  margin-bottom: 10px;
  display: flex;
  align-items: start;
  gap: 14px;
  font-size: 18px;
}

.back-btn {
  cursor: pointer;
}

.submenu-panel.active {
  display: block;
}

.doubleSlide li a {
  color: var(--clr-dark);
  font-size: 14px;
}

.doubleSlide li a:hover {
  color: var(--clr-primary);
}

.doubleSlide {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.sticky-header .ToggleBtn span {
  background-color: var(--clr-dark) !important;
}

::-webkit-scrollbar-track {
  border-radius: 5px;
}

::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-thumb {
  border-radius: 5px;
  background-color: #888;
}

/* Button */

.ThemeBtn {
  border: 0;
  padding: 5px 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  border-radius: 24px;
  background: var(--clr-primary);
  font-size: 16px;
  font-weight: 500;
  color: var(--clr-white);
  letter-spacing: 0.5px;
  transition: all 0.5s ease-in-out;
  outline: none;
  box-shadow: 0px 5px 15px 0px rgba(0, 0, 0, 0.2);
  text-transform: uppercase;
}

.ThemeBtn:hover {
  color: var(--clr-white);
}

.textBtn {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: var(--clr-dark);
  line-height: 24px;
}

.textBtn:hover {
  color: var(--clr-dark);
}

.textBtn:after {
  content: "\e941";
  font-family: "Material Icons";
  display: inline-block;
  font-size: 24px;
  line-height: normal;
}

/* Button end */

/* inputs group */

.form-control,
.form-select {
  font-size: 14px;
  min-height: 40px;
  padding: 5px 15px;
  border: 1px solid var(--clr-border);
}

.form-control:focus,
.form-select:focus {
  outline: none;
  box-shadow: none;
  border-color: var(--clr-primary);
}

/* inputs group end */

.light-bg {
  background: #f2f2f2;
}

.secHead-center {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.secHead-right {
  text-align: right;
}

.secHead-right .divider {
  justify-content: flex-end;
}

.secHead .divider:before,
.secHead-right .divider:after {
  display: none;
}

.secHead-right .divider:before,
.secHead-center .divider:before {
  display: flex;
}

.secHead h2 {
  font-size: 36px;
  position: relative;
  margin: 0 0 20px;
}

.secHead h2 span {
  font-weight: 600;
  color: var(--clr-primary);
}

.secHead h4 {
  font-size: 28px;
  margin: 0 0 15px;
}

.secHead h6 {
  font-size: 20px;
  font-weight: 500;
  line-height: normal;
}

.divider {
  position: relative;
  text-transform: uppercase;
  letter-spacing: 5px;
  font-size: 16px;
  font-weight: 300;
  display: flex;
  align-items: center;
  gap: 15px;
  margin: 0 0 20px;
}

.divider:before,
.divider:after {
  content: "";
  width: 100px;
  height: 1px;
  background: var(--clr-border);
  display: inline-block;
}

.custom-space {
  padding-top: 70px;
  padding-bottom: 70px;
}

.custom-space-new {
  padding-top: 50px;
  padding-bottom: 50px;
}

.btn-groups {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.swiper-pagination-bullet-active {
  background: var(--clr-primary);
}

/* scroll top */

#scrollTotop {
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  bottom: 25px;
  right: -50px;
  cursor: pointer;
  width: 40px;
  height: 40px;
  border-radius: 100%;
  background: var(--clr-primary);
  z-index: 99;
  box-shadow: 0 3px 10px rgb(0 0 0 / 15%);
  transition: all 0.3s ease-in-out;
  border: 0;
  outline: none;
  animation: pulse-animation 2s infinite;
}

#scrollTotop.showscroll {
  right: 25px;
}

.ScrollArrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.ScrollArrow i {
  font-size: 20px;
  color: var(--clr-white);
}

/* scroll top */

/* keyframe */

.rotate-animation {
  animation: rotate-animation 10s infinite linear;
}

@keyframes rotate-animation {
  0% {
    transform: rotate(0deg);
  }

  50% {
    transform: rotate(180deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.pulse {
  animation: pulse-animation 2s infinite;
}

@keyframes pulse-animation {
  0% {
    box-shadow: 0 0 0 0px rgba(0, 151, 245, 0.5);
  }

  100% {
    box-shadow: 0 0 0 20px rgba(0, 151, 245, 0);
  }
}

.shrink {
  animation: shrink 2s infinite;
}

@keyframes shrink {
  0% {
    background-size: 120% 120%;
  }

  100% {
    background-size: 100% 100%;
  }
}

.drift {
  animation: drift 2s linear infinite alternate forwards;
}

@keyframes drift {
  from {
    border-radius: 100px 100px 0px 100px;
  }

  to {
    border-radius: 0px 100px 100px 100px;
  }
}

.blink {
  animation: blink 2s infinite alternate;
}

@keyframes blink {
  from {
    transform: scale(1);
  }

  to {
    transform: scale(0.7);
  }
}

.loading {
  animation: loading 2s linear infinite alternate forwards;
}

@keyframes loading {
  0% {
    left: -100%;
    right: 100%;
  }

  50% {
    left: 50%;
    right: 40%;
  }

  100% {
    left: 100%;
    right: -100%;
  }
}

/* keyframe end */





.business-hours {
  margin-top: 30px;
  font-size: 14px;
  line-height: 1.6;
}

.business-hours span {
  font-weight: 600;
}

.business-hours ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.business-hours li {
  margin-bottom: 5px;
}

.mobile_app_list {
  list-style-type: disc;
  text-align: left;
  padding-left: 14px;
  padding-bottom: 20px;
}

.mobile_app_list li {
  font-size: 17px;
  line-height: 2.2;
}

.footer_join_text{
  margin-bottom: 0;
}


#bookNowBtn {
    position: fixed;
      bottom: 28px;
      right: 90px;
      z-index: 99999;
      border: none;
      background: transparent;
}


.instagram .secHead{
  text-align: left;
}




/* new css */

  .mySwiper_marquee {
    width: 100%;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #1a95f5;
    border-bottom: 1px solid #f3f3f3;
    padding: 6px 0 !important;
  }

  .mySwiper_marquee .swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .mySwiper_marquee .swiper-slide img {
    width: 131px;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
  }

  .mySwiper_marquee .swiper-wrapper {
    display: flex;
    align-items: center;
  }





  .instagram {
    text-align: center;
  }

  h2.leftout {
    font-size: 20px;
    margin-bottom: 24px;
    text-align: left;
  }

  h2.leftout span {
    color: var(--clr-primary);
  }

  .countydiv {
    color: var(--clr-primary);
  }


  .infoCard .contentBox h6.contentboxh6 {
    text-transform: none;
  }


  /* nima popup css start */

  .nima_popup .modal-content {
    background-image: linear-gradient(#00c6c0, #004e7c);
    border-radius: 15px;
    position: relative;
    overflow: hidden;
  }

  /* .nima_popup .modal-body {
      position: relative;
      padding: 0;
    } */

  .content-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .left_img {
    width: 33%;
  }

  .right_img {
    width: 23%;
    padding-right: 40px;
  }

  .nima_popup .left {
    text-align: center;
  }




  .nima_popup .left h4 {
    font-size: 40px;
    font-weight: 600;
    margin-bottom: 42px;
    letter-spacing: 1px;
    color: #fff;
  }

  .nima_popup .left h3.join-title {
    font-size: 25px;
  }

  .nima_popup .left h2 {
    font-size: 72px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #fff;
    line-height: 72px;
    font-family: "Montserrat", sans-serif;
  }

  .nima_popup .left h3 {
    font-size: 30px;
    font-weight: 600;
    margin: 0 0 20px;
    color: #fff;
    font-family: "JetBrains Mono", monospace;
  }

  .nima_popup .download-btn {
    background-color: #00c6b4;
    padding: 15px 30px;
    border: none;
    border-radius: 40px;
    color: #000;
    font-size: 18px;
    font-weight: 600;
    transition: background 0.3s;
    margin-bottom: 30px;
    z-index: 999;
    display: inline-block;
  }

  .nima_popup .store-buttons img {
    width: 160px;
    height: auto;
    margin: 0 12px;
  }

  /* Close button positioning */
  .modal-header {
    border: none;
    position: absolute;
    right: 15px;
    top: 10px;
    z-index: 3;
  }

  .sliderArrows.custom_arrows svg.swiper-navigation-icon {
    display: none;
}

  /* @media screen and (min-width: 1280px) {
.nima_popup .modal-dialog.modal-dialog-centered {
    max-width:1600px;
}
} */
  @media screen and (max-width: 1400px) {
    .instagram {
      padding: 60px 0;
    }

    .insta_img_profile img {
      width: 100%;
    }
  }


  @media screen and (max-width: 1290px) {

    /* .nima_popup .modal-dialog.modal-dialog-centered {
    max-width:100%;
} */
    .nima_popup .left h2 {
      font-size: 52px;
      line-height: 48px;
    }

    .nima_popup .left h4 {
      font-size: 30px;
    }
  }

  @media screen and (max-width: 1240px) {

    /* .nima_popup .modal-dialog.modal-dialog-centered {
    max-width:100%;
} */
    .nima_popup .left h2 {
      font-size: 30px;
      line-height: 35px;
    }

    .nima_popup .left h4 {
      font-size: 24px;
      margin-bottom: 20px;
    }

    .nima_popup .left h3.join-title {
      font-size: 22px;
    }

    .nima_popup .left h3 {
      margin: 0 0 10px;
      font-size: 16px;
    }
  }

  @media screen and (max-width: 767px) {
    .content-wrapper {
      display: block;
    }

    .left_img,
    .right_img {
      display: none;
    }

    .nima_popup .download-btn {
      font-size: 14px;
    }

    .content-wrapper {
      padding: 20px;
    }

    .nima_popup .left h4 {
      font-size: 20px;
    }

    .nima_popup .left h3.join-title {
      font-size: 17px;
    }

    .nima_popup .store-buttons img {
      margin-bottom: 10px;
    }

  }

  @media only screen and (max-width: 1667px) {
    .contentBox ul.content_box_info li {
      font-size: 13px;
    }
  }

  @media only screen and (max-width: 1200px) {
    .contentBox ul.content_box_info li {
      font-size: 11px;
    }

    .infoCard:hover .contentBox {
      overflow: scroll;
    }
  }
 
  @media only screen and (max-width: 576px) {
    .infoCard:hover .contentBox {
      overflow: auto;
    }
  }