@import url('https://fonts.googleapis.com/css2?family=Montserrat: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&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');
@import url('https://fonts.googleapis.com/css2?family=Syne:wght@400..800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@0;1&family=Konkhmer+Sleokchher&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Urbanist:ital,wght@0,100..900;1,100..900&display=swap');

:root{
    --font-family:'Urbanist', sans-serif;
    --font-syne: "Syne", sans-serif;
    --font-lato: "Lato", sans-serif;
    /* --font-DM: "Konkhmer Sleokchher", system-ui; */
    --bg-body: #ffffff;
    --bg-primary: #101D35;
    --bg-info: #2871FF;
    --bg-light-gray: #F7F8F9;
    
    --bg-hover-info: #1b51ba;
    --bg-soft-info: #EEF4FF;
    --bg-soft-primary: #f2f4ff;

    --text-primary: #162B53;
    --text-black: #000000;
    --text-white: #ffffff;
    --text-gray: #7684A1;
    --text-yellow: #F4AD4B;
    --text-info: #2871FF;

    --border-gray: #BFBFBF;
    --border-white-60: rgba(255, 255, 255, 0.60);
    --fs-12: 12px;
    --fs-13: 13px;
    --fs-14: 14px;
    --fs-15: 15px;
    --fs-16: 16px;
    --fs-18: 18px;
    --fs-20: 20px;
    --fs-22: 22px;
    --fs-24: 24px;
}

*:focus-visible{
    outline: none;
}

body{
    background: var(--bg-body);
    font-family: var(--font-family);
    color: var(--text-black);
    overflow-x: hidden;

}

a.text-inherit{
    color: inherit !important;
}
a:hover{
    color: inherit;
}
a{
    color: inherit;
    text-decoration: none;
}
.border{
    border: 1px solid var(--border-gray) !important ;
}
.border-dark-gray{
    border-color: #aaaaaa !important;
}

.line-height-normal{
    line-height: normal;
}

.fw-100{
    font-weight: 100;
}
.fw-200{
    font-weight: 200;
}
.fw-300{
    font-weight: 300;
}
.fw-400{
    font-weight: 400;
}
.fw-500{
    font-weight: 500;
}
.fw-600{
    font-weight: 600;
}
.fw-700{
    font-weight: 700;
}
.fw-800{
    font-weight: 800;
}
.fw-900{
    font-weight: 900;
}

.fs-12{
    font-size: var(--fs-12);
}
.fs-13{
    font-size: var(--fs-13);
}
.fs-14{
    font-size: var(--fs-14);
}
.fs-15{
    font-size: var(--fs-15);
}
.fs-16{
    font-size: var(--fs-16);
}
.fs-18{
    font-size: var(--fs-18);
}
.fs-20{
    font-size: var(--fs-20);
}
.fs-22{
    font-size: var(--fs-22);
}
.fs-24{
    font-size: var(--fs-24);
}

.rounded-5{
    border-radius: 5px;
}
.rounded-10{
    border-radius: 10px;
}
.rounded-15{
    border-radius: 15px;
}
.rounded-20{
    border-radius: 20px;
}
.rounded-25{
    border-radius: 25px;
}
.rounedd-round{
    border-radius: 50%;
}

.hw-18{
    height: 18px;
    width: 18px;
}
.hw-25{
    height: 25px;
    width: 25px;
}
.hw-30{
    height: 30px;
    width: 30px;
}
.hw-35{
    height: 35px;
    width: 35px;
}
.hw-40{
    height: 40px;
    width: 40px;
}
.hw-45{
    height: 45px;
    width: 45px;
}
.hw-60{
    height: 60px;
    width: 60px;
}
.hw-70{
    height: 70px;
    width: 70px;
}

.p-12px{
    padding: 12px !important;
}

.max-w-475px{
    max-width: 475px;
}
.min-w-250px{
    min-width: 250px;
}
.max-w-100{
    max-width: 100% !important;
}

