:root {
    --theme: #2E9079;
    --light-red: #ffffff;
    --red: #000000;
    --bg-red: #2E9079;
    --dark-red: #000000;
    --body-text-red: #F6F6F6;
    --text-white: #F6F6F6;
    --bg-white: #F6F6F6;
    --slider-dots-color: #e3dada;
    --light-bg: #d8fce5;
    --black: :
}


html{scroll-behavior:smooth}

body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-size: 16px;
    line-height: 1.7;
    font-family: 'Poppins', sans-serif;
    color: var(--body-text-red);
    background-color: var(--light-red);
}

.page_wrapper {
    width: 100%;
    overflow: hidden;
}

a {
    text-decoration: none;
    /* color: var(--body-text-red); */
    color: #ffc55a;
}

a:hover {
    text-decoration: none;
    /* color: var(--body-text-red); */
    color: #fab535;

}

.fw-600 {
    font-weight: 600;
}
.fw-500 {
    font-weight: 500;
}

.gap-2 {
    gap: .5rem !important;
}

.none-ul,
.none-li {
    padding: 0;
    list-style-type: none;
    margin: 0;
}

button:focus,
.btn.focus,
.btn:focus {
    outline: none;
    box-shadow: none;
}

@media screen and (min-width:1200px) {
    .container {
        max-width: 1300px;
    }
}

.section_title {
    text-align: center;
}

/* section heading h2 */
.section_title h2 {
    font-size: 40px;
    font-weight: 600;
    color: black;
}
.section_title h2 span {
    color: #2E9079;
}

.row_am {
    /* padding: 50px 0; */
    padding: 75px 0 25px 0;
}

/* purple button */
.puprple_btn {
    background-color: var(--red);
    color: var(--text-white);
    border-radius: 50px;
    padding: 10px 40px;
    position: relative;
    overflow: hidden;
    z-index: 1;
    font-weight: 500;
}

.puprple_btn::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 0%;
    height: 100%;
    background-color: var(--bg-white);
    border-radius: 50px;
    transition: .6s all;
    z-index: -1;
}

.puprple_btn:hover::before {
    width: 100%;
}

.puprple_btn:hover {
    color: var(--red);
}

/* white button */
.white_btn {
    padding: 10px 45px;
    border: 1px solid var(--red);
    color: var(--red);
    border-radius: 50px;
    background-color: var(--bg-white);
    font-weight: 700;
    position: relative;
    z-index: 1;
    overflow: hidden;
    font-weight: 500;
}

.white_btn::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 0%;
    height: 100%;
    background-color: var(--bg-red);
    border-radius: 50px;
    transition: .6s all;
    z-index: -1;
}

.white_btn:hover::before {
    width: 110%;
}

.white_btn:hover {
    color: var(--text-white);
}

.highlited_block .white_btn:hover {
    border-color: var(--bg-white);
}

/* -----------Header-Css-Start------------------- */
/* header wraper */
header {
    position: relative;
    width: 100%;
    z-index: 99999;
    transition: .4s all;
}

.navbar {
    padding: 10px 0px 10px 0px;
}

.navbar-expand-lg .navbar-nav {
    align-items: center;
}

.navbar-expand-lg .navbar-nav .nav-link {
    padding: 5px 20px;
    font-weight: 500;
}

.navbar-expand-lg .navbar-nav .nav-link:hover {
    color: var(--red);
}

.navbar-expand-lg .navbar-nav .nav-link.dark_btn {
    color: var(--text-white) !important;
    background-color: var(--red);
    font-size: 16px;
    padding: 9px 40px;
    border-radius: 25px;
    margin-left: 20px;
    position: relative;
}


.navbar-expand-lg .navbar-nav .nav-link.dark_btn::before, 
.navbar-expand-lg .navbar-nav .nav-link.dark_btn::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 42px;
    z-index: -1;
}

.navbar-expand-lg .navbar-nav .nav-link.dark_btn::before {
  animation: pulse-blue-medium-sm 3.5s infinite
}

.navbar-expand-lg .navbar-nav .nav-link.dark_btn::after  {
  animation: pulse-blue-small-sm 3.5s infinite
}

.navbar-brand img {
    /* width: 150px; */
    width: 80px;
}

