body {
  font-family: "Rubik", sans-serif;
}

/*----- Header -----*/
header {
  transition: all 0.5s;
  z-index: 997;
  background: #14191e;
  height: fit-content;
  width: 94%;
  color: #fff;
  margin: 16px auto 0;
  font-family: "Rubik", sans-serif;
}

.header-smaller {
  border-radius: 14px;
  box-shadow: 0px 4px 20px 0px #00000014;
  padding: 6px 10px;
}


 

.mr-auto {
  margin-right: auto;
}

.btn-danger {
  border-radius: 12px;
  padding: 8px 14px;
  outline: none;
  box-shadow: 0 0 10px #ff5c5c42;
  background-color: #ff0000;
  border-color: #ff0000;
  font-family: "Rubik", sans-serif;
  font-weight: bold;
}

.btn-danger:hover {
  color: #fff;
  background-color: #e50404;
  border-color: #e50404;
  box-shadow: 0 0 18px 1px #ff5c5c42;
}

.btn:focus {
  box-shadow: initial;
}

/* Desktop Navigation */
.nav-menu {
  margin: 0;
  padding: 0;
}

.nav-menu ul {
  list-style: none;
  display: flex;
  margin-bottom: 0;
  padding-left: 0;
  align-items: center;
}

.nav-menu a {
  text-decoration: none;
  color: var(--font-color);
  transition: 0.3s;
  margin: 0px 16px;
  font-size: 18px;
  font-family: "Rubik", sans-serif;
}

.nav-menu li:first-of-type a {
  margin: 0px;
}

.nav-menu a:hover,
.nav-menu .active>a,
.nav-menu li:hover>a {
  color: var(--active-color);
}

.nav-menu .dropdown ul {
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.nav-menu .dropdown:hover>ul {
  border-radius: 5px;
}

.nav-menu .dropdown ul a {
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 500;
  text-transform: none;
}

.nav-menu .dropdown .dropdown>a {
  padding-right: 35px;
}

.dropdown-item.active,
.dropdown-item:active {
  color: #fff;
  text-decoration: none;
  background-color: #eaeaea;
}


.nav-menu .drop-down ul {
  display: block;
  position: absolute;
  top: calc(100% - 30px);
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: white;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: ease all 0.3s;
}

.nav-menu .drop-down:hover>ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
  border-radius: 12px;
}

.nav-menu .drop-down li {
  min-width: 180px;
  position: relative;
}

.nav-menu .drop-down ul a {
  margin: 10px;
  font-family: 'Greta-Med';
  border-radius: 11px;
  font-size: 16px;
  display: flex;
  flex-direction: column;
  text-transform: none;
  color: var(--primary-color);
  padding: 10px;
  background-color: white;
}

