@import url('./footer.css');
@import url('./popup.css');
@import url('./contact-us-modal.css');

@font-face {
  font-family: 'Inter';
  src: url('/fonts/InterVariable.woff2') format('woff2');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

.desktop_version {
  display: block;
}
.tablet_version {
  display: none;
}
@media only screen and (max-width: 1024px) {
  .desktop_version {
    display: none;
  }
  .tablet_version {
    display: block;
  }
}

a {
  text-shadow: none !important;
}

.ui-loader {
  display: none;
}

/* common modal */
.common-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 3;
  display: none;
  opacity: 0;
  transition: opacity 0.5s ease-in-out; /* Fade-in effect */
}

.common-modal.show {
  display: block;
  opacity: 1;
}

.common-modal .overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1;
}

.common-modal-content {
  height: 100%;
  width: 100%;
  padding: 10px;
}
/* common modal end */

/* slider */
.slide {
  transition: opacity 1.5s ease;
}

.slide.hidden {
  opacity: 0;
  pointer-events: none;
}

.slide.visible {
  opacity: 1;
}
/* slider end */


/* btns */
.btn {
  border-radius: 8px !important;
  height: 38px !important;
  padding: 10px !important;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 18px;
}
.btn-lg {
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 22px;
  height: 47px !important;
  padding: 12px 16px !important;
}

.main-section_btn {
  position: absolute; 
  text-align: center; 
  margin-top: 200px; 
  width: 100%; 
  left: 0;
  
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.main-section_btn a {
  margin: 0 auto;
}

.trial-description {
  color: #d7d7d7;
  font-size: 14px;
}
/* btns end */


.text-end .navbar-nav {
  display: flex;
  align-items: center;
}

.nav-link {
  font-weight: 600;
}

.text-end .nav-link {
  color: #fff;
  font-size: 18px;
  transition: opacity 0.3s ease;
}

.text-end .nav-link:hover {
  opacity: 0.8;
}

.text-end .nav-link svg {
  height: 40px;
  margin: 0;
  width: 30px;
}

.text-end .nav-link svg path {
  fill: #fff;
}

header .text-end {
  display: flex;
  justify-content: end;
}

.navbar-toggler,
.navbar-toggler:focus {
  border: 0;
  box-shadow: none;
}

.navbar {
  display: flex;
  justify-content: end;
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255, 255, 255, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
}

@media screen and (max-width: 991px) {
  .hide-mobile {
    display: none;
  }

  .nav-link {
    font-size: 16px;
    font-weight: 400;
  }
}

@media (max-width: 767px) {
  .text-end .navbar-nav {
    align-items: end;
  }
}


