@import url("https://fonts.googleapis.com/css2?family=Urbanist:ital,wght@0,100..900;1,100..900&display=swap");
:root {
  scroll-behavior: auto !important;
}

body {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.625;
  color: #6B7073;
  font-family: "Urbanist", serif;
  background-color: #fff;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Urbanist", serif;
  color: #110E12;
}

p {
  margin: 0;
}

img {
  max-width: 100%;
  height: auto;
}

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

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

input,
textarea,
button {
  padding: 10px 25px;
  border: 1px solid #4B4B4B;
  outline: none;
  transition: all 0.3s ease-in-out;
}
input:focus,
textarea:focus,
button:focus {
  outline: none;
  border-color: #D8299E;
}

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

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

.common-padding {
  --padding-y: 130px;
  padding-top: var(--padding-y);
  padding-top: var(--padding-y);
}
@media only screen and (min-width: 1280px) and (max-width: 1439px) {
  .common-padding {
    --padding-y: 110px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1279px) {
  .common-padding {
    --padding-y: 90px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .common-padding {
    --padding-y: 70px;
  }
}
@media only screen and (max-width: 767px) {
  .common-padding {
    --padding-y: 50px;
  }
}
.common-title {
  margin-bottom: 44px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .common-title {
    margin-bottom: 34px;
  }
}
@media only screen and (max-width: 767px) {
  .common-title {
    margin-bottom: 30px;
  }
}
.common-title h2 {
  font-size: 44px;
  line-height: 120%;
  margin-bottom: 12px;
  font-weight: 600;
}
@media only screen and (min-width: 992px) and (max-width: 1279px) {
  .common-title h2 {
    font-size: 36px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .common-title h2 {
    font-size: 34px;
  }
}
@media only screen and (max-width: 767px) {
  .common-title h2 {
    font-size: 28px;
  }
}
@media only screen and (max-width: 767px) {
  .common-title h2 {
    margin-bottom: 8px;
  }
}
.common-title p {
  font-size: 18px;
  line-height: 1.5;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .common-title p {
    font-size: 16px;
  }
}

.btn {
  display: inline-block;
  border-radius: 10px;
  background: linear-gradient(116deg, #C53596 14.6%, #5053E7 98.91%);
  padding: 12px 24px;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  line-height: 150%;
}
@media only screen and (max-width: 767px) {
  .btn {
    --bs-btn-font-size: 15px;
    --bs-btn-line-height: 26px;
  }
  .heading .btn {
    padding: 10px 18px;
  }
}
.btn:hover {
  transform: scale(1.05);
}
.btn.bg-primary {
  border-color: #D8299E !important;
  color: #5053E7 !important;
}
.btn.bg-primary:hover {
  background-color: transparent !important;
  color: #D8299E !important;
}
.btn.bg-transparent {
  border-radius: 10px;
  border: 1px solid #C53696;
  background: #FAF4F8;
  color: #C53696;
  font-size: 16px;
  font-weight: 500;
  line-height: 150%;
}

.text-gradient {
  background: var(--Button-clour, linear-gradient(116deg, #C53596 14.6%, #5053E7 98.91%));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

#root {
  overflow: hidden;
}

.video-container {
  position: relative;
  z-index: 1;
  border-radius: 32px;
  overflow: hidden;
}
.video-container::before {
  content: "";
  width: 100%;
  height: 100%;
  background-color: #000000;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0.2;
  border-radius: 32px;
  z-index: -1 !important;
}
.video-container .video-play {
  z-index: 1;
}
.video-container .magnific-box {
  z-index: -1;
}

@keyframes headerAnimation {
  0% {
    transform: translateY(-20px);
  }
  100% {
    transform: translateY(0px);
  }
}
.logo {
  cursor: pointer;
}

.heading {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  background-color: transparent;
  padding: var(--bs-navbar-padding-y) 0;
  --bs-navbar-padding-y: 30px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .heading {
    --bs-navbar-padding-y: 24px;
  }
}
@media only screen and (max-width: 767px) {
  .heading {
    --bs-navbar-padding-y: 20px;
  }
}
.heading.position-fixed {
  position: fixed;
  animation: headerAnimation 0.5s linear;
  background-color: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(3px);
  --bs-navbar-padding-y: 24px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .heading.position-fixed {
    --bs-navbar-padding-y: 20px;
  }
}
@media only screen and (max-width: 767px) {
  .heading.position-fixed {
    --bs-navbar-padding-y: 1rem;
  }
}
@media only screen and (max-width: 991px) {
  .heading-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(255, 255, 255, 0.94);
    padding: 24px;
    z-index: 999;
    transform: translateY(150%);
    transition: all 0.3s ease-in-out;
  }
  .heading-menu.show-menu {
    transform: translate(0, 0);
  }
}
.heading-menu .title {
  margin-bottom: 24px;
}
@media only screen and (max-width: 767px) {
  .heading-menu .title {
    margin-bottom: 16px;
  }
}
@media only screen and (max-width: 991px) {
  .heading-menu .heading-actions {
    margin-top: 26px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media only screen and (max-width: 767px) {
  .heading-menu .heading-actions {
    margin-top: 20px;
  }
}
.heading-link {
  font-size: 18px;
  line-height: 150%;
  color: #6B7073;
  font-weight: 400;
  font-family: "Urbanist", serif;
  display: block;
  padding: 10px 20px;
}
@media only screen and (max-width: 991px) {
  .heading-link {
    font-weight: 500;
    padding: 10px 5px;
  }
}
.heading-link:hover, .heading-link.active {
  color: #D8299E;
}
.heading-toggler {
  --btn-padding-x: 0px;
  --btn-padding-y: 0px;
  padding: var(--btn-padding-y) var(--btn-padding-x);
  border: none;
  background-color: transparent;
  color: #110E12;
  display: flex;
  align-items: center;
  justify-content: center;
}
.heading-toggler svg {
  width: 40px;
  height: 40px;
}

.footer {
  border-radius: 40px 40px 0px 0px;
  background-image: linear-gradient(180deg, #FEF8FC 0%, #F3EEF1 100%);
  padding: 60px 0;
}
@media only screen and (min-width: 992px) and (max-width: 1279px) {
  .footer {
    padding: 50px 0;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .footer {
    padding: 40px 0;
  }
}
@media only screen and (max-width: 767px) {
  .footer {
    padding: 30px 0;
  }
}
.footer-wrap {
  display: flex;
  justify-content: space-between;
  max-width: 1049px;
}
@media only screen and (max-width: 767px) {
  .footer-wrap {
    flex-direction: column;
    gap: 16px;
    align-items: center;
    text-align: center;
  }
}
.footer .single h4 {
  color: #120D13;
  font-size: 18px;
  font-weight: 600;
  line-height: 150%;
  margin-bottom: 20px;
}
@media only screen and (min-width: 992px) and (max-width: 1279px) {
  .footer .single h4 {
    margin-bottom: 18px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .footer .single h4 {
    margin-bottom: 16px;
  }
}
@media only screen and (max-width: 767px) {
  .footer .single h4 {
    margin-bottom: 8px;
  }
}
.footer .single a:hover {
  color: #B57CC9;
}
.footer .single p {
  color: #6C7074;
  line-height: 150%;
  font-size: 16px;
}
.footer .single p a {
  color: #120D13;
  font-weight: 500;
}
.footer .single .social {
  display: flex;
  gap: 12px;
  align-items: center;
}
.footer .single .social-link {
  background-image: linear-gradient(180deg, #676465 11.55%, #0F0E0E 100%);
  box-shadow: 0px 4px 11.4px rgba(0, 0, 0, 0.25);
  background-color: red;
  --size: 32px;
  width: var(--size);
  height: var(--size);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
}
.footer .single .social-link:hover {
  transform: scale(1.05);
}

.security .wrap {
  border-radius: 40px;
  background: linear-gradient(116deg, #FDF6FB 6.1%, #F5F4FA 97.22%);
  padding: 74px 67px;
}
@media only screen and (min-width: 992px) and (max-width: 1279px) {
  .security .wrap {
    padding: 60px 50px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .security .wrap {
    padding: 40px;
    border-radius: 20px;
  }
}
@media only screen and (max-width: 767px) {
  .security .wrap {
    padding: 24px;
    border-radius: 16px;
  }
}
.security .wrap .common-title {
  text-align: center;
}
.security .wrap .common-title h2 {
  font-weight: 600;
}
.security-items {
  gap: 24px;
}
@media only screen and (max-width: 767px) {
  .security-items {
    gap: 18px;
  }
}
.security-items .single {
  padding-bottom: 20px;
  border-bottom: 1px solid #E5D7E0;
  max-width: 308px;
}
@media only screen and (min-width: 992px) and (max-width: 1279px) {
  .security-items .single {
    padding-bottom: 12px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .security-items .single {
    padding-bottom: 12px;
  }
}
@media only screen and (max-width: 767px) {
  .security-items .single {
    padding-bottom: 12px;
  }
}
.security-items .single h3 {
  font-size: 20px;
  font-weight: 600;
  line-height: 150%;
  margin-bottom: 8px;
}
@media only screen and (min-width: 992px) and (max-width: 1279px) {
  .security-items .single h3 {
    margin-bottom: 6px;
  }
}
@media only screen and (max-width: 991px) {
  .security-items .single h3 {
    margin-bottom: 4px;
  }
}
.security-items .single p {
  font-size: 18px;
  font-weight: 500;
  line-height: 150%;
}
@media only screen and (max-width: 767px) {
  .security-items .single p {
    font-size: 16px;
  }
}
.security .playBtn {
  border-radius: 80px;
  border: 1px solid #FFF;
  background: rgba(255, 255, 255, 0.4);
  box-shadow: 0px 4px 21.1px 0px rgba(0, 0, 0, 0.17);
  backdrop-filter: blur(13px);
  --size: 80px;
  width: var(--size);
  height: var(--size);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  cursor: pointer;
  color: #C53696;
}
@media only screen and (max-width: 767px) {
  .security .playBtn {
    --size: 60px;
    padding: 20px;
  }
}
.security .playBtn:hover {
  background-color: #D8299E;
  color: #fff;
}

.smart .card {
  background: linear-gradient(159deg, #FDF6FB 9.01%, #F5F4FA 92.46%);
}

.why .container {
  max-width: 1301px;
}
.why .card span {
  background: linear-gradient(180deg, #676465 11.55%, #0F0E0E 100%);
}

.download .contant {
  border-radius: 40px;
  background: linear-gradient(97deg, #FBB2E4 -6.61%, #FFE4F7 96.97%);
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .download .contant {
    border-radius: 36px;
  }
}
@media only screen and (max-width: 767px) {
  .download .contant {
    border-radius: 32px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1279px) {
  .download .contant img {
    max-width: 320px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .download .contant img {
    max-width: 272px;
  }
}
@media only screen and (max-width: 767px) {
  .download .contant img {
    max-width: 262px;
  }
}

.faq-wrap {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.faq-wrap .single {
  cursor: pointer;
  border-radius: 20px;
  background: linear-gradient(116deg, #FDF6FB 6.1%, #F5F4FA 97.22%);
  border: 0;
  width: 100%;
  padding: 24px;
  text-align: start;
}
@media only screen and (max-width: 991px) {
  .faq-wrap .single {
    padding: 20px;
  }
}
@media only screen and (max-width: 767px) {
  .faq-wrap .single {
    padding: 16px;
    border-radius: 12px;
  }
}
.faq-wrap .single .plusMinus {
  margin-top: 5px;
}
@media only screen and (max-width: 767px) {
  .faq-wrap .single .plusMinus {
    margin-top: 0px;
  }
}
.faq-wrap .single .inner {
  gap: 24px;
}
@media only screen and (max-width: 767px) {
  .faq-wrap .single .inner {
    gap: 12px;
  }
}
.faq-wrap .single h3 {
  color: #120D13;
  font-size: 24px;
  font-weight: 600;
  line-height: 150%;
}
@media only screen and (max-width: 767px) {
  .faq-wrap .single h3 {
    font-size: 20px;
    line-height: 120%;
  }
}
.faq-wrap .single p {
  color: #6C7074;
  font-size: 18px;
  line-height: 150%;
  max-width: 387px;
  margin-top: 12px;
}
@media only screen and (max-width: 767px) {
  .faq-wrap .single p {
    font-size: 16px;
  }
}

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