.nav-menu small {
  color: var(--font-color);
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-menu .drop-down ul a:hover,
.nav-menu .drop-down ul a.active,
.nav-menu .drop-down ul .active>a,
.nav-menu .drop-down ul li:hover>a {
  color: var(--yellow);
  background-color: #FFFDE7;
}

.nav-menu .drop-down>a:after {
  content: "\f107";
  font-family: 'Font Awesome 5 Pro';
  padding-right: 8px;
}

.nav-menu .drop-down .drop-down ul {
  top: 0;
  left: calc(100% - 30px);
}

.nav-menu .drop-down .drop-down:hover>ul {
  opacity: 1;
  top: 0;
  left: 100%;
}

.nav-menu .drop-down .drop-down>a {
  padding-right: 35px;
}

.nav-menu .drop-down .drop-down>a:after {
  content: "\f107";
  font-family: 'Font Awesome 5 Pro';
  position: absolute;
  right: 15px;
}

@media (max-width: 1366px) {
  .nav-menu .drop-down .drop-down ul {
    left: -90%;
  }

  .nav-menu .drop-down .drop-down:hover>ul {
    left: -100%;
  }

  .nav-menu .drop-down .drop-down>a:after {
    content: "\f107";
  }
}




/* Mobile Navigation */
.header-wider .mobile-nav-toggle {
  left: 25px;
  top: 28px;
}

.mobile-nav-toggle {
  position: fixed;
  z-index: 9999;
  border: 0;
  background: none;
  font-size: 24px;
  transition: all 0.4s;
  outline: none !important;
  line-height: 1;
  cursor: pointer;
  text-align: right;
}

.header-smaller .mobile-nav-toggle {
  left: 45px;
  top: 35px;
}

.mobile-nav-toggle i {
  color: var(--primary-color);
}

.mobile-nav {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  z-index: 9998;
  width: 240px;
  overflow-y: auto;
  background: var(--primary-color);
  border-right: 1px solid #f30c0c;
  transition: ease-in-out 0.2s;
  opacity: 0;
  visibility: hidden;
  padding: 10px 0;
  display: flex;
  justify-content: center;
}

.mobile-nav * {
  margin: 0;
  padding: 0;
  list-style: none;
}

.mobile-nav .drop-down {
  background: #ffffff;
  border-radius: 12px;
  margin: auto;
}

.mobile-nav .drop-down ul li a {
  display: flex;
  flex-direction: column;
}

.mobile-nav ul {
  margin: 22% 0 0 0;
  height: fit-content;
  display: block !important;

}

.mobile-nav .drop-down ul {
  margin: 0 0 0 0;
}

.mobile-nav a {
  display: block;
  position: relative;
  color: white;
  padding: 8px 34px;
  outline: none;
  font-size: 18px;
}

.mobile-nav-overly {
  width: 100%;
  height: 100%;
  z-index: 9997;
  top: 0;
  right: 70%;
  position: fixed;
  background: transparent;
  overflow: hidden;
  display: none;
  transition: ease-in-out 0.2s;
}

.mobile-nav-active {
  overflow: hidden;
}

.mobile-nav-active .mobile-nav {
  opacity: 1;
  visibility: visible;
}

.mobile-nav-active .mobile-nav-toggle i {
  color: #c5c5c5;
}


.hero {
  background-size: cover;
  padding: 100px 0;
  color: #fff;
}

.hero .title h1 {
  color: white  ;
  font-size: 48px;
  margin-bottom: 20px;
}

.cover {
  position: relative;
}

.absolute-img {
  position: absolute;
  top: 10px;
  left: 10px;
}

@keyframes upAndDown {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-20px);
  }
}

.animated-arrow {
  animation: upAndDown 2s infinite;
}


.ft-box {
  display: flex;
  align-items: center;
  margin-bottom: 30px;
}

.ft-box img.ft-img {
  margin-right: 20px;
}




.about .title img {
  display: block;
  margin: 0 auto 20px;
}

.about .title h1 {
  text-align: center;
  margin-bottom: 40px;
}

.download {
  background-color: #f9f9f9;
  padding: 50px 0;
}

.download .title h1 {
  font-size: 36px;
  margin-bottom: 20px;
}


.contact {
  padding: 50px 0;
}

.contact .title h1 {
  font-size: 36px;
  margin-bottom: 20px;
  color: #000000;
}

.contact form .form-label {
  font-weight: bold;
}

.floated-chat {
  position: fixed;
  bottom: 20px;
  left: 20px;
  background: #4A41AA;
  color: #fff;
  padding: 10px 15px;
  border-radius: 50%;
  cursor: pointer;
}

.cover .swiper {
  background-color: white;
  border-radius: 46px;
  width: 75%;
  height: 100%;
  padding: 10px;
  box-shadow: 5px 2px 53px 0 var(--swiper-shadow);
}

.swiper-pagination {
  text-align: left;
  padding: 0 90px 0 20px;
}

.cover .swiper-horizontal>.swiper-pagination-bullets,
.cover .swiper-pagination-bullets.swiper-pagination-horizontal,
.cover .swiper-pagination-custom,
.cover .swiper-pagination-fraction {
  bottom: -30px;
}

.cover .swiper-slide img {
  display: none;
}

.cover .swiper-slide-active img {
  width: 100%;
  object-fit: contain;
  height: fit-content;
  border-radius: 36px;
  display: block;
}

/*------Hero Section ----*/
.hero {
  margin-top: 64px;
  display: flex;
  padding: 130px 0 0 0;
  background-size: 311px;
  background-position: top 91px right;
  background-repeat: no-repeat;
}

.hero-content {
  color: #333;
}

.hero .title {
  text-align: center;
  color: #000000;
}

.hero .title .absolute-img {
  position: absolute;
  width: 70px;
  bottom: 1px;
  left: 107px;
}

