/* ==========Utilits class========== */
.ig-btn {
  position: relative;
  display: inline-flex;
  justify-content: center;
  text-align: center;
  border: 1px solid transparent;
  border-radius: 4px;
}
.btn--primary {
  background: var(--primary-color);
  position: relative;
  z-index: 1;
  color: var(--btn-color);
  overflow: hidden;
}
.btn--primary:hover {
  color: var(--btn-color);
}
.btn--primary:hover::after {
  opacity: 1;
}

.btn--primary-outline {
  border: 1px solid var(--primary-border);
  overflow: hidden;
}
.btn--primary-outline::after {
  content: "";
  position: absolute;
  z-index: -1;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background: var(--primary-color);
  transition: 0.55s ease;
  opacity: 0;
}
.btn--primary-outline:hover {
  color: var(--white);
  border: 1px solid transparent;
}
.btn--primary-outline:hover::after {
  background: linear-gradient(
    34deg,
    rgba(2, 25, 200, 1) 31%,
    rgba(240, 1, 70, 1) 98%
  );
  color: var(--white);
  opacity: 1;
}

.menu-search {
  color: #fff;
  background: rgb(255 255 255/10%) !important;
}

.menu-search:focus {
  color: #fff;
  background: rgb(255 255 255/10%) !important;
}

/** template css here */
.template-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.25rem;
}

.template:hover::before,
.template:hover .overlay-caption {
  opacity: 1;
}

.template {
  position: relative;
  text-align: center;
  color: #012970;
  transition: all 0.4s;
}

.d-flex-sms {
  display: flex !important;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: space-between;
}

.template .overlay-caption {
  transition: all 1s;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  border-radius: 5px;
  background-color: rgb(56 69 75 / 47%);
  padding: 0;
  opacity: 0;
  height: 100%;
  width: 100%;
}

.scrollable-auto {
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}

.nav-tabs-bordered .nav-link.active {
  background-color: #11a683 !important;
  color: #ffffff;
  border-bottom: none;
}

.nav-tabs .nav-link {
  margin-bottom: 0;
  border: none;
  padding: 10px 0 !important;
}

/** template css here */

.login-page-container {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  overflow: hidden;
}

.btn--white {
  background: var(--white);
  position: relative;
  color: var(--primary);
}
.btn--white:hover {
  background: transparent;
  position: relative;
  color: var(--btn-color);
  border-color: var(--btn-color);
}
.btn--white-outline {
  background: transparent;
  position: relative;
  color: var(--white);
  border: 1px solid var(--white);
}
.btn--white-outline:hover {
  background: var(--white);
  position: relative;
  color: var(--primary);
}

.btn--lg {
  padding: 12px 30px;
  font-size: 16px;
  font-weight: 600;
}
.btn--md {
  padding: 6px 18px;
  font-size: 14px;
}
.btn--sm {
  padding: 4px 13px;
  font-size: 14px;
}
.bg-primary {
  background-color: var(--primary);
}

.text-primary {
  color: var(--primary);
}
.bd-primary {
  border-color: var(--primary);
}
.btn-check:checked + .btn,
.btn.active,
.btn.show,
.btn:first-child:active,
:not(.btn-check) + .btn:active {
  color: var(--bs-btn-active-color);
  background-color: var(--bs-btn-active-bg);
  border-color: transparent !important;
}
.fs-10 {
  font-size: 10px !important;
}

.fs-11 {
  font-size: 11px !important;
}

.fs-12 {
  font-size: 12px !important;
}

.fs-13 {
  font-size: 13px !important;
}

.fs-14 {
  font-size: 14px !important;
}

.fs-15 {
  font-size: 15px !important;
}

.fs-16 {
  font-size: 16px !important;
}

.fs-17 {
  font-size: 17px !important;
}

.fs-18 {
  font-size: 18px !important;
}

.fs-19 {
  font-size: 19px !important;
}

.fs-20 {
  font-size: 20px !important;
}

.fs-21 {
  font-size: 21px !important;
}

.fs-22 {
  font-size: 22px !important;
}

.fs-23 {
  font-size: 23px !important;
}

.fs-24 {
  font-size: 24px !important;
}

.fs-36 {
  font-size: 36px !important;
}

.fs-48 {
  font-size: 48px !important;
}

.fw-semibold {
  font-weight: 600;
}

