@charset "UTF-8";
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", "Raleway", sans-serif;
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

a {
  text-decoration: none !important;
}

.p_t {
  padding-top: 120px !important;
}

.heig_cc {
  height: 350px;
  width: 200px;
  border-radius: 25px;
  transition-duration: 0.4s;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  border: 2px solid transparent;
  background: linear-gradient(white, white) padding-box, linear-gradient(135deg, #6366f1 0%, #8b5cf6 50%, #d946ef 100%) border-box;
}
.heig_cc:hover {
  transform: scale(1.05) rotate(2deg);
  transition-duration: 0.4s;
  box-shadow: 0 15px 35px rgba(99, 102, 241, 0.3);
}

.heign_dd {
  height: 280px;
  width: 165px;
  border-radius: 25px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}
.heign_dd:hover {
  transform: scale(1.08) translateY(-5px);
  transition: all ease-in-out 0.4s;
  box-shadow: 0 12px 30px rgba(99, 102, 241, 0.25);
}

.text-sm {
  font-size: 0.875rem !important;
  line-height: 1.25rem;
  letter-spacing: 0.5px;
}

.text-center {
  text-align: center;
}

.accordion input[type=radio] {
  display: none;
}
.accordion input[type=radio]:checked + .accordion-section {
  max-height: 40rem;
  border-color: #667eea;
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.2);
}
.accordion input[type=radio]:checked + .accordion-section .accordion-header {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
}

.accordion-section {
  max-height: 4rem;
  overflow: hidden;
  transition: all 400ms ease;
  display: block;
  border: 2px solid #e2e8f0;
  border-radius: 15px;
  margin: 15px 0;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
}
.accordion-section p {
  padding: 25px 22px;
}

.accordion-header {
  margin: 0;
  padding: 12px 22px;
  height: 3.5rem;
  line-height: 3rem;
  transition: all 400ms ease;
  font-size: 17px;
  font-weight: 600;
  border-radius: 13px;
}

::-webkit-scrollbar {
  width: 8px;
  border-radius: 10px;
}

::-webkit-scrollbar-track {
  background: transparent;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(135deg, #5a67d8 0%, #6b46c1 100%);
}

.btn_primary {
  background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 50%, #d946ef 100%) !important;
  color: #fff !important;
  padding: 12px 8px !important;
  border: 0 !important;
  border-radius: 12px !important;
  box-shadow: 0 4px 15px rgba(99, 102, 241, 0.4);
  transition: all 0.3s ease;
}
.btn_primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(99, 102, 241, 0.6);
}
.btn_primary:active {
  border-bottom: 0 !important;
  transform: translateY(0);
}

.btn_secondary {
  background: linear-gradient(135deg, #2d3748 0%, #1a202c 100%) !important;
  color: #fff !important;
  padding: 12px 8px !important;
  border-radius: 12px !important;
  border: none !important;
  box-shadow: 0 4px 15px rgba(45, 55, 72, 0.3);
  transition: all 0.3s ease;
}
.btn_secondary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(45, 55, 72, 0.5);
}

.hide_lg_show_sm {
  display: none !important;
}

.ggg {
  padding: 10px;
  border: 5px solid #1e3ea3;
  border-radius: 10px;
  width: 100%;
}
.ggg iframe {
  width: 100%;
  height: 400px;
}

.btn_bg {
  background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 50%, #d946ef 100%);
  padding: 15px 40px;
  border-radius: 50px;
  color: #fff !important;
  border: none;
  font-weight: 600;
  letter-spacing: 0.5px;
  box-shadow: 0 8px 30px rgba(99, 102, 241, 0.4);
  transition: all 0.3s ease;
  position: relative;
}
.btn_bg:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(99, 102, 241, 0.6);
  background: linear-gradient(135deg, #8b5cf6 0%, #d946ef 50%, #6366f1 100%);
}
.btn_bg:focus {
  border-bottom: 0 !important;
  outline: none;
}
.btn_bg:active {
  border-bottom: 0 !important;
  transform: translateY(-1px);
}