.swiper-pagination-bullet {
  width: var(--swiper-pagination-bullet-width, var(--swiper-pagination-bullet-size, 64px));
  height: var(--swiper-pagination-bullet-height, var(--swiper-pagination-bullet-size, 6px));
  display: inline-block;
  border-radius: var(--swiper-pagination-bullet-border-radius, 10px);
  background-color: var(--lazy-color);
  opacity: var(--swiper-pagination-bullet-inactive-opacity, 1);
}

.swiper-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 var(--swiper-pagination-bullet-horizontal-gap, 6px);
}

.swiper-pagination-bullet-active {
  background-color: var(--active-color);
}

footer {
  background: #000000;
  color: #fff;
  padding: 30px 0;
  text-align: center;
}

footer .footer-info h5 {
  font-size: 20px;
  margin-bottom: 15px;
}

footer .social-links .icon {
  width: 30px;
  margin: 0 5px;
}

footer .lower-footer {
  font-size: 14px;
  margin-top: 20px;
}


@media (max-width:768px) {
  .header-wider {
    padding: 0 15px;
    height: 90px;
    border-radius: 0;
    padding-left: 70px;
  }

  .header-smaller {
    padding-left: 44px;
  }

  .func-img {
    width: 240px;
  }

  .header-smaller .mobile-nav-toggle {
    top: 38px;
    left: 35px;
  }

  .mobile-nav-toggle {
    font-size: 22px;
  }

  .mobile-nav-toggle {
    left: 30px;
  }


  .header-wider .mobile-nav-toggle {
    top: 23px;
    left: 18px;

  }

  .ft-box .ft-details p {
    font-size: 18px;
  }

  .about {
    background-size: 340px;
    background-position: 50% center;
  }

  .mock-up {
    margin-right: 0;
    height: 460px;
    width: auto;
    margin-bottom: -20%;
  }

  .func-des h4 {
    font-size: 18px;
  }

  .func-des .bg-light p {
    font-size: 17px;
    line-height: 27px;
  }

  .func-des h4 {
    padding: 10px 14px;
    border-radius: 14px 0 14px 14px;
  }

  .func-des .bg-light {
    padding: 37px 18px 18px;
  }

  .bg-white {
    border-radius: 34px;
    padding: 35px;
  }

  .ag .bg img {
    width: 26px;
  }

  .bg img {
    width: 24px;
  }

  .bg {
    width: 48px;
    height: 48px;
  }

  .btns .d-flex a {
    font-size: 14px;
  }

  .download p {
    font-size: 20px;
  }

  .form-label {
    margin: 0 4px 2px 0;
    padding: 0px 6px;
    border-radius: 6px;
    margin-right: 6px;
    font-size: 16px;
  }

  .form-control,
  .form-select {
    border-radius: 10px;
    margin-bottom: 1rem;
    padding: 0.7rem 0.8rem 0.6rem;
    font-size: 14px;
  }

  .contact .title p {
    color: var(--font-color);
    font-size: 16px;
  }

  footer {
    padding: 2rem 0 0;
    border-radius: 40px 40px 0 0;
  }

  footer .img-fluid {
    height: 64px;
  }

  .contact .img-fluid {
    display: none;
  }

  .country-code {
    display: flex;
    flex-direction: column;
  }

  .custom-select {
    margin-bottom: 1rem;
  }

  .form-check {
    margin: 0.5rem 0;
  }

  .demo-form .form .btn-secondary {
    margin-top: 10px;
  }

  .blog-card {
    height: 400px;
  }

  .blog-card-front {
    display: block;
  }

  .blog-card-front,
  .blog-card-back {
    height: 384px;
  }
}