/* navigation bar dropdown */
.navbar-expand-lg .navbar-nav .has_dropdown {
    display: flex;
    align-items: center;
    position: relative;
    border-radius: 10px 10px 0 0;
    transition: .4s all;
}

.navbar-expand-lg .navbar-nav .has_dropdown:hover {
    background-color: var(--bg-white);
    box-shadow: 0px 4px 10px #c5c5c580;
}

.navbar-expand-lg .navbar-nav .has_dropdown .drp_btn {
    position: relative;
    right: 15px;
}

.navbar-expand-lg .navbar-nav .has_dropdown .sub_menu {
    position: absolute;
    top: 100%;
    background-color: var(--bg-white);
    border-radius: 0 10px 10px 10px;
    min-width: 210px;
    max-width: 230px;
    margin-top: -10px;
    transition: .4s all;
    opacity: 0;
    pointer-events: none;
    box-shadow: 0px 4px 10px #c5c5c580;
}

.navbar-expand-lg .navbar-nav .has_dropdown .sub_menu ul {
    margin-left: 0;
    padding: 10px 20px;
}

.navbar-expand-lg .navbar-nav .has_dropdown .sub_menu ul li a {
    font-size: 15px;
    position: relative;
    transition: .4s all;
    line-height: 35px;
    font-weight: 500;
}

.navbar-expand-lg .navbar-nav .has_dropdown .sub_menu ul li a::before {
    content: "";
    width: 10px;
    height: 10px;
    display: inline-block;
    border: 2px solid var(--red);
    border-radius: 10px;
    margin-right: 5px;
    position: absolute;
    left: -10px;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0;
    transition: .4s all;
}

.navbar-expand-lg .navbar-nav .has_dropdown .sub_menu ul li a:hover {
    padding-left: 15px;
    color: var(--red);
}

.navbar-expand-lg .navbar-nav .has_dropdown .sub_menu ul li a:hover::before {
    opacity: 1;
    left: 0;
}

.navbar-expand-lg .navbar-nav .has_dropdown:hover>a,
.navbar-expand-lg .navbar-nav .has_dropdown:hover>.drp_btn {
    color: var(--red);
}

.navbar-expand-lg .navbar-nav .has_dropdown:hover .sub_menu {
    opacity: 1;
    pointer-events: all;
    margin-top: -1px;
}

/* navigation toggle menu */
.toggle-wrap {
    padding: 10px;
    position: relative;
    cursor: pointer;
    
    /*disable selection*/
    -webkit-touch-callout: none;
      -webkit-user-select: none;
      -khtml-user-select: none;
      -moz-user-select: none;
      -ms-user-select: none;
      user-select: none;
  }

  .toggle-bar,
  .toggle-bar::before,
  .toggle-bar::after,
  .toggle-wrap.active .toggle-bar,
  .toggle-wrap.active .toggle-bar::before,
  .toggle-wrap.active .toggle-bar::after {
      -webkit-transition: all .2s ease-in-out;
      -moz-transition: all .2s ease-in-out;
      -o-transition: all .2s ease-in-out;
      transition: all .2s ease-in-out;
  }

  .toggle-bar {
      width: 25px;
      margin: 10px 0;
      position: relative;
      border-top: 4px solid black;
      display: block;
  }

  .toggle-bar::before,
  .toggle-bar::after {
      content: "";
      display: block;
      background: black;
      height: 4px;
      width: 30px;
      position: absolute;
      top: -12px;
      right: 0px;
      -ms-transform: rotate(0deg);
      -webkit-transform: rotate(0deg);
      transform: rotate(0deg);
      -ms-transform-origin: 13%;
      -webkit-transform-origin: 13%;
      transform-origin: 13%;
  }

  .white_header .toggle-bar , 
  .white_header .toggle-bar::before,
  .white_header .toggle-bar::after {
    border-top: 4px solid var(--bg-white);
  }

  .toggle-bar::after {
    top: 4px;
  }

  .toggle-wrap.active .toggle-bar {
    border-top: 6px solid transparent;
  }

  .toggle-wrap.active .toggle-bar::before {
      -ms-transform: rotate(45deg);
      -webkit-transform: rotate(45deg);
      transform: rotate(45deg);
  }

  .toggle-wrap.active .toggle-bar::after {
      -ms-transform: rotate(-45deg);
      -webkit-transform: rotate(-45deg);
      transform: rotate(-45deg);
  }


