@charset "UTF-8";
/*!------------------------------------------------------------------
[MAIN STYLESHEET]

PROJECT:	Project Name
VERSION:	Versoin Number
-------------------------------------------------------------------*/
/*------------------------------------------------------------------
[TABLE OF CONTENTS]
-------------------------------------------------------------------*/
/* 1.1 typography */
@import url("https://fonts.googleapis.com/css?family=Poppins:300,400,500,600,700");
body {
  line-height: 31px;
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
  font-size: 17px;
}
@media (max-width: 575px) {
  body {
    font-size: 14px;
    line-height: 24px;
  }
}
@media (max-width: 767px) {
  body {
    font-size: 15px;
    line-height: 26px;
  }
}

p,
.paragraph {
  font-weight: 300;
  color: #4d546f;
  font-size: 17px;
  line-height: 31px;
}
@media (max-width: 575px) {
  p,
  .paragraph {
    font-size: 14px;
    line-height: 24px;
  }
}
@media (max-width: 767px) {
  p,
  .paragraph {
    font-size: 15px;
    line-height: 26px;
  }
}

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
  color: #091337;
  font-weight: 600;
  line-height: 1.5;
}

h1,
.h1 {
  font-size: 56px;
}
@media (max-width: 575px) {
  h1,
  .h1 {
    font-size: 32px;
  }
}
@media (max-width: 767px) {
  h1,
  .h1 {
    font-size: 42px;
  }
}

h2,
.h2 {
  font-size: 43px;
}
@media (max-width: 575px) {
  h2,
  .h2 {
    font-size: 28px;
  }
}
@media (max-width: 767px) {
  h2,
  .h2 {
    font-size: 34px;
  }
}

h3,
.h3 {
  font-size: 37px;
}
@media (max-width: 575px) {
  h3,
  .h3 {
    font-size: 24px;
  }
}
@media (max-width: 767px) {
  h3,
  .h3 {
    font-size: 30px;
  }
}

h4,
.h4 {
  font-size: 22px;
}
@media (max-width: 575px) {
  h4,
  .h4 {
    font-size: 18px;
  }
}
@media (max-width: 767px) {
  h4,
  .h4 {
    font-size: 20px;
  }
}

h5,
.h5 {
  font-size: 16px;
}
@media (max-width: 575px) {
  h5,
  .h5 {
    font-size: 14px;
  }
}

h6,
.h6 {
  font-size: 13px;
}
@media (max-width: 575px) {
  h6,
  .h6 {
    font-size: 12px;
  }
}

.btn {
  border-radius: 12px;
  font-size: 16px;
  padding: 12px 32px;
  font-weight: 500;
  background: #008dec;
  color: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  transition: background 0.2s, box-shadow 0.2s;
}
@media (max-width: 575px) {
  .btn {
    font-size: 14px;
    padding: 10px 24px;
  }
}
@media (max-width: 767px) {
  .btn {
    font-size: 15px;
    padding: 11px 28px;
  }
}

.btn:hover,
.btn:focus {
  background: rgb(0, 116.6237288136, 195.2);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.btn-primary {
  background-image: linear-gradient(25deg, rgb(23, 255, 211) 0%, rgb(211, 252, 113) 95%);
  color: #091337;
  transition: background 1s ease-out;
}
.btn-primary:active {
  background: linear-gradient(25deg, rgb(23, 255, 211) 0%, rgb(211, 252, 113) 95%) !important;
}
.btn-primary:hover {
  background: linear-gradient(205deg, rgb(23, 255, 211) 0%, rgb(211, 252, 113) 95%);
  color: #091337;
}

.btn-secondary {
  background-image: linear-gradient(6deg, rgb(23, 255, 211) 0%, rgb(35, 227, 238) 100%);
  background-color: transparent;
  color: #091337;
}
.btn-secondary:active {
  background: linear-gradient(6deg, rgb(23, 255, 211) 0%, rgb(35, 227, 238) 100%) !important;
}
.btn-secondary:hover {
  background: linear-gradient(186deg, rgb(23, 255, 211) 0%, rgb(35, 227, 238) 100%);
  color: #091337;
}

.btn-lg {
  padding: 15px 85px;
}
@media (max-width: 575px) {
  .btn-lg {
    padding: 12px 60px;
  }
}
@media (max-width: 767px) {
  .btn-lg {
    padding: 13px 70px;
  }
}

body {
  background-color: #fff;
  overflow-x: hidden;
  font-family: "Winky Rough";
}

::-moz-selection {
  background: rgb(32, 165.2330508475, 255);
  color: #fff;
}

::selection {
  background: rgb(32, 165.2330508475, 255);
  color: #fff;
}

.preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #fff;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
}

ol,
ul {
  list-style-type: none;
  margin: 0;
}

img {
  vertical-align: middle;
  border: 0;
  max-width: 100%;
  height: auto;
}

a,
a:hover,
a:focus {
  text-decoration: none;
}

a,
button,
select {
  cursor: pointer;
  transition: 0.2s ease;
}
a:focus,
button:focus,
select:focus {
  outline: 0;
}

a:hover {
  color: #008dec;
}

.slick-slide {
  outline: 0;
}

