html,
body {
  padding: 0;
  margin: 0;
  font-family: "visby", -apple-system, BlinkMacSystemFont, Segoe UI, Roboto,
    Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
  background-color: #fff;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

/* custom scrollbar */
.card-body::-webkit-scrollbar {
  width: 5px;
}
.card-body::-webkit-scrollbar-track {
  box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
}
.card-body::-webkit-scrollbar-thumb {
  background-color: #0080f0;
  border-radius: 100px;
}

a {
  color: inherit;
  text-decoration: none;
}

* {
  box-sizing: border-box;
}

.hero-caption {
  color: #f6f9fc;
}

.gradient-underline {
  height: 3px;
  width: 280px;
  margin: 0 auto;
  border-radius: 50%;
  background: #ffffff;
  background: -moz-radial-gradient(
    center,
    ellipse cover,
    #ffffff 1%,
    #ffffff00 100%
  );
  background: -webkit-radial-gradient(
    center,
    ellipse cover,
    #ffffff 1%,
    #ffffff00 100%
  );
  background: radial-gradient(ellipse at center, #ffffff 1%, #ffffff00 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#ffffff',GradientType=1 );
}

/* loading spinner */

.loading-container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  width: 100%;
  position: fixed;
  background-color: rgba(0, 0, 0, 0.76);
  z-index: 99999;
}

.animate-fadeIn {
  animation: fadeIn 0.5s ease-in-out forwards;
}

.animate-fadeOut {
  animation: fadeOut 0.2s ease-in-out forwards;
}
.animate-slideIn {
  animation: slideIn 0.2s ease-in-out forwards;
}

.animate-slideOut {
  animation: slideOut 0.2s ease-in-out forwards;
}

.animate-slideIn2 {
  animation: slideIn2 0.2s ease-in-out forwards;
}

.animate-slideOut2 {
  animation: slideOut2 0.2s ease-in-out forwards;
}
.animate-slideIn3 {
  animation: slideIn3 0.2s ease-in-out forwards;
  /* height: 0; */
}

.animate-slideOut3 {
  animation: slideOut3 0.2s ease-in-out forwards;
  /* height: auto; */
}

.lyo-icon-path1 {
  stroke-dasharray: 100;
  animation: dash 5s linear infinite;
  stroke: rgb(13, 202, 240);
  stroke-width: 2px;
}
.lyo-icon-path2 {
  stroke-dasharray: 100;
  animation: dash 5s linear infinite;
  stroke: #fff;
  stroke-width: 2px;
}

@keyframes dash {
  to {
    stroke-dashoffset: 1000;
  }
}

/* Animations */

@keyframes fadeIn {
  0% {
    visibility: hidden;
    opacity: 0;
  }
  1% {
    visibility: visible;
    opacity: 0;
  }
  100% {
    visibility: visible;
    opacity: 1;
  }
}

@keyframes fadeOut {
  0% {
    visibility: visible;
    opacity: 1;
  }
  99% {
    visibility: visible;
    opacity: 0;
  }
  100% {
    visibility: hidden;
    opacity: 0;
  }
}

@keyframes slideIn {
  0% {
    visibility: hidden;
    opacity: 0;
    transform: translateY(-20px);
  }
  1% {
    visibility: visible;
    opacity: 0;
  }
  100% {
    visibility: visible;
    opacity: 1;
    transform: translateY(0px);
  }
}

@keyframes slideOut {
  0% {
    visibility: visible;
    opacity: 1;
  }
  99% {
    visibility: visible;
    opacity: 0;
    transform: translateY(-20px);
  }
  100% {
    visibility: hidden;
    opacity: 0;
  }
}
@keyframes slideIn2 {
  0% {
    visibility: hidden;
    opacity: 0;
    transform: translateY(-50px);
  }
  1% {
    visibility: visible;
    opacity: 0;
  }
  100% {
    visibility: visible;
    opacity: 1;
    transform: translateY(0px);
    background-color: #f6f9fc;
    height: auto;
  }
}

@keyframes slideOut2 {
  0% {
    visibility: visible;
    opacity: 1;
  }
  99% {
    visibility: visible;
  }
  100% {
    visibility: hidden;
    opacity: 0;
  }
}

@keyframes slideIn3 {
  0% {
    visibility: hidden;
    opacity: 0;
  }
  1% {
    visibility: visible;
    opacity: 0;
  }
  100% {
    visibility: visible;
    opacity: 1;
    height: auto;
  }
}

@keyframes slideOut3 {
  0% {
    visibility: visible;
    opacity: 1;
  }
  99% {
    visibility: visible;
    opacity: 0;
  }
  100% {
    visibility: hidden;
    opacity: 0;
    height: 0;
  }
}

.dropdown-toggle {
  position: relative !important;
}

.dropdown-toggle::after {
  position: absolute;
  right: -10px;
  top: 40%;
}
.mobile-nav-item .dropdown-toggle::after {
  position: absolute;
  right: -20px;
  top: 40%;
}

.customer-service-sec h4 {
  font-weight: 700;
  font-size: 50px;
  line-height: 55px;
}

.customer-service-sec h5 {
  font-weight: 700;
  line-height: 55px;
  font-size: 30px;
}

.bg-icon-parent {
  transform-style: preserve-3d;
}

.soon-subtext-absolute {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  font-size: 10px;
}

.soon-subtext-regular {
  display: block;
  font-size: 10px;
}

.login-modal-item {
  font-weight: 600;
  color: #0080f0;
  background-color: #fff;
  text-align: center;
  border: 2px solid #0080f0 !important;
  border-radius: 10px;
  padding: 30px;
  margin: 5px 0;
  transition: all 0.3s;
}
.login-modal-item:hover {
  color: #fff;
  background-color: #0080f0;
}

.login-modal-title {
  font-weight: 800;
}

.dropdown-item-mobile {
  background-color: #fff;
  margin-left: 20px;
  font-size: 12px;
}

.mobile-nav-item {
  border-bottom: 1px solid #9b9b9b;
  padding: 10px 30px;
}

.dropdown-item-mobile img {
  height: 60px;
}

.dropdown-item-mobile li {
  padding: 10px;
}

.main-nav .nav-link.link.mobile-login-button {
  text-align: center;
  align-self: center;
  width: 60%;
}

@media screen and (max-width: 768px) {
  .main-nav .nav-link.link.mobile-login-button {
    width: 90%;
  }
}

.navbar-nav .nav-link img {
  height: 20px;
}

.tooltip {
  z-index: 99999;
}

.projects-sec li {
  list-style: none;
  padding: 10px;
}

.projects-sec h4 {
  color: #2b3992;
  font-family: "visby";
  font-style: normal;
  font-weight: 700;
  font-size: 36px;
  line-height: 46px;
}

.projects-slider-arrow {
  position: absolute;
  display: flex;
  align-items: center;
  text-align: center;
  cursor: pointer;
  top: 50%;
  height: 50px;
  width: 50px;
  background-color: #fff !important;
  border-radius: 100%;
  color: #fff;
  transform-origin: center;
  box-shadow: 0px 0px 3px #3747ac;
}

.projects-slider-arrow.arrow-next {
  right: -20px;
  justify-self: start;
  padding-left: 16px;
  transform: translateY(-50%);
}
.projects-slider-arrow.arrow-prev {
  left: -20px;
  z-index: 50;
  justify-self: end;
  padding-left: 16px;
  transform-origin: center;
  transform: translateY(-50%) rotate(180deg);
}

@media screen and (max-width: 580px) {
  .projects-slider-arrow.arrow-prev {
    left: 0px;
  }
  .projects-slider-arrow.arrow-next {
    right: 0px;
  }
}

@media screen and (max-width: 456px) {
  .ecosystem-sec {
    padding: 50px 0 !important;
  }
  .slider-arrow.arrow-next {
    right: 0px !important;
  }
  .slider-arrow.arrow-prev {
    left: 0px !important;
    z-index: 50;
  }
}

@media screen and (max-width: 1200px) {
  #lyotravel-hero .btn-wrp {
    justify-content: center;
  }
}