/* ---------Hero-Slider-Css-Start------------------ */
/* hero slider wraper */
.banner_section {
    position: relative;
    margin: 45px 60px 0px 60px;
    padding: 60px 0;
}
.banner_section::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    background-color: #2E9079;
    background-image: url(../images-new/main-bg-cover.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    height: 100%;
    z-index: 0;
    border-radius: 30px;
    /* box-shadow: 0px 0px 6px 0px #2f2f30; */
}


.banner_section .container {
    position: relative;
}
.banner_section .row {
    align-items: center;
}

/* hero slider heading h1 */
.banner_section .banner_text h1 {
    font-size: 65px;
    color: #ffc55a;
    letter-spacing: -1.5px;
    font-weight: 700;
    margin-bottom: 20px;
}

.banner_section .banner_text p {
    color: #ffffffde;
    font-size: 19px;
    /* font-weight: 700; */
    text-transform: capitalize;
    font-weight: 300;
}

/* hero slider button */
.banner_section .app_btn {
    display: flex;
    align-items: center;
}

/* hero slider list */
.banner_section .app_btn li a {
    display: block;
    padding: 12px 30px;
    background-color: var(--bg-white);
    border: 2px solid var(--red);
    position: relative;
    border-radius: 12px;
    transition: .4s all;
}

.banner_section .app_btn li:last-child {
    margin-left: 25px;
}

.banner_section .app_btn li a img {
    transition: .4s all;
}

.banner_section .app_btn li a .white_img {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
}

.banner_section .app_btn li a:hover {
    background-color: var(--red);
}

.banner_section .app_btn li a:hover .blue_img {
    opacity: 0;
}

.banner_section .app_btn li a:hover .white_img {
    opacity: 1;
}


/* hero slider images */
.banner_section .banner_slider {
    display: flex;
    position: relative;
    justify-content: center;
}

.banner_section .banner_slider .left_icon {
    position: absolute;
    left: 15px;
    bottom: 70px;
    z-index: 9999;
}

.banner_section .banner_slider .right_icon {
    position: absolute;
    right: 15px;
    top: 70px;
}

/* hero slider mobile frame */
.banner_section .banner_slider .slider_frame {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 999;
    width: 315px;
}

/* .banner_section .banner_slider #frmae_slider::before {
    content: "";
    position: absolute;
    left: 5px;
    top: 5px;
    background-color: #fff;
    width: calc(100% - 10px);
    height: 92%;
} */


.banner_section .banner_slider #frmae_slider {
    width: 305px;
    margin: 0 auto;
}

/* hero slider control dots */
.banner_section .owl-dots {
    margin-top: 40px;
}

.owl-carousel .owl-item img {
    max-width: 100%;
    width: auto;
}
.banner_slider .slider_img img {
    max-width: 100%;
    width: 400px;
}


/* ----------Feature-Detail-Section-start------ */

/* features section wraper */
.features_section .feature_detail {
    /* background-color: #2E9079; */
    background-color: #2e90791f;
    border-radius: 30px;
    position: relative;
    display: flex;
    justify-content: space-between;
    margin-top: 60px;
    padding-top: 60px;
    padding-bottom: 20px;
    /* box-shadow: 0px 4px 30px #EDE9FE; */
}

/* features section image */
.features_section .feature_detail .feature_img {
    /* position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: -75px; */
}

.features_section .feature_detail .feature_img img {
    max-width: 100%;
    width: 320px;
}

/* features section box */

.features_section .feature_detail .feature_box {
    max-width: 410px;
}

.features_section .feature_detail .feature_box .data_block {
    margin-bottom: 20px;
}

.features_section .feature_detail .feature_box .data_block h4 {
    font-size: 20px;
    color: var(--dark-red);
    font-weight: 600;
}

.features_section .feature_detail .left_data {
    text-align: right;
    padding-left: 130px;
}

.features_section .feature_detail .right_data {
    padding-right: 130px;
}

.features_section .feature_detail .left_data .data_block .icon {
    margin-right: -15px;
}

.features_section .feature_detail .right_data .data_block .icon {
    margin-left: -15px;
}

