/********** Template CSS **********/

@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

:root {
    --primary: #3242F5;
    --light: #EDF5FF;
    --dark: #202942;
}

body, h1, h2, h3, h4, h5, h6, a, span, p{
    font-family: "Poppins", sans-serif !important;
}

/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 20px;
    bottom: 5px;
    z-index: 99;
}

.my-6 {
    margin-top: 6rem;
    margin-bottom: 6rem;
}

.py-6 {
    padding-top: 6rem;
    padding-bottom: 6rem;
}


/*** Heading ***/
h1,
h2,
.fw-bold {
    font-weight: 600 !important;
}

h3,
h4,
.fw-semi-bold {
    font-weight: 600 !important;
}

h5,
h6,
.fw-medium {
    font-weight: 500 !important;
}


/*** Button ***/
.btn {
    transition: .5s;
}

.btn:hover {
    box-shadow: 0 0 10px rgba(0, 0, 0, .5);
}

.btn.btn-primary {
    color: var(--light);
}

.btn.btn-light {
    color: var(--primary);
}

.btn-square {
    width: 30px;
    height: 30px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
    border-radius: 50px;
}


/*** Navbar ***/
.navbar .dropdown-toggle::after {
    border: none;
    content: "\f067";
    font-family: "Font Awesome 5 Free";
    font-size: 10px;
    font-weight: bold;
    vertical-align: middle;
    margin-left: 8px;
}

.navbar .navbar-nav .nav-link {
    position: relative;
    margin-right: 20px;
    padding: 25px 0;
    font-weight: 500;
    color: var(--dark);
    outline: none;
    transition: .5s;
    color: #3242F5;
        font-size: 15px;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: var(--dark);
}

.sticky-top.navbar .navbar-nav .nav-link {
    padding: 20px 0;
    color: var(--dark);
}

.sticky-top.navbar .navbar-nav .nav-link:hover,
.sticky-top.navbar .navbar-nav .nav-link.active {
    color: var(--primary);
}

.navbar .navbar-brand h1 {
    color: #0eb47e;
    font-weight: 700 !important;
    font-size: 2.4rem;
}

.navbar .navbar-brand h1 span{
    color: #f69620;
}

.navbar .navbar-brand img {
    max-height: 60px;
    transition: .5s;
}

.sticky-top.navbar .navbar-brand img {
    max-height: 45px;
}

@media (max-width: 991.98px) {
    .sticky-top.navbar {
        position: relative;
        background: #FFFFFF;
    }

    .navbar .navbar-collapse {
        margin-top: 15px;
        border-top: 1px solid #DDDDDD;
    }

    .navbar .navbar-nav .nav-link,
    .sticky-top.navbar .navbar-nav .nav-link {
        padding: 10px 0;
        margin-left: 0;
        color: var(--dark);
    }

    .navbar .navbar-nav .nav-link:hover,
    .navbar .navbar-nav .nav-link.active {
        color: var(--primary);
    }

    .navbar .navbar-brand h1 {
        color: var(--primary);
    }

    .navbar-light .navbar-brand img {
        max-height: 45px;
    }
}

@media (min-width: 992px) {
    .navbar {
        /* position: absolute; */
        width: 100%;
        top: 0;
        left: 0;
        z-index: 999;
    }
    
    .sticky-top.navbar {
        position: fixed;
        background: #FFFFFF;
    }

    .sticky-top.navbar .navbar-brand h1 {
        color: #0eb47e;
    }

    .navbar .navbar-nav .nav-item .dropdown-menu {
        display: block;
        border: none;
        margin-top: 0;
        top: 150%;
        opacity: 0;
        visibility: hidden;
        transition: .5s;
    }

    .navbar .navbar-nav .nav-item:hover .dropdown-menu {
        top: 100%;
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }

    .sticky-top.navbar .btn {
        color: var(--light);
        background: var(--primary);
        border-color: var(--primary);
    }
}


/*** Hero Header ***/
.hero-header {
    margin-bottom: 0rem;
    padding: 9rem 0 0rem;
    background: url(../img/bg-bottom.png) center bottom no-repeat;
    background: #0D1367 !important;
    width: 95%;
    margin: 0 auto;
    border-radius: 40px;
    box-shadow: -1px 6px 4px #ccc;
}

@media (max-width: 991.98px) {
    .hero-header {
        padding: 6rem 0 9rem 0;
    }
}


/*** Feature ***/
.feature-item,
.advanced-feature-item {
    height: 100%;
    transition: .5s;
}