.pt-100 {
  padding-top: 70px;
}
.pb-100 {
  padding-bottom: 70px;
}
.mt-100 {
  margin-top: 70px;
}
.mb-100 {
  margin-bottom: 70px;
}

/* ======Slick Slider Custom Css====== */
.slick-list {
  margin: 0 -10px;
}

.slick-slide {
  margin: 0px 10px;
  opacity: 0;
  transition-delay: 0s;
  transition-duration: 0.2s;
  transition-property: opacity;
  transition-timing-function: ease-out;
}

.slick-slide.slick-active {
  opacity: 1;
  transition-delay: 0.3s;
  transition-duration: 0.2s;
  transition-property: opacity;
  transition-timing-function: ease-in;
}
.slick-arrow {
  display: none !important;
}
.slick-dots {
  display: none !important;
}
/* ================Header Start================ */
.header {
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 9999;
  padding: 20px 0px;
}
.sticky {
  background-color: rgb(255 255 255 / 75%);
  backdrop-filter: blur(20px);
  background-blend-mode: multiply;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 3px 6px;
}
.site-logo {
  width: 150px;
}
.header-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-menu-wrap {
  display: flex;
  align-items: center;
}
.nav-menu > ul {
  display: flex;
  align-items: center;
}
.nav-menu-item a:is(.menu-item-active) {
  color: var(--primary);
}
.bars {
  font-size: 25px;
}

.nav-menu ul > li > a {
  display: inline-block;
  color: var(--text-primary);
  padding: 0 25px;
  width: fit-content;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
}
.nav-menu ul > li > a:hover {
  color: var(--primary);
}

/* ================Header Start================ */

/* ================Banner Section Start================ */
.banner {
  padding: 150px 0;
  position: relative;
  overflow: hidden;
  z-index: 2;
}

.banner::before {
  content: "";
  width: 50vw;
  height: 80vw;
  border: 150px solid var(--dark);
  border-radius: 50%;
  position: absolute;
  top: -15vw;
  left: -20vw;
  pointer-events: none;
  isolation: isolate;
  z-index: -1;
  opacity: 0.04;
}

.banner-shape {
  position: absolute;
  top: -300px;
  right: -300px;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background-color: var(--primary);
  isolation: isolate;
  z-index: -1;
  opacity: 0.02;
}
.banner-shape-2 {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 600px;
  isolation: isolate;
  z-index: -1;
  opacity: 0.3;
}

.banner-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  bottom: 0;
  left: 0;
  isolation: isolate;
  z-index: -1;
  background-repeat: no-repeat;
  background-size: cover;
  opacity: 0.5;
}

.banner-bg > img {
  width: 100%;
  height: 100%;
}

.banner-left h1 {
  font-size: 40px;
  margin-bottom: 20px;
  font-weight: 700;
}
.banner-left h3 {
  margin-bottom: 15px;
  font-size: 20px;
}
.banner-left p {
  font-size: 16px;
  color: var(--text-secondary);
}

.banner-action {
  margin-top: 40px;
}
.banner-action-item {
  color: var(--text-primary);
  font-weight: 600;
}
.banner-action-item:hover {
  color: var(--primary);
}