.section {
  padding-top: 80px;
  padding-bottom: 80px;
}
@media (min-width: 768px) {
  .section {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}
@media (min-width: 992px) {
  .section {
    padding-top: 130px;
    padding-bottom: 130px;
  }
}
.section-sm {
  padding-top: 30px;
  padding-bottom: 30px;
}
@media (min-width: 768px) {
  .section-sm {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}
.section-lg {
  padding-top: 120px;
  padding-bottom: 80px;
}
@media (min-width: 768px) {
  .section-lg {
    padding-top: 160px;
    padding-bottom: 98px;
  }
}
@media (min-width: 992px) {
  .section-lg {
    padding-top: 200px;
    padding-bottom: 98px;
  }
}
.section-sli {
  padding-top: 0;
  padding-bottom: 40px;
}
@media (min-width: 768px) {
  .section-sli {
    padding-bottom: 60px;
  }
}
.section-bsli {
  padding-top: 80px;
  padding-bottom: 0;
}
@media (min-width: 992px) {
  .section-bsli {
    padding-top: 130px;
  }
}
.section-nlg {
  padding-top: 40px;
  padding-bottom: 10px;
}
@media (min-width: 768px) {
  .section-nlg {
    padding-top: 64px;
    padding-bottom: 12px;
  }
}
.section-title {
  font-size: 20px;
  line-height: 28px;
  color: #000;
  font-weight: 400;
}
@media (min-width: 768px) {
  .section-title {
    font-size: 36px;
    line-height: 48px;
  }
}
@media (min-width: 992px) {
  .section-title {
    font-size: 48px;
    line-height: 60px;
  }
}

.text-sm {
  font-size: 12px;
}
@media (min-width: 768px) {
  .text-sm {
    font-size: 14px;
  }
}
.text-3xl {
  font-size: 16px;
  line-height: 24px;
  color: #000;
  font-weight: 600;
}
@media (min-width: 768px) {
  .text-3xl {
    font-size: 26px;
    line-height: 40px;
  }
}
@media (min-width: 992px) {
  .text-3xl {
    font-size: 30px;
    line-height: 60px;
  }
}

.safety {
  width: 100%;
}

.paging {
  width: 100%;
  margin-top: 40px;
  display: flex;
  justify-content: center;
}
@media (min-width: 768px) {
  .paging {
    margin-top: 60px;
  }
}
@media (min-width: 992px) {
  .paging {
    margin-top: 80px;
  }
}

.bg-cover {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.overlay {
  position: relative;
}
.overlay::before {
  position: absolute;
  content: "";
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  background: #000;
  opacity: 0.5;
}

.outline-0 {
  outline: 0 !important;
}

.d-unset {
  display: unset !important;
}

.page-title {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.bg-primary {
  background: #008dec !important;
}

.bg-gray {
  background: #f2f3f5;
}

.text-primary {
  color: #008dec !important;
}

.text-dark {
  color: #091337 !important;
}

.text-purple {
  color: #9491ff !important;
}

.text-color {
  color: #4d546f;
}

.primary-shadow,
.shadow-primary {
  box-shadow: 0px 35px 46px 0px rgba(172, 189, 199, 0.28);
}

.border-blue {
  border-color: #dcebf4 !important;
}

.facebook {
  color: #334bff;
}

.twitter {
  color: #45d9f0;
}

.linkedin {
  color: #1b91ff;
}

.black {
  color: #000;
}

.mb-10 {
  margin-bottom: 10px !important;
}
@media (min-width: 768px) {
  .mb-10 {
    margin-bottom: 15px !important;
  }
}
@media (min-width: 992px) {
  .mb-10 {
    margin-bottom: 20px !important;
  }
}

.mb-20 {
  margin-bottom: 20px !important;
}
@media (min-width: 768px) {
  .mb-20 {
    margin-bottom: 25px !important;
  }
}
@media (min-width: 992px) {
  .mb-20 {
    margin-bottom: 30px !important;
  }
}

.mb-30 {
  margin-bottom: 30px !important;
}
@media (min-width: 768px) {
  .mb-30 {
    margin-bottom: 35px !important;
  }
}
@media (min-width: 992px) {
  .mb-30 {
    margin-bottom: 40px !important;
  }
}

.mb-40 {
  margin-bottom: 40px !important;
}
@media (min-width: 768px) {
  .mb-40 {
    margin-bottom: 45px !important;
  }
}
@media (min-width: 992px) {
  .mb-40 {
    margin-bottom: 50px !important;
  }
}

.mb-50 {
  margin-bottom: 50px !important;
}
@media (min-width: 768px) {
  .mb-50 {
    margin-bottom: 55px !important;
  }
}
@media (min-width: 992px) {
  .mb-50 {
    margin-bottom: 60px !important;
  }
}

.mb-60 {
  margin-bottom: 60px !important;
}
@media (min-width: 768px) {
  .mb-60 {
    margin-bottom: 65px !important;
  }
}
@media (min-width: 992px) {
  .mb-60 {
    margin-bottom: 70px !important;
  }
}

.mb-70 {
  margin-bottom: 70px !important;
}
@media (min-width: 768px) {
  .mb-70 {
    margin-bottom: 75px !important;
  }
}
@media (min-width: 992px) {
  .mb-70 {
    margin-bottom: 80px !important;
  }
}

.mb-80 {
  margin-bottom: 80px !important;
}
@media (min-width: 768px) {
  .mb-80 {
    margin-bottom: 85px !important;
  }
}
@media (min-width: 992px) {
  .mb-80 {
    margin-bottom: 90px !important;
  }
}

.mb-90 {
  margin-bottom: 90px !important;
}
@media (min-width: 768px) {
  .mb-90 {
    margin-bottom: 95px !important;
  }
}
@media (min-width: 992px) {
  .mb-90 {
    margin-bottom: 100px !important;
  }
}

.mb-100 {
  margin-bottom: 100px !important;
}
@media (min-width: 768px) {
  .mb-100 {
    margin-bottom: 105px !important;
  }
}
@media (min-width: 992px) {
  .mb-100 {
    margin-bottom: 110px !important;
  }
}

.pb-100 {
  padding-bottom: 80px !important;
}
@media (min-width: 768px) {
  .pb-100 {
    padding-bottom: 90px !important;
  }
}
@media (min-width: 992px) {
  .pb-100 {
    padding-bottom: 100px !important;
  }
}

@media (min-width: 576px) {
  .translate-y-150 {
    transform: translateY(0);
  }
}
@media (min-width: 768px) {
  .translate-y-150 {
    transform: translateY(120px);
  }
}
@media (min-width: 992px) {
  .translate-y-150 {
    transform: translateY(150px);
  }
}

.left-right-animation {
  animation: left_right 3s ease-in infinite alternate-reverse;
}

@keyframes left_right {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-20px);
  }
}
.up-down-animation {
  animation: up_down 3s ease-in infinite alternate-reverse;
}

@keyframes up_down {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-20px);
  }
}
.zindex-1 {
  z-index: 1;
}