.bg_grad {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #2d3748 100%);
  position: relative;
  overflow: hidden;
}
.bg_grad::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, transparent 30%, rgba(255,255,255,0.05) 50%, transparent 70%);
  animation: shimmer 3s infinite;
}
@keyframes shimmer {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

.font-bold {
  font-weight: 700;
}

.flex {
  display: flex;
}

.items-center {
  align-items: center;
}

.gap-2 {
  gap: 0.5rem;
}

.font_16 {
  font-size: 16px;
}

.underline {
  text-decoration-line: underline;
}

.font-medium {
  font-weight: 500;
}

.flex-center {
  display: flex;
  align-items: center;
}

.ptpd {
  padding-top: 20px;
  padding-left: 16px;
}

.text-blue-500 {
  color: #3b82f6;
  font-weight: 500;
}

.flex_with_pricing {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 25px;
  margin-bottom: 25px;
}
.flex_with_pricing i, .flex_with_pricing svg {
  color: #16a34a;
  margin-right: 10px;
}

.step_123 {
  margin-top: 6px;
  margin-left: 10px;
  font-size: 1.1em;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  justify-content: center;
  flex: 1 1;
}
.step_123 .step_deg {
  font-size: 14px;
  font-weight: 700;
  border: none;
  color: #fff;
  border-radius: 30px;
  padding: 8px 20px;
  background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 50%, #d946ef 100%);
  box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3);
  display: inline-block;
  margin-bottom: 15px;
  transition: all 0.3s ease;
}
.step_123 .step_deg:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(99, 102, 241, 0.5);
  background: linear-gradient(135deg, #8b5cf6 0%, #d946ef 50%, #6366f1 100%);
}
.step_123 h5 {
  margin-top: 20px;
  font-weight: 600;
}
.step_123 p {
  font-size: 18px;
}

.HowItWorks_connector__2qss6 {
  margin: 0 auto -10px;
  padding-left: 30%;
  padding-right: 30%;
  width: 100%;
}

.bsd {
  transform: rotateZ(-17deg);
  font-size: 11px;
  font-weight: 600;
  display: flex;
  gap: 5px;
}
.bsd i, .bsd svg {
  height: 25px;
}

.pricing .pricing_box {
  background-color: rgb(255, 255, 255);
  color: rgba(0, 0, 0, 0.87);
  height: 100%;
  border: 0.5px solid #ccc;
  transition: box-shadow 300ms cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: var(--black-text-color);
  overflow: hidden;
  padding: 20px;
  text-align: center;
}
.pricing .pricing_box:hover {
  border: 0.5px solid #1e3ea3;
}
.pricing .pricing_box .pricing_head {
  margin-bottom: 15px;
  position: relative;
}
.pricing .pricing_box .pricing_head .roundback {
  height: 100px;
  width: 122px;
  background-color: #911fff;
  position: absolute;
  top: 49px;
  left: 120px;
  border-radius: 50%;
  filter: blur(84px);
}
.pricing .pricing_box .pricing_head p {
  text-align: center;
  font-weight: 600;
  font-size: 1.6em;
  margin-bottom: 0;
  opacity: 0.8;
  text-transform: capitalize;
}
.pricing .pricing_box .pricing_head .PriceCard_price__C1Y8g {
  font-weight: 700;
  font-size: 2.9em;
  position: relative;
  z-index: 1;
}
.pricing .pricing_box .pricing_head .PriceCard_interval__Ykm_6 {
  font-size: 13px;
  opacity: 0.7;
}
.pricing .pricing_box .pricing_second .pricing_point {
  display: flex;
  gap: 10px;
  margin-bottom: 10px;
}
.pricing .pricing_box .pricing_second .pricing_point i, .pricing .pricing_box .pricing_second .pricing_point svg {
  color: rgb(88, 186, 130);
}
.pricing .pricing_box .pricing_second .pricing_point span {
  font-size: 14px;
}
.pricing .pricing_box:hover {
  transform: scale(1.01);
}

.Landing_squigle__Lg_lK {
  height: 150px;
  display: block;
  margin: auto;
  opacity: 0.9;
  margin-top: 50px;
  margin-bottom: 50px;
}

.jsw {
  justify-content: center;
  display: flex;
  gap: 5px;
}

.bts {
  border-top: 1px solid #ccc;
  padding-top: 20px;
  margin-top: 20px;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type=number] {
  -moz-appearance: textfield;
}

.form-controll {
  background: #F7F7F7 0% 0% no-repeat padding-box;
  border: 1px solid #EFEFEF;
  border-radius: 6px;
  padding: 12px 14px !important;
  letter-spacing: 0px;
  color: #313131;
  width: 100%;
  line-height: 16px;
}

.form-control:focus {
  color: #212529;
  background-color: #fff;
  border-color: #1e3ea3;
  outline: 0;
  box-shadow: none !important;
}

.form-select:focus {
  border-color: #1e3ea3;
  outline: 0;
  box-shadow: none !important;
}

