* {
    margin: 0px;
    box-sizing: border-box;
}

body {

    font-size: 15px;
    font-family: "Hind", sans-serif;
    line-height: 28px;
    color: #060606;
    font-weight: 400;

}

p {
    font-size: 15px;
    font-family: "Hind", sans-serif;
    line-height: 28px;
    color: #060606;
    font-weight: 400;
}

a {
    text-decoration: none;
    transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -webkit-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    font-size: 15px;
    font-family: "Hind", sans-serif;
    line-height: 28px;
    color: #060606;
    font-weight: 500;
}

a:hover {
    text-decoration: none;
    outline: none;
}

ul,
li {
    list-style: none;
    padding: 0px;
    margin: 0px;
}

li {
    font-size: 15px;
    font-family: "Hind", sans-serif;
    line-height: 28px;
    color: #060606;
    font-weight: 400;
}

button:focus,
input:focus,
textarea:focus {
    outline: none;
    box-shadow: none;
    transition: all 500ms ease;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Hind", sans-serif;
    margin: 0px;
    color: #060606;
}

p {
    margin: 0px;
}

.pt-50 {
    padding-top: 50px;
}

.pt-40 {
    padding-top: 40px;
}

.pt-30 {
    padding-top: 30px;
}

.pb-50 {
    padding-bottom: 50px;
}

.pb-40 {
    padding-bottom: 40px;
}

.pb-30 {
    padding-bottom: 30px;
}

.mt-40 {
    margin-top: 40px;
}

.pb-100 {
    padding-bottom: 100px;
}

.justify-center {
    justify-content: center;
}

.mt-20 {
    margin-top: 20px;
}

.align-item-center {
    align-items: center;
}

.justify-content-space-between {
    justify-content: space-between;
}

.flex-end {
    justify-content: flex-end;
}

.site-width {
    max-width: 1250px;
    margin: 0px auto;
}

@media screen and (max-width:1518px) and (min-width:1368px) {
    .site-width {
        max-width: 1372px;
        padding: 0px 40px;
    }

}

@media screen and (max-width:1708px) and (min-width:1519px) {
    .site-width {
        max-width: 1552px;
        padding: 0px 40px;
    }
}

@media screen and (max-width:1920px) and (min-width:1709px) {
    .site-width {
        max-width: 1642px;
        padding: 0px 40px;
    }
}

@media screen and (max-width: 3000px) and (min-width: 2500px) {
    .site-width {
        max-width: 2400px;
        padding: 0px 40px;
    }
}

@media screen and (max-width:2499px) and (min-width:1921px) {
    .site-width {
        max-width: 1842px;
        padding: 0px 40px;
    }
}

@media screen and (max-width:1280px) and (min-width:1024px) {
    .site-width {
        padding: 0px 40px;
        max-width: 1200px;
        padding: 0px 40px;
    }
}

@media screen and (max-width:1024px) and (min-width:888px) {
    .site-width {
        padding: 0px 40px;
    }
}

@media screen and (max-width:888px) and (min-width:769px) {
    .site-width {
        padding: 0px 40px;
    }
}

@media screen and (max-width:768px) {
    .site-width {
        padding: 0px 20px;
    }
}