.blog-content {
  font-size: 16px;
  line-height: 1.8;
  color: #333;
}
.blog-content p {
  margin-bottom: 1.5rem;
}
.blog-content img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 2rem 0;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}
.blog-content .video-wrapper {
  margin: 2rem 0;
}

.dropdown-menu {
  border: 0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.dropdown-title {
  padding: 0 22px;
  font-size: 12px;
  font-weight: 600;
}

.dropdown-columns {
  display: grid;
  grid-template-columns: repeat(3, auto);
  min-width: 300px;
  padding: 0 0.5rem;
  gap: 0.25rem;
}
.dropdown-columns .dropdown-item {
  border-radius: 8px;
}

.link {
  cursor: pointer;
}

.coupon-card {
  background: #fff;
  border-radius: 10px;
  padding: 20px;
  margin-bottom: 20px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.btn-show-code {
  white-space: nowrap;
}

.store-card {
  background: #fff;
  border-radius: 10px;
  padding: 12px 16px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  transition: box-shadow 0.2s;
}

.store-card:hover {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.store-logo {
  width: 40px;
  height: 40px;
  -o-object-fit: contain;
     object-fit: contain;
  border-radius: 8px;
}

.store-name {
  font-weight: 500;
  margin: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.bg-muted {
  background: linear-gradient(to bottom, hsla(240, 4.8%, 95.9%, 0.8) 0%, hsla(240, 4.8%, 95.9%, 0.8) 80%, #ffffff 100%);
}

.device-frame {
  margin: 20px auto;
  border: 1px solid #ccc;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
  background: #f5f5f5;
}

.device-header {
  height: 32px;
  background: #e0e0e0;
  display: flex;
  align-items: center;
  padding: 0 12px;
  gap: 8px;
}

.device-header .dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  display: inline-block;
}

.device-header .red {
  background: #ff5f56;
}

.device-header .yellow {
  background: #ffbd2e;
}

.device-header .green {
  background: #27c93f;
}

.device-screen {
  width: 100%;
  height: 600px;
  background: white;
}

.categories-item .btn-primary {
  min-width: 240px;
}
@media (max-width: 767.98px) {
  .categories-item .btn-primary {
    min-width: auto;
    width: 100%;
    margin-top: 10px;
  }
}
@media (max-width: 767.98px) {
  .categories-item {
    flex-direction: column;
    align-items: flex-start !important;
    gap: 10px;
  }
  .categories-item .me-3 {
    margin-right: 0 !important;
    margin-bottom: 10px;
  }
  .categories-item .ms-auto {
    margin-left: 0 !important;
    width: 100%;
  }
  .categories-item .flex-grow-1 {
    width: 100%;
  }
}
@media (max-width: 575.98px) {
  .categories-item {
    padding: 15px;
  }
  .categories-item img {
    width: 50px !important;
    height: 50px !important;
  }
}

@media (max-width: 767.98px) {
  .coupon-card.card .d-flex {
    flex-direction: column;
    align-items: flex-start !important;
    gap: 15px;
  }
  .coupon-card.card .coupon-info {
    width: 100%;
  }
  .coupon-card.card .btn-show-code,
  .coupon-card.card .btn-outline-secondary {
    width: 100%;
    margin-top: 10px;
  }
}
@media (max-width: 575.98px) {
  .coupon-card.card {
    padding: 15px !important;
  }
}

@media (max-width: 767.98px) {
  #codeModal .modal-dialog {
    margin: 10px;
    max-width: calc(100% - 20px);
  }
  #codeModal .modal-content {
    max-width: 100% !important;
  }
  #codeModal .flipper {
    height: auto !important;
    min-height: 228px;
  }
  #codeModal .flip-back {
    height: auto !important;
    min-height: 618px;
  }
}
@media (max-width: 575.98px) {
  #codeModal .modal-content {
    padding: 15px !important;
  }
  #codeModal .btn {
    padding: 8px 12px;
    font-size: 14px;
  }
  #codeModal .input-group {
    flex-direction: column;
    gap: 10px;
  }
  #codeModal .input-group .form-control {
    border-radius: 8px !important;
    border-right: 2px solid #0d6efd !important;
  }
  #codeModal .input-group .btn {
    border-radius: 8px !important;
    width: 100%;
  }
}

@media (max-width: 767.98px) {
  .col-md-4 {
    margin-top: 20px;
  }
}

.description-truncate {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: block;
  color: #6c757d;
  font-size: 0.9rem;
}
@media (max-width: 767.98px) {
  .description-truncate {
    white-space: normal;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
  }
}