.bgz {
  background: url(../img/bgz.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.bgs {
  background: url(../img/bcn.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.bg_zss {
  background: rgb(248, 144, 31);
  background: linear-gradient(343deg, rgb(248, 144, 31) 0%, rgb(255, 255, 255) 59%);
}

.font_gradient {
  background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 25%, #d946ef 50%, #8b5cf6 75%, #6366f1 100%);
  background-size: 300% 300%;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradientShift 4s ease-in-out infinite;
  font-weight: 700;
  filter: drop-shadow(0 0 8px rgba(99, 102, 241, 0.3));
}
@keyframes gradientShift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.font_700 {
  font-weight: 700;
}

.bold {
  font-weight: 800;
}

.main_div .one_block {
  padding: 20px 15px;
}
.main_div .one_two {
  background: rgba(255, 255, 255, 0.95);
  padding: 35px;
  border-radius: 20px;
  box-shadow: 0 15px 35px rgba(102, 126, 234, 0.15);
  border: 1px solid rgba(102, 126, 234, 0.1);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}
.main_div .one_two:hover {
  transform: translateY(-5px);
  box-shadow: 0 25px 50px rgba(102, 126, 234, 0.2);
}

.font_65 {
  font-size: 65px;
}

.font_50 {
  font-size: 55px;
}

.small_font {
  padding-left: 18px;
  font-size: 18px;
}

.modal_contact form {
  padding: 15px;
}
.modal_contact form input {
  margin-bottom: 25px;
}

.modal_close {
  position: absolute;
  right: 14px;
  top: 17px;
}
.modal_close:focus {
  box-shadow: 0 0 0 0.25rem #08aa7f;
}

.terms-con-content-1 h2 {
  font-weight: 700;
  font-size: 1.2rem;
}
.terms-con-content-1 table th {
  border-right: 1px solid #000;
  padding: 15px;
}
.terms-con-content-1 table td {
  padding: 15px;
}

.gallary_sm {
  width: 190px;
}
.gallary_sm video {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 15px;
  border: 3px solid transparent;
  background: linear-gradient(white, white) padding-box, linear-gradient(135deg, #6366f1 0%, #8b5cf6 50%, #d946ef 100%) border-box;
  box-shadow: 0 8px 25px rgba(99, 102, 241, 0.2);
}
.gallary_sm video:hover {
  transform: scale(1.1);
  transition: all ease-in-out 1s;
}

.gallary_lg {
  width: 100%;
  height: 335px;
}
.gallary_lg video {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 20px;
  border: 3px solid transparent;
  background: linear-gradient(white, white) padding-box, linear-gradient(135deg, #6366f1 0%, #8b5cf6 50%, #d946ef 100%) border-box;
  box-shadow: 0 12px 30px rgba(99, 102, 241, 0.25);
}
.gallary_lg video:hover {
  transform: scale(1.1);
  transition: all ease 3s;
}
.gallary_lg iframe {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 20px;
  border: 3px solid transparent;
  background: linear-gradient(white, white) padding-box, linear-gradient(135deg, #6366f1 0%, #8b5cf6 50%, #d946ef 100%) border-box;
  box-shadow: 0 12px 30px rgba(99, 102, 241, 0.25);
}
.gallary_lg iframe:hover {
  transform: scale(1.1);
  transition: all ease 3s;
}

.store-features-section .section-header {
  max-width: 890px;
  margin: 0 auto 10px;
  text-align: center;
  font-size: 36px;
  line-height: 42px;
  font-weight: 700;
  letter-spacing: -0.02em;
}
.store-features-section .small_heading {
  font-size: 28px;
  line-height: 36px;
  font-weight: 700;
  margin-bottom: 32px;
}
.store-features-section .img_size, .store-features-section .img_szs {
  position: relative;
  width: 85%;
  display: flex;
  justify-content: center;
  transition: all ease-in-out 3s;
}
.store-features-section .img_size img, .store-features-section .img_szs img {
  border: 0.5px solid #ccc;
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  filter: drop-shadow(0 20px 13px rgba(0, 0, 0, 0.03)) drop-shadow(0 8px 5px rgba(0, 0, 0, 0.08));
  border-radius: 5px;
}
.store-features-section .img_size .img_s1, .store-features-section .img_szs .img_s1 {
  position: absolute;
  top: 56px;
  left: 31px;
  filter: drop-shadow(0 20px 13px rgba(0, 0, 0, 0.03)) drop-shadow(0 8px 5px rgba(0, 0, 0, 0.08));
}
.store-features-section .img_size .img_s2, .store-features-section .img_szs .img_s2 {
  position: absolute;
  bottom: 15px;
  left: 60px;
  filter: drop-shadow(0 20px 13px rgba(0, 0, 0, 0.03)) drop-shadow(0 8px 5px rgba(0, 0, 0, 0.08));
}
.store-features-section .img_szs:hover img {
  filter: brightness(0.3);
}
.store-features-section .img_szs:hover .img_s1 {
  filter: brightness(0.3);
}
.store-features-section .img_szs:hover .img_s2 {
  filter: brightness(1);
  bottom: 18px;
  left: 63px;
  transition: all ease-in-out 1s;
}
.store-features-section .img_szsc .img_s12 {
  position: absolute;
  height: 44px;
  border: 0;
  top: 212px;
  left: 118px;
  transition: all ease-in-out 1s;
}
.store-features-section .img_szsc:hover img {
  filter: brightness(0.5);
}
.store-features-section .img_szsc:hover .img_s12 {
  filter: brightness(1);
  height: 130px;
  top: 120px;
  left: 0px;
  transition: all ease-in-out 1s;
}
.store-features-section .store-feature-info-col .star-purple {
  padding: 0 0 0 32px;
}
.store-features-section .store-feature-info-col .star-purple li {
  position: relative;
  font-size: 18px;
  line-height: 26px;
  font-weight: 400;
  margin-bottom: 16px;
  list-style: none;
}
.store-features-section .store-feature-info-col .star-purple li::before {
  background: #1e3ea3;
  width: 20px;
  height: 20px;
  position: absolute;
  content: "";
  left: -32px;
  top: 3px;
  border-radius: 50%;
}
.store-features-section .d_flex_center {
  display: flex;
  justify-content: center;
  align-items: center;
}
.store-features-section .div_box {
  margin: 0 0 32px;
  flex: 31% 1;
  max-width: 352px;
  min-height: 255px;
  padding: 24px;
  background-color: #fff;
  box-shadow: 0 2px 8px rgba(26, 24, 30, 0.06);
  align-items: center;
  display: flex;
  flex-direction: column;
  border-radius: 8px;
}
.store-features-section .div_box svg {
  font-size: 75px;
  padding-bottom: 15px;
  color: #1e3ea3;
}
.store-features-section .div_box h5 {
  font-weight: 600;
}
.store-features-section .div_box h6 {
  text-align: center;
}
.store-features-section .themes-home-inner {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -16px;
  justify-content: center;
}
.store-features-section .themes-home-inner .themes-home-box {
  flex: 33% 1;
  padding: 0 16px;
  max-width: 392px;
  margin-top: 64px;
}
.store-features-section .themes-home-inner .themes-home-box img {
  filter: drop-shadow(0 2px 8px rgba(26, 24, 30, 0.06));
  border-radius: 8px;
  border: 1px solid #f2f2f2;
  max-width: 100%;
  vertical-align: bottom;
  max-height: 100%;
  width: 100%;
  height: 100%;
  max-height: 472px;
}

.img_logo {
  width: 100px;
  height: 100px;
  margin: auto;
  border-radius: 50%;
}

.img_logoq {
  width: 100px;
  height: 100px;
  margin: auto;
  border-radius: 5px;
}

.ab-pos {
  position: absolute;
  top: -5px;
  right: 3px;
  background: #f79121;
  padding: 10px;
  border-radius: 0px 8px;
  font-size: 13px;
  font-weight: 600;
  color: white;
}

.py-24 {
  padding-top: 7rem;
  padding-bottom: 7rem;
}

/* STICKY STYLES
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.header_3.is-sticky {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  background-color: #fff;
  animation: slideDown 0.35s ease-out;
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(30px);
  padding: 12px 0;
  z-index: 99999;
}

.header_3.is-sticky img {
  max-width: 100%;
}

.header_3.is-sticky button {
  font-size: 14px;
  padding: 7px 10px;
}

@keyframes slideDown {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0);
  }
}
.padding-cl {
  padding: 25px 0;
}

.header_3 {
  justify-content: center;
  display: flex;
  align-items: center;
}
.header_3 .header_btn {
  background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 50%, #d946ef 100%);
  color: white;
  padding: 12px 24px;
  border-radius: 50px;
  box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3);
  transition: all 0.3s ease;
  font-weight: 600;
  border: none;
}
.header_3 .header_btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(99, 102, 241, 0.5);
  color: white;
  background: linear-gradient(135deg, #8b5cf6 0%, #d946ef 50%, #6366f1 100%);
}
.header_3 .header_login {
  padding: 12px 24px;
  border-radius: 50px;
  border: 2px solid #6366f1;
  color: #6366f1 !important;
  transition: all 0.3s ease;
  font-weight: 600;
  background: rgba(255, 255, 255, 0.9);
}
.header_3 .header_login:hover {
  background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 50%, #d946ef 100%);
  color: white !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(99, 102, 241, 0.3);
}
.header_3 .navbar {
  border: 1px solid #ccc;
  border-radius: 50px;
  padding-bottom: 0;
  position: fixed;
  top: 20px;
  z-index: 1060;
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  padding: 10px 5px;
}
.header_3 .nav_li {
  transition: 0.3s ease-in-out;
}
.header_3 .nav_li a {
  font-size: 14px;
  font-weight: 600;
}
.header_3 .nav_li a:focus {
  border-bottom: 2px solid #252525;
}
.header_3 .nav_li i, .header_3 .nav_li svg {
  padding: 10px;
  color: #252525;
  margin-top: 10px;
}
.header_3 .nav_link {
  display: flex;
  flex-direction: inherit;
  gap: 30px;
  text-transform: capitalize;
}
.header_3 ul li {
  list-style: none;
}
.header_3 .hide_show {
  display: flex;
}
.header_3 .attr-nav {
  float: right;
  display: inline-block;
  margin-left: 13px;
  margin-right: -15px;
}
.header_3 .attr-nav > ul {
  padding: 0;
  margin: 0 0 -7px 0;
  list-style: none;
  display: inline-block;
}
.header_3 .attr-nav > ul > li {
  float: left;
  display: block;
  cursor: pointer;
}
.header_3 .attr-nav > ul > li > a {
  color: #252525;
  display: block;
  padding: 20px 15px;
  position: relative;
}
.header_3 .attr-nav ul li a span {
  color: #252525;
  font-size: 25px;
}
.header_3 .attr-nav > ul > li > a span.badge {
  margin-top: -25px;
  width: 20px;
  height: 20px;
  padding-top: 3px;
  background-color: #fff;
  color: #252525;
  position: absolute;
  top: 50%;
  right: 5px;
  font-size: 10px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #252525;
}
.header_3 .top-search {
  background-color: #1e3ea3;
  padding: 10px 0;
  display: none;
  display: block;
  position: absolute;
  top: 0;
  z-index: 1000;
  padding: 15px;
}
.header_3 .top-search .input-group-addon {
  background-color: transparent;
  border: none;
  color: #fff;
  padding-left: 0;
  padding-right: 0;
}
.header_3 .input-group .form-control {
  background: #1e3ea3 !important;
  color: #000000;
  border: none;
  line-height: 26px !important;
  padding: 11px 16px !important;
}
.header_3 .input-group .form-control:hover {
  box-shadow: none;
  outline: 0;
  border: none;
}
.header_3 .input-group .form-control:focus {
  box-shadow: none;
  outline: 0;
  border: none;
}
.header_3 .mt_7 {
  margin-top: 7px;
}
.header_3 .dropdown-toggle::after {
  display: none;
}
.header_3 a {
  color: #252525;
  text-decoration: none;
}
.header_3 .nav_link {
  display: flex;
  flex-direction: inherit;
  gap: 30px;
  text-transform: capitalize;
}
.header_3 .nav_li a.active {
  transition: 0.3s ease-in-out;
  padding-top: 2px;
  border-bottom: 3px solid #1e3ea3;
}
.header_3 .d_flx {
  align-items: center;
  display: flex;
  justify-content: center;
}
.header_3 .hide_show {
  display: flex;
}
.header_3 .mobile_view {
  display: none;
}
.header_3 .bg_color {
  background: #fff;
}
.header_3 .dropdown-menu.show {
  background: #fff;
  color: #252525;
}
.header_3 .dropdown-item:focus, .header_3 .dropdown-item:hover {
  background: #1e3ea3;
  color: #000000;
}
.header_3 .display_none {
  display: none !important;
}
.header_3 .hide_lg_show_sm {
  display: none !important;
}

.form-check-input:checked {
  background-color: #1e3ea3 !important;
  border-color: #1e3ea3 !important;
}

.py-8 {
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.bcz {
  border-bottom: 0 !important;
  background: #efefef;
}

.bold_700 {
  font-weight: 700 !important;
}

.footer1 {
  border-top: 0.5px solid #eee;
  background-color: white;
  position: relative;
}
.footer1 .Download_app {
  display: flex;
  /* gap: 10px; */
  align-items: center;
  justify-content: center;
  position: relative;
}
.footer1 .Download_app .down_img {
  height: 158px;
  width: 243px;
  overflow: hidden;
}
.footer1 .Download_app .down_img img {
  height: 100%;
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.footer1 .bold_600 {
  font-weight: 600 !important;
}
.footer1 ul {
  padding: 0;
  margin: 0 auto;
  list-style: none;
}
.footer1 p {
  color: #252525;
}
.footer1 .site-footer__graphics {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
}
.footer1 .site-footer__graphics .site-footer__graphic-1 {
  position: absolute;
  top: -72px;
  right: 54px;
  display: block;
  width: 150px;
  height: 150px;
  transform: rotate(-45deg);
  background-image: linear-gradient(90deg, #2336B6 0%, rgba(31, 38, 103, 0.9) 100%);
  opacity: 0.4;
}
.footer1 .site-footer__graphics .site-footer__graphic-2 {
  position: absolute;
  top: -67px;
  right: 176px;
  display: block;
  width: 150px;
  height: 150px;
  border-radius: 100px;
  background-image: linear-gradient(-90deg, rgba(49, 207, 171, 0.5) 0%, #50E3C2 100%);
  mix-blend-mode: multiply;
}
.footer1 .footbox_n {
  padding-left: 20px !important;
  padding: 10px;
  margin-bottom: 20px;
}
.footer1 .footbox_n li {
  padding-right: 20px;
}
.footer1 .footbox_n li a {
  text-transform: capitalize;
  font-size: 13px !important;
  font-weight: 500;
  color: #252525;
}
.footer1 a {
  text-transform: capitalize;
  font-size: 13px !important;
  font-weight: 500;
  text-decoration: none;
  color: #252525;
}
.footer1 .foot_headi {
  font-size: 17px !important;
  letter-spacing: 3px !important;
}
.footer1 .foot_icon {
  display: flex;
  gap: 10px;
  justify-content: center;
  color: #fff;
}
.footer1 .icon_class {
  font-size: 40px !important;
  color: #252525;
}
.footer1 .icon_class:hover {
  font-size: 45px !important;
}

.duration-300 {
  animation-duration: 0.3s;
}

.transition-all {
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 0.15s;
}

.font-bold {
  font-weight: 700;
}

.text-lg {
  font-size: 1.125rem;
  line-height: 1.75rem;
}

.font-light {
  font-weight: 300 !important;
}

.features_sm {
  padding: 10px;
  border-radius: 10px;
  border: 0.5px solid #ccc;
  overflow: hidden;
  height: 18rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin: 5px;
}
.features_sm:hover {
  border: 1px solid #1e3ea3;
}
.features_sm:hover .features_sm_img {
  transform: scale(1.1);
  transition: all ease-in-out 3s;
}
.features_sm:hover .features_sm_img .white_class {
  opacity: 0;
}
.features_sm:hover .features_sm_text {
  padding-top: 5px;
  padding: 10px;
  padding-bottom: 0;
}
.features_sm:hover .features_sm_text h3 {
  font-size: 1.3rem;
}
.features_sm .features_sm_img {
  width: 100%;
  height: 50%;
  overflow: hidden;
  position: relative;
}
.features_sm .features_sm_img img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  overflow: hidden;
}
.features_sm .features_sm_img .white_class {
  height: 50px;
  background-color: #fff;
  opacity: 0.5;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  filter: blur(15px);
}
.features_sm .features_sm_text {
  padding-top: 15px;
  padding: 10px;
  padding-bottom: 0;
}

.slider {
  overflow: hidden;
  position: relative;
  padding: 50px 0px;
}
.slider .slide {
  width: 30%;
}
.slider .testomonial_main {
  background: white;
  min-height: 175px;
  border: 1px solid #ccc;
  display: flex;
  flex-direction: column;
  gap: 15px;
  padding: 5px 10px;
  border-radius: 10px;
  margin: 10px;
  box-shadow: 5px 5px 30px hsla(0, 0%, 75%, 0.15), -5px -5px 30px hsla(0, 0%, 100%, 0.15);
}
.slider .testomonial_main img {
  height: 45px;
  width: 45px;
  border-radius: 50px;
}
.slider .testomonial_main .testomonial_name_star {
  display: flex;
  gap: 15px;
  align-items: center;
}
.slider .testomonial_main .testomonial_name_star .t_name h6 {
  font-weight: 600;
  margin-bottom: 0;
  font-size: 0.875rem;
  line-height: 1.25rem;
}
.slider .testomonial_main .testomonial_name_star .t_star {
  font-size: 12px;
  background: #cfffcf;
  padding: 3px 10px;
  border-radius: 5px;
  color: #0eba30;
}
.slider .testomonial_main .testomonial_review p {
  font-weight: 300;
  color: #374151;
  font-size: 13px;
}
.slider video {
  margin: 0 25px;
  border-radius: 9px;
  height: auto;
  width: 230px;
  display: flex;
  background: #3b395d;
  align-items: center;
  transition: transform 0.3s ease;
}
.slider video:hover {
  transform: scale(1.1);
  z-index: 1;
}

.slider .slide-track {
  display: flex;
  align-items: center;
  justify-content: center;
}

.terms-section .effective-date {
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 32px;
  color: #4d4d4d;
}
.terms-section p {
  font-size: 18px;
  line-height: 26px;
}
.terms-section .mb48, .terms-section .my48 {
  margin-bottom: 48px;
}
.terms-section ol {
  font-size: 18px;
  line-height: 26px;
  margin-top: 12px;
  counter-reset: item;
  position: relative;
}
.terms-section ol li {
  margin-bottom: 48px !important;
}

.login_page {
  overflow: hidden;
}
.login_page .login_back_link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px;
}
.login_page .login_back_link a {
  padding: 10px 15px;
  color: rgb(35, 35, 35);
  font-size: 15px;
  font-weight: 600;
  border-radius: 5px;
}
.login_page .login_back_link a:hover {
  background-color: rgb(236, 234, 234);
}

.login_main_box {
  margin: 120px auto;
}
.login_main_box .login_logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.login_button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  font-weight: 600;
  font-size: 15px;
}

.tracking-tight {
  letter-spacing: -0.025em;
}

.text-2xl {
  font-size: 1.5rem;
  line-height: 2rem;
}

.text-xs {
  font-size: 0.75rem;
  line-height: 1rem;
}

.font_w_s {
  font-size: 13px;
  font-weight: 600;
}

.f_selct {
  padding: 0.375rem 0.75rem;
  line-height: 1.5;
}

@media (max-width: 1400px) {
  .gallary_sm {
    width: 155px;
  }
  .gallary_lg {
    height: 270px;
  }
}
@media (max-width: 850px) {
  .header_3 {
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    /* background-color: #fff; */
    animation: slideDown 0.35s ease-out;
    padding: 12px 0;
    z-index: 99999;
  }
  .flex_with_pricing {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 25px;
    margin-bottom: 35px;
  }
  .flex_with_pricing i, .flex_with_pricing svg {
    color: #16a34a;
    margin-right: 10px;
  }
  .img_size .img_s1 {
    top: 55px;
    left: 24px;
  }
  .gallary_sm {
    width: 100%;
  }
  .gallary_lg {
    width: 100%;
    height: 100%;
  }
  .gallary_lg video {
    height: 78%;
  }
  .small_font {
    font-weight: 400;
    padding-left: 18px;
    font-size: 18px;
  }
  .themes-home-box {
    flex: 100% !important;
    -webkit-flex: 100% !important;
    -moz-box-flex: 100% !important;
  }
  .one_block {
    margin-top: 100px;
  }
  .hide_lg_show_sm {
    display: flex !important;
  }
  .hide_sm_show_lg {
    display: none !important;
  }
  .one_one {
    margin-top: 25px;
  }
  .mobile_menu {
    display: flex !important;
    flex-direction: column !important;
    background: white;
    height: 103vh;
    width: 300px;
    position: fixed;
    transform: translate(-100%);
    transition: all 0.2s ease;
    top: -13px;
    left: 0;
    padding: 20px;
    bottom: 0;
    padding-top: 22px;
    z-index: 99999;
  }
  .mobile_menu.active {
    transform: translate(0%);
    transition: all 0.2s ease;
    transition-timing-function: cubic-bezier(0.89, -0.05, 0.43, 1.02);
    box-shadow: 0 2.8px 2.2px rgba(0, 0, 0, 0.034), 0 6.7px 5.3px rgba(0, 0, 0, 0.048), 0 12.5px 10px rgba(0, 0, 0, 0.06), 0 22.3px 17.9px rgba(0, 0, 0, 0.072), 0 41.8px 33.4px rgba(0, 0, 0, 0.086), 0 100px 80px rgba(0, 0, 0, 0.12);
  }
  .font_65 {
    font-size: 35px;
  }
}
@media (max-width: 765px) {
  .sm_hide {
    display: none;
  }
  .slide {
    width: 100% !important;
  }
  .slider .testomonial_main .testomonial_name_star {
    flex-direction: column;
    align-items: start;
  }
}
@media (max-width: 550px) {
  .flex_dir {
    flex-direction: column-reverse;
  }
  .slider .slide-track {
    display: block;
  }
  .pad_lef {
    padding-left: 20px;
  }
  .img_szsc .img_s12 {
    height: 25px;
    border: 0;
    top: 144px !important;
    left: 46px !important;
  }
  .img_size {
    height: 255px !important;
  }
  .img_s1 {
    position: absolute;
    top: 80px !important;
    left: 31px !important;
  }
  .img_s2 {
    position: absolute;
    bottom: 55px !important;
    left: 50px !important;
  }
  .header_3 .nav_link {
    gap: 5px;
  }
  .heig_cc {
    height: 270px;
    width: 160px;
  }
  .heign_dd {
    height: 170px;
    width: 93px;
  }
  .font_50 {
    font-size: 34px;
    line-height: 43px !important;
  }
  .one_block {
    margin-top: 0px;
  }
  .p_t {
    padding-top: 30px;
  }
  .fggg {
    font-size: 20px !important;
  }
  .gghjr {
    padding-top: 0 !important;
  }
  .ggg {
    padding: 10px;
    border: 5px solid #1e3ea3;
    border-radius: 10px;
    margin-top: 10px;
  }
  .ggg iframe {
    width: 100%;
    height: 200px;
  }
  .store-features-section .img_size img {
    border: none;
    border-radius: none;
  }
  .store-features-section .section-header {
    font-size: 23px;
  }
  .store-features-section .header_small {
    font-size: 20px !important;
    font-weight: 200 !important;
  }
  .store-features-section .small_heading {
    font-size: 21px;
    line-height: 36px;
    font-weight: 700;
    margin-bottom: 32px;
  }
  .store-features-section .img_size {
    height: 355px;
    width: 85%;
    display: flex;
    justify-content: center;
  }
  .store-features-section .store-feature-info-col .star-purple {
    padding: 0 0 0 32px;
  }
  .store-features-section .store-feature-info-col .star-purple li::before {
    width: 10px;
    height: 10px;
  }
}
@media (max-width: 380px) {
  .navbar-brand {
    width: 145px !important;
    height: 45px !important;
  }
  .img_size {
    height: 217px !important;
  }
}
.loader {
  height: 100vh;
  width: 100vw;
  text-align: center;
  background: white;
  position: fixed;
  z-index: 1060;
}

#loading {
  width: 40px;
  aspect-ratio: 1;
  color: #ff61e1;
  position: relative;
  background: conic-gradient(from 134deg at top, currentColor 92deg, rgba(0, 0, 0, 0) 0) top, conic-gradient(from -46deg at bottom, currentColor 92deg, rgba(0, 0, 0, 0) 0) bottom;
  background-size: 100% 50%;
  background-repeat: no-repeat;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 344px auto;
}

#loading:before {
  content: "";
  position: absolute;
  inset: 0;
  --g:currentColor 14.5px,#0000 0 calc(100% - 14.5px),currentColor 0;
  background: linear-gradient(45deg, var(--g)), linear-gradient(-45deg, var(--g));
  animation: l7 1.5s infinite cubic-bezier(0.3, 1, 0, 1);
}

@keyframes l7 {
  33% {
    inset: -10px;
    transform: rotate(0deg);
  }
  66% {
    inset: -10px;
    transform: rotate(90deg);
  }
  100% {
    inset: 0;
    transform: rotate(90deg);
  }
}
.VideoExamples_circle__Q0Hz9 {
  background: linear-gradient(324deg, #ff1f89, #ffffff);
  position: absolute;
  top: 18%;
  left: 50px;
  border-radius: 900px;
  height: 280px;
  width: 20%;
  /* opacity: 0.2; */
  filter: blur(90px);
}

.zsdc {
  top: 50%;
  right: 0;
  left: 79%;
  height: 500px;
  background: linear-gradient(324deg, #571fff, #ff81cd);
}

.hidden {
  display: none;
}

.text-green-900 {
  color: rgb(33, 94, 56);
  border-radius: 3px;
  font-size: 11px;
  margin-left: 5px;
}

.bg-green-100 {
  background-color: rgb(220, 252, 231);
}

@keyframes fadeOut {
  to {
    opacity: 0;
    transform: scale(2);
  }
}

/* Custom Unique Design Elements for Differentiation */
.header_3 .navbar {
  background: rgba(255, 255, 255, 0.95) !important;
  border: 2px solid rgba(102, 126, 234, 0.1) !important;
  box-shadow: 0 8px 32px rgba(102, 126, 234, 0.1) !important;
}

.store-features-section {
  position: relative;
}

.store-features-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.02) 0%, rgba(118, 75, 162, 0.02) 100%);
  pointer-events: none;
}

/* Enhanced card hover effects */
.pricing .pricing_box {
  border: 2px solid rgba(102, 126, 234, 0.1) !important;
  transition: all 0.4s ease !important;
  background: rgba(255, 255, 255, 0.95) !important;
  backdrop-filter: blur(10px) !important;
}

.pricing .pricing_box:hover {
  border-color: #667eea !important;
  transform: translateY(-8px) scale(1.02) !important;
  box-shadow: 0 20px 40px rgba(102, 126, 234, 0.2) !important;
}

/* Enhanced text blue color */
.text-blue-500 {
  color: #6366f1 !important;
  font-weight: 600 !important;
}

/* Modern testimonial styling */
.slider .testomonial_main {
  background: rgba(255, 255, 255, 0.95) !important;
  border: 2px solid rgba(102, 126, 234, 0.1) !important;
  border-radius: 20px !important;
  backdrop-filter: blur(10px) !important;
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.1) !important;
  transition: all 0.3s ease !important;
}

.slider .testomonial_main:hover {
  transform: translateY(-5px) !important;
  box-shadow: 0 15px 35px rgba(102, 126, 234, 0.2) !important;
  border-color: #667eea !important;
}

/* Enhanced form controls */
.form-control:focus {
  border-color: #667eea !important;
  box-shadow: 0 0 0 0.2rem rgba(102, 126, 234, 0.25) !important;
}

/* Enhanced accordion active state */
.header_3 .nav_li a.active {
  border-bottom: 3px solid #667eea !important;
}

/* Custom floating animation for hero section */
@keyframes floating {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}

.VideoExamples_circle__Q0Hz9 {
  background: linear-gradient(135deg, #6366f1, #8b5cf6, #d946ef) !important;
  animation: floating 6s ease-in-out infinite;
}

/* Updated loader colors */
#loading {
  color: #6366f1 !important;
}

/*# sourceMappingURL=style.css.map */