.banner-action-item i {
  color: var(--white);
  font-size: 22px;
}
.video-pay {
  width: 50px;
  height: 50px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ================Banner Section End================ */

.integrations-block {
  position: relative;
  height: 100%;
  width: 100%;
  background-position: center;
  background-repeat: no-repeat;
}
.integrations-block > img {
  width: 100%;
  height: 100%;
}
.integrations-block .icon {
  position: absolute;
  -webkit-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  transition: all 500ms ease;
  background-color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  box-shadow: 0 23px 50px #d9d9e7;
}
.integrations-block .icon_lg {
  width: 90px;
  height: 90px;
  padding: 22px;
}
.integrations-block .icon_sm {
  width: 60px;
  height: 60px;
  padding: 15px;
}
.integrations-block > .icon img {
  width: 100%;
  height: 100%;
}

.integration-section .integrations-block .icon-1 {
  left: 184px;
  top: -46px;
  -webkit-animation: zoom-fade 5s infinite linear;
  animation: zoom-fade 5s infinite linear;
}

.integration-section .integrations-block .icon-2 {
  left: 70px;
  top: 32%;
  -webkit-animation: zoom-fade-two 5s infinite linear;
  animation: zoom-fade-two 5s infinite linear;
}

.integration-section .integrations-block .icon-3 {
  right: 120px;
  top: 20%;
  -webkit-animation: zoom-fade-two 5s infinite linear;
  animation: zoom-fade-two 5s infinite linear;
}

.integration-section .integrations-block .icon-4 {
  left: 30px;
  bottom: 45px;
  -webkit-animation: zoom-fade 5s infinite linear;
  animation: zoom-fade 5s infinite linear;
}

.integration-section .integrations-block .icon-5 {
  right: 30%;
  bottom: 87px;
  -webkit-animation: zoom-fade-two 5s infinite linear;
  animation: zoom-fade-two 5s infinite linear;
}

.integration-section .integrations-block .icon-6 {
  right: -4%;
  bottom: 130px;
  -webkit-animation: zoom-fade 5s infinite linear;
  animation: zoom-fade 5s infinite linear;
}

/* ================Section Title Start================ */
.section-title {
  margin-bottom: 45px;
}
.section-title > h3 {
  font-size: 42px;
  color: var(--text-primary);
  font-weight: 800;
}
.section-title > span {
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1;
  display: inline-block;
  margin-bottom: 10px;
}
.section-title > p {
  font-size: 16px;
  color: var(--neutral-7);
  margin-top: 10px;
}
/* ================Section Title end================ */

/* ================Grow Your Business Section Start================ */
.grow {
  background-color: #f5f5f5;
}

.grow-card {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 15px;
  padding: 25px;
  background: var(--white);
  border-radius: 8px;
}
.icon-avaters i {
  font-size: 30px;
}
.grow-card-content > h5 {
  font-size: 22px;
  color: var(--text-primary);
  font-weight: 600;
  margin-bottom: 10px;
}
.grow-card-content > p {
  font-size: 15px;
  color: var(--neutral-7);
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
}
.grow-right {
  position: relative;
}
.grow-right-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 85%;
}
/* ================Grow Your Business Section End================ */

/* ================Features Section Start================ */

.feature-item {
  background-color: var(--white);
  transition: all linear 0.3s;
  border: 1px solid #eee;
  min-height: 215px;
  border-radius: 8px;
  padding: 25px;
}
.feature-item .feature-head {
  margin-bottom: 28px;
}
.feature-item .feature-text h4 {
  font-size: 22px;
  margin-bottom: 12px;
}
.feature-item .feature-text p {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}
.feature-item:hover {
  transform: translateY(-5px);
  /* box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 50px; */
}
.feature-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  font-size: 20px;
  aspect-ratio: 1/1;
  background-color: var(--primary-light);
  color: var(--primary);
  border-radius: 50%;
}
/* ================Features Section End================ */

/* ================pricing plan Section Start================ */
.pricing-plans {
  position: relative;
  z-index: 2;
}
.price-tab {
  width: 100%;
  padding: 5px;
  margin-bottom: 80px !important;
  border-radius: 5px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
.price-tab {
  margin-bottom: 50px !important;
}
.price-tab ul {
  gap: 15px;
}
.price-tab ul li button {
  min-width: 130px;
  text-align: center;
  font-weight: 600;
}

.pricing-item {
  position: relative;
  transition: 0.3s ease-in-out;
  z-index: 2;
  /* padding: 40px 0; */
  background-color: var(--white);
  box-shadow: rgba(0, 0, 0, 0.05) 0px 6px 24px 0px,
    rgba(0, 0, 0, 0.08) 0px 0px 0px 1px;
  border-radius: 10px;
  overflow: hidden;
}
.pricing-item-top {
  background-color: var(--primary);
  padding: 30px 25px 0;
}
.pricing-item-bottom {
  padding: 0 25px 30px;
}
span.item-type {
  position: absolute;
  right: 20px;
  top: 10px;
  font-size: 48px;
  color: var(--primary);
  opacity: 0.05;
}
.pricing-item-two {
  transform: translateY(-15px);
}


.price > span {
  font-size: 36px;
  font-weight: 600;
  color: var(--white);
  line-height: 1;
}
.price > small {
  font-weight: 400 !important;
  color: var(--neutral-3);
}
.pricing-detail {
  padding: 20px 0;
}
.pricing-detail > h5 {
  color: var(--neutral-3);
}
.pricing-detail > p {
  font-size: 14px;
  color: var(--neutral-6);
}

.pricing-features {
  padding-top: 25px;
  display: flex;
  flex-direction: column;
  row-gap: 22px;
  margin-bottom: 45px;
}
.pricing-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  color: var(--text-secondary);
}
.pricing-feature > span {
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--primary-light);
  color: var(--primary);
  /* border: 1px solid var(--primary-border); */
  border-radius: 50%;
  font-size: 12px;
}
.ribbon {
  position: absolute;
  right: -1px;
  top: 0px;
  z-index: 1;
  width: 105px;
  height: 105px;
  text-align: right;
}
.ribbon span {
  font-size: 14px;
  font-weight: 600;
  color: #000;
  text-align: center;
  line-height: 26px;
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  width: 155px;
  display: block;
  background: #ffffff;
  box-shadow: 0 3px 10px -5px rgba(0, 0, 0, 1);
  position: absolute;
  top: 32px;
  right: -34px;
  z-index: 99999;
}
.ribbon span::before {
  content: "";
  position: absolute;
  left: 0px;
  top: 100%;
  z-index: -1;
  border-left: 3px solid var(--primary);
  border-right: 3px solid transparent;
  border-bottom: 3px solid transparent;
  border-top: 3px solid var(--primary);
}
.ribbon span::after {
  content: "";
  position: absolute;
  right: 0px;
  top: 100%;
  z-index: -1;
  border-left: 3px solid transparent;
  border-right: 3px solid var(--primary);
  border-bottom: 3px solid transparent;
  border-top: 3px solid var(--primary);
}
/* ================pricing plan Section End================ */