/* name_aliases 两行省略 */
.multi-line-truncate {
  display: -webkit-box;
  -webkit-line-clamp: 2; /* 限制为两行 */
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  color: #6c757d;
  font-size: 0.875rem;
  line-height: 1.3;
  cursor: default;
  word-break: break-word;
}
@media (max-width: 575.98px) {
  .multi-line-truncate {
    -webkit-line-clamp: 1; /* 移动端限制为一行 */
  }
}

.banner-wrapper {
  overflow: hidden;
  padding: 10px 0;
  margin-top: 130px;
  max-width: none;
  mask-image: linear-gradient(to right, transparent 0%, rgb(0, 0, 0) 10%, rgb(0, 0, 0) 90%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, rgb(0, 0, 0) 10%, rgb(0, 0, 0) 90%, transparent 100%);
}

.banner-track {
  display: flex;
  gap: 20px;
  will-change: transform;
  transform: translateZ(0); /* GPU 加速 */
}

.banner-item {
  width: 800px;
  height: 300px;
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0; /* 防止被压缩 */
}

.banner-item img {
  width: 100%;
  height: 100%;
  border-radius: 8px;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

.couponPage-section-title {
  font-size: 2rem;
  font-weight: bold;
  margin-top: 80px;
  margin-bottom: 40px;
  color: #222;
}

.couponPage-card {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  margin-bottom: 24px;
  position: relative;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}

.couponPage-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.couponPage-card-bg {
  height: 120px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
}

.couponPage-card-bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
  transform: scale(0.7);
  transform-origin: center center;
}

.couponPage-img {
  position: absolute;
  top: 90px;
  left: 24px;
  width: 64px;
  height: 64px;
  border-radius: 6px;
  background-color: #fff;
  border: 1px solid #eee;
}

.couponPage-img img {
  width: 100%;
  height: 100%;
  border-radius: 6px;
  -o-object-fit: contain;
     object-fit: contain;
}

.couponPage-body {
  padding: 56px 20px 20px;
}

.couponPage-body2 {
  padding: 12px;
}