.feature-item:hover {
    margin-top: -15px;
}

.advanced-feature-item {
    box-shadow: 0 0 45px rgba(0, 0, 0, .08);
}

.advanced-feature-item * {
    transition: .5s;
}

.advanced-feature-item:hover {
    background: var(--primary);
}

.advanced-feature-item:hover * {
    color: #FFFFFF !important;
}


/*** Process ***/
.process {
    padding: 0;
    list-style: none;
}

.process li {
    position: relative;
    display: flex;
    padding-bottom: 25px;
}

.process li::after {
    position: absolute;
    content: "";
    width: 1px;
    height: 100%;
    top: 0;
    left: 20px;
    background: var(--primary);
}

.process li:last-child {
    padding-bottom: 0;
}

.process li:last-child:after {
    display: none;
}

.process li span {
    position: relative;
    width: 40px;
    height: 40px;
    margin-right: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #FFFFFF;
    background: var(--primary);
    border-radius: 40px;
    z-index: 1;
}

.process li p {
    margin: 0;
}


/*** Price ***/
.price-item {
    box-shadow: 0 0 45px rgba(0, 0, 0, .08);
    transition: .5s;
}

.price-item:hover {
    margin-top: -10px;
}


/*** Testimonial ***/
.testimonial-carousel .testimonial-item {
    padding: 0 30px 30px 30px;
}

.testimonial-carousel .owl-nav {
    display: flex;
    justify-content: center;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
    margin: 0 12px;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    background: var(--light);
    border-radius: 60px;
    font-size: 22px;
    transition: .5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
    color: #FFFFFF;
    background: var(--primary);
    box-shadow: 0 0 10px rgba(0, 0, 0, .5);
}


/*** Footer ***/
/* .footer {
    margin-top: 6rem;
    padding-top: 3rem;
} */

.footer .btn.btn-social {
    margin-right: 5px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light);
    border: 1px solid #858585;
    border-radius: 40px;
    transition: .3s;
}

.footer .btn.btn-social:hover {
    color: var(--primary);
    border-color: var(--light);
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 10px;
    padding: 0;
    text-align: left;
    color: #858585;
    font-weight: normal;
    transition: .3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    letter-spacing: 1px;
    box-shadow: none;
    color: var(--light);
}

.footer .copyright {
    padding: 25px 0;
    border-top: 1px solid rgba(256, 256, 256, .1);
}

.footer .copyright a {
    color: var(--light);
}

.footer .footer-menu a {
    margin-right: 15px;
    padding-right: 15px;
    border-right: 1px solid rgba(255, 255, 255, .1);
}

.footer .footer-menu a:last-child {
    margin-right: 0;
    padding-right: 0;
    border-right: none;
}

.footer .copyright a:hover,
.footer .footer-menu a:hover {
    color: var(--secondary);
}
.btn{
    border-radius: 40px;
}

h2{
    font-size: 41px;
}
.icon-bg-1{
    display: flex;
    justify-content: center;
    width: 80px;
    height: 80px;
    line-height: 80px;
    text-align: center;
    margin: 0 auto;
    background: #fff;
    margin-bottom: 30px;
    border-radius: 8px;
    vertical-align: middle;
    align-items: center;
}
.country-code img{
    width: 50px;
    height: 50px;
    border-radius: 50%;
}
.text-left{
    text-align: left;
}
.country-code .img-sec{
    width: 70px;
    height: 70px;
    line-height: 70px;
    background: #DEDEDE;
    border-radius: 50%;
}
.country-code h5{
    font-size: 17px;
}
.hero-header h1{
    font-size: 4rem;
}
.hero-img-sec {
    /* height: 400px; */
    width: 100%;
    border-radius: 8px 8px 0px 0px;
    /* left: 		  50%;
	position:   fixed;
	top: 			  50%;
	transform:  translatex(-50%) translatey(-50%); */
}

/* .hero-img-sec{
    width:25%;
    margin:auto;
    margin-top:40px;
    transform:rotateX(70deg) skew(30deg);
    border-radius:5px;
    transition:transform, box-shadow, 1s;
    box-shadow: 0 0 0 0 rgba(0,0,0,0.5), 2px 2px 18px 4px rgba(0,0,0,0.5), -2px -2px 10px 4px rgba(0,0,0,0.5);
    background:linear-gradient(to right bottom, #4da6ff, #333399);
}
.hero-img-sec:hover{
    transform:rotateX(0deg) skew(0deg);
    box-shadow:none;
} */

