@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap');



@font-face {
    font-family: 'EurostileBla';
    src: url('../fonts/Eurostile-Bla.woff2') format('woff2'),
        url('../fonts/Eurostile-Bla.woff') format('woff');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

*::after,
*::before {
  box-sizing: border-box;
}

* {
  margin: 0;
  padding: 0;
  outline: none;
  text-decoration: none;
  box-sizing: border-box;
  scroll-behavior: smooth;
  font: inherit;
  scrollbar-width: 10px;
  scrollbar-color: #01264a #fff;
}

/* For Scrollbar */

*::-webkit-scrollbar {
  width: 10px;
}

*::-webkit-scrollbar-track {
  background: #ffffff;
}

*::-webkit-scrollbar-thumb {
  border-radius: 5px;
  background-color: #01264a;
  border: 2px solid #fff;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
}

*:focus {
  outline: none;
  box-shadow: none;
  border: none;
}

html {
  font-size: 62.5%;
}

body {
    font-weight: normal;
    line-height: normal;
    font-size: 18px;
    background: #000e1f;
}

ul,
ol {
  list-style: none;
  padding: 0;
  margin: 0;
}

button,
input[type="submit"],
input[type="reset"],
a {
  transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -webkit-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  text-decoration: none;
  outline: none;
}

a:hover,
a:focus {
  text-decoration: none;
}

::-moz-selection {
  color: #fff;
  background: #00d1b2;
}

::selection {
  color: #fff;
  background: #00cfbe;
}

img {
  max-width: 100%;
  display: block;
  height: auto;
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: normal;
  font-weight: normal;
  padding: 0;
  margin: 0;
}

p {
  margin: 0;
  padding: 0;
}

/***************** FOR BOOTSTRAP ******************/

.container {
  max-width: 1560px;
}

.navbar {
  border-radius: 0;
  margin-bottom: 0;
  padding: 0;
}

.nav > li > a:hover,
.nav > li > a:focus {
  background-color: transparent;
}

.navbar,
.nav-link {
  padding: 0;
  margin: 0;
}

.navbar-expand-md .navbar-nav .nav-link {
  padding-right: 0;
  padding-left: 0;
}

.nav > li > a:hover,
.nav > li > a:focus {
  background-color: transparent;
}

/* cmn_margin & Padding */

.mt-40 {
  margin-top: 4rem;
}

.mt-20 {
  margin-top: 2rem;
}

.mt-30 {
  margin-top: 3rem;
}

.mt-50 {
  margin-top: 5rem;
}

.mb-40 {
  margin-bottom: 4rem;
}

.cmn_pdding {
  padding: 9rem 0;
}

/*----Common Header and Button----*/

.cmn_hdr h2 {
  font-size: 6rem;
  line-height: 1.2;
  font-family: "EurostileBla";
  font-weight: 900;
  color: #ffffff;
  padding-bottom: 10px;
  text-transform: uppercase;
}


.cmn_hdr h2 span{
  color: #00cfbe;
}
.cmn_hdr h3 {
  font-size: 4rem;
  line-height: 1.2;
  font-family: "EurostileBla";
  color: #ffffff;
  padding-bottom: 10px;
  text-transform: uppercase;
}


.cmn_hdr h3 span{
  color: #00cfbe;
}
.cmn_hdr h6 {
    color: #fff;
    font-weight: 600;
    font-family: "Inter", sans-serif;
    font-size: 2.4rem;
    padding-bottom: 10px;
}

.cmn_hdr h5 {
  color: #2b2b2b;
  font-size: 2.6rem;
  letter-spacing: 1px;
  line-height: 1.5;
  padding-bottom: 10px;
  text-transform: capitalize;
}
.cmn_hdr.wht h5 {
  color: #fff;
}

.cmn_hdr p {
    font-size: 18px;
    color: #ffff;
    line-height: 1.5;
    padding-bottom: 10px;
    font-weight: 400;
    font-family: "Inter", sans-serif;
}
.cmn_hdr p span{
  font-family: "Inter", sans-serif;
  font-weight: 700;
}

.cmn_hdr.wht p {
  color: #fff;
}

.cmn_btn {
    padding: 15px 40px;
    font-size: 18px;
    color: white;
    background: linear-gradient(to bottom, #007bff, #00d1b2);
    border-radius: 5rem;
    font-family: "Inter", sans-serif;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s ease;
    display: inline-flex;
    gap: 15px;
    justify-content: space-between;
}


.cmn_btn:hover {
    color: #fff;
    background: #00d1b2;
   border-radius: 5rem;
   color: #fff;
}

.cmn_btn:hover::after {
    width: 100%;
}

/*----Common Header and Button End----*/

/*! button back to top !*/

#backToTop {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: 4rem;
  background-color: #00d1b2;
  color: #fff;
  border: none;
  outline: none;
  border-radius: 50px;
  position: fixed;
  right: 2.5rem;
  bottom: 105%;
  cursor: pointer;
  z-index: 5555;
  transition: 0.5s all ease;
  border: 1px solid #00d1b2;
  font-size: 1.8rem;
  transition: 0.8s all;
}

#backToTop.show {
  bottom: 2.5rem;
}