.features_section .container {
    max-width: 1370px;
}


/* how it works wraper */
.how_it_works .container {
    max-width: 1370px;
}

.how_it_works .how_it_inner {
    background-color: #2E9079;
    padding: 70px 0 50px 0;
    border-radius: 30px;
    /* box-shadow: 0px 4px 30px #EDE9FE; */
}

/* how it works list */
.how_it_works .step_block ul {
    max-width: 1080px;
    margin: 0 auto;
    padding: 10px;
}

.how_it_works .step_block ul li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    margin-bottom: 50px;
}

.how_it_works .step_block ul li::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 50px;
    transform: translateX(-50%);
    width: 4px;
    height: calc(100% + 100px);
    background-color: var(--light-bg);
}

.how_it_works .step_block ul li:first-child::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    width: 14px;
    height: 14px;
    background-color: var(--light-bg);
    border-radius: 15px;
}

.how_it_works .step_block ul li:first-child::before {
    top: 0;
}

.how_it_works .step_block ul li:last-child::before {
    height: 50%;
    top: 0;
}

.how_it_works .step_block ul li .step_text,
.how_it_works .step_block ul li .step_img {
    width: 360px;
    text-align: center;
}

/* how it works image */
.how_it_works .step_block ul li .step_img img {
    max-width: 100%;
    width: 160px;
}

/* how it works heading h4 */
.how_it_works .step_block ul li .step_text h4 {
    font-size: 18px;
    font-weight: 500;
}

.how_it_works .step_block ul li .step_text .app_icon {
    margin-bottom: 10px;
}

.how_it_works .step_block ul li .step_text .app_icon a {
    display: inline-block;
    width: 40px;
    height: 40px;
    border-radius: 100%;
    background-color: var(--light-bg);
    color: var(--text-white);
    font-size: 20px;
    text-align: center;
    line-height: 40px;
    transition: .4s all;
}

.how_it_works .step_block ul li .step_text .app_icon a:hover {
    background-color: var(--red);
}

.how_it_works .step_block ul li .step_text span {
    font-weight: 600;
}

.how_it_works .step_block ul li .step_text span a {
    color: var(--red);
    text-decoration: underline;
}

.how_it_works .step_block ul li:nth-child(2) {
    flex-direction: row-reverse;
}

.how_it_works .step_block ul li:nth-child(2) .step_text,
.how_it_works .step_block ul li:nth-child(2) .step_img {
    text-align: left;
}