@media (max-width:575px) {

  .hero {
    background-size: 288px;
    padding: 116px 0 0 0;
    min-height: fit-content;
  }

  .hero .container {
    width: 95%;
  }

  .title h1 {
    font-size: 28px;
    line-height: 48px;
  }

  .cover {
    margin-top: 2rem;
  }

  .dots {
    z-index: 999;
    width: 74px;
  }

  .dots.low {
    right: -21px;
    bottom: -26px;
  }

  .dots.up {
    left: -24px;
    top: -19px;
  }

  .hero .title .absolute-img {
    width: 47px;
    bottom: 2px;
    left: 74px;
  }

  .swiper-pagination-bullet {
    width: var(--swiper-pagination-bullet-width, var(--swiper-pagination-bullet-size, 50px));
  }

  .cover .swiper-slide img {
    border-radius: 24px;
  }

  .ft-box .ft-img {
    width: 85px;
    height: 85px;
  }

  .ft-box .ft-details h3 {
    font-size: 20px;
  }

  .ft-box .ft-details p {
    font-size: 16px;
  }

  .ft-box .ft-details {
    margin: 19px 9px;
  }

  .mock-up {
    height: auto;
    width: 279px;
    margin-right: 0;
    margin-bottom: -30%;
  }

  .about {
    background-size: 324px;
    background-position: 32% center;
  }



  .about .row>div {
    justify-content: center;
  }

  .about .title img {
    width: 52px;
    top: -35px;
    right: -50px;
  }

  .func-img {
    margin-right: 0;
  }

  .download p {
    font-size: 16px;
  }

  .bg img {
    width: 22px;
  }

  .btn {
    padding: 8px 43px;
    font-size: 14px;
    border-radius: 10px;
  }

  .bg {
    width: 40px;
    height: 40px;
  }

  .btns .d-flex a {
    flex-direction: column;
    gap: 0px;
    padding: 0 8px 8px;
    border-radius: 12px;
    font-size: 12px;
  }

  .bg-white {
    border-radius: 29px;
    padding: 24px 10px;
    gap: 10px;
  }

  .contact {
    width: 80%;
    margin: auto;
  }

  main {
    padding-bottom: 120px;
  }

  footer .row {
    justify-content: center;
  }

  .demo-form .form form p {
    line-height: inherit;
  }

  .demo-form {
    background-size: 232px;
  }

  .demo {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .demo-form form {
    margin: auto;
  }

  .demo-form .row {
    justify-content: center;
  }

  .faq {
    padding-top: 100px;
    min-height: 100vh;
    display: flex;
    align-items: center;
  }

  .faq .row {
    gap: 2rem;
  }

  .faq .col-md-5 {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .faq .col-md-5 img.img-fluid {
    max-width: 56%;
  }

  .blog .row {
    justify-content: center;
  }

  .blog-card {
    height: 548px;
}

  .blog-card-front,
  .blog-card-back {
    height: 430px;
  }

  .blog-page {
    padding: 110px 0 130px;
    margin: 0px 0 -30px;
  }
}



@media (max-width: 440px) {
  .header-smaller {
    padding-left: 36px;
  }

  section {
    min-height: fit-content;
    margin: 0px 0 40px;
  }

 
  .why .title span {
    font-size: 20px;
  }

  .why .title .img-small {
    width: 16px;
  }

  .heading p {
    width: 98%;
  }

  .header-wider {
    height: 76px;
    border-radius: 0;
    padding-left: 44px;
  }

  .heading h2 {
    font-size: 26px;
    line-height: 35px;
  }

 

  .swiper-pagination {
    padding: 0px 33px 0 13px;
  }

  .cover .swiper {
    border-radius: 28px;
    width: 100% !important;
  }

  .swiper-pagination-bullet {
    width: var(--swiper-pagination-bullet-width, var(--swiper-pagination-bullet-size, 42px));
  }

  .swiper-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet,
  .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 0 var(--swiper-pagination-bullet-horizontal-gap, 3px);
  }

  .swiper-pagination-2 .swiper-pagination-bullet {
    width: var(--swiper-pagination-bullet-width, var(--swiper-pagination-bullet-size, 46px));
  }

  .download {
    padding: 63px 0 50px;
  }

  .bg-white {
    border-radius: 22px;
    padding: 25px 12px;
  }

  .bg-white .title,
  .bg-white p {
    text-align: center;
  }

  .btns {
    flex-direction: column;
    gap: 13px;
  }

  .contact {
    width: 90%;
  }

  .title h1 {
    font-size: 26px !important;
  }

  .hero .title .absolute-img {
    left: 66px;
  }

  .header-smaller .mobile-nav-toggle {
    left: 24px;
  }

  .header-wider .mobile-nav-toggle {
    left: 22px;
    top: 28px;
  }

  .faq .accordion-button,
  .faq .accordion-body {
    font-size: 17px;
  }
}

.features-list .ft-box {
  cursor: pointer;
  margin-bottom: 15px;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

.features-list .ft-box:hover {
  background-color: #f0f0f0;
}

.feature-details {
  border: 1px solid #ddd;
  border-radius: 5px;
  padding: 20px;
  background-color: #fafafa;
}

.feature-details .feature-detail {
  display: none;
}

.feature-details .feature-detail.active {
  display: block;
}