@import url("https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap");

body {
  font-family: "Outfit", sans-serif !important;
}

a {
  transition: all 0.5s ease-in-out;
  text-decoration: none !important;
}

ul {
  margin: 0 !important;
  padding: 0 !important;
}

ul li {
  list-style: none;
}

.section-pd {
  padding-top: 80px;
  padding-bottom: 80px;
}

.btn-theme {
  padding: 12px 20px;
  background-color: #2360fb;
  color: #fff;
  border: 1px solid #2360fb;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  border-radius: 30px;
  font-size: 16px;
  font-weight: 500;
  transition: all 0.5s ease-in-out;
}

.btn-theme:hover {
  background-color: transparent;
  border-color: #2360fb;
  color: #2360fb;
}

.btn-white {
  padding: 12px 20px;
  background-color: #fff;
  color: #2360fb;
  border: 1px solid #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  border-radius: 30px;
  font-size: 16px;
  font-weight: 500;
  transition: all 0.5s ease-in-out;
}

.btn-white:hover {
  background-color: transparent;
  border-color: #fff;
  color: #fff;
}

.btn-bd-theme {
  padding: 12px 20px;
  background-color: transparent;
  border: 1px solid #2360fb;
  color: #2360fb;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  border-radius: 30px;
  font-size: 16px;
  font-weight: 500;
  transition: all 0.5s ease-in-out;
}

.btn-bd-theme:hover {
  background-color: #2360fb;
  color: #fff;
  border: 1px solid #2360fb;
}

.section-title h6 {
  font-size: 16px;
  line-height: 26px;
  margin: 0;
  color: #3db8e6;
  font-weight: 400;
}

.section-title h2 {
  font-size: 40px;
  line-height: 50px;
  font-weight: 600;
  color: #000;
  margin: 0;
}

.section-title p {
  font-size: 16px;
  line-height: 30px;
  margin: 0;
  color: rgba(0 0 0 / 54%);
  font-weight: 400;
}

/* =============== HEADER CSS STARTS HERE =============== */

.header-card {
  padding: 20px 0;
}

.header-card .nav-item a {
  margin-right: 30px;
  padding: 0;
}

.header-card .nav-item:last-child a {
  margin: 0;
}

.header-rt-card .btn-link {
  color: #000;
}

.header-logo img {
  width: 200px;
}

.header-rt-card .menu-btn {
  width: 42px;
  height: 42px;
  min-width: 42px;
  color: #fff;
  background: #2360fb;
  border-radius: 5px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 21px;
  border: 0;
}

.header-card.fixed-header {
  position: fixed;
  inset-inline-start: 0;
  inset-block-start: 0;
  inset-inline-end: 0;
  width: 100%;
  z-index: 999;
  backdrop-filter: blur(24px);
  animation: slideDown 0.35s ease-out;
  box-shadow: 0 5px 16px rgba(0, 0, 0, 0.1);
  background-color: #fff;
}

@keyframes slideDown {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0);
  }
}

/* =============== HEADER CSS ENDS HERE =============== */

/* =============== BANNER CSS STARTS HERE =============== */

.banner-sec {
  width: 100%;
  height: auto;
  overflow: hidden;
}

.banner-sec .banner-inr {
  background: linear-gradient(180deg, #d7f2ff 0%, #f5f5fd 74.92%, #ffffff 100%);
  padding: 80px 0;
  border-top-left-radius: 30px;
  border-top-right-radius: 30px;
  position: relative;
  margin: 0 30px;
  z-index: 1;
}

.banner-sec .banner-inr .bnr-shape {
  padding-bottom: 120px;
  z-index: -1;
  width: 100%;
  bottom: 0;
  position: absolute;
}

.banner-cont .text-heading {
  font-size: 60px;
  line-height: 70px;
  font-weight: 600;
  color: #072032;
  text-transform: capitalize;
  margin-bottom: 30px;
}

.banner-cont p {
  font-size: 16px;
  line-height: 28px;
  font-weight: 400;
  color: #666;
}

.banner-img {
  margin-top: 50px;
}

/* =============== BANNER CSS ENDS HERE =============== */

/* =============== HOW IT WORKS CSS STARTS HERE =============== */

.process-card {
  height: 360px;
  perspective: 1000px;
}

.process-card .card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  text-align: center;
  transition: transform 0.8s;
  transform-style: preserve-3d;
}

.process-card:hover .card-inner {
  transform: rotateY(180deg);
}