/* how it works numbers */
.how_it_works .step_block ul li .step_number {
    /* background-image: url(../images/icon_bg.png); */
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    width: 110px;
    height: 110px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

/* how it works numbers heading h3 */
.how_it_works .step_block ul li .step_number h3 {
    font-size: 30px;
    font-weight: 600;
    color: #000000;
}

/* how it works video  */
.how_it_works .yt_video {
    max-width: 1170px;
    margin: 0 auto;
    margin-top: -200px;
    position: relative;
    overflow: hidden;
}

/* how it works video animation line  */
.how_it_works .yt_video .anim_line {
    z-index: 999;
}

.how_it_works .yt_video .thumbnil {
    position: relative;
}

.how_it_works .yt_video .thumbnil img {
    max-width: 100%;
}

.how_it_works .yt_video .thumbnil a {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: var(--text-white);
    font-weight: 600;
    z-index: 999;
    cursor: pointer;
}

.how_it_works .yt_video .thumbnil a span {
    display: block;
    font-weight: 700;
    font-size: 30px;
}

.how_it_works .yt_video .thumbnil a .play_btn {
    background-color: rgba(255, 255, 255, 0.1);
    width: 96px;
    height: 96px;
    border-radius: 100px;
    text-align: center;
    margin: 0 auto;
    line-height: 96px;
    position: relative;
    display: block;
    margin-bottom: 40px;
}

.how_it_works .yt_video .thumbnil a .play_btn img {
    width: 50px;
    position: relative;
    z-index: 999;
}

/* download app wraper */
.free_app_section {
    padding-top: 100px;
    position: relative;
    padding-bottom: 130px;
}

.free_app_section .container, .app-static-content .container {
    max-width: 1200px;
}

.free_app_section .container .free_app_inner {
    /* background-color: #2E9079; */
    background-color: #2e90791f;
    border-radius: 30px;
    padding: 40px 50px;
    /* position: relative; */
    /* z-index: 999999; */
}

/* download app dark background */
.free_app_section .container .free_app_inner .dark_bg {
    overflow: hidden;
}

.free_app_section .container .free_app_inner .dark_bg span {
    z-index: 9999;
}

.free_app_section .container .free_app_inner .row {
    align-items: center;
}

.free_app_section .container .free_app_inner .free_text .section_title {
    text-align: left;
    /* max-width: 700px; */
}

/* download app heading h2 */
.free_app_section .container .free_app_inner .free_text .section_title h2 {
    margin-bottom: 20px;
}

.free_app_section .container .free_app_inner .free_text .section_title h2,
.free_app_section .container .free_app_inner .free_text .section_title p {
    /* color: var(--text-white); */
}

.free_app_section .container .free_app_inner .free_text .app_btn {
    display: flex;
    align-items: center;
}

.free_app_section .container .free_app_inner .free_text .app_btn li .qr-card {
    /* box-shadow: 1px 1px 13px #434343 !important; */
    padding: 20px;
    border-radius: 16px;
    text-align: center;
    /* background-color: #000000; */
}

.free_app_section .container .free_app_inner .free_text .app_btn li a,  .white-line-download {
    display: block;
    padding: 12px 20px;
    border: 2px solid #ffffff;
    position: relative;
    border-radius: 15px;
    transition: .4s all;
    min-width: 186px;
}

.free_app_section .container .free_app_inner .free_text .app_btn li a:hover, .white-line-download:hover {
    -webkit-box-shadow: 1px 4px 8px -2px rgba(0,0,0,0.5);
    -moz-box-shadow: 1px 4px 8px -2px rgba(0,0,0,0.5);
    box-shadow: 1px 4px 8px -2px rgba(0,0,0,0.5);
}

.free_app_section .container .free_app_inner .free_text .app_btn li:last-child {
    margin-left: 25px;
}

.free_app_section .container .free_app_inner .free_img {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 300px;
    margin: -100px auto;
}




/* footer wraper */
footer {
    position: relative;
}
.footer-icon{
    border: 1px solid white;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50rem;
}
.footer-icon svg path{
    transition: 0.4s;
}
.footer-icon:hover svg path{
    fill: #ffc55a;
}

@media(max-width: 1300px){
    .interface_section .screen_slider{
        min-height: 620px;
    }
}
@media(max-width: 1199px){
    footer .app_btn{
        flex-wrap: wrap;
    }
    footer .app_btn li:first-child {
        margin-bottom: 20px;
    }
    .interface_section .screen_slider{
        min-height: 560px;
    }
}
@media(max-width: 1024px){
    .interface_section .screen_slider{
        min-height: 520px;
    }
}
@media(max-width: 991px){
    footer .app_btn{
        flex-wrap: nowrap;
    }
    footer .app_btn li:first-child {
        margin-right: 15px;
        margin-bottom: 0;
    }
    .about_app_section .about_img{
        justify-content: center !important;
    }
    .about_app_section .about_img::before{
        left: 50% !important;
    }
    .modern-ui-spaces{
        justify-content: center !important;
    }
    .modern_ui_section .ui_images .right_img img:nth-child(1){
        margin-left: 0 !important;
    }
}
@media(max-width: 767px){
    footer .app_btn{
        flex-wrap: nowrap;
        justify-content: center;
    }
}
@media(max-width: 575px){
    footer .app_btn{
        flex-wrap: wrap;
    }
    footer .app_btn li:first-child {
        margin-bottom: 15px;
        margin-right: 0;
    }
}

footer .bottom_footer {
    background-color: #215146;
    color: white;
}


/* footer last */
footer .bottom_footer {
    padding: 20px 0;
}

footer .bottom_footer p {
    margin-bottom: 0;
    font-size: 15px;
}

footer .bottom_footer .developer_text {
    text-align: right;
}

footer .bottom_footer .developer_text a {
    text-decoration: underline;
}

/* footer go top button */
.go_top {
    position: fixed;
    right: 30px;
    bottom: 75px;
    cursor: pointer;
    transition: .4s all;
    opacity: 0;
}

.go_top:hover {
    bottom: 80px;
}


@keyframes star_down_one {
    0% {
        opacity: 0;
        top: -250px;
    }

    10% {
        opacity: 1;
    }

    90% {
        opacity: 1;
    }

    100% {
        top: 100%;
        opacity: 0;
    }
}




/* --------Object-Moving-Animation-Css-Start----- */
.moving_animation {
    animation: moving_object 6s infinite linear;
}

.moving_position_animatin {
    position: relative;
    animation: moving_position_animatin 6s infinite linear;
    z-index: -1;
}

.about_app_section .about_img .screen_img img {
    animation-delay: 3s;
}

.modern_ui_section .ui_images .right_img img:nth-child(3) {
    animation-delay: 3s;
}

.modern_ui_section .ui_images .right_img img:nth-child(2) {
    animation-delay: 3s;
}

.modern_ui_section .ui_images .right_img img:nth-child(1) {
    animation-delay: 3s;
}

@keyframes moving_object {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-30px);
    }

    100% {
        transform: translateY(0);
    }
}