.couponPage-body-title {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 8px;
  display: -webkit-box;
  -webkit-line-clamp: 1; /* 限制为2行 */
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.couponPage-body-text {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.4;
  margin-bottom: 16px;
  min-height: 48px;
  display: -webkit-box;
  -webkit-line-clamp: 2; /* 限制为2行 */
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.couponPage-btn {
  display: flex;
  gap: 8px;
}

.couponPage-btn-item {
  flex: 1;
  height: 42px;
  border: none;
  border-radius: 6px;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: 0.2s;
}

.code-btn {
  background-image: linear-gradient(6deg, rgb(23, 255, 211) 0%, rgb(35, 227, 238) 100%);
  color: #000000;
}

.copy-btn {
  background: #f1f1f1;
  color: #333;
}

.copy-btn:hover {
  background: #e0e0e0;
}

.copy-btn svg {
  margin-right: 4px;
}

.deal-section {
  padding: 80px 0;
}

.section-title {
  font-size: 1.5rem;
  font-weight: 700;
}
@media (min-width: 768px) {
  .section-title {
    font-size: 1.75rem;
  }
}
@media (min-width: 992px) {
  .section-title {
    font-size: 2rem;
  }
}

.view-all-link {
  font-size: 0.95rem;
  color: #000;
  text-decoration: underline;
}

.logo {
  font-weight: 600;
  color: #0e203d;
  font-size: 28px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1;
}
.logo .logo-main {
  font-weight: 800;
  font-size: 28px;
  color: #0e203d;
  letter-spacing: -0.5px;
}
.logo .logo-sub {
  font-size: 13px;
  color: #888;
  margin-top: 2px;
}
.logo .logo-sub span {
  display: inline-block;
  padding: 2px 10px 2px 8px;
  background: linear-gradient(90deg, #e0e7ff 0%, #f0fdfa 100%);
  border-radius: 8px 16px 8px 16px;
  box-shadow: 0 2px 8px 0 rgba(80, 120, 200, 0.08);
  font-weight: 600;
  color: #2d3a4a;
  letter-spacing: 1.2px;
  border: 1px solid #dbeafe;
  transition: background 0.3s;
}

.navbar-light .navbar-nav .nav-link {
  color: #091337;
  display: flex;
  align-items: center;
}

.navigation {
  transition: 0.3s ease;
}

.navbar {
  transition: 0.3s ease;
}
.navbar-collapse {
  justify-content: end;
  margin-right: 120px;
}
@media (max-width: 991px) {
  .navbar-collapse {
    padding-bottom: 20px;
  }
}

.nav-bg {
  background-color: #fff;
  box-shadow: 0px 10px 20px 0px rgba(0, 141, 236, 0.1);
}
.nav-bg .navbar {
  padding: 10px 0;
}

.nav-item {
  padding: 20px 10px;
}
@media (max-width: 991px) {
  .nav-item {
    padding: 0;
  }
}

@media (max-width: 991px) {
  .navbar-collapse {
    position: fixed;
    top: 56px;
    left: 0;
    right: 0;
    bottom: 0;
    background: #fff;
    z-index: 1050;
    width: 100vw;
    height: calc(100vh - 56px);
    overflow-y: auto;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
    padding: 24px 0 0 0;
    margin-right: 0;
    text-align: center;
    transition: transform 0.3s;
  }
  .navbar-collapse:not(.show) {
    display: none !important;
  }
  .navbar-nav {
    flex-direction: column;
    width: 100%;
    align-items: center;
    padding-left: 24px;
    padding-right: 24px;
  }
  .nav-item {
    width: 100%;
    padding: 0;
    margin-bottom: 8px;
  }
  .nav-link {
    width: 100%;
    font-size: 16px;
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
    text-align: center;
    justify-content: center;
  }
  .dropdown-menu {
    position: static !important;
    float: none;
    background: #f9f9f9;
    box-shadow: none;
    width: 100%;
    margin: 0;
    padding: 8px 0 8px 8px;
    border-radius: 0;
    display: none;
    max-width: 100vw;
    overflow-x: auto;
    font-size: 15px;
    word-break: break-all;
    white-space: normal;
  }
  .dropdown-title {
    font-size: 13px;
    font-weight: 600;
    color: #888;
    margin-bottom: 4px;
    padding-left: 4px;
    padding-top: 2px;
    text-align: center;
  }
  .dropdown-columns {
    display: flex;
    flex-direction: column;
    gap: 2px;
  }
  .dropdown-item {
    font-size: 14px;
    padding: 8px 0 8px 8px;
    line-height: 1.2;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    border-radius: 4px;
    transition: background 0.2s;
    text-align: center;
  }
  .dropdown-item:hover,
  .dropdown-item:active {
    background: #ececec;
  }
  .nav-item.show > .dropdown-menu {
    display: block;
  }
  .dropdown-toggle::after {
    float: right;
  }
  .navbar-toggler {
    position: absolute;
    right: 16px;
    top: 12px;
    z-index: 1100;
    border: none;
    outline: none;
  }
}
@media (max-width: 575px) {
  .navbar-collapse {
    position: fixed;
    top: 56px;
    left: 0;
    right: 0;
    bottom: 0;
    background: #fff;
    z-index: 1050;
    width: 100vw;
    height: calc(100vh - 56px);
    overflow-y: auto;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
    padding: 24px 0 0 0;
    margin-right: 0;
    text-align: center;
    transition: transform 0.3s;
  }
  .navbar-collapse:not(.show) {
    display: none !important;
  }
  .navbar-nav {
    flex-direction: column;
    width: 100%;
    align-items: center;
    padding-left: 24px;
    padding-right: 24px;
  }
  .nav-item {
    width: 100%;
    padding: 0;
    margin-bottom: 8px;
  }
  .nav-link {
    width: 100%;
    font-size: 16px;
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
    text-align: center;
    justify-content: center;
  }
  .dropdown-menu {
    position: static !important;
    float: none;
    background: #f9f9f9;
    box-shadow: none;
    width: 100%;
    margin: 0;
    padding: 8px 0 8px 8px;
    border-radius: 0;
    display: none;
    max-width: 100vw;
    overflow-x: auto;
    font-size: 15px;
    word-break: break-all;
    white-space: normal;
  }
  .dropdown-title {
    font-size: 13px;
    font-weight: 600;
    color: #888;
    margin-bottom: 4px;
    padding-left: 4px;
    padding-top: 2px;
    text-align: center;
  }
  .dropdown-columns {
    display: flex;
    flex-direction: column;
    gap: 2px;
  }
  .dropdown-item {
    font-size: 14px;
    padding: 8px 0 8px 8px;
    line-height: 1.2;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    border-radius: 4px;
    transition: background 0.2s;
    text-align: center;
  }
  .dropdown-item:hover,
  .dropdown-item:active {
    background: #ececec;
  }
  .nav-item.show > .dropdown-menu {
    display: block;
  }
  .dropdown-toggle::after {
    float: right;
  }
  .navbar-toggler {
    position: absolute;
    right: 16px;
    top: 12px;
    z-index: 1100;
    border: none;
    outline: none;
  }
}
.hero-section {
  padding-top: 120px;
  padding-bottom: 120px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: bottom center;
  margin-bottom: 0;
}
@media (min-width: 768px) {
  .hero-section {
    padding-top: 180px;
    padding-bottom: 180px;
  }
}
@media (min-width: 992px) {
  .hero-section {
    padding-top: 250px;
    padding-bottom: 250px;
  }
}

.banner-image {
  margin-top: 40px;
}
@media (min-width: 768px) {
  .banner-image {
    margin-top: 50px;
  }
}
@media (min-width: 992px) {
  .banner-image {
    margin-top: 60px;
  }
}

.hero-bg-1 {
  position: absolute;
  left: 30px;
  top: 120px;
}
@media (min-width: 768px) {
  .hero-bg-1 {
    top: 160px;
  }
}
@media (min-width: 992px) {
  .hero-bg-1 {
    top: 200px;
  }
}
@media (max-width: 991.98px) {
  .hero-bg-1 {
    display: none;
  }
}
.hero-bg-2 {
  position: absolute;
  top: 50%;
  left: 15%;
}
@media (min-width: 768px) {
  .hero-bg-2 {
    left: 18%;
  }
}
@media (min-width: 992px) {
  .hero-bg-2 {
    left: 20%;
  }
}
@media (max-width: 991.98px) {
  .hero-bg-2 {
    display: none;
  }
}
.hero-bg-3 {
  position: absolute;
  bottom: 0;
  left: 8%;
}
@media (min-width: 768px) {
  .hero-bg-3 {
    left: 9%;
  }
}
@media (min-width: 992px) {
  .hero-bg-3 {
    left: 10%;
  }
}
@media (max-width: 991.98px) {
  .hero-bg-3 {
    display: none;
  }
}
.hero-bg-4 {
  position: absolute;
  top: 150px;
  right: 35%;
}
@media (min-width: 768px) {
  .hero-bg-4 {
    top: 180px;
  }
}
@media (min-width: 992px) {
  .hero-bg-4 {
    top: 210px;
    right: 40%;
  }
}
@media (max-width: 991.98px) {
  .hero-bg-4 {
    display: none;
  }
}
.hero-bg-5 {
  position: absolute;
  top: 200px;
  right: 15%;
}
@media (min-width: 768px) {
  .hero-bg-5 {
    top: 230px;
  }
}
@media (min-width: 992px) {
  .hero-bg-5 {
    top: 250px;
    right: 17%;
  }
}
@media (max-width: 991.98px) {
  .hero-bg-5 {
    display: none;
  }
}
.hero-bg-6 {
  position: absolute;
  right: 8%;
  bottom: 18%;
}
@media (min-width: 768px) {
  .hero-bg-6 {
    right: 9%;
  }
}
@media (min-width: 992px) {
  .hero-bg-6 {
    right: 10%;
    bottom: 20%;
  }
}
@media (max-width: 991.98px) {
  .hero-bg-6 {
    display: none;
  }
}
.hero-bg-7 {
  position: absolute;
  left: 18%;
  bottom: -20%;
  z-index: 1;
}
@media (min-width: 768px) {
  .hero-bg-7 {
    left: 19%;
  }
}
@media (min-width: 992px) {
  .hero-bg-7 {
    left: 20%;
    bottom: -17%;
  }
}
@media (max-width: 991.98px) {
  .hero-bg-7 {
    display: none;
  }
}
.hero-bg-8 {
  position: absolute;
  bottom: -35%;
  right: 45%;
  z-index: 1;
}
@media (min-width: 992px) {
  .hero-bg-8 {
    bottom: -30%;
    right: 50%;
  }
}
@media (max-width: 991.98px) {
  .hero-bg-8 {
    display: none;
  }
}
.hero-bg-9 {
  position: absolute;
  right: 18%;
  bottom: -12%;
  z-index: 1;
}
@media (min-width: 992px) {
  .hero-bg-9 {
    right: 20%;
    bottom: -10%;
  }
}
@media (max-width: 991.98px) {
  .hero-bg-9 {
    display: none;
  }
}

.feature {
  position: relative;
}
.feature-item h4 {
  line-height: 1;
}
.feature-item p {
  line-height: 25px;
}
.feature-item:hover .feature-icon {
  box-shadow: 0px 18px 43px 0px rgba(0, 141, 236, 0.21);
}
.feature-bg-1 {
  position: absolute;
  left: 0;
  top: 50%;
  z-index: -1;
}
@media (max-width: 767px) {
  .feature-bg-1 {
    display: none;
  }
}
.feature-bg-2 {
  position: absolute;
  right: 0;
  bottom: 10%;
  z-index: -1;
}
@media (max-width: 767px) {
  .feature-bg-2 {
    display: none;
  }
}
.feature-icon {
  display: inline-block;
  height: 90px;
  width: 90px;
  border-radius: 5px;
  color: #fff;
  font-size: 45px;
  line-height: 90px;
  background: #008dec;
  box-shadow: 0px 18px 25px 0px rgba(0, 141, 236, 0.1);
  text-align: center;
  transition: 0.2s ease;
}
@media (max-width: 575px) {
  .feature-icon {
    height: 70px;
    width: 70px;
    font-size: 32px;
    line-height: 70px;
  }
}
@media (max-width: 767px) {
  .feature-icon {
    height: 80px;
    width: 80px;
    font-size: 38px;
    line-height: 80px;
  }
}

.seo {
  position: relative;
  overflow: visible;
}
.seo-bg {
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
}
@media (max-width: 1200px) {
  .seo-bg {
    max-width: 500px;
  }
}
@media (max-width: 991px) {
  .seo-bg {
    max-width: 400px;
  }
}
.seo-bg-shape-1 {
  position: absolute;
  left: 25%;
  top: 0;
  z-index: -1;
}
@media (max-width: 767px) {
  .seo-bg-shape-1 {
    display: none;
  }
}
.seo-bg-shape-2 {
  position: absolute;
  right: 2%;
  top: 40%;
  z-index: -1;
}
@media (max-width: 767px) {
  .seo-bg-shape-2 {
    display: none;
  }
}
.seo-bg-shape-3 {
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  z-index: -1;
}
@media (max-width: 767px) {
  .seo-bg-shape-3 {
    display: none;
  }
}

.service {
  position: relative;
  overflow: visible;
}
.service-list li {
  margin-bottom: 30px;
  color: #4d546f;
}
.service-list li i {
  margin-right: 20px;
  color: #4d546f;
}
.service-bg {
  position: absolute;
  right: 0;
  top: -10%;
  z-index: -1;
}
@media (max-width: 1200px) {
  .service-bg {
    max-width: 500px;
  }
}
@media (max-width: 991px) {
  .service-bg {
    max-width: 400px;
    top: 0;
  }
}
.service-bg-shape-1 {
  position: absolute;
  left: 0;
  top: 150px;
  z-index: -1;
}
@media (max-width: 767px) {
  .service-bg-shape-1 {
    display: none;
  }
}
.service-bg-shape-2 {
  position: absolute;
  left: 40%;
  bottom: 0;
  z-index: -1;
}
@media (max-width: 767px) {
  .service-bg-shape-2 {
    display: none;
  }
}

.team {
  overflow: visible;
  position: relative;
}
.team-slider {
  overflow: hidden;
  padding-bottom: 100px;
}
.team-slider .slick-list {
  overflow: visible;
}
.team-slider .slick-arrow {
  border: 0;
  background: transparent;
  color: #008dec;
  position: absolute;
  bottom: 0;
  z-index: 1;
  font-size: 25px;
}
.team-slider .slick-arrow.slick-disabled {
  color: rgb(134, 206.2923728814, 255);
}
.team-slider .prevArrow {
  left: 10px;
}
.team-slider .nextArrow {
  left: 50px;
}
.team-member {
  padding: 30px 45px;
  background: #fff;
  box-shadow: 0px 23px 43px 0px rgba(172, 189, 199, 0.49);
  margin: 0 20px;
}
@media (max-width: 1200px) {
  .team-member {
    padding: 30px;
  }
}
.team-bg {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: -1;
}
.team-bg-shape-1 {
  position: absolute;
  top: 100px;
  left: 20px;
  z-index: -1;
}
@media (max-width: 767px) {
  .team-bg-shape-1 {
    display: none;
  }
}
.team-bg-shape-2 {
  position: absolute;
  top: 100px;
  right: -5px;
  z-index: -1;
}
@media (max-width: 767px) {
  .team-bg-shape-2 {
    display: none;
  }
}
.team-bg-shape-3 {
  position: absolute;
  bottom: 20%;
  right: 40%;
  z-index: -1;
}
@media (max-width: 767px) {
  .team-bg-shape-3 {
    display: none;
  }
}
.team-bg-shape-4 {
  position: absolute;
  bottom: 20%;
  right: 180px;
  z-index: -1;
}
@media (max-width: 767px) {
  .team-bg-shape-4 {
    display: none;
  }
}

.pricing {
  position: relative;
  overflow: visible;
}
.pricing-table {
  padding: 50px 35px 30px;
  transition: 0.2s ease;
}
@media (max-width: 1200px) {
  .pricing-table {
    padding: 30px 20px;
  }
}
.pricing-table h1 {
  font-size: 65px;
}
@media (max-width: 575px) {
  .pricing-table h1 {
    font-size: 36px;
  }
}
@media (max-width: 767px) {
  .pricing-table h1 {
    font-size: 48px;
  }
}
.pricing-table h1 span {
  font-size: 20px;
  vertical-align: top;
  line-height: 65px;
  margin-right: 5px;
}
@media (max-width: 575px) {
  .pricing-table h1 span {
    font-size: 14px;
    line-height: 36px;
  }
}
@media (max-width: 767px) {
  .pricing-table h1 span {
    font-size: 16px;
    line-height: 48px;
  }
}
.pricing-table:hover {
  box-shadow: 0px 59px 43px 0px rgba(216, 233, 243, 0.3);
}
.pricing-table.table-1 {
  background-image: linear-gradient(59deg, rgb(213, 252, 113) 0%, rgb(100, 254, 171) 95%);
}
.pricing-table.table-2 {
  background-image: linear-gradient(59deg, rgb(6, 255, 223) 0%, rgb(66, 219, 239) 95%);
}
.pricing-table.table-3 {
  background-image: linear-gradient(59deg, rgb(11, 252, 224) 0%, rgb(197, 253, 120) 95%);
}
.pricing-btn {
  font-size: 25px;
  font-weight: 700;
  color: #091337;
}
@media (max-width: 575px) {
  .pricing-btn {
    font-size: 18px;
  }
}
@media (max-width: 767px) {
  .pricing-btn {
    font-size: 20px;
  }
}
@media (max-width: 1200px) {
  .pricing-btn {
    padding: 5px;
  }
}
.pricing-btn:hover {
  color: #008dec;
}
.pricing-bg-shape-1 {
  position: absolute;
  left: 30%;
  top: 100px;
  z-index: -1;
}
@media (max-width: 767px) {
  .pricing-bg-shape-1 {
    display: none;
  }
}
.pricing-bg-shape-2 {
  position: absolute;
  right: 10%;
  top: 110px;
  z-index: -1;
}
@media (max-width: 767px) {
  .pricing-bg-shape-2 {
    display: none;
  }
}
.pricing-bg-shape-3 {
  position: absolute;
  bottom: 20%;
  left: 0;
  z-index: -1;
}
@media (max-width: 767px) {
  .pricing-bg-shape-3 {
    display: none;
  }
}

.newsletter {
  position: relative;
}
.newsletter-form {
  height: 85px;
  width: 100%;
  padding: 0 40px;
  border: 0;
  background: #fff;
  box-shadow: 0px 35px 46px 0px rgba(172, 189, 199, 0.28);
  border-radius: 5px;
}
.newsletter-form:focus {
  outline: 0;
  box-shadow: 0;
}
.newsletter-btn {
  position: absolute;
  height: 100%;
  background: #8986ff;
  top: 0;
  right: 0;
  border-radius: 0 5px 5px 0;
  font-weight: 700;
  font-size: 18px;
  color: #fff;
  text-transform: uppercase;
}
@media (max-width: 575px) {
  .newsletter-btn {
    padding-left: 5px;
    padding-right: 5px;
  }
}
.newsletter-bg-shape {
  position: absolute;
  top: 0;
  right: 10%;
  z-index: -1;
}
@media (max-width: 767px) {
  .newsletter-bg-shape {
    display: none;
  }
}

.footer {
  background-size: cover;
  background-position: top center;
  background-repeat: no-repeat;
}
.footer-section {
  padding-top: 500px;
  padding-bottom: 100px;
}
.footer-menu a {
  color: #091337;
  display: block;
  padding: 15px;
  font-weight: 400;
}

.social-icon li {
  margin: 0 12px;
}
.social-icon li a {
  height: 45px;
  width: 45px;
  background: #fff;
  border-radius: 5px;
  line-height: 45px;
  display: block;
  text-align: center;
}

.client-logo {
  display: grid;
  grid-template-columns: repeat(8, minmax(0, 1fr));
}
.client-logo .client-logo-con {
  margin: 6px 0;
  text-overflow: ellipsis;
  white-space: nowrap;
  display: flex;
  justify-content: center;
  align-items: center;
}
.client-logo .client-logo-con .client-logo-item {
  width: 80px;
  height: 80px;
  border-radius: 12px;
  background: white;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: 0.2s ease;
}
.client-logo .client-logo-con .client-logo-item:hover {
  transform: scale(1.1);
}
.client-logo .client-logo-con .client-logo-item img {
  width: 100%;
}

/* service page */
.service-bg-image {
  background-size: containe;
  background-repeat: no-repeat;
  background-position: center 400px;
}

.service-bg-1 {
  position: absolute;
  left: 50px;
  top: 10%;
  z-index: -1;
}
@media (max-width: 767px) {
  .service-bg-1 {
    display: none;
  }
}
.service-bg-2 {
  position: absolute;
  right: 50px;
  top: 10%;
  z-index: -1;
}
@media (max-width: 767px) {
  .service-bg-2 {
    display: none;
  }
}
.service-bg-3 {
  position: absolute;
  right: 50px;
  top: 50%;
  z-index: -1;
}
@media (max-width: 767px) {
  .service-bg-3 {
    display: none;
  }
}
.service-bg-4 {
  position: absolute;
  left: 50px;
  bottom: 30%;
  z-index: -1;
}
@media (max-width: 767px) {
  .service-bg-4 {
    display: none;
  }
}
.service-bg-5 {
  position: absolute;
  left: 10%;
  bottom: 5%;
  z-index: -1;
}
@media (max-width: 767px) {
  .service-bg-5 {
    display: none;
  }
}

.about {
  position: relative;
  overflow: visible;
}
.about-video {
  position: relative;
}
.about-video .play-btn {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.about-bg-1 {
  position: absolute;
  left: 30%;
  top: 10%;
  z-index: -1;
}
@media (max-width: 767px) {
  .about-bg-1 {
    display: none;
  }
}
.about-bg-2 {
  position: absolute;
  top: 30%;
  right: 40px;
  z-index: -1;
}
@media (max-width: 767px) {
  .about-bg-2 {
    display: none;
  }
}
.about-bg-3 {
  position: absolute;
  bottom: 20%;
  left: 30px;
  z-index: -1;
}
@media (max-width: 767px) {
  .about-bg-3 {
    display: none;
  }
}
.about-bg-4 {
  position: absolute;
  top: 20%;
  left: 40px;
  z-index: -1;
}
@media (max-width: 767px) {
  .about-bg-4 {
    display: none;
  }
}
.about-bg-5 {
  position: absolute;
  bottom: 10%;
  right: 40px;
  z-index: -1;
}
@media (max-width: 767px) {
  .about-bg-5 {
    display: none;
  }
}
.about-bg-6 {
  position: absolute;
  top: 10%;
  right: 10%;
  z-index: -1;
}
@media (max-width: 767px) {
  .about-bg-6 {
    display: none;
  }
}

.play-btn {
  height: 70px;
  width: 70px;
  border-radius: 50%;
  color: #fff;
  line-height: 70px;
  font-size: 20px;
  text-align: center;
  background: #7aff91;
  display: inline-block;
  transition: 0.2s ease;
  box-shadow: 0px 23px 43px 0px rgba(94, 254, 198, 0.3);
}
.play-btn:hover {
  color: #fff;
  font-size: 30px;
}

.product {
  position: relative;
  overflow: visible;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center top;
}

.about-bg {
  position: absolute;
  left: 0;
  top: 0px;
  z-index: -1;
}

.form-control {
  height: 65px;
  width: 100%;
  background: #f7fafc;
}
.form-control:focus {
  border-color: #008dec;
  box-shadow: none;
}

textarea.form-control {
  height: 157px;
}

.contact-bg {
  background-color: #f3f7fb;
}

.round-icon {
  height: 50px;
  width: 50px;
  border-radius: 50%;
  font-size: 18px;
  line-height: 50px;
  display: inline-block;
  vertical-align: middle;
  text-align: center;
}
.round-icon.green {
  background: #e0fef4;
  color: #00f7a7;
}
.round-icon.blue {
  background: #e0f1ff;
  color: #008cff;
}
.round-icon.orange {
  background: #fff1e0;
  color: #ff8b00;
}

.contact {
  position: relative;
}
.contact-bg-1 {
  position: absolute;
  left: 0;
  top: 10%;
  z-index: -1;
}
@media (max-width: 767px) {
  .contact-bg-1 {
    display: none;
  }
}
.contact-bg-2 {
  position: absolute;
  top: 20%;
  right: 10%;
  z-index: -1;
}
@media (max-width: 767px) {
  .contact-bg-2 {
    display: none;
  }
}
.contact-bg-3 {
  position: absolute;
  top: 10%;
  left: 40%;
  z-index: -1;
}
@media (max-width: 767px) {
  .contact-bg-3 {
    display: none;
  }
}
.contact-bg-4 {
  position: absolute;
  bottom: 10%;
  left: 10%;
  z-index: -1;
}
@media (max-width: 767px) {
  .contact-bg-4 {
    display: none;
  }
}
.contact-bg-5 {
  position: absolute;
  bottom: 10%;
  right: 10%;
  z-index: -1;
}
@media (max-width: 767px) {
  .contact-bg-5 {
    display: none;
  }
}
/*# sourceMappingURL=style.css.map */