.process-card .card-front,
.process-card .card-back {
  position: absolute;
  width: 100%;
  height: calc(100% - 20px);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 30px 20px;
}

.process-card .card-front {
  background: linear-gradient(145deg, #ffffff, #f8f9fa);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.process-card .card-back {
  background: linear-gradient(145deg, #f8f9fa, #ffffff);
  transform: rotateY(180deg);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.process-card .card-icon {
  position: relative;
  margin-bottom: 30px;
  z-index: 0;
}

.process-card .card-number {
  position: absolute;
  top: -15px;
  right: -15px;
  font-size: 60px;
  font-weight: 800;
  opacity: 0.07;
  color: #0d6efd;
  z-index: 0;
}

.process-card .icon-circle {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  font-size: 35px;
  color: white;
  position: relative;
  z-index: 1;
  transition: all 0.3s ease;
}

.process-card.child1 .icon-circle {
  background: linear-gradient(45deg, #0d6efd, #4dabf7);
}

.process-card.child2 .icon-circle {
  background: linear-gradient(45deg, #198754, #51cf66);
}

.process-card.child3 .icon-circle {
  background: linear-gradient(45deg, #ffc107, #ff922b);
}

.process-card:hover .icon-circle {
  transform: scale(1.1);
}

.process-card .card-title {
  font-size: 23px;
  font-weight: 600;
  margin-bottom: 5px;
  color: #2c3e50;
}

.process-card .card-excerpt {
  color: #6c757d;
  line-height: 1.6;
  margin-bottom: 20px;
}

.process-card .back-title {
  font-size: 23px;
  font-weight: 600;
  margin-bottom: 5px;
  color: #2c3e50;
  position: relative;
  padding-bottom: 15px;
}

.process-card .back-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 150px;
  height: 3px;
  background: linear-gradient(90deg, #0d6efd, #4dabf7);
  border-radius: 3px;
}

.process-card .feature-list {
  list-style: none;
  padding: 0;
  margin: 0 0 30px;
  text-align: left;
}

.process-card .feature-list li {
  padding: 8px 0;
  padding-left: 30px;
  position: relative;
  color: #495057;
  font-size: 16px;
}

.feature-list li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  color: #0d6efd;
  font-weight: bold;
}

.process-card.child2 .feature-list li::before {
  color: #198754;
}

.process-card.child3 .feature-list li::before {
  color: #ffc107;
}

/* =============== HOW IT WORKS CSS ENDS HERE =============== */

/* =============== KEY FEATURES STARTS HERE =============== */

.key-feature-area {
  width: 100%;
  height: auto;
  overflow: hidden;
  background: radial-gradient(50% 50% at 50% 50%, #fff9f3 0%, #f3f6ff 100%);
}

.key-card {
  width: 100%;
  height: calc(100% - 20px);
  margin-bottom: 20px;
  border-radius: 20px;
  padding: 40px 40px 65px 40px;
  position: relative;
  overflow: hidden;
  z-index: 1;
  transition: all 0.4s ease-in-out;
}

.key-card:hover {
  transform: translateY(-10px);
}

.key-card-body span {
  font-size: 16px;
  line-height: 26px;
  font-weight: 400;
  margin-bottom: 8px;
}

.key-card-body .key-card-title {
  font-size: 30px;
  line-height: 40px;
  font-weight: 600;
  color: #000;
  margin-bottom: 10px;
}

.key-card-body p {
  font-size: 14px;
  line-height: 26px;
}

.key-card-body a {
  width: 55px;
  height: 55px;
  min-width: 55px;
  font-size: 24px;
  transform: rotate(-45deg);
}

.key-card img {
  position: absolute;
  bottom: -10px;
  left: 0;
  z-index: -1;
  opacity: 0.3;
}

.key-card.card1 {
  background: #fff5fa;
  border: 1px solid #fd1774;
}

.key-card.card1 .key-card-body span {
  color: #fd1774;
}

.key-card.card1 .key-card-body .key-card-title {
  max-width: 280px;
}

.key-card.card1 .key-card-body a {
  background-color: #fd1774;
  border-color: #fd1774;
}

.key-card.card1 .key-card-body a:hover {
  background-color: transparent;
  color: #fd1774;
  border-color: #fd1774;
}

.key-card.card2 {
  background: #f1f5ff;
  border: 1px solid #4c7dfe;
}

.key-card.card2 .key-card-body span {
  color: #4c7dfe;
}

.key-card.card2 .key-card-body a {
  background-color: #4c7dfe;
  border-color: #4c7dfe;
}

.key-card.card2 .key-card-body a:hover {
  background-color: transparent;
  color: #4c7dfe;
  border-color: #4c7dfe;
}

.key-card.card3 {
  background: #f3f7ff;
  border: 1px solid #1695ff;
}

.key-card.card3 .key-card-body span {
  color: #1695ff;
}

.key-card.card3 .key-card-body a {
  background-color: #1695ff;
  border-color: #1695ff;
}

.key-card.card3 .key-card-body a:hover {
  background-color: transparent;
  color: #1695ff;
  border-color: #1695ff;
}

.key-card.card4 {
  background: #fffaf4;
  border: 1px solid #ff8000;
}

.key-card.card4 .key-card-body span {
  color: #ff8000;
}

.key-card.card4 .key-card-body a {
  background-color: #ff8000;
  border-color: #ff8000;
}

.key-card.card4 .key-card-body a:hover {
  background-color: transparent;
  color: #ff8000;
  border-color: #ff8000;
}

.key-card.card5 {
  background: #fff3f3;
  border: 1px solid #ff6868;
}

.key-card.card5 .key-card-body span {
  color: #ff6868;
}

.key-card.card5 .key-card-body a {
  background-color: #ff6868;
  border-color: #ff6868;
}

.key-card.card5 .key-card-body a:hover {
  background-color: transparent;
  color: #ff6868;
  border-color: #ff6868;
}

.key-card.card6 {
  background: #f3fff6;
  border: 1px solid #00b027;
}

.key-card.card6 .key-card-body span {
  color: #00b027;
}

.key-card.card6 .key-card-body a {
  background-color: #00b027;
  border-color: #00b027;
}

.key-card.card6 .key-card-body a:hover {
  background-color: transparent;
  color: #00b027;
  border-color: #00b027;
}

/* =============== KEY FEATURES CSS ENDS HERE =============== */

/* =============== BENIFITS AREA CSS STARTS HERE =============== */
.benifit-bx {
  width: 100%;
  height: calc(100% - 20px);
  margin-bottom: 20px;
  border-radius: 20px;
  overflow: hidden;
  padding: 30px;
  transition: all 0.4s ease-in-out;
  display: flex;
  align-items: start;
  justify-content: center;
  flex-direction: column;
}

.benifit-bx:hover {
  transform: translateY(-10px);
}

.benifit-bx.child1 {
  background: #2360fb;
}

.benifit-bx.child1 h4,
.benifit-bx.child1 p {
  color: #fff;
}

.benifit-bx.child1 .icon {
  background: #fff;
  color: #2360fb;
}

.benifit-bx.child2 {
  border: 1px solid #e5e7eb;
  background-color: #f9fafb;
}

.benifit-bx .icon {
  width: 65px;
  min-width: 65px;
  height: 65px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  background: #99cc00;
  color: #fff;
  margin-bottom: 20px;
}

.benifit-bx h4 {
  font-size: 24px;
  line-height: 34px;
  font-weight: 600;
  color: #000;
  margin-bottom: 10px;
}

.benifit-bx p {
  font-size: 14px;
  line-height: 28px;
  font-weight: 400;
  margin: 0;
  color: #6b7280;
}

/* =============== BENIFITS AREA CSS ENDS HERE =============== */

/* =============== ABOUT CSS STARTS HERE =============== */

.about-area {
  width: 100%;
  height: auto;
  overflow: hidden;
}

.about-area .row {
  display: flex;
  flex-wrap: wrap;
  height: 100%;
}

.about-area .col-lg-6 {
  display: flex;
  flex-direction: column;
}

.about-area .about-cont {
  background: #2360fb;
  width: 100%;
  padding: 50px;
  flex: 1;
}

.about-area .about-img {
  width: 100%;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-area .about-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* =============== ABOUT CSS ENDS HERE =============== */

/* =============== PRICING PLANS CSS STARTS HERE =============== */

.pricing-area {
  width: 100%;
  height: auto;
  overflow: hidden;
}

.price-item {
  border: 2px solid #eeeff1;
  padding: 50px 50px 50px;
  margin: 0 13px;
  position: relative;
}

.price-item .price-text-outer {
  border-bottom: 1px solid #e1e1e1;
  padding-bottom: 30px;
  margin-bottom: 30px;
}

.price-icon {
  margin-right: 25px;
}

.price-item .price-text-outer .price {
  margin-bottom: 0;
  font-weight: 700;
  font-size: 45px;
}

.price-item .price-text-outer .price i {
  font-size: 35px;
}

.price-item .price-text-outer .sub-title {
  font-weight: 500;
}

.price-item .content-area .content-list {
  border-bottom: 1px solid #e1e1e1;
  padding-bottom: 30px;
  margin-bottom: 35px;
}

.list-gap {
  margin: 0;
  padding: 0;
  list-style: none;
}

.price-item .content-area .content-list .list li {
  margin-bottom: 18px;
}

.price-item .content-area .content-list .list li i {
  color: #ff8800;
  font-size: 18px;
  position: relative;
  top: 2px;
  margin-right: 5px;
}

.price-item .price-shape-one,
.price-item .price-shape-three {
  width: 75%;
  height: 20px;
  background: #f7f7f7;
  position: absolute;
  bottom: -22px;
  left: -2px;
  transition: 0.4s;
  -webkit-transition: 0.4s;
  -moz-transition: 0.4s;
}

.price-item .price-shape-one {
  top: -22px;
  bottom: auto;
}

.price-item .price-shape-two {
  width: 20px;
  height: 107.8%;
  background: #f7f7f7;
  position: absolute;
  top: -22px;
  left: -22px;
  transition: 0.4s;
  -webkit-transition: 0.4s;
  -moz-transition: 0.4s;
}

.price-item.price-active .price-shape-one,
.price-item.price-active .price-shape-two,
.price-item.price-active .price-shape-three,
.price-item:hover .price-shape-one,
.price-item:hover .price-shape-two,
.price-item:hover .price-shape-three {
  background: #2360fb;
  transition: 0.6s;
  -webkit-transition: 0.6s;
  -moz-transition: 0.6s;
}

/* =============== PRICING PLANS CSS ENDS HERE =============== */

/* =============== DOWNLOAD APP STARTS HERE =============== */

.download-app {
  width: 100%;
  height: auto;
  padding-top: 120px;
}

.download-app .download-app-outer {
  width: 100%;
  height: auto;
  background-color: #2360fb;
  position: relative;
  padding: 80px 0;
  z-index: 1;
}

.download-app .download-app-outer .left-cont a {
  padding: 0;
  min-width: 190px;
  background: #fff;
  overflow: hidden;
  border-radius: 50px;
}

.download-app .download-app-outer .right-cont img {
  position: absolute;
  right: 14%;
  left: auto;
  bottom: 0;
  z-index: 0;
  top: -120px;
  max-width: 500px;
}

/* =============== DOWNLOAD APP CSS ENDS HERE =============== */

/* =============== TESTIMONIALS STARTS HERE =============== */

.testimonial-section .swiper {
  width: 100%;
}

.testimonial-section .swiper-slide {
  width: auto !important;
  height: auto;
}

.testimonial-section .swiper-wrapper {
  transition-timing-function: linear !important;
  will-change: transform;
}

.testimonial-section .ltr-slider {
  transform: scaleX(-1);
}

.testimonial-section .ltr-slider .swiper-slide {
  transform: scaleX(-1);
}

.testimonial-card {
  border-radius: 15px;
  overflow: hidden;
  transition: transform 0.3s ease;
  max-width: 500px;
  margin: 0 auto;
}

.testimonial-card .card-body {
  padding: 2rem;
}

.testimonial-text {
  margin-bottom: 1.5rem;
  position: relative;
  font-size: 16px;
  font-weight: 400;
}

.testimonial-text::before {
  content: "";
  font-size: 4rem;
  color: #e9ecef;
  position: absolute;
  top: -1.5rem;
  left: -1rem;
}

.testimonial-card .rating {
  color: #ffc107;
  margin-bottom: 1rem;
}

.testimonial-card .client-info {
  display: flex;
  align-items: center;
}

.testimonial-card .client-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 1rem;
}

.testimonial-card .client-details h5 {
  margin-bottom: 0;
  font-weight: 600;
}

.testimonial-card .client-details p {
  margin-bottom: 0;
  color: #6c757d;
  font-size: 0.9rem;
}

/* =============== TESTIMONIALS CSS ENDS HERE =============== */

/* =============== BLOG CSS STARTS HERE =============== */

.blog-area {
  width: 100%;
  height: auto;
  overflow: hidden;
  background: radial-gradient(50% 50% at 50% 50%, #fff9f3 0%, #f3f6ff 100%);
}

.blog-box {
  width: 100%;
  height: calc(100% - 20px);
  margin-bottom: 20px;
}

.blog-area .blog-img {
  width: 100%;
  height: 250px;
}

.blog-area .blog-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-area .blog-info {
  width: 100%;
  height: auto;
  background: #fff;
  padding: 25px;
  position: relative;
}

.blog-area .blog-info .date-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #2360fb;
  color: #fff;
  border-radius: 4px;
  padding: 8px 20px;
  font-size: 14px;
  font-weight: 400;
  margin-bottom: 15px;
  position: absolute;
  right: 20px;
  top: -20px;
}

.blog-area .blog-info h4 {
  font-size: 22px;
  line-height: 34px;
  font-weight: 500;
}

.blog-area .blog-info p {
  font-size: 16px;
  line-height: 28px;
  color: rgba(0 0 0 / 54%);
  font-weight: 400;
}

/* =============== BLOG CSS ENDS HERE =============== */

/* =============== FAQ'S AREA CSS STARTS HERE =============== */

.our-faq .accordion-item {
  background-color: white;
  border: 1px solid #ddd;
  margin-bottom: 1rem;
  border-radius: 22px;
}

.our-faq .accordion-button {
  background-color: transparent;
  box-shadow: none;
  padding-right: 50px !important;
  padding: 30px;
  font-size: 20px;
  font-weight: 600;
}

.our-faq .accordion-button::after {
  content: "\f067";
  position: absolute;
  right: 1rem;
  background-color: #2360fb;
  color: white;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  transition: transform 0.3s ease;
  background-image: none;
  font-family: "Font Awesome 6 Pro";
}

.our-faq .accordion-button:not(.collapsed)::after {
  content: "\f068";
}

.our-faq .accordion-button:focus {
  box-shadow: none;
}

.our-faq .accordion-body {
  padding-top: 0 !important;
  padding: 30px;
  font-size: 18px;
  line-height: 28px;
  font-weight: 400;
  color: rgba(0 0 0 / 50%);
}

/* =============== FAQ'S AREA CSS ENDS HERE =============== */

/* =============== FOOTER CSS STARTS HERE =============== */

.footer-section {
  background: #081d6e;
  padding: 80px 0 80px;
}

.footer-section .white-btn:hover img {
  filter: brightness(100);
}

.footer-section .ftr-box.bx1 p {
  font-size: 16px;
  line-height: 30px;
  text-transform: capitalize;
  font-weight: 500;
  margin: 25px 0 0;
  color: #fff;
}

.footer-section .ftr-box.bx2 {
  padding-left: 50px;
}

.footer-section .title {
  font-size: 24px;
  margin-bottom: 20px;
}

.footer-section .ftr-box .logo img {
  width: 200px;
  margin-bottom: 0px;
}

.footer-section h3,
.footer-section h6,
.footer-section p,
.footer-section p a {
  color: #fff;
}

.footer-section .ftr-box ul li a {
  color: #fff;
  display: inline-block;
  font-size: 16px;
  line-height: 26px;
  font-weight: 500;
  margin-bottom: 20px;
}

.footer-section .ftr-box ul li:last-child a {
  margin-bottom: 0;
}

.footer-section ul li a:hover,
.footer-section p a:hover {
  text-decoration: underline !important;
}

.footer-section .ftr-box.bx3 p {
  font-size: 16px;
  line-height: 26px;
  font-weight: 400;
  margin-bottom: 20px;
}

.social-icons {
  display: flex;
  align-items: start;
  column-gap: 20px;
  flex-direction: column;
  justify-content: start;
  gap: 15px;
}

.social-icons a {
  color: #fff;
  font-size: 24px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.social-icons a span {
  font-size: 16px;
  line-height: 26px;
  letter-spacing: 1px;
  text-transform: capitalize;
}

.social-icons a:hover {
  color: #fff;
}

.copyright-area {
  background: #081d6e;
  padding: 10px 0 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.copy-right p {
  font-size: 18px;
  color: #fff;
  font-weight: 400;
}

.copy-right a {
  color: #fff !important;
}

.copy-right a:hover {
  text-decoration: underline !important;
}

.newsletter-form {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  background: #fff;
  border-radius: 50px;
  height: 60px;
  overflow: hidden;
}

.newsletter-form .form-control {
  height: 60px;
  border: none !important;
  box-shadow: none !important;
  padding: 10px;
  padding-left: 25px;
  font-size: 16px;
  font-weight: 400;
}

.newsletter-form .form-control::placeholder {
  color: rgba(0 0 0 / 84%);
}

.newsletter-form a {
  text-wrap: nowrap;
  margin-right: 5px;
}

/* =============== FOOTER CSS ENDS HERE =============== */

.nav-mobile .offcanvas-header {
  border-bottom: 1px solid #ccc;
  background: var(--primary-color);
  color: #fff !important;
}

.side-link-list {
  padding: 0;
}

.side-link-list li {
  border-bottom: 1px solid #ececec;
}

.side-link-list li a {
  padding: 12px 14px;
  display: flex;
  font-size: 18px;
  color: #222;
  align-items: center;
  width: 100%;
  position: relative;
  transition: all 0.5s ease-in-out;
}

.side-link-list li a::after {
  content: "\f105";
  font-family: "Font Awesome 6 Pro";
  font-style: normal;
  font-size: 24px;
  color: var(--primary-color);
  position: absolute;
  right: 19px;
  top: 50%;
  transform: translateY(-50%);
}

@media (max-width: 1440px) {
  .price-item {
    padding: 40px 30px 40px;
  }

  .download-app .download-app-outer .right-cont img {
    right: 7%;
    top: -130px;
    max-width: 520px;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .section-title h2 {
    font-size: 24px;
    line-height: 34px;
  }

  .section-title p {
    font-size: 14px;
    line-height: 26px;
  }

  .header-logo img {
    width: 190px;
  }

  .key-card {
    padding: 20px 20px 35px 20px;
  }

  .key-card-body .key-card-title {
    font-size: 24px;
    line-height: 36px;
    max-width: 100% !important;
  }

  .key-card-body p {
    font-size: 14px;
    line-height: 26px;
  }

  .price-item {
    padding: 40px 30px 40px;
    margin-bottom: 80px;
  }

  .section-pd {
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .download-app .download-app-outer .right-cont img {
    right: 0;
    top: -130px;
    max-width: 480px;
  }

  .blog-area .blog-info {
    padding: 20px;
  }

  .blog-area .blog-info h4 {
    font-size: 16px;
    line-height: 28px;
  }

  .ftr-box.bx2 {
    padding-left: 0px;
  }

  .footer-section .ftr-box.bx1 p {
    font-size: 14px;
    line-height: 28px;
  }

  .footer-section {
    padding: 50px 0 50px;
  }
}

@media (max-width: 991px) {
  .section-pd {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .price-item {
    margin-bottom: 80px;
  }

  .footer-section {
    padding: 40px 0 40px;
  }

  .ftr-box.bx2 {
    padding-left: 0px !important;
  }

  .download-app .download-app-outer .right-cont img {
    display: none;
  }

  .download-app {
    width: 100%;
    height: auto;
    padding-top: 0;
  }
}

@media (max-width: 768px) {
  .banner-cont .text-heading {
    font-size: 40px;
    line-height: 60px;
    margin-bottom: 10px;
  }

  .section-title h2 {
    font-size: 24px;
    line-height: 34px;
  }

  .section-title p {
    font-size: 14px;
    line-height: 26px;
  }

  .about-area .about-cont {
    padding: 20px;
  }

  .benifit-bx h4 {
    font-size: 20px;
    line-height: 32px;
  }

  .key-card {
    padding: 20px 20px 20px 20px;
  }

  .key-card-body .key-card-title {
    font-size: 24px;
    line-height: 34px;
    max-width: 100%;
  }

  .key-card-body p {
    font-size: 14px;
    line-height: 26px;
  }

  .price-item {
    width: 100%;
    padding: 20px;
    margin-bottom: 20px;
  }

  .price-item .content-area .content-list .list li {
    font-size: 14px;
  }

  .price-shape-one,
  .price-shape-two,
  .price-shape-three {
    display: none;
  }
}

@media (max-width: 575px) {
  .banner-sec .banner-inr {
    margin: 0 10px;
    padding: 40px 0 50px;
  }

  .banner-cont .text-heading {
    font-size: 30px;
    line-height: 50px;
  }

  .header-logo {
    font-size: 22px;
  }

  .header-card {
    padding: 18px 0;
  }

  .our-faq .accordion-button {
    padding: 20px;
  }

  .our-faq .accordion-body {
    padding: 20px;
    font-size: 16px;
    line-height: 28px;
  }

  .header-logo img {
    width: 180px;
  }
}