@keyframes moving_position_animatin {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-30px);
    }

    100% {
        transform: translateY(0);
    }
}


/* ------------Waves-Animation---------------- */
.waves-block {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50% , -50%);
    width: 150px;
    height: 150px;
}

.waves {
    width: 150px;
    height: 150px;
    background: rgba(255, 255, 255, 0.3);
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    border-radius: 100%;
    z-index: -1;
    -webkit-animation: waves 3s ease-in-out infinite;
    animation: waves 3s ease-in-out infinite;
}

.wave-1 {
    -webkit-animation-delay: 0s;
    animation-delay: 0s;
}

.wave-2 {
    -webkit-animation-delay: 1s;
    animation-delay: 1s;
    position: absolute;
    top: 0;
}

.wave-3 {
    -webkit-animation-delay: 2s;
    animation-delay: 2s;
    position: absolute;
    top: 0;
}

@keyframes waves {
    0% {
        -webkit-transform: scale(0.2, 0.2);
        transform: scale(0.2, 0.2);
        opacity: 0;
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    }

    50% {
        opacity: 0.9;
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=90)";
    }

    100% {
        -webkit-transform: scale(0.9, 0.9);
        transform: scale(0.9, 0.9);
        opacity: 0;
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    }
}



/*------Header Btn Animation------*/
@keyframes pulse-blue-small-sm {
  0% {
    /* box-shadow: 0 0 0 0 rgba(107, 73, 242, 0.7); */
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.7);
  }

  100%,
  30% {
    box-shadow: 0 0 0 12px transparent
  }
}

@keyframes pulse-blue-medium-sm {
  0% {
    /* box-shadow: 0 0 0 0 rgba(107, 73, 242, 0.4); */
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.4);
  }

  100%,
  30% {
    box-shadow: 0 0 0 20px transparent
  }
}


/*------WhiteHeader Btn Animation------*/
@keyframes pulse-white-small-sm {
  0% {
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.7);
  }

  100%,
  30% {
    box-shadow: 0 0 0 12px transparent
  }
}

@keyframes pulse-white-medium-sm {
  0% {
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.4);
  }

  100%,
  30% {
    box-shadow: 0 0 0 20px transparent
  }
}