/* ================Faqs Section Start================ */
.faq::after {
  position: absolute;
  content: " ";
  background-image: url(../assets/images/BG-Light.png);
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  opacity: 0.6;
}
.faq-left-title > span {
  color: var(--primary);
  margin-bottom: 1;
}
.faq-left-title > h3 {
  font-size: 30px;
}
.faq-left-content > span {
  font-size: 20px;
  font-weight: 500;
  color: #170549;
}
.faq-left-content > p {
  font-size: 14px;
  color: var(--neutral-7);
}

.custiom-accordion .accordion-flush {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.custiom-accordion .accordion-item {
  border-radius: var(--radius-4);
  overflow: hidden;
  border: none;
  box-shadow: rgba(0, 0, 0, 0.05) 0px 6px 25px 0px,
    rgba(0, 0, 0, 0.05) 0px 0px 0px 0px;
  border-radius: 10px;
}
.custiom-accordion .accordion-button {
  color: var(--text-primary);
  background-color: var(--white);
  border: none;
  font-weight: 600;
  font-size: 16px;
  padding: 20px 50px 20px 20px;
  line-height: 1.6;
}
.custiom-accordion .accordion-body {
  border-top: 1px solid #eee;
  padding: 25px;
  font-size: 15px;
  line-height: 1.8;
}
.custiom-accordion .accordion-button:not(.collapsed) {
  background-color: transparent;
  color: var(--white);
  box-shadow: none;
}
.custiom-accordion .accordion-button:focus {
  border-color: transparent;
  box-shadow: none;
}
.custiom-accordion .accordion-button::after {
  flex-shrink: 0;
  width: unset;
  height: unset;
  margin-left: auto;
  background-image: none !important;
  background-repeat: unset;
  background-size: unset;
  font-size: 15px;
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  content: "\F4FE";
  font-family: "Bootstrap-icons" !important;
  font-weight: 400;
  transition: unset;
  font-size: 24px;
  color: var(--primary);
  width: 32px;
  height: 32px;
  line-height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  /* border: 1px solid var(--primary-border); */
  transition: all 0.4s ease;
  background-color: var(--primary-light);
}
.custiom-accordion .accordion-button:not(.collapsed)::after {
  background-image: none !important;
  transform: unset;
  font-family: bootstrap-icons !important;
  content: "\F2EA";
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary-border);
  top: 50%;
  transform: translateY(-50%);
}

/* ================Faqs Section End================ */

/* ================Footer Section Start================ */
.footer {
  background-color: var(--dark);
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.footer-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  isolation: isolate;
  z-index: -1;
}
.footer-bg > svg {
  width: 100%;
}

.footer-bottom {
  border-top: 1px solid #607d8b3b;
  padding: 20px 0 30px;
}

.footer-info .footer-log {
  width: 150px;
  display: block;
  margin-bottom: 20px;
}
.footer-info p {
  color: var(--neutral-5);
}
.footer-subscribe h6 {
  margin-bottom: 20px;
}