/* Button */
.cssbuttons-io {
    position: relative;
    font-family: inherit;
    font-weight: 500;
    font-size: 18px;
    border-radius: 40px;
    cursor: pointer;
    border: none;
    background: linear-gradient(to right, #d10031, #d10000);
    color: ghostwhite;
    overflow: hidden;
    display: inline-block;
}
.cssbuttons-io.styletwo {
    background: transparent;
    border: 1px solid #EC224E;
} 


.cssbuttons-io svg {
    width: 1.2em;
    height: 1.2em;
    margin-right: 0.5em;
}

.cssbuttons-io span {
    position: relative;
    z-index: 10;
    transition: color 0.4s;
    display: inline-flex;
    align-items: center;
    padding: 10px 50px;
    gap: 12px;
}
.cssbuttons-io span img {
    width: 20px;
    height: 20px;
    margin-right: 0px;
}
.cssbuttons-io.styletwo  span {
    color: #EC224E;
}
.cssbuttons-io.styletwo:hover span {
    color: #fff;
}
.cssbuttons-io::before,
.cssbuttons-io::after {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.cssbuttons-io::before {
    content: "";
    background: linear-gradient(90deg, #F82034, #BF1E2D);
    width: 120%;
    left: -10%;
    transform: skew(30deg);
    transition: transform 0.4s cubic-bezier(0.3, 1, 0.8, 1);
}
.cssbuttons-io.styletwo::before {
    background: transparent;
    transform: translate3d(100%, 0, 0);
    transition: transform 0.4s cubic-bezier(0.3, 1, 0.8, 1);
}
.cssbuttons-io.styletwo:hover:before {
    background:#CD2D3C;
    transform: translate3d(0%, 0, 0);
}
.cssbuttons-io:hover::before {
    transform: translate3d(100%, 0, 0);
}

.cssbuttons-io:active {
    transform: scale(0.95);
}


.headerSection  {
    box-shadow: 0px 0px 10px #32323238;
    background: #fff;
    position: relative;
}
.headerSection.sticky {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 111;
    transition: 0.4s ease-in-out;
    background-color: #fff;
}
.headerWrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.logoSection {
    width: 150px;
    transition: 0.4s ease-in-out;
}
.headerSection.sticky .logoSection {
    width: 100px;
}
.logoSection svg {
    width: 100%;
}
.navSection .navList {
    display: flex;
    align-items: center;
    gap: 30px;
}

.navSection .navList>li>a {
    padding: 28px 5px;
    display: inline-block;
    position: relative;
    color: #CD2D3C;
    font-weight: 500;
    transition: 0.4s ease-in-out;
    font-size: 18px;
}
.headerSection.sticky .navSection .navList>li>a {
    padding: 16px 5px;
}
.navSection .navList>li>a::after{
    position: absolute;
    content: '';
    width: 0%;
    height: 2px;
    background-color: #CD2D3C;
    bottom: 36%;
    left: 0px;
    right: 0px;
    margin: auto;
    transition: width 0.5s ease-in-out;
    border-radius: 30px;
}
.headerSection.sticky .navSection .navList>li>a::after {
    bottom: 33%;
}
.navSection .navList>li>a:hover:after, .navSection .navList>li>a.active:after {
    width: 83%;
}
.navSection .navList>li{
    height: fit-content;
}
.navSection .navList>li>a.cssbuttons-io {
    padding: initial;
    line-height: 24px;
}
.navSection .navList>li>a.cssbuttons-io span{
    font-size: 15px;
    padding: 10px 40px;
}
.navTalkButton {
    height: fit-content;
    display: flex;
    align-items: center;
}
.navTalkButton .cssbuttons-io span {
    padding: 8px 40px;
    font-weight: 600;
    font-size: 15px;
}

.navTalkButton .cssbuttons-io svg {
    margin-right: 0px;
    margin-left: 12px;
    width: 18px;
    height: 18px;
}

.togglers {
    display: none;
}
.menuBtn {
    background-color: transparent;
    border: none;
    cursor: pointer;
    display: flex;
    padding: 0;
}
.menuBtn svg {
    width: 50px
}

.menuBtn .line {
    fill: none;
    stroke: black;
    stroke-width: 6;
    transition: stroke-dasharray 600ms cubic-bezier(0.4, 0, 0.2, 1),
        stroke-dashoffset 600ms cubic-bezier(0.4, 0, 0.2, 1);
}

.menuBtn .line1 {
    stroke-dasharray: 60 207;
    stroke-width: 6;
}

.menuBtn .line2 {
    stroke-dasharray: 60 60;
    stroke-width: 6;
}

.menuBtn .line3 {
    stroke-dasharray: 60 207;
    stroke-width: 6;
}

.menuBtn.opened .line1 {
    stroke-dasharray: 90 207;
    stroke-dashoffset: -134;
    stroke-width: 6;
}

.menuBtn.opened .line2 {
    stroke-dasharray: 1 60;
    stroke-dashoffset: -30;
    stroke-width: 6;
}

.menuBtn.opened .line3 {
    stroke-dasharray: 90 207;
    stroke-dashoffset: -134;
    stroke-width: 6;
}


.bannerSection  {
    background: linear-gradient(#ffffffdb, #ffffffe3), url(../img/bg/banner-bg.png) no-repeat center center / cover;
}
.bannerContent {
    width: 100%;
    text-align: center;
}
.bannerContent h2 {
    font-size: 38px;
    font-weight: 600;
    color: #CD2D3C;
    font-family: 'Vollkorn';
    font-style: italic;
}
.bannerContent h2 span{
    color: #EC224E;
}
.bannerContent p{
    margin-top: 30px;
    margin-bottom: 40px;
    line-height: 28px;
}
.bannerContent .featureIcon {
    width: 56px;
    height: 56px;
}
.bannerContent .featureContent h3 {
    font-size: 22px;
    font-weight: 700;
    color: #BF1E2D;
    line-height: 38px;
}
.bannerContent .featureContent h5 {
    font-size: 19px;
    font-weight: 500;
    color: #BF1E2D;
}
.bannerContent .featureCard {
    padding: 15px;
}
.bannerContent .featureCard::after {
    display: none
}
.bannerContent .featureWrap {   
    width: 76%;
    margin: auto;
}
.bannerBtns {
    display: flex;
    align-items: center;
    gap: 20px;
    justify-content: center;
    margin: 20px;
}
.playStoreDownloadBtn {
    display: inline-block;
    width: 194px;
    overflow: hidden;
    border-radius: 10px;
    background: #000;
    padding: 0px;
}
.playStoreDownloadBtn.appstore {
    width: 172px;
}
.playStoreDownloadBtn img{
    width: 100%;
}
.bannerImgWrapper {
    
}
.bannerImg {
    width: 100%;
    text-align: right;
}
.bannerImg img { max-width: 100%;
    /*border-radius: 25px;
    height: 100%;
    object-fit: cover;*/
}
.bannerImgI {
    height: unset;
}
.bannerImg.include2 {
    display: flex;
    flex-direction: column;
    gap: 22px;
    height: 100%;
}
.bannerImgII {
    height: 100%;
}
.bannerImgIII {
    
height: auto;
}

.titleSection {
    position: relative;
    width: 70%;
    margin: auto;
    text-align: center;
    padding-bottom: 18px;
}
/* .titleSection::after{
    position: absolute;
    content: '';
    width: 10%;
    height: 3px;
    background: #ff003c;
    left: 0px;
    right: 0px;
    margin: auto;
    bottom: -1px;
}
.titleSection::before{
    position: absolute;
    content: '';
    width: 20%;
    height: 1px;
    background: #afafaf;
    bottom: 0px;
    left: 0px;
    right: 0px;
    margin: auto;
} */
.titleSection h4 {
    font-size: 45px;
    font-weight: 600;
    color: #CD2D3C;
    font-family: 'Vollkorn';
    font-style: italic;
}
.titleSection h4 span {
    color: #CD2D3C;
}
.partnersCarousel {
    margin-top: 40px;
}
.partnersCarousel .item{
    padding: 20px;
}
.partnerCard {
    padding: 20px;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}
.partnerCard img{
    width: 100%;
}

.featureSec {
    background: #F0F7FF;
}
.featureCard {
    position: relative;
    padding: 20px;
}
.featureCard::after {
    position: absolute;
    content: '';
    width: 1px;
    height: 100%;
    right: 0px;
    background: #B2D0ED;
    top: 0px;
    margin: auto;
}
.featureWrap .col-md-4:last-child .featureCard::after {
    display: none;
}
.featureIcon {
    width: 56px;
    margin: auto;
}
.featureIcon img{
    width: 100%;
}
.featureContent {
    text-align: center;
    margin-top: 20px;
}
.featureContent h3 {
    font-size: 32px;
    font-weight: 700;
    color: #BF1E2D;
    line-height: 38px;
}
.featureContent h5 {
    font-size: 19px;
    font-weight: 500;
    color: #BF1E2D;
}
.featureWrap.paymentwrapper .featureIcon  {
    width: 100%;
    height: 66px;
    text-align: center;
}
.featureWrap.paymentwrapper .featureIcon img {
    width: auto;
    height: 100%;
}


.WithdrawalFeatures .featureCard::after {
    display: none;
}
.paymentwrapper .featureContent h5 {
    color: #3F3F3F;
    font-size: 28px;
    font-weight: 400;
}

.mainFeatures hr {
    background: radial-gradient(#abe9ee 9%, #F2F3FA);
    width: 100%;
    height: 3px;
    border: none;
    margin: 51px 0px;
}
.mainFeatures {
    background: #F2F3FA;
}

.cashcontenstImg {
    width: 100%; 
    position: relative;
}
.cashcontenstImg img {
    width: 100%;
}
.cashcontest {
    background: #EAEDFF;
}


.onlinereviews {
    background: #EAEDFF;
    position: relative;
}
.onlinereviews::after {
    position: absolute;
    content: '';
    width: 100%;
    height: 195px;
    bottom: auto;
    left: 0px;
    right: 0px;
    top: 0px;
    background: #CD2D3C;
    z-index: 1;
}


.titleSection.light h4 {
    color: #fff;
}
.titleSection.light p {
    color: #fff;
}
.titleSection.light p.fontLarge {
    font-size: 28px;
    margin-top: 13px;
}
.onlinereviews .titleSection {
    margin-bottom: 0px;
    padding-bottom: 50px;
    position: relative;
    z-index: 2;
}

.progress{
    width: 100%;
    height: 25px;
    background: #DFE4F0;
    border-radius: 30px;
}

.skill-wrapper span {
    font-size: 14px;
    line-height: 20px;
    text-transform: uppercase;
    font-family: Inconsolata,monospace;
    margin-bottom: 10px;
}
.progress-bar {
    background: #36AC62;
    border-radius: 30px;
}
.progressbar-active{
	animation-name: progress;
	animation-duration: 1s;
	animation-fill-mode: forwards;
	animation-delay: 0.4s;
}
@keyframes progress{
	0%{
		width:0;
	}
	100%{
		width:100%;
	}
}

.reviewCard {
    padding: 40px;
    border-radius: 30px;
    max-width: 995px;
    width: 100%;
    margin: auto;
    background: #fff;
}
.reviewInfo {
    text-align: center;
}
.reviewInfo h2 {
    color: #000000;
    font-size: 100px;
    font-weight: 600;
}
.reviewInfo .starRating  {
    display: flex;
    gap: 5px;
    align-items: center;
    margin-top: 0px;
    justify-content: center;
}
.reviewInfo .starRating li img { max-width: 100%; max-height: 20px; }
.reviewInfo h5 {
    color: #000000;
    font-size: 22px;
    font-weight: 500;
    margin-top: 16px;

}
.reviewbars ul {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-direction: column;
    padding-left: 25px;
}
.reviewbars ul li {
    display: flex;
    align-items: center;
    width: 100%;
    gap: 5px;
}
.reviewbars ul li span {
    display: inline-block;
    font-size: 20px;
    font-weight: 400;
    margin-right: 13px;
}
.reviewbars .skill-wrapper {
    display: inline-block;
    width: 100%;
}

.text-capital {
    text-transform: uppercase;
}

.aboutImg {
  width: 100%;
  position: relative;
  display: flex;
}
.aboutImg img{
   width: 100%;
   position: absolute;
}
.aboutImg img.abimg1{
    width: 100%;
    top: 4px;
    z-index: 1;
    left: -6px;
}
.aboutImg img.abimg2{
   width: 100%;
   position: relative;
   z-index: 2;
}
.aboutImg img.abimg3{
    z-index: 2;
}
.aboutImg .mobileImg {
    position: relative;
    display: inline-block;
}
.aboutImg .mobileImg::after {
    position: absolute;
    content: '';
    bottom: -3px;
    left: 0px;
    right: 0px;
    width: 51%;
    height: 5px;
    background: #999;
    transform: rotate(181deg);
    filter: blur(4px);
    border-radius: 100%;
}
.mobileImg2 {
    position: relative;
    display: inline-block;
    width: 175%;
    margin-left: -50px;
}

.sectionTitleLeft {

}
.sectionTitleLeft h2 {
    font-size: 42px;
    font-weight: 600;
    color: #404969;
}
.sectionTitleLeft h2 span {
    color: #EC224E;
}
.aboutUsContent {
    padding-right: 30px;
}
.aboutUsinfo {
    margin-top: 20px;
}
.aboutUsinfo p {
    margin-top: 0;
    margin-bottom: 20px;
}
.aboutUsinfo img { max-width: 100%; }
.bg1 {
    background: #F2F3FA;
}


.titlesstyled {
    position: relative;
}
.titlesstyled h4 {
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
}
.titlesstyled h4.colorbkg {
    color: #000000;
}
.titlesstyled h4::after {
    content: '';
    display: inline-block;
    width: 90px;
    height: 3px;
    background: linear-gradient(90deg, #BF1E2D, #F2F3FA);
}
.titlesstyled h4::before {
    content: '';
    display: inline-block;
    width: 90px;
    height: 3px;
    background: linear-gradient(270deg, #BF1E2D, #F2F3FA);
}



.testiAuthor .starRating {
    display: flex;
    gap: 5px;
    align-items: center;
    margin-top: 0px;
    justify-content: flex-start;
}
.testiAuthor .starRating li img {
    width: 20px;
    height: 20px;
}


.videoSec {
    position: relative;
    background: linear-gradient(359deg, #f7f7f7, #47206e00, #f7f7f7);
}
.videoSecImg {
    width: 100%;
    height: 720px;
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
}
.videoSecImg::after{
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    bottom: 0px;
    left: 0px;
    right: 0px;
    top: 0px;
    background: radial-gradient(#00000029, #0000009c);

}
.videoSecImg img{
   width: 100%;
    /* height: 100%; */
    /* object-fit: cover; */
    filter: blur(0px);
    position: relative;
    bottom: 60px;
}
.videoPlayFullWrap {
    position: relative;
}

.video-player {
    position: absolute;
    top: 0px;
    left: 0px;
    right: 0px;
    bottom: 0px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
    width: fit-content;
    height: fit-content;
}

.pulse {
    -webkit-animation-name: pulse;
    animation-name: pulse;
}

.pulse {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    color: #fff;
}

.pulse {
    -webkit-animation-name: pulse;
    animation-name: pulse;
}

.pulse i {
    background-color: #000f2d94;
    width: 80px;
    height: 80px;
    line-height: 80px;
    border-radius: 50%;
    font-size: 28px;
    text-align: center;
    display: inline-block;
    cursor: pointer;
    overflow: hidden;
    columns: #fff;
    -webkit-animation: video-pulse-presentation 2s linear infinite;
    animation: video-pulse-presentation 2s linear infinite;
    transition: 0.4s ease;
}

.pulse i:hover {
    background: #ffffff54;
    color: #fff;
    backdrop-filter: blur(7px);
}

.blogviewBtn {
    display: flex;
    padding-top: 10px;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 2;
}

.blogviewBtn {
    display: flex;
    padding-top: 10px;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 2;
}

@-webkit-keyframes video-pulse-presentation {
    0% {
        -webkit-box-shadow: 0 0 0 0 #CD2D3C, 0 0 0 0 #CD2D3C;
        box-shadow: 0 0 0 0 #CD2D3C, 0 0 0 0 #CD2D3C;
    }

    40% {
        -webkit-box-shadow: 0 0 0 0 rgb(245 112 9 / 0%), 0 0 0 0 #CD2D3C;
        box-shadow: 0 0 0 0 rgb(245 112 9 / 0%), 0 0 0 0 #CD2D3C;
    }

    80% {
        -webkit-box-shadow: 0 0 0 0 rgb(245 112 9 / 0%), 0 0 0 30px rgb(245 112 9 / 0%);
        box-shadow: 0 0 0 0 rgb(245 112 9 / 0%), 0 0 0 30px rgb(245 112 9 / 0%);
    }

    100% {
        -webkit-box-shadow: 0 0 0 0 rgb(245 112 9 / 0%), 0 0 0 30px rgb(245 112 9 / 0%);
        box-shadow: 0 0 0 0 rgb(245 112 9 / 0%), 0 0 0 30px rgb(245 112 9 / 0%);
    }
}

@keyframes video-pulse-presentation {
    0% {
        -webkit-box-shadow: 0 0 0 0 #CD2D3C, 0 0 0 0 #CD2D3C;
        box-shadow: 0 0 0 0 #CD2D3C, 0 0 0 0 #CD2D3C;
    }

    40% {
        -webkit-box-shadow: 0 0 0 0 rgb(245 112 9 / 0%), 0 0 0 0 #CD2D3C;
        box-shadow: 0 0 0 0 rgb(245 112 9 / 0%), 0 0 0 0 #CD2D3C;
    }

    80% {
        -webkit-box-shadow: 0 0 0 0 rgb(245 112 9 / 0%), 0 0 0 30px rgb(245 112 9 / 0%);
        box-shadow: 0 0 0 0 rgb(245 112 9 / 0%), 0 0 0 30px rgb(245 112 9 / 0%);
    }

    100% {
        -webkit-box-shadow: 0 0 0 0 rgb(245 112 9 / 0%), 0 0 0 30px rgb(245 112 9 / 0%);
        box-shadow: 0 0 0 0 rgb(245 112 9 / 0%), 0 0 0 30px rgb(245 112 9 / 0%);
    }
}

.videoSecMainImg {
    position: relative;
    display: flex;
    justify-content: center;
}
.videoSecMainWrapp {
    width: 100%;
    border-radius: 24px;
    overflow: hidden;
}
.videoSecMainWrapp img{
    width: 100%;
}


.loanOffering  {
    background:linear-gradient(359deg, #f7f7f7, #47206e00, #f7f7f7);
}
.loanOfferSlider {
    margin-top: 20px;
}
.loanOfferSlider .item {
    padding: 18px;
}
.loanOfferCard {
    border-radius: 20px;
    overflow: hidden;
    background: #fff;
    box-shadow: #64646f40 0px 6px 15px 0px;
}
.loanOfferImg {
    height: 214px;
    width: 100%;
    display: flex;
    align-items: center;
    overflow: hidden;
}
.loanOfferImg img{
    width: 100%;
}
.loanOfferContent {
    padding: 20px;
    border-bottom: 1px solid #dddddd85;
    border-left: 1px solid #dddddd85;
    border-right: 1px solid #dddddd85;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
    min-height: 200px;

}
.loanOfferContent h4 {
    font-size: 20px;
    font-weight: 600;
    color: #404969;
    margin-bottom: 12px;
}
.loanOfferContent h4 span  {
    color: #EC224E;
}
.loanOfferContent p{
    color: #404969;
    font-weight: 400;
}


.news-full {
    position: relative;
    width: 100%;
    overflow: hidden;
}
.holder {
    background-color: transparent;
    width: 100%;
    height: 330px;
    overflow: hidden;
    padding: 0px;
}

.holder .mask {
    position: relative;
    left: 0px;
    top: 10px;
    width: 100%;
    height: 240px;
    overflow: hidden;
}

.holder ul {
    list-style: none;
    margin: 0;
    padding: 0;
    position: relative;
}

.holder ul li {
    padding: 10px 0px;
    border: none;
    border-left: none;
    border-right: none;
    border-top: none;
}

.holder ul li a {
    color: darkred;
    text-decoration: none;
}

.holder ul li span {
    font-size: 15px;
    color: #777;
}

.holder ul li p {
    text-align: justify;
}

.holder ul li p a {
    text-decoration: underline;
}

.newsCard {
    padding: 22px;
    display: flex;
    background: #F0F7FF;
    border-radius: 20px;
    width: 100%;
    align-items: center;
    gap: 17px;
}
.newsCardIco {
    width: 90px;
    height: 90px;
    border-radius: 100%;
    overflow: hidden;
}
.newsCardIco img{
    width: 100%;
}
.newsCardContent {
    width: 70%;
}
.newsCardContent h5 {
    color: #404969;
    font-size: 20px;
    font-weight: 600;
}
.newsCardContent p {
    font-weight: 400;
    color: #404969;
    margin-top: 8px;
}
.newsSection {
    position: relative;
}
.newsCharImg {
    width: 100%;
    position: absolute;
    right: 5%;
    width: 34%;
    bottom: 0px;
}
.newsCharImg img{
    width: 100%;
}
.newVideoPlayWrap {
    width: 100%;
    height: 460px;
    position: relative;
    background: #D9D9D9;
    border-radius: 20px;
}
.newsSecWrap {
    margin-top: 30px;
}


.WhyChoose {
    background: linear-gradient(359deg, #f7f7f7, #47206e00, #f7f7f7);
}
.whyChooseWrap {
    margin-top: 60px;
}
.whychooseCard {
    border: 1px solid #ffffff;
    border-radius: 20px;
    padding: 20px;
    min-height: 222px;
    margin-bottom: 24px;
    background: #F0F7FF;
}
.whyChooseIco {
    width: 50px;
    height: 50px;
    border-radius: 100%;
    background-color: #404969;
    display: flex;
    align-items: center;
    justify-content: center;
}
.whyChooseContent {

}
.whyChooseContent h4 {
    color: #404969;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 7px;
    margin-top: 20px;
}
.whyChooseContent p {
    color: #404969;
    font-weight: 400;
    font-size: 15px;
}


.emiCalcWrapper {
    display: flex;
    align-items: center;
}
.emiCalcContent {
    background: #404969;
    padding: 40px;
}
.dark h1, .dark h2, .dark h3, .dark h4, .dark h5, .dark h6, .dark p, .dark * {
    color: #fff;
}
.emiCalcTitle {
    font-size: 28px;
    font-weight: 600;
}
.normalist {
    
}
.normalist li {
    padding-left: 20px;
    font-weight: 400;
    background-image: url("data:image/svg+xml,%3Csvg%20width='16'%20height='16'%20viewBox='0%200%2016%2016'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3E%3Cpath%20d='M6.82227%201.35193L7.60273%200.57146C7.9332%200.240991%208.46758%200.240991%208.79453%200.57146L15.6289%207.40232C15.9594%207.73279%2015.9594%208.26716%2015.6289%208.59412L8.79453%2015.4285C8.46406%2015.759%207.92969%2015.759%207.60273%2015.4285L6.82227%2014.648C6.48828%2014.314%206.49531%2013.7691%206.83633%2013.4422L11.0727%209.40623H0.96875C0.501172%209.40623%200.125%209.03006%200.125%208.56248V7.43748C0.125%206.9699%200.501172%206.59373%200.96875%206.59373H11.0727L6.83633%202.55779C6.4918%202.23083%206.48477%201.68591%206.82227%201.35193Z'%20fill='%23F7F3EE'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: 13px;
    background-position: left top 8px;
    line-height: 28px;
    margin-top: 20px;
}

.emiCalculatorForm {
    padding: 40px;
}
.emiCalcWrapper {
    border: 1px solid #457B9D;
    border-radius: 20px;
    overflow: hidden;
    background: #FAFAFA;
}
.emiCalculatorForm .form-control {
    border-radius: 30px;
    padding: 10px 15px;
    width: 60%;
}
.emiCalculatorForm .form-label{
    margin-bottom: 0px;
}
.emiCalculatorForm .form-control:focus {
    box-shadow: none;
    border-color: #CD2D3C;
}

.emiCalculatorForm .form-control:active {
    box-shadow: none;
    border-color: #CD2D3C;
}
.emiCalculatorForm .form-group {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.emiCalculatorForm .cssbuttons-io {
    margin-top: 30px;
    margin-bottom: 10px;
}
.EMICalcResult {
    margin-top: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
/* .EMICalcResult .cols {

}
.EMICalcResult .cols:first-child {

}
.EMICalcResult .cols:last-child {
    
} */
.EMICalcResult h5 {
    font-weight: 500;
    color: #1D3557;
    font-size: 15px;
}
.EMICalcResult h3 {
    font-weight: 700;
    color: #1D3557;
    font-size: 28px;
}

.EMICalculator {
    background: #fff;
}

.faqsWrapper .accordion-item:first-of-type .accordion-button {
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
}
/* .faqsWrapper .accordion-item:first-of-type {
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
} */
/* .faqsWrapper .accordion-item:last-of-type {
    border-bottom-right-radius: 20px;
    border-bottom-left-radius: 20px;
    border-bottom: 1px solid #404969;
} */
.faqsWrapper .accordion-item:last-of-type .accordion-button.collapsed {
    border-bottom-right-radius: 20px;
    border-bottom-left-radius: 20px;
}
.faqsWrapper .accordion-item:last-of-type .accordion-button {
    border-bottom-right-radius: 20px;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 0px;
    border-bottom-left-radius: 0px;
    border-bottom: 1px solid #404969;
    border: none;
}
.faqsWrapper .accordion-item {
    border-top: none;
    border-left: none;
    border-right: none;
    padding: 7px 26px;
    border-radius: 20px;
    margin-bottom: 14px;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}


.faqsWrapper .accordion-item  .accordion-button:focus{
    box-shadow: none;
}
.faqsWrapper .accordion-button::after {
    width: 30px;
    height: 30px;
    background-color: transparent;
    background-image: url("data:image/svg+xml,%3Csvg width='18' height='12' viewBox='0 0 18 12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2 2L9 9L16 2' stroke='%238B8181' stroke-width='3.5' stroke-linecap='round'/%3E%3C/svg%3E");
    background-size: 12px;
    background-position: center;
    border-radius: 100%;
}

.faqsWrapper .accordion-item .accordion-button {
    padding: 0px;
    color: #000;
    font-weight: 600;
    background: transparent;
    font-size: 18px;
    box-shadow: none;
}

.faqsWrapper .accordion-item .accordion-button.collapsed {
    background: #fff;
}
.faqsWrapper .accordion-item .accordion-body {
    font-size: 15px;
    font-weight: 400;
    text-align: justify;
    padding: 0px 0px 0px 0px;
}
.faqsWrapper .accordion-item .accordion-body p {
    color: #000;
    font-size: 15px;
    font-weight: 400;
    text-align: justify;
}
.faqsWrapper {
    margin-top: 10px;
}
.faqsSec {
    background: linear-gradient(359deg, #f7f7f7, #47206e00, #f7f7f7);
}
.faqsWrapper .accordion-item .accordion-body ul { list-style: disc!important; padding: 0px 0px 0px 40px!important; }
.faqsWrapper .accordion-item .accordion-body ul li { list-style: disc!important; margin: 10px 0px 0px 0px; }





.testimonaiCarousel .item {
    padding: 20px;
}
.testimonailCard {
    padding: 40px;
    background: #fff;
    border-radius: 15px;
    position: relative;
    border: 1px solid #BF1E2D;
}
.testimonailCard::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 8px;
    left: 8px;
    right: 0px;
    bottom: 0px;
    background: #BF1E2D;
    z-index: -1;
    border-radius: 15px;
}
/* .testimonailCard::after{
    position: absolute;
    content: '';
    background-image: url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%20448%20512'%3E%3Cpath%20d='M0%20216C0%20149.7%2053.7%2096%20120%2096h8c17.7%200%2032%2014.3%2032%2032s-14.3%2032-32%2032h-8c-30.9%200-56%2025.1-56%2056v8h64c35.3%200%2064%2028.7%2064%2064v64c0%2035.3-28.7%2064-64%2064H64c-35.3%200-64-28.7-64-64V320%20288%20216zm256%200c0-66.3%2053.7-120%20120-120h8c17.7%200%2032%2014.3%2032%2032s-14.3%2032-32%2032h-8c-30.9%200-56%2025.1-56%2056v8h64c35.3%200%2064%2028.7%2064%2064v64c0%2035.3-28.7%2064-64%2064H320c-35.3%200-64-28.7-64-64V320%20288%20216z'%20fill='%404969'/%3E%3C/svg%3E");
    width: 20px;
    height: 20px;
    background-repeat: no-repeat;
    top: 21px;

} */
.testiContent p {
    text-align: justify;
    font-size: 15px;
    color: #000000;
    padding-top: 27px;
    margin-bottom: 10px;
    font-weight: 500;
}
.testiContent h4 {
    font-size: 38px;
    font-weight: 600;
    color: #CD2D3C;
    font-family: 'Vollkorn';
    font-style: italic;
    text-transform: uppercase;
    margin-top: 20px;
}
.testiFooter {
    display: flex;
    align-items: center;
    gap: 10px;
}
.testiIcon {
    width: 83px;
    height: 83px;
    border-radius: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}
.testiIcon img {
    width: 100%;
    position: relative;
    object-fit: cover;
    height: 100%;
}
.testiAuthor {
    width: 75%;
    margin-left: 11px;
}
.testiAuthor h4 {
    font-size: 28px;
    font-weight: 500;
    color: #000000;
}
.testimonailWrapper {
    margin-top: 30px;
}

.testimonaiCarousel.owl-theme .owl-nav {
   
    display: flex
;
    margin: auto;
    width: fit-content;
    padding: 4px 4px;
    background: #BF1E2D;
    border-radius: 40px;
    margin-top: 30px;
}

.testimonaiCarousel.owl-carousel .owl-nav button.owl-prev {
    width: 50px;
    height: 50px;
    border-radius: 100%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #BF1E2D;
}
.testimonaiCarousel.owl-carousel .owl-nav button.owl-next {
    width: 50px;
    height: 50px;
    border-radius: 100%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #BF1E2D;

}
.testimonaiCarousel.owl-carousel .owl-nav button.owl-prev:hover, .testimonaiCarousel.owl-carousel .owl-nav button.owl-next:hover {
    color: #111;
}


.dinstructCard {
    box-shadow: rgb(149 157 165 / 41%) 0px 8px 24px;
    padding: 30px;
    border-radius: 30px;
    min-height: 470px;
}
.theicon {
    width: 88px;
    height: 88px;
    margin-bottom: 25px;
}
.theicon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.dinsturText h4 {
    font-size: 25px;
    font-weight: 700;
    color: #000;
    margin-bottom: 10px;

}
.dinsturText li {
    font-size: 22px;
    color: #000;
    margin-bottom: 10px;
    line-height: 30px;
    
}

.titleSection p {
    font-size: 25px;
    font-weight: 600;
    color: #000;
    margin-top: 10px;
}

.downloadInstructionsWrapper {
    margin-top: 30px;
}


.footer-wrp-main {
    background: #BF1E2D;
    background-size: cover;

    position: relative;
}

.footerMain {
    position: relative;
    padding: 70px 0px 0px;
}

#tsparticles {
    position: absolute;
    bottom: 0px;
    left: 0px;
    right: 0px;
    width: 100%;
    height: 100%;
    top: 0px;
    z-index: 1;
}

#tsparticles canvas {
    position: unset !important;
}

.ftr-link-bx a {
    display: block;
    color: #fff;
    margin: 5px 0px;
}

ul.address-sec li i {
    color: #fff0f4;
    font-size: 14px;
    margin-right: 8px;
}

ul.address-sec li a {
    display: flex;
    align-items: baseline;
}

.ftr-link-bx a.title-16 {
    font-size: 25px;
    font-weight: 600;
    color: #e5e5e5;
    margin-bottom: 10;
    position: relative;
    padding-bottom: 9px;
}

/* .ftr-link-bx a.title-16::after {
    position: absolute;
    content: '';
    width: 30%;
    height: 2px;
    background: #fff0f4;
    bottom: 0px;
    left: 0px;
} */

.footerContents {
    margin-top: 20px;
}

.footerContents p {
    margin-right: 5px;
    color: #fff;
    line-height: 28px;
}

.footer-links-wrp {
    padding-bottom: 40px;
    position: relative;
    z-index: 2;
}

.footer-btm-wrp {
    background: #BF1E2D;
    padding: 5px 0px;
    
}
.footer-btm-bx {
    border-top: 1px solid #fff;
    padding-top: 10px;
}
.footerLogo {
    text-align: center;
}
.footer-btm-wrp p {
    color: #ffff;
    margin-bottom: 0px;
}

.footerContents ul {
    display: flex;
    align-items: center;
}

.footerContents ul {
    color: #fff;
    gap: 10px;
}

.footerContents ul li {
    color: #fff;
}
/* 
.footerContents ul li:first-child {
    margin-right: 5px;
}

.footerContents ul li:nth-child(2) {
    margin-left: 5px;
} */

.footerContents ul li a {
    display: inline-block;
    border: none;
    width: 30px;
    height: 30px;
    text-align: center;
    border-radius: 100%;
    margin: 0px 0px 0px 0px;
    color: #404969;
    background: #fff;
}
ul.footerSocial i {
    line-height: 30px;
    color: #F82034;
    font-size: 15px;
}
.footerAddress {
    margin-top: 30px;
}
.copy-txt.text-center  {
    text-align: right!important;
}

/*harpreet css start*/
.paging { margin: 5px 0 10px 0; padding: 0px 0px 0px 20px; 
    background: rgba(255, 255, 255, 1.0); display: inline-block; border-radius: 50px; }
.paging li { display: inline-block; margin: 3px 15px 3px 0px; padding: 0; }
.paging li:first-child { margin: 3px 15px 3px 0px; }
.paging li i { margin-left: 15px; padding: 0; }
.paging li a { color: #000; }
.paging li i, .paging li span { color: #cd2d3c; }
.ludo-contentbox { border: 2px dashed #ff0000; border-radius: 15px; padding: 15px 15px 5px 15px;
    background: #fffcfc;
    background: linear-gradient(125deg, rgba(255, 252, 252, 1) 46%, rgb(255 240 241) 100%);
}
.whitebgbox { background: rgba(255, 255, 255, 0.8); border-radius: 15px; margin-top: 60px; padding: 15px; }
.whitebgbox .bannerBtns { margin-bottom: 0px; }
/*blog start*/
  .newsCard { padding: 10px; }
  .newsImgrelative { position: relative; }
  .newsImg { border-radius: 10px; overflow: hidden; position: relative; }
  .newsImg img { max-width: 100%; }
  .newsContent { margin-top: -15px;    
        position: absolute;
        bottom: 0;
        width: 100%;
        padding: 13px;
        z-index: 1;
        margin-left: auto;
        margin-right: auto;

        background: #000000;
        background: linear-gradient(2deg, rgb(0 0 0 / 75%) 0%, rgb(0 0 0 / 2%) 100%);
    }
    .newsDate ul { display: flex;justify-content: space-between; }
    .newsDate ul li { font-size: 15px; line-height: 24px; color: #0c0c0c; 
        display: flex; align-items: center; }
    .newsDate ul li i {
        color: #f7ab4a;
        font-size: 13px;
        margin-right: 7px;
    }
    .newsDate ul li p {
        font-size: 14px;
    }
    .newsImgrelative h4, .newsImgrelative p {
        color: #fff;
    }
    .newsImgrelative h4 {
        font-size: 14px; font-weight: 400;
        margin: 4px 0px 2px;
    }
    .blogdSidebar {
        background-color: #fff;
        border-radius: 8px;
        box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
        position: sticky;
        top: 60px;
    }
    .blogdSidebar h5.sidebarTitle {
        position: relative;
        padding: 16px 0px 8px;
        margin-left: 18px;
    }
    .blogdSidebar h5.sidebarTitle::after {
        position: absolute;
        content: '';
        width: 50px;
        height: 1px;
        background: #ccc;
        bottom: 0px;
        left: 0px;
    }
    .latest-post {
        display: flex;
        align-items: start;
        position: relative;
        border-bottom: 1px solid #ddd;
        padding: 10px;
    }
    .latest-post .thumbnail { margin-top: 10px; margin-right: 10px; max-width: 25%; }
    .latest-post .thumbnail img { max-width: 100%; border-radius: 5px; }
    .latest-post .post-content { flex-grow: 1; }
    .siderTitle, .siderTitle a { font-size: 13px; line-height: 1.5; font-weight: 400; }
    .blog-meta li { font-weight: 600; color: #bf1e2d; }
    .sidebarTitle { color: #bf1e2d; }
    .blog-detimg img { border-radius: 10px; max-width: 100%; }
    .blogdet .newsDate { margin: 10px; }
    .newsDate ul li p { font-size: 16px; }
/* blog end*/

.contactouter { background: #f5f6f0; }
.dottedbg { padding: 50px 0px; background: url(../img/bg.png) center center no-repeat; }
.contact__area-left {
/*    background: #014a4a;*/
    background: #CD050D;
    background: radial-gradient(circle, rgba(205, 5, 13, 1) 0%, rgb(193 52 58) 100%);
    padding: 40px;
    border-radius: 15px;
}
.contact__area-left .subtitle {
    background: #ffffff;
    color: #1e1e1e;
    font-size: 16px;
    font-weight: 500;
    line-height: 28px;
    margin-bottom: 20px;
    border-radius: 50px;
    display: inline-flex;
    padding: 2px 22px;
    border: 1px solid #fff;
    position: relative;
    align-items: center;
    gap: 10px;
}
.subtitle::before {
    content: "";
    width: 7px;
    height: 7px;
    background: #1e1e1e;
    display: block;
    border-radius: 50%;
}
.contact__area-left h2 {
    font-size: 54px;
    line-height: 64px;
    padding: 0;
    margin: 0;
    color: var(--text-heading-color);
    font-family: var(--heading-font);
    font-weight: 700;
}
.contact__area-left input[type=text], .contact__area-left input[type=file], 
.contact__area-left input[type=email], .contact__area-left input[type=url], 
.contact__area-left input[type=password], .contact__area-left input[type=search], 
.contact__area-left input[type=number], .contact__area-left input[type=tel], 
.contact__area-left input[type=range], .contact__area-left input[type=date], 
.contact__area-left input[type=month], .contact__area-left input[type=week], 
.contact__area-left input[type=time], .contact__area-left input[type=datetime], 
.contact__area-left input[type=datetime-local], .contact__area-left input[type=color], 
.contact__area-left textarea { 
    color: #000000;
    border-radius: 6px;
    width: 100%;
    height: 48px;
    background: #ffffff;
    border: 1px solid #edeee7;
    padding: 0 15px;
    font-size: 16px;
    line-height: 26px;
 }
.contact__area-left textarea {
    width: 100%;
    height: 120px;
    padding-top: 15px;
}
.contact__area-left .default_button { display: inline-flex; align-items: center; position: relative;
    z-index: 3; justify-content: center;
    text-align: center;
    overflow: hidden;
    transition: 0.4s;
    font-size: 16px;
    font-weight: 600;
    line-height: 26px;
    color: #222222;
    background: #f7d478;
    border: 0;
    border-radius: 50px 50px 50px 50px;
    padding: 8px 8px 8px 35px;
    gap: 25px; 
}
.contact__area-left .default_button i {
    position: relative; z-index: 2; transition: 0.4s; color: #222222;
    background: #ffffff; font-size: 26px; width: 42px; height: 42px;
    display: inline-flex; align-items: center; justify-content: center; border-radius: 50px 50px 50px 50px;
}
.contact__area-left .default_button:hover {
    color: #ffffff;
    background: #871d21;
}
.contact__area-left .mt-15 { margin-top: 15px; }
.our__benefits-left-title .subtitle {
    background: #ffffff; color: #1e1e1e;
    font-size: 16px;
    font-weight: 500;
    line-height: 28px;
    margin-bottom: 20px;
    border-radius: 50px;
    display: inline-flex;
    padding: 2px 22px;
    border: 1px solid #e6e7e1;
    position: relative;
    align-items: center;
    gap: 10px;
}
.contact__area-left h2 {
    font-family: 'Vollkorn';
    font-size: 40px; line-height: 1.5; font-style: italic;
    padding: 0;
    margin: 0;
    color: #222222;
    font-weight: 700;
}
.contactbdr {
    border-bottom: 1px dashed #000;
    border-radius: 0;
    padding-bottom: 20px !important;
}
.contact__info-item i {
    min-width: 90px;
    height: 90px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #ffffff;
    color: #c71a21;
    font-size: 50px;
}
.contact__info-item span {
    display: block;
    padding-top: 10px;
}
.contact__info-item h5 {
    font-weight: 600;
    font-size: 22px;
    line-height: 32px;
    padding: 0;
    margin: 0;
    color: #222222;
}
.contact__info-item h5 a { font-size: 22px; }


.al-center {
    align-items: center;
}
.ml-60 {
    margin-left: 60px;
}
.our__benefits-left-title h2 { 
    font-family: 'Vollkorn';    
    font-size: 40px; line-height: 1.5; font-style: italic;
    padding: 0;
    margin: 0;
     font-weight: 700;
}


/*harpreet css end*/


.termsprivacyContent ul ul {
    padding-left: 19px;
}
.termsprivacyContent > ul {
    padding-left: 19px;
    margin-bottom: 25px;
}
.termsprivacyContent > ul > li {
    margin-bottom: 12px;
}
.termsprivacyContent > ul > li > ul > li {
    margin-top: 6px;
}
.termsprivacyContent h1, .termsprivacyContent h2, .termsprivacyContent h3, .termsprivacyContent h4, .termsprivacyContent h5, .termsprivacyContent h6 {
    margin-bottom: 10px;
    margin-top: 10px;
}
.termsprivacyContent p {
    margin-bottom: 12px;
}



/*  */
.ludo-contentbox.box-border-none {
    border: none;
    padding: 0px;
    margin-bottom: 20px;
    background: transparent;
}

.referearnFeature .featureCard {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 7px;
}

.referearnFeature .featureIcon {
    width: 56px;
    margin: 0px;
}
.referearnFeature .featureContent h3 {
    font-size: 24px;
    font-weight: 700;
    color: #BF1E2D;
    line-height: 38px;
}
.referearnFeature .featureContent {
    margin-top: 0px;
    text-align: left;
}
.referearnContainer {
    padding-left: 50px;
}

.testimonialinner .testimonailCard  {
    margin-bottom: 20px;
}

.faqsinner .faqsWrapper .accordion-item {
    border: 1px solid #ebebeb;
}

.rngImg {
    width: 100%;
}
.rngImg img {
    width: 100%;
}

.fairplayImg {
        width: 100%;
    border-radius: 10px;
    overflow: hidden;
}
.fairplayImg img {
    width: 100%;
}

.testimonailCard {
    min-height: 380px;
}


.content h1, .content h2, .content h3, .content h4, .content h5, .content h6 {
    margin-top: 20px;
    margin-bottom: 10px;
}
.blog-detimg img {
    width: 100%;
}

.contact__area-left .default_button {
    background: #fff;
}
.contact__area-left .default_button i {
        color: #ffffff;
    background: #c81a21;
}

.onlinereviews .titleSection p { font-size: 17px; }
.btnn {
    position: relative;
    font-family: inherit;
    font-weight: 500; padding: 8px 25px; margin-top: 20px; line-height: 1.5;
    font-size: 18px;
    border-radius: 40px;
    cursor: pointer;
    border: none;
    background: linear-gradient(to right, #d10031, #d10000);
    color: ghostwhite;
    overflow: hidden;
    display: inline-block;
}
.btnn:hover { background: linear-gradient(to right, #d10031, #a10a18);  }
.reverse {
    bottom: 160px; right: 100px;
    margin-bottom: 32px;
    position: absolute; z-index: 2;
}
@media screen and (min-width:1400px)  {
.reverse { bottom: 180px; }
}

.downloadbtn { position: relative; display: block; font-weight: 500; font-size: 18px; color: #fff;
    padding: 8px 25px; margin-top: 20px; line-height: 1.5;
    border-radius: 40px; cursor: pointer; border: none; background: #d10031; }
.downloadbtn:hover { background:#000; }
.downloadbtn img { max-height: 15px; display: inline-block; width: auto; }
.bganimation { animation-name: bgchange; animation-duration: 4s; animation-delay: 2s; animation-iteration-count: infinite; }
@keyframes bgchange {
  0%   {background-color: #d10031; left:0px; }
  25%  {background-color: #000; left: -20px; }
  50%  {background-color: #0969c5; left: 20px; box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px; }
  75%  {background-color: #d10031; left:0px;  }
  100% {background-color: #000; left:0px; top:0px; box-shadow: rgba(0, 0, 0, 0.25) 0px 54px 55px, rgba(0, 0, 0, 0.12) 0px -12px 30px, rgba(0, 0, 0, 0.12) 0px 4px 6px, rgba(0, 0, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px; }
}





/*responsive start*/
@media screen and (max-width:1700px) and (min-width:1500px) {
    .pb-50 {
        padding-bottom: 70px;
    }
    .pt-50 {
        padding-top: 70px;
    }
    .loanOfferContent {
        min-height: 220px;
    }
}


@media screen and (max-width:1499px) and (min-width:1200px) {
   
    .loanOfferContent {
        min-height: 220px;
    }
    .titleSection.light p.fontLarge {
        font-size: 21px;
        font-weight: 400;
    }
    .testimonailCard {
        padding: 20px;
    }
    .testiContent p {
        text-align: left;
    }
    .testiContent h4 {
        font-size: 28px;
    }
    .dinsturText li {
        font-size: 20px;
    }
}
@media screen and (max-width:1199px) and (min-width:1000px) {
    .logoSection {
        width: 120px;
    }
    .navSection .navList {
        gap: 14px;
    }
    .navTalkButton .cssbuttons-io span {
        padding: 8px 30px;
    }
    .bannerContent h2 {
        font-size: 35px;
    }
    .bannerContent p {
        margin-top: 20px;
        margin-bottom: 20px;
        line-height: 28px;
    }
    .cssbuttons-io span {
        padding: 10px 30px;
    }
    .playStoreDownloadBtn {
        width: 162px;
    }
    .bannerImg img {
        border-radius: 20px;
    }
    .partnersCarousel .item {
        padding: 20px 8px;
    }
    .sectionTitleLeft h2 {
        font-size: 32px;
    }
    .aboutUsinfo p {
        margin-top: 10px;
        margin-bottom: 20px;
    }
    .loanOfferImg {
        height: 154px;
    }
    .loanOfferContent p {
        line-height: 24px;
    }
    .loanOfferContent {
        min-height: 280px;
    }
    .newsCardContent h5 {
        font-size: 16px;
    }
    .newsCard {
        padding: 12px;
    }
    .newsCardIco {
        width: 65px;
        height: 65px;
    } 
    .newsCardContent p {
        margin-top: 8px;
        line-height: 18px;
        font-size: 12px;
    }
    .newVideoPlayWrap {
        height: 310px;
    }
    .emiCalcContent {
        padding: 30px;
    }
}
@media screen and (max-width:999px) and (min-width:769px) {
    .logoSection {
        width: 120px;
    }
    .navSection .navList {
        gap: 10px;
    }
    .navSection .navList>li>a  {
        padding: 16px 2px;
        font-size: 11px;
    }
    .navTalkButton .cssbuttons-io span {
        padding: 3px 18px;
        font-size: 12px;
    }
    .navTalkButton .cssbuttons-io svg {
        margin-right: 0px;
        margin-left: 7px;
        width: 12px;
        height: 12px;
    }
    .bannerContent h2 {
        font-size: 25px;
    }
    .bannerContent p {
        margin-top: 10px;
        margin-bottom: 10px;
        line-height: 21px;
    }
    p {
        line-height: 22px;
        font-size: 13px;
    }
    .cssbuttons-io span {
        padding: 4px 18px;
        font-size: 12px;
    }
    .playStoreDownloadBtn {
        width: 122px;
    }
    .bannerImg img {
        border-radius: 20px;
    }
    .partnersCarousel .item {
        padding: 20px 8px;
    }
    .sectionTitleLeft h2 {
        font-size: 22px;
    }
    .aboutUsinfo p {
        margin-top: 10px;
        margin-bottom: 20px;
    }
    .aboutUsinfo {
        margin-top: 10px;
    }
    .loanOfferImg {
        height: 154px;
    }
    .loanOfferContent p {
        line-height: 24px;
    }
    .loanOfferContent {
        min-height: 200px;
    }
    .newsCardContent h5 {
        font-size: 16px;
    }
    .newsCard {
        padding: 12px;
        min-height: 112px;
    }
    .newsCardIco {
        width: 65px;
        height: 65px;
    } 
    .newsCardContent p {
        margin-top: 8px;
        line-height: 18px;
        font-size: 12px;
    }
    .newVideoPlayWrap {
        height: 310px;
    }
    .emiCalcContent {
        padding: 30px;
    }
    .whyChooseContent h4 {
        font-size: 14px;
    }
    .whyChooseContent p {
        color: #404969;
        font-weight: 400;
        font-size: 12px;
    }
    .emiCalculatorForm .form-group {
        flex-direction: column;
        align-items: flex-start;;
    }
    .emiCalculatorForm .form-control {
        width: 100%;
    }
    .emiCalculatorForm {
        padding: 25px;
    }
    .EMICalcResult h5 {
        font-size: 13px;
        margin-bottom: 6px;
    }
    .EMICalcResult h3{
        font-size: 18px;
    }
}
@media screen and (max-width:767px) and (min-width:600px)  {
    .featureContent h3 {
        font-size: 28px;
    }
    .bannerContent h2 {
        text-align: center;
        font-size: 40px;
    }
    .bannerContent p {
        margin-top: 12px;
        margin-bottom: 40px;
        line-height: 28px;
        text-align: center;
    }
    .bannerBtns {
        display: flex;
        align-items: center;
        gap: 20px;
        justify-content: center;
        margin-bottom: 50px;
    }
    .partnersCarousel {
        margin-top: 20px;
    }
    .sectionTitleLeft h2 {
        font-size: 32px;
    }
    .sectionTitleLeft h2 {
        font-size: 32px;
    }
    
}
@media screen and (max-width:600px) and (min-width:200px)  {
    .featureContent h3 {
        font-size: 28px;
    }
    .bannerContent h2 {
        text-align: center;
        font-size: 40px;
    }
    .bannerContent p {
        margin-top: 12px;
        margin-bottom: 40px;
        line-height: 28px;
        text-align: center;
    }
    .bannerBtns {
        display: flex;
        align-items: center;
        gap: 20px;
        justify-content: center;
        margin-bottom: 50px;
    }
    .partnersCarousel {
        margin-top: 20px;
    }
    .sectionTitleLeft h2 {
        font-size: 32px;
    }
    .sectionTitleLeft h2 {
        font-size: 22px;
    }
    p {
        font-size: 13px;
        line-height: 21px;
    }
    .loanOfferImg {
        height: 130px;
    }
    .loanOfferContent h4 {
        font-size: 15px;
    }
    .loanOfferContent {
        padding: 14px;
    }
    .loanOfferImg {
        height: 120px!important;
    }
    .newsCardIco {
        width: 50px;
        height: 50px;
    }
    .playStoreDownloadBtn {
        width: 116px;
    }
    .newsCardContent h5 {
        font-size: 15px;
    }
    .cssbuttons-io span {
        padding: 3px 20px;
    }
    .emiCalcContent {
        background: #404969;
        padding: 20px;
    }
    .emiCalculatorForm {
        padding: 20px;
    }
    .EMICalcResult h5 {
        font-size: 12px;
    }
    .EMICalcResult h3 {
        font-size: 16px;
        margin-top: 7px;
    }
    .EMICalcResult .cols {
        text-align: center;
    }
    .faqsWrapper .accordion-item .accordion-button {
        font-size: 13px;
    }
    .faqsWrapper .accordion-item .accordion-body p {
        font-size: 12px;
    }
    .cssbuttons-io {
        font-size: 12px;
    }
    .bannerImg img {
        border-radius: 15px;
    }
    .bannerImgWrapper .col-md-6 {
        width: 50%;
        padding: 5px;
    }
    .partnersCarousel .item {
        padding: 0px;
    }
    .titleSection h4 {
        font-size: 16px;
    }
    .titleSection {
        padding-bottom: 8px;
    }
    .featureCard {
        position: relative;
        padding: 11px;
    }
    .featureContent h3 {
        font-size: 19px;
    }
    .featureWrap .col-md-4 {
        width: 33%;
        padding: 0px;
    }
    .featureContent h5 {
        font-size: 11px;
    }
}



@media screen and (max-width:767px)  {
    .rngImg {
        width: 50%;
        margin: auto;
        margin-bottom: 50px;
    }
    .referearnContainer {
        padding-left: 0px;
    }
    .aboutUsContent {
        padding-right: 0px;
    }
    .togglers {
        display: block;
    }
    
    .navSection {
        display: none;
        position: fixed;
        top: 90px;
        left: 0px;
        right: 0px;
        width: 100%;
        z-index: 3;
    }
    .headerSection.sticky .navSection{
        top: 70px;
    }
    .navSection .navList {
        flex-direction: column;
    }
    .navSection .navList>li>a {
        padding: 8px 13px;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    .navSection .navList>li>a:hover:after, .navSection .navList>li>a.active:after {
        width: 100%;
        height: 100%;
        border-radius: 4px;
        bottom: 0px;
        z-index: 1;
        background-color: #fff7f9;
    }
    .navSection .navList>li>a span {
        position: relative;
        z-index: 2;
    }
    .navSection .navList>li>a i{
        position: relative;
        z-index: 2;
    }
    .headerSection.sticky .navSection .navList>li>a {
        padding: 8px 13px;
    }
    .headerSection.sticky .navSection .navList>li>a::after {
        bottom: 0px;
    }
    .navSection .navList {
        gap: 0px;
        flex-direction: column;
        text-align: left;
        align-items: initial;
        padding: 0px 21px;
        background: #fff;
        min-height: 100vh;
    }
    .navTalkButton {
        position: fixed;
        bottom: 10px;
        left: 10px;
    }
    .navTalkButton .cssbuttons-io span {
        padding: 4px 17px;
        font-weight: 600;
        font-size: 12px;
    }
    .navTalkButton .cssbuttons-io svg {
        margin-right: 0px;
        margin-left: 8px;
        width: 11px;
        height: 11px;
    }
    .headerSection {
        padding: 20px 0px;
    }
    .bannerContent {
        width: 100%;
    }
    .bannerContent h2 {
        text-align: center;
        font-size: 25px;
    }
    .bannerContent p {
        margin-top: 12px;
        margin-bottom: 40px;
        line-height: 22px;
        text-align: center;
    }
    .bannerBtns {
        display: flex;
        align-items: center;
        gap: 20px;
        justify-content: center;
        margin-bottom: 50px;
    }
    .bannerImgWrapper .col-md-6 {
        width: 50%;
    }
    .titleSection {
        width: 90%;
    }
    .partnersCarousel {
        margin-top: 20px;
    }
    .featureWrap .col-md-4 {
        width: 33%;
    }
    .sectionTitleLeft {
        text-align: center;
    }
    .aboutUsinfo p {
        text-align: center;
    }
    .aboutUsbtn {
        text-align: center;
        margin-bottom: 40px;
    }
    .headerSection.sticky {
        padding: 10px 0px;
    }
    .loanOfferImg {
        height: 264px;
    }
    .loanOfferContent {
        min-height: auto;
    }
    .newVideoPlayWrap {
        height: 260px;
    }
    .whychooseCard {
        border: 1px solid #404969;
        background: #F3F3F3;
    }
    .emiCalcWrapper {
        flex-direction: column;
    }
    .emiCalculatorForm .form-group {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    .emiCalculatorForm .form-control {
        width: 100%;
    }
    .reverse { position: relative; bottom: auto; right: auto; width: 60%; margin: 20px auto; }


}
@media screen and (max-width:500px)  {
    .bannerContent h2 {
        text-align: center;
        font-size: 31px;
    }
    .bannerContent .featureWrap {
        width: 100%;
    }
    .bannerContent .featureIcon {
        width: 46px;
        height: 46px;
    }
    .bannerContent .featureContent h3 {
        font-size: 19px;
        font-weight: 700;
        color: #BF1E2D;
        line-height: 38px;
    }
    .bannerContent .featureContent h5 {
        font-size: 13px;
    }
    .playStoreDownloadBtn.appstore {
        width: 110px;
    }
    .titleSection h4 {
        font-size: 26px;
    }
    .paymentwrapper .col-md-3 {
        width: 50%;
    }
    .featureWrap.paymentwrapper .featureIcon {
        height: auto;
    }
    .featureWrap.paymentwrapper .featureIcon img {
        width: 100%;
        height: 34px;
        object-fit: contain;
    }
    .paymentwrapper .featureContent h5 {
        color: #3F3F3F;
        font-size: 18px;
        font-weight: 400;
    }
    .titleSection.light p.fontLarge {
        font-size: 13px;
        margin-top: 13px;
    }
    .onlinereviews::after {
        height: 217px;
    }
    .reviewInfo {
        margin-bottom: 20px;
    }
    .testimonailCard {
        padding: 20px;
    }
    .testiContent p {
        text-align: left;
    }
    .testiContent h4 {
        font-size: 21px;
    }
    .testiAutho {
        width: 60%;
    }
    .titleSection p {
        font-size: 16px;
        line-height: normal;
    }
    .dinstructCard {
        padding: 20px;
    }
    .dinsturText li {
        font-size: 16px;
        line-height: 24px;
    }
    .faqsWrapper .accordion-item {
        border-radius: 10px;
        padding: 13px;
    }
    .ftr-link-bx {
        margin-bottom: 30px;
    }
    .footerContents ul {
        justify-content: center;
        margin-bottom: 20px;
    }
    .footerLogo {
        margin-bottom: 20px;
    }
    .copy-txt.text-center {
        text-align: center!important;
    }

    .contact__area-left { padding: 10px; margin-top: 20px; }
    .contact__area-left h2, .our__benefits-left-title h2 { font-size: 30px; line-height: 1.2; }
    .contact__area-left input[type=text], 
    .contact__area-left input[type=file], 
    .contact__area-left input[type=email], 
    .contact__area-left input[type=url], 
    .contact__area-left input[type=password], 
    .contact__area-left input[type=search], 
    .contact__area-left input[type=number], 
    .contact__area-left input[type=tel], 
    .contact__area-left input[type=range], 
    .contact__area-left input[type=date], 
    .contact__area-left input[type=month], 
    .contact__area-left input[type=week], 
    .contact__area-left input[type=time], 
    .contact__area-left input[type=datetime], 
    .contact__area-left input[type=datetime-local], 
    .contact__area-left input[type=color], 
    .contact__area-left textarea { height: 36px; padding: 0 8px; font-size: 13px; }
    .our__benefits-left.xl-ml-0 { margin-left: 0px; }
    .contact__info-item i { width: 55px; height: 55px; font-size: 25px; margin: 15px 15px 0px 0px; }
    .reviewInfo h2 { font-size: 55px; }
    .starRating li img { max-height: 20px; }
    .reviewInfo h5 { font-size: 18px; margin-top: 10px; }
    .reviewbars ul li span { font-size: 14px; font-weight: 600; }
    .reviewbars .skill-wrapper .progress { height: 14px; }
    .reviewbars ul { gap: 2px; padding-left: 0px; }
    .reviewCard { padding: 10px 20px; border-radius: 15px; margin-top: 20px; margin-bottom: 20px; }
    .titleSection { width: 100%; }
    .titlesstyled h4::before, .titlesstyled h4::after { width: 50px; }
    .testiAuthor h4 { font-size: 18px; }
    .testimonaiCarousel .item { padding: 0px 10px 20px 0px; }
    .testiAuthor .starRating li img { width: 15px; height: 15px; }
    .dinstructCard { margin-bottom: 20px; }
    .footerMain { padding: 30px 0px 0px; }
    .bannerContent { text-align: center!important; }
    .onlinereviews { padding: 0px 20px 40px 20px; }
}