#whitelabel-main .licened-sec {
  background-color: #f6f9fc;
}

#charity,
#vision {
  background-color: #f6f9fc;
}

.projects-sec .slick-list {
  display: flex;
  align-items: center; /* center images in the slider */
}

.form-error {
  color: rgb(184, 2, 2);
}

.login-page {
  background-color: #f6f9fc;
  font-family: "visby";
}
.login-page .container {
  padding-top: 200px;
}

.login-page .card {
  background: #ffffff;
  box-shadow: 0px 1px 20px rgba(182, 182, 182, 0.25);
  border-radius: 10px;
  border: none;
  padding-top: 30px;
  transition: all 0.3s;
}

.login-page .card.live:hover {
  box-shadow: 0px 1px 20px rgba(0, 196, 16, 0.25);
}
.login-page .card.offline:hover {
  box-shadow: 0px 1px 20px rgba(196, 0, 0, 0.25);
}

.login-page .card-title {
  text-align: center;
  color: #37417c;
  font-weight: 700;
  font-size: 16px;
}

.login-page img {
  margin: 20px 0;
  height: 100px;
}

.login-page h1 {
  text-align: center;

  color: #37417c;
  font-weight: 700;
  font-size: 36px;
}

.login-page a img {
  height: 20px;
}

.login-page .login-button {
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border: 1px solid #0080f0;
  color: #2b3992;
  width: 100%;
  padding: 0;
}