.list-style-none{
    list-style: none;
}

.btn-transparent{
    background-color: transparent;
    border-color: transparent;
}
.btn-transparent:active{
    background-color: transparent;
    border-color: transparent !important;
}

.btn-primary{
    background-color: var(--bg-primary);
    border: 1px solid var(--bg-primary);
}

.btn-primary:hover,
.btn-primary:checked{
    background-color: var(--bg-hover-info);
    border-color: var(--bg-hover-info);
}

.btn-primary:first-child:active{
    background-color: var(--bg-hover-info);
    border-color: var(--bg-hover-info);
}

.btn-outline-info {
    --bs-btn-color: var(--text-info);
    --bs-btn-border-color: var(--bg-info);
    --bs-btn-hover-color: #FFFFFF;
    --bs-btn-hover-bg: var(--bg-info);
}

.bg-soft-info{
    background-color: var(--bg-soft-info);
}

.text-primary{
    color: var(--text-primary) !important;
}

.text-gray{
    color: var(--text-gray) !important;
}
.text-white-70{
    color: #FFFFFFB2;
}
.text-yellow{
    color: var(--text-yellow);
}

.remove-scroll::-webkit-scrollbar {
    display: none;
}

.remove-scroll {
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
}

.section{
    padding: 90px 0px;
}

.login-form .form-control {
    padding: 12px;
    font-size: 14px;
    line-height: 28px;
    border-radius: 10px;
    border: 0px;
}

.form-control:focus{
    box-shadow: none;
}
.form-control {
    padding: 12px 15px;
    border-radius: 10px;
}
.form-control:focus{
    border-color: #6e6e6e;
}
::placeholder{
    color: var(--text-gray);
}

.no-data-img{
    width: 250px;
    height: 250px;
    object-fit: contain;
}
.no-data-img-sm{
    width: 140px;
    height: 140px;
    object-fit: contain;
}


/* Start top-bar */
    .top-bar{
        padding: 10px 0px;
        background-color: var(--bg-primary);
        display: flex;
    }
/* end top-bar */



/* Start Header */
/* .sec-header{
    left: 0;
    position: fixed;
    right: 0;
    top: 0;
    width: 100%;
    z-index: 100;
    background-color: #ffffffad;
} */
.sec-header .navbar{
    padding: 15px 0px;
}

/* .sec-header::before{
    content: '';
    opacity: 0;
    background-color: #ffffff58;
    width: 100%;
    height: 100%;
    position: absolute;
    transition: 0.5s;
} */
.sec-header.sec-header-sticky::before{
    opacity: 1;
}
.sec-header .navbar-nav .nav-link{
    color: var(--text-gray);
    transition: 0.3s; 
}
.sec-header .navbar-nav .nav-link.active{
    color: var(--text-primary);
}
.sec-header .navbar-nav .nav-link:hover{
    color: var(--text-primary);
}
.nav-logo{
    width: auto;
    height: 40px;
}
.navbar-toggler{
    background: rgba(255, 255, 255, 0.5);
    border-radius: 5px;
}
.navbar-toggler:focus{
    box-shadow: none;
}
/* End Header */

/* Start Login */
.login-sec{
    padding-top: 90px !important;
}
.login-crad{
    padding-top: 75px;
}
.login-form .form-control{
    background-color: var(--bg-soft-info);
}

.login-crad .main-title {
    font-size: 60px;
    font-weight: 600;
   
}
.login-crad .sub-title {
    font-size: 35px;
    font-weight: 500;
    line-height: 55px;
}

.primary-box-shadow{
    box-shadow: 0px 5.32px 81.17px 0px #6c757d66;
}
.login-vector{
    width: 200px;
}   

.spiner {
    animation: spiner 1s infinite linear;
}

