@import url('https://fonts.googleapis.com/css2?family=Montserrat+Alternates:wght@100;200;300;400;500;600;700;800&family=Montserrat:wght@100;200;300;400;500;600;700;800&display=swap');
*{ margin:0; padding:0; line-height: normal;}
html, body{ font-family: 'Montserrat', sans-serif; color: var(--bs-white);}
:root{ --dark-green:#62d33e; --dark-blue:#171d76; --pink: #cb308b; --green:#abc53f; --voliet:#83368a; --blue:#74c7d2; --yellow:#f2d835; --Montserrrat-alternates:'Montserrat Alternates', sans-serif; --Montserrrat:'Montserrat', sans-serif;}
ul{ list-style: none; padding: 0;}
.unorderList-Alfa{ list-style:lower-alpha; padding-inline-start: 30px; padding-block-start: 10px; display: flex; flex-flow: column; gap:10px}
a{ text-decoration: none;}
.order-list{ margin-block: 20px; padding-inline-start: 30px; display: flex; flex-flow: column; gap: 16px;}
img{ width:auto; max-width: 100%; vertical-align: bottom;}
h1, h2, h3, h4, h5, h6{font-family: var(--Montserrrat-alternates); color: var(--bs-white);}
.unorderList{ list-style: disc; padding-inline-start: 20px; display:inline-flex; flex-flow: column; gap: 16px; font-size: 15px; line-height: 22px;font-family: var(--Montserrrat-alternates);font-weight: 700; margin-block-start: 40px; text-transform: uppercase; }
.mainHeading { font-size: 54px; line-height: 68px; font-weight: 700; margin-block-end:36px;}
.subheading{ font-size: 41px; margin-bottom: 20px; font-weight: 700;}
.subheading span{ display: block;}
.thirdHeading{ font-size: 30px; font-weight: 700; margin-bottom: 10px;}
.thirdHeading{ font-size: 24px; font-weight: 700; margin-bottom: 10px;}
.smallHeading{font-family: 'larsseitlight'; font-size: 24px; text-transform: uppercase; margin-bottom: 20px;}
.textGreen{ color: var(--dark-green);}
.mb-lg-6{ margin-block-end: 60px;}
.mb-sm-6{ margin-block-end: 50px;}
.mb-6{ margin-block-end: 40px;} 
.container{max-width: 1170px;}
main{ overflow-x:hidden ;}
nav{ position: fixed !important; top:0; left:0; width:100%; padding-block: 16px; background-color:rgb(3 8 73 / 40%);z-index: 99;}
.LightNav.navbar-light .navbar-nav .nav-link{ color:var(--bs-white); font-size: 16px; font-weight: 600;}
.sticky nav{background-color:rgb(3 8 73); box-shadow: 0 0 10px #00000056;}

/* banner Section Design */
.bannerInfo{ background: url(../images/banner-background.png) no-repeat top left; background-size: cover; padding-block-start: 240px; position: relative; }
.bannerInfo::before{ content: ''; top:0; left:0; width: 100%; bottom: 0; height: 100%; background: url(../images/road.png) no-repeat;    background-position: bottom left;    background-size: 100% 50%; position: absolute; z-index: 1;}
.bannerInfo::after{content: '';  position: absolute;    bottom: 10%;    right: 0;    left: 0;    background: url(../images/city.png) no-repeat center;    width: 600px;    height: 360px;     display: inline-block;    margin: 0 auto; z-index: 0;}
.bannerInfo .container{ position: relative; z-index: 2;}
.overLapBottom{ position: relative;}
.overLapBottom img{margin-block-end:-90px;}
.carImg{ margin-block-start: 70px;}
.carImg img { scale:1; translate: 0px 80px; }


/* About section Design */
.aboutUs{ padding-block:120px;  background:  linear-gradient(to bottom, var(--dark-blue)60%, #61d33e74), url(../images/net.png) no-repeat bottom left;}
.aboutUs p{ font-size: 23px; line-height: 36px;font-family: 'larsseitlight';}
.animateObject {
    display: flex;
    flex-flow: column;
    position: absolute;
    right: 0;
    top:5%;
    bottom:0%;
    width: fit-content;
    gap:5%;
}
.animateObject.left-align{ 
    left: 0; 
    right: 0;
}
.animateObject.left-align img:nth-child(1), .animateObject.left-align img:nth-child(3){ 
    left: -30%;
    margin-bottom: 30px;
}
.animateObject img {
    width:80%;
    max-width: fit-content;
    position: relative; 
    animation-name: move ;
    animation-duration: 10s;
    animation-timing-function: linear;
    animation-delay: 0s;
    animation-iteration-count: infinite;
    animation-direction:alternate; 
    transition: all 10s linear;
    -webkit-transition: all 10s linear;
    -moz-transition: all 10s linear;
    }
.animateObject img.stick{
    animation-name: stickBx ;
}
.animateObject img.dice{
    animation-name: diceBx ;
    animation-duration: 5s;
    transition: all 1s linear;
    -webkit-transition: all 1s linear;
    -moz-transition: all 1s linear;
}
/* stick animation */
@keyframes stickBx{
    0%{rotate:0deg; }
    100%{rotate:30deg;}
}
@-moz-keyframes stickBx{
    0%{rotate:0deg; }
    100%{rotate:30deg;}
}
@-webkit-keyframes stickBx{
    0%{rotate:0deg; }
    100%{rotate:30deg;}
}

/* dice animation */
@keyframes diceBx{
    0%{translate:0 0; }
    50%{translate:0 50px;}
    75%{translate:0 0px;}
    100%{translate:0 30px;}
}
@-moz-keyframes diceBx{
    0%{translate:0 0; }
    50%{translate:0 50px;}
    75%{translate:0 0px;}
    100%{translate:0 30px;}
}
@-webkit-keyframes diceBx{
    0%{translate:0 0; }
    50%{translate:0 50px;}
    75%{translate:0 0px;}
    100%{translate:0 30px;}
}
/* boll animation */
@keyframes move{
    0%{translate:0px 0px; }
    100%{translate:50px 30px;}
}
@-moz-keyframes move{
    0%{translate:0px 0px; }
    100%{translate:50px 30px;}
}
@-webkit-keyframes move{
    0%{translate:0px 0px; }
    100%{translate:50px 30px;}
}

/* workInfo css Design */
.workInfo{ padding-block-start:80px; }
.workListBox{ gap: 50px 0; margin-block-start: 50px;}
.workListBox .workList{ transition: all 0.5s linear; -moz-transition: all 0.5s linear; -webkit-transition: all 0.5s linear;}
.workListBox .workList:hover{transition: all 0.5s linear; -moz-transition: all 0.5s linear; -webkit-transition: all 0.5s linear; translate:0 -10px;}
.workList.text-end img{margin-right: -10px;  margin-left: 0;}
.workList img{margin-bottom: -20px; margin-left: -10px; height: 100px;}
.workList .thirdHeading{margin-bottom:10px;}
.workList p{font-size: 15px; line-height: 22px; font-family:'larsseitlight'; }

.backObject{  position: relative;}
.backObject::after{ content: ''; height: 500px; width: 500px;background:rgba(255,255,255,0.2); border-radius: 50%; -webkit-border-radius: 50%; -moz-border-radius: 50%; z-index: 0; position: absolute;  margin: auto;  top:20%; bottom: 0;}
.backObject img{ position: relative; z-index: 1;transition: all 0.5s linear; -moz-transition: all 0.5s linear; -webkit-transition: all 0.5s linear;}
.backObject:hover img{transition: all 0.5s linear; -moz-transition: all 0.5s linear; -webkit-transition: all 0.5s linear; translate:0 -20px}
/* featureBox section css design */
.featureSection{ padding-block: 0; background: rgb(23,29,118); background: linear-gradient(180deg, var(--dark-blue)84%, #4ca82f74), url(../images/feature-bg.png) no-repeat bottom -9% left; }
.featureBox, .whyChoose{ padding-block: 90px;} 
.featureBox .featureList{ margin-block-start: 60px;} 

/* why choose design  */
.whyChoose p, .featureSection p{ font-size: 18px; line-height: 27px; font-family: 'larsseitregular';}
.chooseTurm{ padding-inline:50px; margin-block-start: 50px;}
.chooseTurmBox{ padding: 30px; background: url(../images/box1.png) no-repeat top left; background-size: cover; background-clip: border-box; position: relative; margin-inline: 10px; transition: all 0.5s linear; -moz-transition: all 0.5s linear; -webkit-transition: all 0.5s linear;}
.chooseTurmBox:hover{ background-size: 100% 100% !important;transition: all 0.5s linear; -moz-transition: all 0.5s linear; -webkit-transition: all 0.5s linear;}
.chooseTurmBox.two{background: url(../images/box2.png) no-repeat top left;}
.chooseTurmBox.three{background: url(../images/box3.png) no-repeat top left;}
.chooseTurmBox::before{ content: ''; position: absolute; top:0; left:0; width: 100%; height: 100%; background: rgb(23,29,118); background: linear-gradient(74deg, rgba(23,29,118,1) 30%, rgba(98,211,62,1) 100%); opacity: 0.8; z-index: 0;}
.chooseTurmBox::after{ content: ''; position: absolute;  bottom: -32px;  left: 0;  right: 0;  width: 100%;  border: 16px solid var(--dark-green);  border-right-color: transparent;    border-bottom-color: transparent;    border-left-width: 0px;}
.chooseTurmBox h4, .chooseTurmBox p{ position: relative; z-index: 1;}
.chooseTurmBox p{ font-size: 16px; font-family: var(--Montserrrat-alternates); font-weight: 400; line-height: normal; margin-block-end: 5px;}

/* roadMap Design css */
.roadMap{ background: var(--dark-blue) url(../images/map.png) no-repeat top center; padding-block-end:400px;}

.roadMapBox{ margin-block-start: 60px; position: relative;}
.roadMapBox:after{content: '';position: absolute;width: 100%;height: 150px;background: url(../images/road-track.svg) no-repeat center;top: calc(50% - 75px);left: 0;right: 0px;background-size: 90% 100%;}
.roadMapList{display: flex;flex-flow: row nowrap;gap:40px 16px;min-height: 800px;}
.roadMapList li.opposite{align-self: flex-end; }
.roadMapList li{position: relative;max-width: 200px; display: flex;  flex-flow: column;  align-items: center;  gap: 80px 0; transition: all 0.5s linear; -moz-transition: all 0.5s linear; -webkit-transition: all 0.5s linear;}
.discreptionBox{padding: 18px;border-radius: 10px;-moz-border-radius: 10px;-webkit-border-radius: 10px;color: var(--bs-white);position: relative;box-shadow: 0px 4px 20px #03084f; }
.discreptionBox .stepName{background-color: var(--bs-white);color: currentColor;font-size: 16px;text-transform: uppercase;font-family: 'larsseitmedium';padding: 5px 10px;width: 95%;border-bottom-left-radius: 10px;border-bottom-right-radius: 10px;position: relative;text-align: center;margin: 0 auto;translate: 0 -28px;border-top-left-radius: 3px;border-top-right-radius: 3px;}
.discreptionBox .stepName::after, .discreptionBox .stepName::before{content: '';position: absolute;height: 10px;width: 10px;background-color: currentColor;top:0;border: 3px solid var(--bs-white);border-bottom: 0;}
.discreptionBox .stepName::after{left: -8.5px;border-top-left-radius: 5px;border-top-right-radius: 4px;}
.discreptionBox .stepName::before{right: -8.5px;border-top-left-radius: 4px;border-top-right-radius: 5px;}
.discreptionBox.pink{background-color: var(--pink); color: var(--pink); }
.discreptionBox.blue{background-color: var(--blue); color: var(--blue); }
.discreptionBox.green{background-color: var(--green); color: var(--green); }
.discreptionBox.yellow{background-color: var(--yellow); color: var(--yellow); }
.discreptionBox.voliet{background-color: var(--voliet); color: var(--voliet); }
.discreptionBox p{font-size: 11px;line-height: normal;color: var(--bs-white);margin:-10px 0px 0;text-align: center;}
.roadMapList li .iconBox{ height: 120px; width: 120px; border-radius: 50%; -moz-border-radius: 50%; -webkit-border-radius: 50%; background-color: var(--bs-white); display: flex; align-items: center; justify-content: center; box-shadow: 0px 4px 20px #03084f;}
.discreptionBox::after,.discreptionBox::before{ content: ''; position: absolute; bottom: 0;}
.discreptionBox::before{width: 20px;height: 20px;border: 20px solid currentColor;border-right-color: transparent;border-bottom-color: transparent;border-left-color: transparent;bottom: -40px;left: calc(50% - 20px);}
.discreptionBox::after{ height: 80px; width: 1px;  border: 1px dashed currentColor;   top: 100%;   left: calc(50% - .5px);}  
.discreptionBox .stepName span{ display: inline-block;}
.roadMapList li.opposite { rotate: 180deg;}
.roadMapList li.opposite .discreptionBox p, .roadMapList li.opposite .iconBox, .roadMapList li.opposite .discreptionBox .stepName span{ rotate: 180deg;}
.roadMapList li:hover{transition: all 0.5s linear; -moz-transition: all 0.5s linear; -webkit-transition: all 0.5s linear; translate:0 20px;}
.roadMapList li.opposite:hover{translate:0 -20px;}

/* faq css  */
.faqList{ display: flex; flex-flow: column; margin-block-start: 10px; }
.faqList li{ padding-block:30px; display: flex; flex-flow: row wrap; justify-content: space-between;}
.faqList li + li{border:none; border-top:1px solid #454a91;}
.faqList li > *{flex:0 1 100%; }
.faqHeading{ align-self: flex-start; font-size: 19px; font-weight: 700; }
.faqContent{ font-size: 13px; line-height: 20px; font-family: var(--Montserrrat-alternates); font-weight: 400; position: relative; }
.faqContent .ansBlock{position: relative; display: none;}
.faqContent .ans{  color: var(--bs-white); background: #50a74c; border-radius: 10px; -moz-border-radius: 10px; -webkit-border-radius: 10px; font-size: 15px; text-transform: capitalize;  padding: 6px 12px; position: absolute; right:0; bottom:calc(100% + 7px); cursor: pointer; }
.faqContent .ans:hover{ background-color: rgb(3, 8, 73);    box-shadow: rgba(0, 0, 0, 0.337) 0px 0px 10px;
}
.faqContent .ans::after{content: ' + '; font-weight: 600; min-width: 12px;  display: inline-block;  margin-left: 5px; text-align: center;}
.faqContent .ans.active::after{content: ' - '; }

/* downloadAppBox section css */
.downloadApp{ margin-block-start: -18%; margin-block-end: 40px;}
.downloadAppBox{ padding-inline:80px; border-radius: 50px; -webkit-border-radius: 50px; -moz-border-radius: 50px; background-color: #07b5a9; background-image: url(../images/circlebg.png) ; background-repeat: no-repeat; background-position: center; background-size: 60%; position: relative; transition: background-size 0.5s linear;}
.downloadAppBox:hover{background-size: 70%;transition: background-size 0.5s linear;}
.downloadAppBox::after{ content: ''; position: absolute; top:0; left:0; width: 100%; bottom: 0; height: 100%; background:linear-gradient(125deg, #0639aa 25%,#07b5a9 40%, #45bb20); opacity: 0.8; z-index: 0; border-radius: 50px; -webkit-border-radius: 50px; -moz-border-radius: 50px;}
.downloadAppBox .row{ position: relative; z-index: 1; }
.downloadAppBox .pullTop{ margin-block-start: -200px; transition: all 0.5s linear; -moz-transition: all 0.5s linear; -webkit-transition: all 0.5s linear; }
.downloadAppBox:hover .pullTop{transition: all 0.5s linear; -moz-transition: all 0.5s linear; -webkit-transition: all 0.5s linear; translate:0 -20px}
.downloadAppBox .ContentBox{ padding-block: 70px;}
.downloadAppBox .smallHeading{ margin-bottom: 50px;}
.downloadAppBox .mainHeading{ margin-bottom: 10px; font-size: 41px; line-height: 56px;}


/* newsLetter css */
.newsLetter{ padding-block:80px 80px; padding-inline: 40px; background-color:var(--bs-white); text-align: center;}
.newsLetter .subheading, .newsLetter p{ color: var(--bs-dark);}
.newsLetter .subheading{ margin-bottom: 6px;}
.newsLetter p{ font-size: 20px; opacity: 0.8; font-weight: 500;}
.newsLetterForm{margin-block-start: 40px; }
.formBox {display: flex;  flex-flow: row nowrap;}
.inputBx{border:2px solid var(--bs-dark);  padding: 20px 25px; border-top-left-radius: 10px; border-bottom-left-radius: 10px; color: #171d76; font-size: 16px; font-family: var(--Montserrrat-alternates); text-transform: capitalize; width: calc(100% - 160px);}
.submitBtn{ border:2px solid var(--bs-dark);  padding: 20px 25px; border-top-right-radius: 10px; border-bottom-right-radius: 10px;  text-transform: uppercase; font-size: 16px; background-color: #171d76; color: var(--bs-white);  width: 150px;}

/* footerInfo css */
footer{ padding-block: 40px; border-top:1px solid #d1d2e4}
.footerInfo{ display: flex; flex-flow: column; gap:16px 0}
.footerInfo li a{ font-size:18px; color: var(--bs-dark);}
footer ul{ display: flex; flex-flow: column; gap:8px}
.footerHeding, .footerLink{ font-size: 20px; color: #62d33e; margin-block-end: 10px; font-family: 'larsseitregular';}
.footerLink a{ color: var(--bs-dark);}
.footerInfo p{ color: var(--bs-dark); font-size: 15px; padding-inline-end: 10px; }
.socialList{ margin-bottom: 16px;}

/* inner page banner design */
.innerBanner{ padding-block:15vmax 10vmax;}
.innerBanner::after, .innerBanner::before{ display: none;}
.innerBanner .bannerHeading{ font-size: 54px; line-height: 70px; font-weight: 700; margin-bottom: 15px;}
.bannerHeading span{ display: block;}
.innerBanner p{ font-size: 22px; line-height: 34px; word-spacing: 4px; color: var(--bs-white); font-weight: 500; }

/* team section css design */
.teamBox{ padding-block: 7vmax 5vmax; background: var(--dark-blue); }
.teamInfo{ border-radius: 20px; -moz-border-radius: 20px; -webkit-border-radius: 20px; overflow: hidden; position: relative; margin-bottom: 25px;}
.teamInfo img{width:100%; object-fit: cover; transition: all .5s linear; -moz-transition: all .5s linear; -webkit-transition: all .5s linear;}
.teamInfo:hover img{ scale:1.2;  transition: all .5s linear; -moz-transition: all .5s linear; -webkit-transition: all    .5s linear;}
.teamDetail{position: absolute; bottom: 0;left:0; width: 100%; height: 50%; background: rgb(0,0,0);
    background: linear-gradient(0deg, rgba(0, 0, 0, .92) 23%, transparent 100%); display: flex; flex-flow: column; gap:8px; align-items: center; justify-content: flex-end; padding-block: 20px;}
.teamDetail .name{ font-size: 20px; font-weight: 700;}
.teamDetail .position{ font-size: 18px; font-weight:400;}
.teamDetail p{margin-block-end: 0;}

/* contact page css */
.conatctForm {
    padding:50px 30px 30px;
    border-radius: 20px;
    -moz-border-radius: 20px;
    -webkit-border-radius: 20px;
    background: #0e185d;
    box-shadow: 0 0 10px #0e185d;
}
.conatctForm .form-label{ font-size: 15px; text-transform: uppercase; font-weight: 500;}
.conatctForm .form-control{ padding:8px 20px; background-color: var(--bs-white); color: var(--bs-dark); font-size: 16px;}
.conatctForm textarea.form-control{ height: 133px;}
.conatctForm button[type="submit"]{ background: #1f8724; text-transform: uppercase; font-size: 15px; color: var(--bs-white); padding: 10px 25px; font-weight: 500;}

/* privacy-policy */
.frmaebx{ position: relative; padding: 16px;}
.frmaebx img{ position: relative;  max-width: 100%;}
.frmaebx::before, .frmaebx::after{ content: ''; position: absolute; width:80px; height: 80px; z-index: 0;}
.frmaebx::before{top:0px; right: 0px; border:none; border-top:10px solid var(--blue); border-right:10px solid var(--blue);}
.frmaebx::after{bottom:0px; left: 0px; border:none; border-bottom:10px solid var(--blue); border-left:10px solid var(--blue);}
/* media css */
@media screen and (max-width:1200px){
    .container {padding-inline: 40px;}
    .bannerInfo{ padding-block-start: 160px;}
    .mainHeading { font-size: 35px; line-height: 50px; margin-block-end: 20px; }
    .smallHeading{font-size: 18px; margin-bottom: 16px;}
    .animateObject img{ width: 60%;}
    .featureBox .featureList {  margin-block-start: 0px; }
    .featureBox, .whyChoose { padding-block:70px 0px; }
    .whyChoose { padding-block-end: 90px;}
    .faqList li{ padding-block-end: 10px;}
    .roadMap{padding-block-end: 300px;}
    .downloadAppBox .pullTop { margin-block-start: -100px; }
    .innerBanner .bannerHeading{ font-size: 40px; line-height: normal;}
    .innerBanner p{ font-size: 18px; line-height: 26px;}
}

@media screen and (max-width:991px){
    .bannerInfo { padding-block-start: 20vmax; }
    .bannerInfo::after{ width: 40vmax; height: 25vmax; background-size: cover;}
    .carImg img { scale: 0.8;  translate: 30px 60px; }
    .carImg { margin-block-start: 0px; }
    .ContentBox{ text-align: center;}
    .subheading {  font-size: 30px;  margin-bottom: 10px;}
    .aboutUs p {font-size: 18px; line-height: 27px;}
    .imageFrame{ text-align: center !important; margin-block-start: 40px;}
    .bannerInfo .imageFrame{margin-block-start:0px;}
    .backObject{ margin-block-start: 20px;}
    .backObject img{ max-width: 400px;}
    .backObject::after{ height: 60vmax; width: 60vmax; top:8%}
    .workListBox{gap: 10px;}
    .workList{ text-align: start !important;}
    .aboutUs{background: linear-gradient(to bottom, var(--dark-blue)84%, #61d33e74), url(../images/net.png) no-repeat bottom left; }
    .subheading span{ display: inline-block;}
    .featureBox .ContentBox{ margin-block-start: 20px; text-align: start !important;}
    .chooseTurmBox{ margin-block-end:5vmax;}
    .roadMap { padding-block-end: 80px; }
    .downloadApp{ margin-block:50px 20px;}
    .downloadAppBox .pullTop{ margin-block-start: 0; height: 100%;  display: flex;   align-items: center;}
    .downloadAppBox{ padding: 40px 60px;}
    .downloadAppBox .mainHeading{ font-size: 28px;line-height: normal; margin-block-end: 20px;}
    .innerBanner .bannerHeading{ font-size: 30px;}
    .bannerHeading span{ display: inline;}
    .innerBanner p{ font-size: 16px;}
}

@media screen and (max-width:767px){
    .navbar-nav .nav-link{ text-align: left; padding-inline-start: 10px}
    .nav-item + .nav-item{ border-top:1px solid #454a91;;}
    .bannerInfo .imageFrame{ max-width: inherit; margin: auto; margin-block-end: 30px;}
    .overLapBottom img{ margin-block-end: 0;}
    .carImg img {translate: -20px 20px;scale: 0.6; }
    .mainHeading {font-size: 22px; line-height: 33px;}
    .aboutUs{ padding-block:60px ;}
    .animateObject{ display: none;}
    .aboutUs p {  font-size: 16px;  line-height: 24px; }
    .backObject { margin-block-start: 10px;}
    .backObject img, .imageFrame img {max-width: 30vmax;}
    .backObject::after { height: 40vmax;   width: 40vmax;  top: 8%;}
    .thirdHeading{ font-size: 20px;}
    .workListBox{ margin-block-start: 30px;}
    .workList, .featureBox .ContentBox { text-align: center !important; }
    .subheading { font-size: 26px;    margin-bottom: 15px; }
    .featureBox{ padding-block-start: 0;}
    .unorderList{ margin-block-start: 30px; text-align: start !important; gap:10px; font-size: 14px; font-weight: 500;} 
    .whyChoose{ padding-block-end: 0;}
    .chooseTurm {  padding-inline: 0px;    margin-block-start: 30px; }
    .mb-6{ margin-block-end: 20px;}
    .roadMap{ padding-block-start: 60px;}
    .roadMapList{ flex-wrap: wrap; justify-content: space-between; margin-block-end: 30px;}
    .roadMapList li{ width: 45%; max-width: fit-content;}
    .roadMapList li.opposite , .roadMapList li.opposite .discreptionBox p, .roadMapList li.opposite .iconBox, .roadMapList li.opposite .discreptionBox .stepName span{ rotate:0deg; }
    .roadMapBox:after{ display: none;}
    .faqList li > *{ flex-basis: 100%; }
    .faqList li{ padding-block-start: 20px;}
    .faqContent p { display: flex;   gap: 10px; }
    .faqContent .ans{ position: relative; right: 0; align-self: flex-start;}
    .downloadAppBox { padding: 40px 15px; }
    .downloadAppBox .ContentBox {
        padding-block:40px 20px;
    }
    .downloadAppBox .smallHeading {
        margin-bottom: 30px;
        line-height: normal;
        font-size: 16px;
    }
    .downloadAppBox .pullTop{ justify-content: center;}
    .downloadAppBox .mainHeading{ font-size: 25px;}
    .newsLetter { padding-inline: 0;  }
    .newsLetter {  padding-block: 40px;   text-align: center;}
    .footerLink{ font-size: 16px; gap: 5px;}
    .newsLetterForm {  margin-block-start: 30px;}
    .submitBtn{ width: 40%; font-size: 15px; padding: 12px 16px;}
    .inputBx{ width: 60%;padding: 12px 16px;}
    footer{ padding-block: 40px 30px;}
    .conatctForm{ padding: 30px 20px;}
    .conatctForm .text-end{ text-align: start !important;}
}

@media screen and (max-width:676px){
   
}

@media screen and (max-width:440px){
    
}