.login-page .login-button:hover {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #0080f0;
  border: 1px solid #0080f0;
  color: #fff;
  width: 100%;
  padding: 0;
}
.login-page .store-button {
  width: 30%;
  padding: 10px;
}

.cookie-consent {
  padding: 30px;
  height: 500px;
  width: 500px;
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 40px;
  position: fixed;
  bottom: 0;
  left: 15px;
  z-index: 99999;
}

.cookie-consent h1 {
  font-size: 24px;
}

.cookie-consent .form-switch {
  display: flex;
  align-items: center;
}
.cookie-consent input.form-check-input {
  padding: 10px 20px;
  margin-right: 10px;
}

@media screen and (max-width: 542px) {
  .cookie-consent {
    width: 100%;
    left: 0;
  }
}

.roadmap-sec {
  padding: 100px 10px;
  background-color: #fff;
}
.roadmap-sec h2 {
  font-family: "visby";
  font-style: normal;
  font-weight: 700;
  font-size: 40px;
  line-height: 46px;
}

.roadmap-sec p {
  font-weight: 400;
  font-size: 20px;
  line-height: 35px;
}

.roadmap-sec .btn {
  max-width: 200px;
}

.custom-tooltip-wrapper {
  width: 30%;
}
.custom-tooltip-wrapper .btn {
  width: 100%;
}

.navbar img.custom-dropdown-arrow {
  height: 17px;
  margin-left: 2px;
}

.navbar-nav .nav-item:hover .custom-dropdown-arrow {
  animation: slideDown 0.2s linear forwards;
}

@keyframes slideDown {
  0% {
    transform: translateY(0px);
  }

  100% {
    transform: translateY(2px);
  }
}

.dropdown-menu {
  border: none;
  box-shadow: 0px 0px 10px #ddd;
}

.dropdown-menu .dropdown-item {
  padding: 20px 10px;
  font-family: "visby";
  font-size: 14px;
}
.dropdown-menu .dropdown-item:hover {
  background-color: rgb(13, 202, 240);
}

.footer-socials {
  width: 223px;
}

.footer-socials li {
  display: flex;
  justify-content: flex-end;
  transition: all 0.2s;
}

.footer-socials li:hover {
  transform: scale(1.1);
}

.socials-col {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

@media screen and (max-width: 992px) {
  .socials-col {
    align-items: flex-start;
  }

  .footer-socials li {
    justify-content: flex-start;
  }
}

@media screen and (max-width: 768px) {
  .footer-socials {
    width: 80%;
  }
  .footer-socials li {
    margin: 10px 0;
    display: flex;
    justify-content: center;
    align-items: center;
  }
}

.product-logo-wrapper img{
  height: 42px;
}

@media screen and (max-width: 520px) {
  .customer-service-sec h4 {
    font-size: 40px;
  }
  /* .main-banner .logo-name {
    font-size: 40px !important;
  } */

  .product-logo-wrapper {
    justify-content: center;
  }
}

@media screen and (max-width: 340px) {
  .customer-service-sec h4 {
    font-size: 35px;
  }
  .customer-service-sec h5 {
    font-size: 24px;
  }
}

video::-webkit-media-controls {
  display: none !important;
}

video::-webkit-media-controls-start-playback-button {
  display: none !important;
  -webkit-appearance: none;
}

.error-page-wrapper .error-page-message {
  padding: 300px 10%;
  font-size: 38px;
  text-align: center;
}

.error-page-message .status-code {
  font-size: 48px;
  font-family: "Roboto";
  color: #0080f0;
  font-weight: 800;
}

.login-btn {
  white-space: nowrap;
}