/*! button back to top End!*/

/* Animation Section */

/* Swing */

@-webkit-keyframes swing {
  0% {
    transform: rotate(3deg);
  }

  100% {
    transform: rotate(-3deg);
  }
}

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

  100% {
    transform: rotate(-3deg);
  }
}

/* Rotate */

.rotate {
  -webkit-animation: rotation 12s infinite linear;
  animation: rotation 12s infinite linear;
}

@keyframes rotation {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(359deg);
  }
}

/* Floating */

.floating {
  -webkit-animation: floating ease-in-out 3s infinite;
  animation: floating ease-in-out 3s infinite;
}

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

  50% {
    transform: translate(0, 15px);
  }

  100% {
    transform: translate(0, -0px);
  }
}
@keyframes heartbeat
{
  0% {
    transform: scale( .75 );
  }
  20% {
    transform: scale( 1 );
  }
  40% {
    transform: scale( .75 );
  }
  60% {
    transform: scale( 1 );
  }
  80% {
    transform: scale( .75 );
  }
  100% {
    transform: scale( .75 );
  }
}

.snc_img img{
  animation: 1.5s ease-in-out infinite both heartbeat;
  width: 6.1rem;
  height: 6.1rem;
}
.snc_img{
   animation: 2.5s ease-in-out infinite both heartbeat;
}
/* Animation Section End */
 /*moumi 19.8.25 */
 .banner
 {
  position: relative;
 }
 header{
  position: absolute;
  top: 0;
 }