.gr-icon-shape{
    height: 100px;
    width: 100px;
    padding: 14px;
}
.gr-icon-shape-div-1 {
    /* background: linear-gradient(19deg, #ddfcd8 15%, rgba(255, 255, 255, 1) 100%);
    border-radius: 50rem;
    width: 100%;
    height: 100%;
    padding: 10px;
    box-shadow: #e1ffdc6b 0px 7px 17px, #effced 0px 0px 9px; */
    /* background: linear-gradient(19deg, #ddfcd8 15%, rgba(255, 255, 255, 1) 100%); */
    background: linear-gradient(19deg, #2E9079 45%, rgba(255, 255, 255, 1) 100%);
    border-radius: 50rem;
    width: 100%;
    height: 100%;
    padding: 10px;
    /* box-shadow: #e1ffdc6b 0px 7px 17px, #effced 0px 0px 9px; */
}
.gr-icon-shape-div-2 {
    /* background: linear-gradient(19deg, #ddfcd8 15%, rgba(255, 255, 255, 1) 100%);
    border-radius: 50rem;
    width: 100%;
    height: 100%;
    box-shadow: #d6d6d6 0px 3px 14px, #bcddb6 0px 3px 1px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px; */
    background: linear-gradient(19deg, #ddfcd8 15%, rgba(255, 255, 255, 1) 100%);
    /* background: #2E9079; */
    border-radius: 50rem;
    width: 100%;
    height: 100%;
    /* box-shadow: #d6d6d6 0px 3px 14px, #bcddb6 0px 3px 1px; */
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 12px;
}
/* .gr-icon-shape-div-2 i{
    font-size: 30px;
} */
.text-theme{
    color: var(--theme);
}

.fs-12px{
    font-size: 12px;
}
.fs-13px{
    font-size: 13px;
}
.fs-14px{
    font-size: 14px;
}
.fs-15px{
    font-size: 15px;
}
.fs-16px{
    font-size: 16px;
}
.fs-17px{
    font-size: 17px;
}
.fs-18px{
    font-size: 18px;
}
.fs-19px{
    font-size: 19px;
}
.fs-20px{
    font-size: 20px;
}
.fs-21px{
    font-size: 21px;
}
.fs-22px{
    font-size: 22px;
}
.fs-23px{
    font-size: 23px;
}
.fs-24px{
    font-size: 24px;
}


.icon-bg-light{
    width: 55px;
    height: 55px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgb(247 72 72 / 17%);
    border-radius: 50rem;
    font-size: 28px;
}
.go-top-div{
    width: 50px;
    height: 50px;
    background: linear-gradient(19deg, #ddfcd8 15%, rgba(255,255,255,1) 100%);
    border: 1px solid var(--theme);
    border-radius: 50rem;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 26px;
}



.our-app-function-card {
    /* background-color: #2E9079;
    border-radius: 20px;
    padding: 30px;
    height: 100%; */
    border-radius: 20px;
    padding: 30px;
    height: 100%;
    border: 1px solid #2e90794b;
}
.our-app-function-card h4 {
    color: var(--dark-red);
    font-weight: 600;
    padding-bottom: 15px;
    margin: 0;
}
.our-app-function-card p {
    margin: 0;
    color: #7a7a7a;
    font-weight: 300;
}
.icon-card-box img {
    max-width: 62px;
    position: relative;
    z-index: 1;
    filter: brightness(0) saturate(100%) invert(24%) sepia(74%) saturate(314%) hue-rotate(116deg) brightness(92%) contrast(92%);
}
.icon-card-box {
    padding-bottom: 25px;
    position: relative;
    display: inline-block;
}
.icon-card-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    background-color: var(--dark-red);
    /* opacity: 10%; */
    border-radius: 50%;
    width: 60px;
    height: 60px;
    z-index: 0;
    transition: all 0.5s ease-in-out;
    background-color: #2e90791f;
}
.icon-card-box::before{

}
.qr-code-image {
    max-width: 100px;
    width: 100%;
    margin-bottom: 15px;
    padding: 4px;
    background: #ffffff4f;
    border-radius: 6px;
    position: relative;
}



.nav-link{
    color: #000000;
    transition: 0.3s;
}
.nav-item:hover .nav-link{
    color: #2E9079 !important;
}
.explanation-section{
    padding: 75px 0 45px 0;
}

.swiper-pagination-bullet-active{
    background-color: #ffffff;
}


.swiper.feature-swiper .swiper-slide{
    text-align: center;
}
.text-decoration-underline{
    text-decoration: underline;
}


/* Jayen New CSS  */
body {
    color: #212529;
}
/* .feature_detail.row:before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    background-color: #2e90791f;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    height: 100%;
    border-radius: 30px;
} */
/* .free_app_inner:before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    background-color: #2e90791f;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    height: 100%;
    border-radius: 30px;
} */
.qr-card {
    position: relative;
}
.qr-card:before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    background-color: #2E9079;
    background-image: url(../images-new/main-bg-cover.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    height: 100%;
    z-index: 0;
    border-radius: 30px;
}
.swiper-pagination-bullet-active {
    background-color: #2E9079;
}

/* Jayen New CSS  */