.footer-menu-title {
  font-size: 22px;
  color: var(--neutral-3);
  margin-bottom: 18px;
}
.footer-menu {
  display: block;
  font-size: 15px;
  color: var(--neutral-5);
  margin-bottom: 15px;
}
.footer-menu:hover {
  color: var(--neutral-2) !important;
}
.copyright p {
  font-size: 13px;
  color: var(--neutral-5);
}

.footer-social {
  width: 35px;
  height: 35px;
  line-height: 1;
  font-size: 16px;
  color: var(--tertiary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white) !important;
  border-radius: 50%;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.footer-social:hover {
  color: var(--white) !important;
}
.footer-social > i {
  position: absolute;
  z-index: 1;
  transition: all linear 0.3s;
}
.footer-social::after {
  position: absolute;
  content: " ";
  left: 0;
  top: 100%;
  width: 100%;
  height: 100%;
  background-color: var(--primary);
  transition: all linear 0.3s;
  z-index: -1;
}
.footer-social:hover i {
  color: var(--white);
}
.footer-social:hover::after {
  top: 0;
}

.news-form > input {
  border: 1px solid var(--text-secondary);
  width: 100%;
  padding: 10px 15px;
  border-radius: 50px 0 0 50px;
}
.news-form > input::placeholder {
  font-size: 12px;
}
.news-form > button {
  background-color: var(--text-primary);
  color: var(--white);
  border: none;
  padding: 0 20px;
  border-radius: 0 50px 50px 0;
}

/* ================Footer Section End================ */
.dark-bg {
  background-color: var(--dark);
}
.dark-bg .section-title > h3 {
  color: var(--neutral-3);
}
.dark-bg .section-title > p {
  color: var(--neutral-5);
}
.choose-us {
  position: relative;
  z-index: 1;
}
.dash-arrow {
  position: absolute;
  top: 70px;
  left: 70px;
  width: 200px;
  opacity: 0.5;
  isolation: isolate;
  z-index: -1;
}
.dash-arrow > svg {
  fill: var(--neutral-5);
}

.choose-shape {
  position: absolute;
  bottom: 0;
  right: 100px;
  width: 250px;
  opacity: 0.5;
  isolation: isolate;
  z-index: -1;
}

.choose-card {
  padding: 25px;
  border: 1px solid var(--text-secondary);
  transition: all linear 0.3s;
  display: flex;
  border-radius: 8px;
  text-align: center;
  flex-direction: column;
  align-items: center;
  background: var(--dark);
}
.choose-card .icon {
  margin-bottom: 30px;
  width: 60px;
  height: 60px;
}
.choose-card h4 {
  font-size: 22px;
  margin-bottom: 10px;
  color: var(--neutral-4);
}
.choose-card p {
  color: var(--neutral-5);
}
.choose-card:hover {
  box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 50px;
}
.choose-card:last-child {
  margin-bottom: 0;
}
.getaway-bg {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: -1;
  width: 100%;
  opacity: 0.1;
}

.get-start {
  position: relative;
  margin-bottom: 25px;
}
.get-start-bg {
  position: absolute;
  width: 100%;
  height: 500px;
  top: 0;
  left: 0;
  background: var(--primary);
  z-index: -1;
}
.get-start-content {
  color: var(--neutral-3);
  margin-bottom: 75px;
}
.get-start-content > p {
  font-size: 14px;
  margin-top: 20px;
}
.get-start-dash {
  border-radius: 5px;
  width: 75%;
  margin: 0 auto;
  position: relative;
}

.get-start-dash-sm {
  position: absolute;
  width: 300px;
  box-shadow: rgba(149, 157, 165, 0.1) 0px 8px 24px;
  top: 25%;
  right: -20%;
  z-index: 5;
}

/* ========Sidebar Start======== */
.mobile-menu .navbar-nav .nav-item .nav-link {
  padding: 8px 10px;
  border-radius: 4px;
}
.mobile-menu .navbar-nav .nav-item .nav-link:hover {
  background-color: var(--neutral-3);
  color: var(--primary);
}
.sidebar-close {
  width: 30px;
  aspect-ratio: 1/1;
  border-radius: 50%;
  border: none;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: rgba(36, 36, 36, 0.25) 0px 30px 60px -12px inset,
    rgba(255, 255, 255, 0.3) 0px 18px 36px -18px inset;
}