header {
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 1;
}
.cus_nav_innr{
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.nav-link{
  font-size: 18px;
  font-family: "Inter", sans-serif;
  font-weight: 400;
  color: #fff;
}
.nav-link:focus, .nav-link:hover{
  color: #00d1b2;
  text-decoration: underline;
}
.navbar-nav .nav-link.active{
  color: #00d1b2;
  text-decoration: underline;
  font-weight: 700;
}
.navMenus {
    gap: 4rem;
}
.bnr_cover{
  position: relative;
}
.hdr_txt {
    position: absolute;
    top: 38%;
    transform: translateY(-38%);
}
h1 {
    font-family: 'EurostileBla';
    font-size: 8.7rem;
    color: #fff;
    line-height: 1;
    padding-bottom: 15px;
}
h1 span{
  color: #00cfbe;
}
.hdr_txt.cmn_hdr p{
  font-size: 2.4rem;
}
.bnr_btn{
  margin-top: 3rem;
}
.dtls {
    background: #01264a;
}
.dtls_flx{
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px !important;
}
.dtls_pic {
    width: 62.8rem;
    height: 62.8rem;
    border-radius: 50%;
    overflow: hidden;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}
.dtls_txt{
  width: 49%;
}
.dtls_pic img{
  width: 100%;
  height: 100%;
}


/* j */
.dtls_bg {
    position: relative;
    width: 66.7rem;
    height: 66.7rem;
    border-radius: 50%;
    display: flex
;
    align-items: center;
    justify-content: center;
    padding: 5px;
    position: relative;
    background: linear-gradient(to bottom, #006dd9, #00cfbd);
}
.dtls_pic {
    width: 63.8rem;
    height: 63.8rem;
    border-radius: 50%;
    overflow: hidden;
    position: absolute;
    right: -5px;
}

.dtls_pic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}
/* about */
.sience {
    background: #01264a;
}
.snc_dv {
  background: url(../images/card-first.webp) no-repeat;
}
.snc_dv:nth-child(2) {
  background: url(../images/card-scnd.webp) no-repeat;
}
.sience_flx {
    display: flex;
    justify-content: space-between;
    margin-top: 4rem;
}
.snc_dv {
    width: 33.3%;
    padding: 10px 15px;
    height: 403px;
}
.snc_dv.cmn_hdr h2{
color: transparent;
-webkit-text-stroke: 1px #01a49a;
}

.snc_img_bg {
    background: linear-gradient(to bottom, #00c7bf, #007ad5);
    width: 9.7rem;
    height: 9.7rem;
    border-radius: 50%;
    margin: 10px auto 20px;
    display: flex
;
    align-items: center;
    justify-content: center;
}
.snc_img {
    background: #000913;
    border: 1px solid;
    width: 9.4rem;
    height: 9.4rem;
    display: flex
;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}
.snc_innr {
    width: 90%;
    text-align: center;
    margin: 0px auto 0;
}
.dtls_flx.business {
    flex-direction: row-reverse;
}
.business .dtls_pic {
    right: auto;
    left: 0;
}
.business {
    background: #01264a;
    position: relative;
}

.big_fnt h2 {
    font-size: 18.9rem;
    color: transparent;
    -webkit-text-stroke: 1px #01a49a;
    font-family: 'EurostileBla';
    line-height: .8;
}
.big_fnt marquee{
 font-size: 18.9rem;
    color: transparent;
    -webkit-text-stroke: 1px #01a49a;
    font-family: 'EurostileBla';
    line-height: .8;
}
.big_fnt{
  position: absolute;
  bottom: 0;
  width: 100%;
  z-index: -1;
}
.save {
    background: linear-gradient(to top right, #0063dc, #00dbbb);
    padding-bottom: 0;
    height: 98rem;
}

.dtls_txt.cmn_hdr h6 {
    padding-block: 15px 25px;
}
.save_img {
    width: 74.8rem;
    height: 74.8rem;
    margin-inline: auto;
    outline: 5px solid #41f5ea;
    outline-offset: 6rem;
    border-radius: 50%;
    position: absolute;
    left: 0;
    right: 0;
    z-index: -1;
    top: 86px;
}
.save_img img{
  width: 100%;
  height: 100%;
}

.save .snc_img {
    border: 11px solid #00b9c4;
    width: 11.5rem;
    height: 11.5rem;
}
.save_innr {
    margin-top: 14rem;
    z-index: 1;
    position: relative;
}
.save_innr h2 {
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    text-align: center;
    top: 33%;
}
.save_dv {
    display: flex;
    align-items: center;
    gap: 2rem;
    width: max-content;
    position: absolute;
}
.save_dv h5 {
    text-align: right;
    font-weight: 700;
    padding-bottom: 0;
}
.save_dv:nth-child(5) {
    flex-direction: column;
    left: 0;
    right: 0;
    top: -100px;
    position: absolute;
    margin: auto;
}
.save .snc_img img{
    width: 4.5rem;
    height: 4.5rem;
}
.save_dv:nth-child(6) {
    top: 21px;
    right: 223px;
    flex-direction: row-reverse;
}
.save_dv:nth-child(4) {
    top: 21px;
    left: 207px;
}
.save_dv:nth-child(3) {
    top: 184px;
    left: 143px;
}
.save_dv:nth-child(2) {
    top: 390px;
    left: -10px;
}

.save_dv:nth-child(7) {
    top: 184px;
    right: 43px;
    flex-direction: row-reverse;
}
.save_dv:nth-child(8) {
    top: 390px;
    right: -12px;
    flex-direction: row-reverse;
}

.save_dv:nth-child(7) h5 ,.save_dv:nth-child(8) h5{
    text-align: left;
}

/* .ftr_dv ul li a span {
    transform: rotate(90deg);
} */
/* ratul */
/* client-section */
.client {
  background: url(../images/client-sec-bgr.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
 height: 1260px;
  z-index: 3;
  position: relative;
}
.clnt_hdr h2 {
  padding-bottom: 45px;
  text-align: center;
}
.clnt_hdr h2 span {
  color: #00cfbe;
}
.client_flx {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.clnt_dv {
    border-radius: 5px;
    min-height: 405px;
    background: #123250;
    border: 2px outset #00a1c9;
    width: 32%;
    position: relative;
    text-align: center;
    padding: 40px 25px 25px;
}

.clnt_icn {
  position: absolute;
  left: 0;
  right: 0;
  top: -25px;
}
.clnt_icn svg {
  color: #0e4868;
  font-size: 50px;
}

.clnt_pic {
  overflow: hidden;
  height: 50px;
  width: 50px;
  margin-inline: auto;
}
.clnt_pic img {
  border: 1px solid #00a1c9;
  height: 100%;
  width: 100%;
  border-radius: 50%;
}
.clnt_txt h6 {
  padding-block: 15px;
  color: #ffffff;
  font-family: "Lato", sans-serif;
  font-weight: 600;
  font-size: 19.99px;
}
.clnt_str ul {
  justify-content: center;
  display: flex;
  gap: 10px;
}
.clnt_str ul li svg {
  font-size: 20px;
  color: #ffb400;
}
.clnt_txt p {
  padding-block: 15px;
  font-family: "Lato", sans-serif;
  font-weight: 400;
  font-size: 20px;
  color: #eaeaea;
}
.client_pic {
    position: absolute;
    width: 834px;
    height: 628px;
    bottom: -128px;
    left: 56px;
}
  .client_pic img{
    width: 100%;
    height: 100%;
  }
.frm_dv
 {
    margin-top: 80px;
    background: transparent;
    border: 2px solid #00a1c9;
    width: 45%;
    margin-left: auto;
    border-radius: 10px;
    padding: 25px;
}

.frm_hdr{
  background: #00a1c9;
  border-radius: 25px;
 text-align: center;
 padding: 10px;
 margin-bottom: 20px;
}
.frm_hdr h4{
  font-size: 30px;
  color: #fff;
  text-transform: uppercase;
  font-family: "EurostileBla";
  font-weight: 900;
}
.frm_inpt{
    padding: 10px;
    background:#012237;
    border: 1px solid #0099cc;
    border-radius:5px;
    margin-bottom: 15px;
  }

.frm_inpt input{
  color: #fff;
  background: transparent;
  border: none;
}
.frm_inpt textarea{
  color: #fff;
  background: transparent;
  border: none;
}
.frm_inpt input::placeholder{
  font-size: 15px;
   font-family: "Inter", sans-serif;
   font-weight: 400;
   color: #ffffff;
}
.frm_inpt textarea::placeholder{
  font-size: 15px;
   font-family: "Inter", sans-serif;
   font-weight: 400;
   color: #ffffff;
}


.footer {
    background: url(../images/footer-new-img.webp);
    background-repeat: no-repeat;
    background-size: 100% 100%;
    background-position: center;
    height: 867px;
}

.ftr_flx {
    padding-top: 420px;
   display: flex;
    justify-content: space-between;
    border-bottom: 1px solid #0d2331;
}

.ftr_flx .ftr_dv:first-child {
    width: 20%;
}

.ftr_flx .ftr_dv:nth-child(2){
  border-right: 1px solid #0d2331;
 width: 22%;
}
.ftr_flx .ftr_dv:nth-child(3){
    border-right: 1px solid #0d2331;
  width:12%;
}
.ftr_flx .ftr_dv:nth-child(4) {
    border-right: 1px solid #0d2331;
    width: 25%;
}
.ftr_flx .ftr_dv:last-child {
    width: 10%;
}
.otr_pic{
  padding-top: 35px;
}
.ftr_flx .ftr_dv:nth-child(3)  h5,.ftr_flx .ftr_dv:nth-child(4)  h5,.ftr_flx .ftr_dv:nth-child(5) h5 {
  padding-bottom: 40px;  
}
.ftr_logo {
    width: 230px;
    display: inline-block;
}
.ftr_logo img{
  width: 100%;
}
.ftr_dv p {
    padding-block: 15px;
    font-size: 15px;
    font-family: "Inter", sans-serif;
    font-weight: 400;
    color: #ffffff;
}

.ftr_dv h5{
  color: #fff;
  font-size: 20px;
  padding-bottom: 25px;
    font-family: "EurostileBla";
    font-weight: 900;
    padding-bottom: 15px;
    text-transform: uppercase;
}
.ftr_flx .ftr_dv:nth-child(3) ul{
  display: flex;
 flex-direction: column;
}
.ftr_dv ul li a{
  font-size: 15px;
   font-family: "Inter", sans-serif;
   font-weight: 400;
   color: #ffffff;
}
.ftr_dv ul li {
    gap: 15px;
    padding-bottom: 15px;
    display: inline-flex;
    align-items: center;
    font-size: 15px;
    font-family: "Inter", sans-serif;
    font-weight: 400;
    color: #ffffff;
}

.ftr_dv ul li:hover{
  color: #00c8c0;
}
.ftr_dv ul li:hover a span{
  transform: rotate(180deg);
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -o-transform: rotate(180deg);
}
.ftr_dv ul li a{
  display: inline-flex;
  align-items: center;
   gap: 15px;
  font-size: 15px;
   font-family: "Inter", sans-serif;
   font-weight: 400;
   color: #ffffff;
}

.ftr_dv ul li a:hover{
  color: #00c8c0;
}
.ftr_dv ul li a span {
    height: 35px;
    width: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px outset #008fb1;
    background: transparent;
    color: #fff;
    transition: 0.3s ease;
}
.ftr_wrp h5{
  text-align: center;
  font-size: 16px;
    font-family: "Inter", sans-serif;
    font-weight: 400;
    color: #ffffff;
}
.ftr_wrp {
    padding-top: 25px;
}
.ftr_wrp h5 a{
    text-align: center;
  font-size: 16px;
    font-family: "Inter", sans-serif;
    font-weight: 400;
    color: #ffffff;
}
.ftr_wrp h5 a:hover{
  color: #008fb1;
}

.frm_btn {
    width: max-content;
    margin-inline: auto;
    margin-top: 3rem;
}
/*  */
.clnt_otr{
  display:block;
}
.clnt_slider{
display:none;
}
.swiper-slide .clnt_dv{
  /* display: none; */
  width: 100%;
}
.swpr_arrow {
    gap: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 15px;
}

.rvw_Swiper_prev,.rvw_Swiper_next{
  height: 35px;
  width: 35px;
  background: transparent;
  border-radius: 50%;
 border: 1px solid #00d3bd;
   display: flex;
  justify-content: center;
  align-items: center;
}
.rvw_Swiper_prev svg, .rvw_Swiper_next svg{
  font-size: 17px;
  color: #00d3bd;
}
.mobile-bnr-image{
  display: none;
 }
 .rotate {
    -webkit-animation: none;
    animation: none;
}
.snc_img {
    animation: none;
}
.snc_img img {
    animation: none;
  }
  .frm_dv .frm_btn p{
    padding: 15px 20px;
    font-size: 18px;
    color: white;
    background: linear-gradient(to bottom, #007bff, #00d1b2);
    border-radius: 5rem;
    font-family: "Inter", sans-serif;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s ease;
    display: inline-flex;
    gap: 15px;
    justify-content: space-between;
  }
  .frm_dv .frm_btn p .wpcf7-spinner{
    display: none;
  }
.frm_dv .frm_btn p input{
background: none;
    border: none;
    padding: 0;
}
.wpcf7 form.invalid .wpcf7-response-output, .wpcf7 form.unaccepted .wpcf7-response-output, .wpcf7 form.payment-required .wpcf7-response-output {
    color: #fff;
    border-color: #0075d7;
}
.wpcf7-response-output{
  color: #fff !important;
}
.frm_inpt textarea{
  width: 100%;
}
.frm_inpt input{
  width: 100%;
}
.clnt_otr{
  display: none;
}
.clnt_slider{
  display: block;
}
 .swiper.clnt_Swiper  {
    overflow-y: unset !important;
}
.swpr_arrow{
  display: none;
}
/* ratul 27-08-25 */
.clnt_dv {
    min-height: 405px;
}

.clnt_txt p:nth-child(4){
  height: 160px;
    overflow-y: scroll;
    scrollbar-color: #fff  #01264A;
}
.clnt_txt p:nth-child(3), .clnt_txt p:last-child{
  display: none;
}
.clnt_str ul{
  margin-bottom: 15px;
}
.frm_dv{
  margin-right: 210px;
}
/* moumi 28.8.25 */
/* .wpcf7-not-valid-tip:nth-last-child {
    display: none;
    color: pink !important;
} */
/* .wpcf7-form-control-wrap .wpcf7-not-valid-tip:last-of-type {
  display: none !important;
} */
    /* ratul 08-09-25 */
.save_dv:nth-child(5) {
    flex-direction: row-reverse;
    top: 17px;
    left: auto;
    right: 308px;
    align-items: center;
}
.save_dv:nth-child(6) {
    text-align: left;
    top: 214px;
    left: auto;
    right: 33px;
    flex-direction: row-reverse;
}
/* change */
.save_dv:nth-child(3) {
    flex-direction: row;
    left: 56px;
    right: auto;
    top: 216px;
    position: absolute;
    margin: auto;
    align-items: center;
}
/* change */
.save_dv:nth-child(4) {
    top: 18px;
    right: auto;
    flex-direction: row;
    left: 90px;
}
.save_dv:nth-child(7) {
    flex-direction: row-reverse;
    top: 429px;
    left: auto;
    right: -16px;
}
/* change */
.save_dv:nth-child(2) {
    left: 168px;
    right: auto;
    flex-direction: row;
    top: 427px;
}
    .save_dv h5 br {
        display: none;
    }

    .save_dv:nth-child(6) h5 br{
      display: block;
    }
/* ratul 26-09-25 */
.mn_bnr {
    position: relative;
    background: url(../images/bnr-pic.webp);
    background-repeat: no-repeat;
    background-size: 100% 100%;
    background-position: center;
    height: 1250px;
    z-index: 1;
}
.mn_list {
    padding-top: 30px;
}
.mn_list ul li {
    display: flex;
    gap: 10px;
   font-size: 20px;
    color: #ffff;
    line-height: 1.5;
    padding-bottom: 10px;
    font-weight: 500;
    font-family: "Inter", sans-serif;
}
.mn_list ul li span{
    font-size:20px;
    color: #ffff;
    line-height: 1.5;
    padding-bottom: 10px;
    font-weight: 500;
    font-family: "Inter", sans-serif;
}
.mn_txt{
  padding-top: 100px;
}
.mn_list ul li:first-child {
    font-weight: 500;
}
.save_img {
  top: 55px;
}
.save_dv:last-child {
    top: 476px;
    right: 97px;
    flex-direction: row-reverse;
    left: auto;
}
.save_dv:nth-child(8) {
    top: 125px;
    right: 30px;
    left: auto;
    flex-direction: row-reverse;
}
.save_dv:nth-child(2) {
    left: 168px;
    right: auto;
    flex-direction: row;
    top: 450px;
}
.save_dv:nth-child(4) {
    top: 132px;
    flex-direction: row;
    left: 155px;
    right: auto;
}
.save_dv:nth-child(3) {
    left: 2px;
    top: 285px;
}


.save_dv:nth-child(5) {
    top: 5px;
    right: auto;
    left: 56px;
    flex-direction: row;
}
.save_dv:nth-child(6) {
    top: -123px;
    right: 0;
    left: 0;
    margin-inline: auto;
    flex-direction: column;
}
.save_dv:nth-child(7) {
    top: -10px;
    right: 290px;
}

.save_dv:nth-child(9) {
    left: auto;
    right: 86px;
    flex-direction: row;
    top: 283px;
    flex-direction: row-reverse;
}
.save_dv:nth-child(6) h5 br {
    display: none;
}
 .client {
    background: url(../images/client-sec-bgr.webp);
   }
.ftr_flx .ftr_dv:nth-child(2) {
    display: none;
  }
.ftr_flx .ftr_dv:nth-child(3) {
   width: 12%;
}
.ftr_flx .ftr_dv:first-child {
    width: 30%;
}
.ftr_dv ul li {
    gap: 15px;
  }
  .ftr_flx .ftr_dv:nth-child(4) {
   width: 29%;
}

/* ratul 06-10-25 */
.navbar-nav .nav-link.active, .navbar-nav .nav-link.show{
	color:#00d1b2;
}
.navbar-expand-md .navbar-nav .dropdown-menu{
	background: transparent;
    border: none;
}
.bnr_btn.cta{
	text-align:center;
}
.dropdown-item{
	font-size: 15px;
    color: #ffff;
}
.dropdown-item:hover{
	color:#00d1b2;
	background-color:transparent;
}
.depth_0{
	background:transparent;
}
.footer .dropdown-item{
	display:none ;
}
.ftr_dv:nth-child(3) ul .dropdown:hover .dropdown-item{
	display:block;
	padding-top:60px;
}

.ftr_dv ul li a:hover{
	color:#00d1b2;
}
.ftr_flx .ftr_dv:nth-child(3) 
ul li{
	padding-bottom:20px;
}
.ftr_flx .ftr_dv:nth-child(3) .nav-link.dropdown-toggle:hover{
	color:#00d1b2 !important;
}
}