.marquee-wrapper {
    /* background: #2f394c; */
    text-align: center;
  }
  .marquee-wrapper .container {
    overflow: hidden;
  }
  .marquee-inner span {
    float: left;
    width: 50%;
  }
  .marquee-wrapper .marquee-block {
    --total-marquee-items: 5;
    height: 120px;
    width: calc(250px*(var(--total-marquee-items)));
    /* width: 100%; */
    overflow: hidden;
    box-sizing: border-box;
    position: relative;
    margin: 0;
    padding: 10px 0;
  }
  .marquee-inner {
    display: block;
    width: 200%;
    position: absolute;
  }
  .marquee-inner p {
    font-weight: 400;
    font-size: 15px;
  }
  .marquee-inner.to-left {
    animation: marqueeLeft 25s linear infinite;
  }
  .marquee-inner.to-right {
    animation: marqueeRight 25s linear infinite;
  }
  .marquee-item {
    width: 230px;
    height: auto;
    display: inline-block;
    margin: 0 10px;
    float: left;
    transition: all 0.2s ease-out;
  }
  @keyframes marqueeLeft {
    0% {
      left: 0;
    }
    100% {
      left: -100%;
    }
  }
  @keyframes marqueeRight {
    0% {
      left: -100%;
    }
    100% {
      left: 0;
    }
  }
  
  /* vertical carousel */

  .wrapper {
    background: linear-gradient(60deg, #420285, #08BDBD);
    height: 100%;
    width: 100%;
    display: flex;
    justify-content: center;
  }
  
  .carousel {
    position: relative;
    width: 100%;
    max-width: 500px;
    display: flex;
    justify-content: center;
    flex-direction: column;
  }
  
  .carousel__item {
    display: flex;
    align-items: center;
    position: absolute;
    width: 100%;
    padding: 0 12px;
    opacity: 0;
    filter: drop-shadow(0 2px 2px #555);
    will-change: transform, opacity;
    -webkit-animation: carousel-animate-vertical 27s linear infinite;
            animation: carousel-animate-vertical 27s linear infinite;
  }
  
  .carousel__item:nth-child(1) {
    -webkit-animation-delay: calc(3s * -1);
            animation-delay: calc(3s * -1);
  }
  
  .carousel__item:nth-child(2) {
    -webkit-animation-delay: calc(3s * 0);
            animation-delay: calc(3s * 0);
  }
  
  .carousel__item:nth-child(3) {
    -webkit-animation-delay: calc(3s * 1);
            animation-delay: calc(3s * 1);
  }
  
  .carousel__item:nth-child(4) {
    -webkit-animation-delay: calc(3s * 2);
            animation-delay: calc(3s * 2);
  }
  
  .carousel__item:nth-child(5) {
    -webkit-animation-delay: calc(3s * 3);
            animation-delay: calc(3s * 3);
  }
  
  .carousel__item:nth-child(6) {
    -webkit-animation-delay: calc(3s * 4);
            animation-delay: calc(3s * 4);
  }
  
  .carousel__item:nth-child(7) {
    -webkit-animation-delay: calc(3s * 5);
            animation-delay: calc(3s * 5);
  }
  
  .carousel__item:nth-child(8) {
    -webkit-animation-delay: calc(3s * 6);
            animation-delay: calc(3s * 6);
  }
  
  .carousel__item:last-child {
    -webkit-animation-delay: calc(-3s * 2);
            animation-delay: calc(-3s * 2);
  }
  
  /* .carousel__item:nth-child(1) {
    -webkit-animation-delay: calc(-3s);
            animation-delay: calc(-3s);
  }
  
  .carousel__item:nth-child(2) {
    -webkit-animation-delay: calc(0);
            animation-delay: calc(0);
  }
  
  .carousel__item:nth-child(3) {
    -webkit-animation-delay: calc(3s);
            animation-delay: calc(3s);
  }
  
  .carousel__item:nth-child(4) {
    -webkit-animation-delay: calc(6s);
            animation-delay: calc(6s);
  }
  
  .carousel__item:nth-child(5) {
    -webkit-animation-delay: calc(9s);
            animation-delay: calc(9s);
  }
  
  .carousel__item:nth-child(6) {
    -webkit-animation-delay: calc(12s);
            animation-delay: calc(12s);
  }
  
  .carousel__item:nth-child(7) {
    -webkit-animation-delay: calc(15s);
            animation-delay: calc(15s);
  }
  
  .carousel__item:nth-child(8) {
    -webkit-animation-delay: calc(18s);
            animation-delay: calc(18s);
  }
  
  .carousel__item:last-child {
    -webkit-animation-delay: calc(-6s);
            animation-delay: calc(-6s);
  } */
  

  
  .carousel__item-head {
    border-radius: 50%;
    background-color: #d7f7fc;
    width: 90px;
    height: 90px;
    padding: 14px;
    position: relative;
    margin-right: -45px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 50px;
  }
  
  .carousel__item-body {
    width: 100%;
    background-color: #fff;
    border-radius: 8px;
    padding: 0px;
  }
  
  .title {
    text-transform: uppercase;
    font-size: 20px;
    margin-top: 10px;
  }
  
  @-webkit-keyframes carousel-animate-vertical {
    0% {
      transform: translateY(100%) scale(0.5);
      opacity: 0;
      visibility: hidden;
    }
    3%, 11.1111111111% {
      transform: translateY(100%) scale(0.7);
      opacity: 0.3;
      visibility: visible;
    }
    14.1111111111%, 22.2222222222% {
      transform: translateY(0) scale(1);
      opacity: 1;
      visibility: visible;
    }
    25.2222222222%, 33.3333333333% {
      transform: translateY(-100%) scale(0.7);
      opacity: 0.3;
      visibility: visible;
      z-index: 0;
    }
    36.3333333333% {
      transform: translateY(-100%) scale(0.5);
      opacity: 0;
      visibility: hidden;
    }
    100% {
      transform: translateY(-100%) scale(0.5);
      opacity: 0;
      visibility: hidden;
    }
  }
  
  /* @keyframes carousel-animate-vertical {
    0% {
      transform: translateY(100%) scale(0.5);
      opacity: 0;
      visibility: hidden;
    }
    3%, 11.1111111111% {
      transform: translateY(100%) scale(0.7);
      opacity: 0.4;
      visibility: visible;
    }
    14.1111111111%, 22.2222222222% {
      transform: translateY(0) scale(1);
      opacity: 1;
      visibility: visible;
    }
    25.2222222222%, 33.3333333333% {
      transform: translateY(-100%) scale(0.7);
      opacity: 0.4;
      visibility: visible;
    }
    36.3333333333% {
      transform: translateY(-100%) scale(0.5);
      opacity: 0;
      visibility: visible;
    }
    100% {
      transform: translateY(-100%) scale(0.5);
      opacity: 0;
      visibility: hidden;
    }
  } */

  .advanced-feature-item .font-icon-s{
    background: #5a67f7;
    padding: 1rem;
    border-radius: 8px;
  }

  h2{
    background-clip: text;
    color: transparent;
    background-image: linear-gradient(to right, #4ec2f0 5%, #2248f3 20%, #000 56%);
  }
  

  /* GRID  */
.grid {
    display: grid;
    place-items: center;
    position: relative;
    height: auto;
    width: 100%;
    background-color: var(--grid-bg-clr);
    border-radius: 10px;
    perspective: 1000px;
  }
  
  .grid::after {
    pointer-events: none;
    content: "";
    background-color: var(--line-clr);
    position: absolute;
    width: 2px;
    top: 0;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
  }
  .grid::before {
    pointer-events: none;
    content: "";
    background-color: var(--line-clr);
    height: 2px;
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    z-index: 2;
  }
  
  /* CURSOR */
  .cursor {
    position: absolute;
    height: 80px;
    aspect-ratio: 1;
    background-color: var(--cursor-clr);
    opacity: 0;
    border-radius: 100px;
    pointer-events: none;
    align-items: center;
    justify-content: center;
    display: flex;
    padding: 0.5rem;
    transform: translate(-50%, -50%);
    scale: 0.7;
    transform-origin: center;
    transition: transform 50ms ease-in-out, opacity 500ms ease-in-out,
      scale 200ms ease-in-out;
  }
  
  .cursor.active {
    scale: 1;
    opacity: 0.6;
    transform: translate(-50%, -50%);
  }
  
  /* CARD */
  .card {
    padding: 0rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background-color: var(--card-bg-clr);
    backdrop-filter: blur(10px);
    border-radius: 10px;
    transition: transform 300ms ease, background-color 300ms ease;
    z-index: 10;
    position: relative;
    width: 100%;
  }
  .card .hstack {
    display: flex;
    gap: 2rem;
    justify-content: space-between;
  }
  
  /* CARD ELEMENTS */
  .elements {
    min-width: 10rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
    /* margin-bottom: 2rem; */
  }
  .el .label {
    color: var(--label-clr);
    font-size: 0.9rem;
  }
  .el1 {
    min-width: 5rem;
    padding: 0rem;
    border-radius: 5px;
    background-color: var(--glass-bg);
    user-select: none;
    position: relative;
    font-size: 1rem;
    color: var(--value-clr);
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  .el {
   display: none;
  }

 .footer-sec{
  width: 95%;
    margin: 0 auto;
    border-radius: 40px;
 }
 .footer-sec .bg-light{
  border-radius: 40px 40px 0px 0px;
 }
 .feature-sec .bg-light{
  border-radius: 40px;
 }
 .footer-sec .footer{
  border-radius: 0px 0px 40px 40px;
 }
 .feature-sec{
  width: 95%;
  margin: 0 auto;
  border-radius: 40px;
 }
 .advanced-feature-item{
  background-color: #3242f5bf !important;
 }

 /* new */

 .feature-one{
  border-radius: 40px;
 }

 h2::after{
  background-image: url(../img/title-shape-1-3.png);
    background-size: 173px 18px;
    position: absolute;
    left: -83px;
    bottom: -4px;
    width: 173px;
    height: 18px;
    animation: smartMove3 5s infinite;
 }
 .safe-transaction .feature-item .icon-bg-1{
  margin: 0px;
  margin-bottom: 20px ;
  justify-content: center;
  text-align: left;
  width: 60px;
  height: 60px;
 }
 .hero-head-div{
  background-repeat: no-repeat !important;
    background-size: cover !important;
    border-radius: 40px;
 }
 .payment-right{
  background: #cccccc26;
  border-radius: 20px;
  padding: 30px;
 }
 .payment-black-box{
  width: 80px;
  padding: 10px;
    background: #333;
    text-align: center;
    border-radius: 8px;
    color:#fff;
    position: absolute;
    left: 80px;
 }
 .payment-white-box{
  width: 80px;
  padding: 10px;
    background: #fff;
    text-align: center;
    border-radius: 8px;
    color:#333;
    position: absolute;
    right: -40px;
    bottom: 40px;
    z-index: 9;
 }
 .payment-blue-box{
  width: 80px;
  padding: 10px;
    background: #3242F5;
    text-align: center;
    border-radius: 8px;
    color:#fff;
    position: absolute;
    left: 50px;
    bottom:0;
 }
 .bank-account-bg{
  /* background: #ccc; */
  padding: 20px;
  border-radius: 20px;
  position: relative;
  padding-bottom: 0px;
 }
 
 .bank-account-float{
  width: 250px;
    background: #fff;
    padding: 10px;
    border-radius: 4px;
    position:absolute;
    /* right: 0;
    bottom: 50px; */
    right: 0;
    bottom: 0;
    top: 70%;
    height: 100px;
 }
.svg-div-sec{
  position: absolute;
  bottom: -150px;
  left: 99px;
}
 .line-chart {
  position: absolute;
  left: 5px;
  top: 5px;
}

canvas {
  width: 100%;
  height: 100%;
}
@media only screen and (max-width: 600px) {

  .bank-account-bg .svg-div-sec{
      position: relative;
  }
  .bank-account-bg .bank-account-float{
      position: relative;
  }
  .payment-black-box, .payment-white-box, .payment-blue-box{
    position: relative;
    left:0;
    right: 0;
    bottom: 0;
  }
  }

  #layoutSidenav #layoutSidenav_content{
    min-height: auto !important;
  }
  footer{
    background-color: #ccc !important;
  }

.floating-message {
    position: fixed;
    bottom: 100px;
    right: 45px;
    background-color: #28a745;
    color: white;
    padding: 10px 15px;
    border-radius: 50%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    font-size: 24px;
    z-index: 1000;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

    .floating-message:hover {
      background-color: #218838;
    }
    
    .step4-checked {
  border: 2px solid #625ff5;
    background: #f2f1ff;
}
.step4-checked .checkbox{
    background-color: #5440e6;
    border-color: #5440e6;
    color: white;
}
.step4-checked .checkbox:after{
    content: "\f00c";
    font-family: FontAwesome;
    font-size: 14px;
    display: block
}
.step4-checked .icon{
        background: #f2f1ff;
    border: 1px solid #ccc;
    color: #625ff5;
}