@keyframes spiner {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* End Login */

/* Start Footer section */
.footer-sec{
    background-color: #101D35;   
    color: #ffffff;
}
/* .footer-logo{
    height: 40px;
}
.gradient-line{
    background: linear-gradient(270deg, #64C2DB 4.55%, #7476ED 49.85%, #E56F8C 93.3%);
    outline: 0;
    border: 0;
    height: 5px;
    border-radius: 5px;
}
.footer-links li a{
    transition: 0.3s;
    font-weight: 600;
}
.footer-links li:hover a{
    color: #E56F8C;
} */
.footer-sec-title{
    font-size: 24px;
    font-weight: 600;
    line-height: 24px;
}
.footer-sec-search-div input{
    padding: 15px;
    font-size: 16px;
    border-radius: 50rem;
    background-color: white;
    border: 1px solid var(--border-gray);
    height: 52px;
}
.footer-sec-search-div input:focus{
    background-color: white;
}
.footer-sec-search-div .btn{
    height: 52px;
}
.footer-sec-social a{
    width: 40px;
    height: 40px;
    min-width: 40px;
    min-height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    color:#7684A1;
    border-radius: 50rem;
    transition: 0.3s;
}
.footer-sec-social a:hover{
    background: #2871FF;
    color:#FFFFFF;
}
.footer-sec-social a i{
    font-size: 18px;
    line-height: normal;
}
.footer-fs18px{
    font-size: 18px;
}
.footer-sec-link{
    color: #FFFFFFCC;
}
.footer-sec-link:hover{
    color: #FFFFFF;
}
.footer-sec hr{
    opacity: 1;
    border-color: #D9D9D91A;
}
.lng-btn{
    color: #ffffff;
}
.lng-btn.btn-check:checked+.btn, .lng-btn.btn.active, .lng-btn.btn.show, .lng-btn.btn:first-child:active, :not(.btn-check)+.lng-btn:active, .btn:hover{
    border-color: #D9D9D91A;
}
/* End Footer section */



/* Start Banner */
.banner-sec{
    background: linear-gradient(0deg, #FFFFFF 26.31%, rgba(255, 255, 255, 0) 82.02%);
}
.banner-sec::before{
    content: "";
    height: 100%;
    width: 100%;
    background-image: url(../images/bg-banner-2.png);
    background-position: top;
    background-repeat: no-repeat;
    background-size: cover;
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    z-index: -1;
}

.banner-contant .main-title{
    font-size: 48px;
    font-weight: 700;
    line-height: 60px;
    color: var(--text-primary);
    max-width: 1000px;
    margin: auto;
}
.main-search{
    padding: 15px;
    padding-right: 115px;
    font-size: 16px;
    border-radius: 50rem;
    background-color: white;
    border: 1px solid var(--border-gray);
    /* background-color: var(--bg-soft-primary); */
}
.main-search:focus{
    background-color: white;
    border: 1px solid #162B53;
}
.search-content{
    background-color: #ffffff;
    overflow-y: auto;
    border-radius: 16px;
    position: absolute;
    top: 70px;
    max-height: 300px;
    border: 1px solid #7684A14D;
    z-index: 9;
}
.search-items{
    transition: .1s;
    display: block;
}
.bg-gray{
    background-color: var(--bg-light-gray);
}
.search-items:hover{
    background-color: #e5e7eb !important;
}
.search-content .search-items:nth-child(even) {
    background-color: #f3f4f6;
}

.banner-card-1 {
    padding: 30px;
}
.banner-card-2 {
    padding: 30px;
}
.banner-card-3 {
    padding: 30px;
}
.banner-card-1 img{
    max-height: 160px;
    object-fit: contain;
    object-position: left;
}
.banner-card-2 img{
    max-height: 170px;
    object-fit: contain;
    object-position: center;
}
.banner-card-3 img{
    max-height: 170px;
    object-fit: contain;
    object-position: left;
}

.app-section{
    padding-top: 80px;   
}

.app-card{
    padding: 20px;
    background-color: var(--bg-light-gray);
}
/* End Banner */

/* Start App detail section */

.app-detail-sec{
    background-color: var(--bg-soft-info);
    height: 100%;
    width: 100%;
    border-radius: 0px 0px 80px 80px;
}

.btn-gray{
    background-color: white;
}
.checkboxlabel {
    position: relative;
    cursor: pointer;
    border: 1px solid var(--border-gray);
    padding: 5px 20px;
    border-radius: 10px;
}
.checkboxinput[type='checkbox']:checked + .checkboxlabel{
    color: white;
    background-color: var(--bg-info);
    border-color: #2871FF;
}

.shimmer-nl badge,
.shimmer-nl h2,
.shimmer-nl h3,
.shimmer-nl h4,
.shimmer-nl h5,
.shimmer-nl h6,
.shimmer-nl button,
.shimmer-nl input,
.shimmer-nl i,
.shimmer-nl del,
.shimmer-nl p,
.shimmer-nl span {
    opacity: 0.3;
    border-radius: 5px;
    min-height: 1em;
    vertical-align: middle;
    cursor: wait;
    background: darkgray !important;
    -webkit-animation: placeholder-glow 2s ease-in-out infinite;
    animation: placeholder-glow 2s ease-in-out infinite;
    filter: brightness(0);
}

 .shimmer-nl img{
    opacity: 0.3;
    border-radius: 0;
    min-height: 1em;
    vertical-align: middle;
    cursor: wait;
    background: darkgray !important;
    -webkit-animation: placeholder-glow 2s ease-in-out infinite;
    animation: placeholder-glow 2s ease-in-out infinite;
    filter: brightness(0);
}

@keyframes placeholder-glow {
    50% {
        opacity: .1;
    }
}

@-webkit-keyframes placeholder-glow {
    50% {
        opacity: .1
    }
}

/* End App detail section */


/* start Brand Logo */
.brand-logo-section{
    padding: 20px 0px;
    background-color: var(--bg-primary);
}
.logo-swiper .swiper-slide{
    width: auto;
    margin-left: 45px;
}
.brand-logo{
    height: 30px;
}
/* End Brand Logo */


/* start app section */

.border-table{
    border: 1px solid var(--border-gray);
}
.border-table tr td{
    border-right: 1px solid var(--border-gray);
    border-bottom: 1px solid var(--border-gray);   
}
.td-width tr td:first-child{
    width: 100px;
    text-align: center;
}
.td-width tr td:last-child{
    width: 100px;
    text-align: center;
}
.table{
    vertical-align: middle;
}
/* End app section */

/* Start reviews rating sec */

.main-title{
    max-width: 700px;
    margin: auto;
}
.main-title h2{
    font-size: 48px;
    font-weight: 700;
    line-height: 60px;
    color: var(--text-primary);
}
.main-title p{
    font-size: 20px;
    font-weight: 400;
    line-height: 30px;
    color: var(--text-gray);
}
.reviews-rating-sec .main-title{
    margin-bottom: 40px;
}

.app-reviews-card .icon{
    height: 98px;
    width: 98px;
}
.app-reviews-card h4{
    font-size: 24px;
    font-weight: 700;
    line-height: 34px;
    color: var(--text-primary);
}
.app-reviews-card p{
    font-size: 18px;
    font-weight: 400;
    line-height: 28px;
    color: var(--text-gray);
}
.app-reviews-card .text-content{
    max-width: 500px;
}
/* End reviews rating sec */
/* Start bridge sec */


.bridge-sec{
    background-color: var(--bg-primary);
    position: relative;
}
.bridge-sec::before{
    content: "";
    height: 100%;
    width: 100%;
    background-image: url(../images/bg-bridge-line-img.png);
    background-position: top;
    background-repeat: no-repeat;
    background-size: cover;
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    z-index: 0;
}

.bridge-content{
    position: relative;
    z-index: 1;
}

.bridge-sec .main-title h2{
    font-size: 48px;
    font-weight: 700;
    line-height: 60px;
    color: white ;  
}

.bridge-sec .img-content img{
    max-height: 450px;
    width: 100%;
    object-fit: contain;
}

/* End bridge sec */

/* Start Slack reviews sec */

    .slack-reviews-sec .image-content{
        background-color: var(--bg-light-gray);
        position: relative;
        border-radius: 30px;
        height: 100%;
    }
    .slack-reviews-sec .image-content::before{
        content: "";
        height: 100%;
        width: 100%;
        background-image: url(../images/bg-blue-card-line.png);
        background-position: top;
        background-repeat: no-repeat;
        background-size: cover;
        position: absolute;
        top: 0;
        right: 0;
        left: 0;
        bottom: 0;
        z-index: 0;
    }
    .slack-reviews-sec .image-content img{
        width: 100%;
        height: 100%;
        max-height: 350px;
        min-height: 350px;
        object-fit: contain;

    }
    .slack-reviews-sec .text-content h4{
        font-size: 46px;
        font-weight: 700;
        line-height: 58px;
        color: var(--text-primary);

    }
    .slack-reviews-sec .text-content p{
        font-size: 18px;
        font-weight: 400;
        line-height: 28px;
        color: var(--text-gray);
    }


/* End Slack reviews sec */

/* Start Reply and connect sec */


    .reply-and-connect-sec .image-content{
        background-color: var(--bg-light-gray);
        position: relative;
        border-radius: 40px;
        height: 100%;
        overflow: hidden;
    }
    .reply-and-connect-sec .image-content::before{
        content: "";
        height: 100%;
        width: 100%;
        background-image: url(../images/bg-blue-card-line.png);
        background-position: top;
        background-repeat: no-repeat;
        background-size: cover;
        position: absolute;
        top: 0;
        right: 0;
        left: 0;
        bottom: 0;
        z-index: 0;
    }
    .reply-and-connect-sec .image-content img{
        width: 100%;
        height: 100%;
        max-height: 500px;

        object-fit: contain;

    }
    .reply-and-connect-sec .text-content h4{
        font-size: 24px;
        font-weight: 700;
        line-height: 34px;
        color: var(--text-primary);

    }
    .reply-and-connect-sec .text-content p{
        font-size: 18px;
        font-weight: 400;
        line-height: 28px;
        color: var(--text-gray);
    }


/* End Reply and connect sec */
/* Start Blogs sec */

.blogs-sec .main-title {
    margin-bottom: 40px;
}
.blogs-card{
    border-radius: 30px;
    overflow: hidden;
}

.blogs-card img{
    height: 300px;
    width: 100%;
    object-fit: cover;
}
.blogs-card h4{
    font-size: 24px;
    font-weight: 700;
    line-height: 34px;
    color: var(--text-primary);
}
.blogs-card p{
    font-size: 16px;
    font-weight: 400;
    line-height: 28px;
    color: var(--text-gray);
}
.blogs-card span{
    font-size: 14px;
    font-weight: 400;
    line-height: 28px;
    color: var(--text-gray);
}
.blogs-card svg{
    width: 16px;
    height: 16px;
}
/* End Blogs sec */

.dropdown-item.active, .dropdown-item:active{
    background-color: var(--bg-hover-info);
}


/* Start Testimonial sec */
.slider-s1button{
    color: #000000;
}
.slider-s1button::after{
    font-size: 16px;
    font-weight: 900;
}
.slider-s1button.swiper-button-prev{
    order: 1;
}
.slider-s1button.swiper-button-next{
    order: 3;
}
.swiper-pagination.slider-s1progressbar{
    order: 2;
}
.slider-s1button{
    position: unset;
    height: 22px;
    margin-bottom: -20px;
}
.slider-s1progressbar{
    position: unset;
    max-width: 250px;
    height: 8px !important;
    border-radius: 50rem;
    overflow: hidden;
    background: #7684A11F;
}
.slider-s1progressbar .swiper-pagination-progressbar-fill{
    background: #2871FF;
}
.testimonial-card{
    max-width: 840px;
    border-radius: 20px;
}
.testimonial-card .card-body{
    padding: 53px 25px 53px 25px;
}
.testimonial-card .review-text{
    font-size: 24px;
    font-weight: 600;
    line-height: 30px;
}
.testimonial-card .testimonialSlider{
    max-width: 675px;
}
.slider-s1fraction{
    color: #101D35;
    font-size: 20px;
    font-weight: 600;
    line-height: 30px;
}

.review-userdetails .user-img{
    width: 33px;
    height: 33px;
    min-width: 33px;
    min-height: 33px;
}

.testimonial-card .banner-img{
    height: 220px;
    object-fit: cover;
}



.review-userdetails p{
    font-size: 18px;
    font-weight: 600;
    line-height: 22.82px;
}
.testimonial-quote{
    width: 47px;
    height: 34px;
    position: absolute;
    top: -17px;
    left: 5%;
}
/* End Testimonial sec */


/* Start Testimonial sec */
/* .FAQ-accordion .accordion-item{
    background: var(--bg-light-gray);
} */
.FAQ-accordion .accordion-item{
    background: var(--bg-light-gray);
    border: 0px !important;
    border-radius: 20px !important;
    overflow: hidden;
    padding: 15px;
}
.FAQ-accordion .accordion-header .accordion-button{
    background: var(--bg-light-gray);
    border: 0px !important;
    box-shadow: none !important;
    padding: 15px;
    font-size: 24px;
    font-weight: 500;
    line-height: 34px;
    color: #101D35;
}
.FAQ-accordion .accordion-button:not(.collapsed){
    color: #2871FF;
}
.FAQ-accordion .accordion-body{
    background: #FFFFFF;
    border-radius: 10px;
    margin-top: 15px;
}
.FAQ-accordion .accordion-button::after {
    content: '+';
    font-size: 26px;
    font-weight: 300;
    height: auto !important;
    width: auto !important;
    background-image: unset;
    transform-origin: center;
    padding: 0px 10px;
}
.FAQ-accordion .accordion-button:not(.collapsed)::after{
    content: '-';
    transform-origin: center;
    font-size: 36px !important;
    font-weight: 200 !important;
}
/* End Testimonial sec */


/* Start Pricing CSS */
.pricing-sec{
    position: relative;
    background: linear-gradient(0deg, #FFFFFF 26.31%, rgba(255, 255, 255, 0) 82.02%);
}
.pricing-sec::before {
    content: "";
    height: 100%;
    width: 100%;
    background-image: url(../images/bg-banner-2.png);
    background-position: top;
    background-repeat: no-repeat;
    background-size: cover;
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    z-index: -1;
}
.plan-card{
    border-radius: 30px;
    overflow: hidden;
    border-color: #7684A180 !important;
}
.plan-card.plan-card-info{
    border-color: var(--bg-info) !important;
    background: var(--bg-info);
    color: #ffffff !important;
}
.plan-card .card-header{
    background-color: #101D350A;
    border-color: #7684A180 !important;
    font-size: 28px;
    font-weight: 700;
    line-height: 38px;
    letter-spacing: 0.2em;
    text-align: center;
}
.plan-card.plan-card-info .card-header{
    background-color: #FFFFFF17;
    border-color: var(--bg-info) !important;
}
.plan-card .plan-price p{
    font-size: 64px;
    font-weight: 700;
    line-height: 62px;
}
.plan-card .plan-price span{
    font-weight: 400;
    font-size: 34px;
    line-height: 62px;
}
.plan-card .plan-include-list .icon{
    background: #101D3514;
    color: var(--text-primary);
    width: 44px;
    height: 44px;
    min-width: 44px;
    min-height: 44px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50rem;
    font-weight: 800;
    font-size: 22px;
}
.plan-card.plan-card-info .plan-include-list .icon{
    background: #FFFFFF29;
    color: #ffffff;
}
.plan-card .plan-include-list p{
    font-size: 18px;
    font-weight: 400;
    line-height: 28px;
    color: var(--text-primary);
}
.plan-card.plan-card-info .plan-include-list p{
    color: #ffffff;
}
.plan-card .btn{
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.plan-card.plan-card-info  .btn:hover{
    color: var(--text-primary);
}

.btn-google {
    background: #4285F4; /* Google blue color */
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 5px;
    cursor: pointer;
    display: block;
    width: 100%;
    text-align: center;
    font-size: 16px;
    font-weight: bold;
    transition: background-color 0.3s, box-shadow 0.3s;
    margin-top: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.btn-google:hover {
    background: #357ae8; /* Darker blue on hover */
}

.btn-google:active {
    background: #2c6bc0; /* Even darker blue when pressed */
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.btn-google i {
    margin-right: 8px;
    font-size: 18px; /* Adjust icon size */
}
/* End Pricing CSS */

.text-ellipsis-4{
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
}
.text-ellipsis-3{
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
}
.text-ellipsis-2{
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
}
.blogs-card-html{
    white-space: break-spaces;
    font-family: var(--font-family);
}


.pagination ul{
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  background: #fff;
  padding: 8px;
  border-radius: 50px;
}
.pagination ul li{
  color: #2871FF;
  list-style: none;
  line-height: 35px;
  text-align: center;
  font-size: 18px;
  font-weight: 500;
  cursor: pointer;
  user-select: none;
  transition: all 0.3s ease;
}
.pagination ul li.numb{
  list-style: none;
  height: 35px;
  width: 35px;
  margin: 0 3px;
  line-height: 35px;
  border-radius: 50%;
}
.pagination ul li.numb.first{
  margin: 0px 3px 0 -5px;
}
.pagination ul li.numb.last{
  margin: 0px -5px 0 3px;
}
.pagination ul li.dots{
  font-size: 22px;
  cursor: default;
}
.pagination ul li.btn{
  padding: 0 15px;
  border-radius: 50px;
  margin: 0px 10px;
}
.pagination li.active,
.pagination ul li.numb:hover,
.pagination ul li:first-child:hover,
.pagination ul li:last-child:hover{
  color: #fff;
  background: #2871FF;
}





  .body__inner-wrapper {
    height: 100%;
    max-width: 104rem;
    display: flex;
    flex-direction: column;
    gap: 6rem;
    justify-content: center;
    margin-inline: auto;
    margin-block-start: 6rem;
}

.outline__text {
    font-family: sans-serif;
    -webkit-text-stroke: 1px black;
    -webkit-text-fill-color: white;
}


.google-sign-in-card{
    top: 15px;
    right: 15px;
    position: fixed;
    max-width: 400px;
    width: 100%;
    z-index: 99999;
}

.white-space-nowrap{
    white-space: nowrap;
}

#animated-text-strip .marquee {
    animation: marquee 15s linear infinite;
}

@keyframes marquee {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(-100%, 0);
    }
}

.btn-check:checked+.btn, .btn.active, .btn.show, .btn:first-child:active, :not(.btn-check)+.btn:active{
    color: #ffffff;
}

.page-break{
    overflow-x: hidden;
    position: relative;
}
.sec-privacy-terms p{
    font-size: 15px;
    line-height: 26px;
    letter-spacing: 1px;
}
.sec-privacy-terms li{
    font-size: 15px;
    line-height: 26px;
    letter-spacing: 1px;
}
.sec-privacy-terms h5{
    font-size: 18px;
    font-weight: 800;
    line-height: 26px;
    letter-spacing: 1px;
    margin-bottom: 25px;
}
