@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700&display=swap');
*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}
img{
    width: 100%;
    height: 100%;
}
nav{
  position: sticky;
  top: 0;
  z-index: 99;
  width: 100%;
  background: #fff;
  padding: 5px 0;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 0px 6px;
}
nav .wrapper{
  position: relative;
  max-width: 1300px;
  padding: 0px 0px;
  height: 70px;
  line-height: 70px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
nav .wrapper .logo{
    width: 250px;
}
.wrapper .logo a{
  color: #f2f2f2;
  font-size: 30px;
  font-weight: 600;
  text-decoration: none;
}
.wrapper .nav-links{
  display: inline-flex;
  margin-bottom: 0;
}
.nav-links li{
  list-style: none;
}
.nav-links li a{
  color: #525560;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  padding: 9px 12px;
  border-radius: 5px;
  transition: all 0.3s ease;
  font-family: "Poppins", sans-serif;
  transition-duration: 0.3s;
}
.nav-links li .nav-links-btn{
    /* background-image: linear-gradient(to right, #378663 0%, #FEC009 100%); */
    background: #3D46FF;
    color: #fff;
    font-size: 15px;
    border: 0;
    border-radius: 6px;
    padding: 7px 25px;
    font-weight: 500;
    border: 2px solid #3D46FF;
}
.nav-links li .nav-links-btn:hover{
    color: #3D46FF;
    background: transparent;
    border: 2px solid #3D46FF;
    font-weight: 500;
}
.nav-links-btn{
    /* background-image: linear-gradient(to right, #378663 0%, #FEC009 100%); */
    background: #3D46FF;
    color: #fff;
    font-size: 15px;
    border: 0;
}
.nav-links li a.active{
    color: #3D46FF;
    font-weight: 700;
}
.nav-links li a:hover{
    color: #3D46FF;
    font-weight: 700;
}
.nav-links .mobile-item{
  display: none;
}
.nav-links .drop-menu{
  position: absolute;
  background: #242526;
  width: 180px;
  line-height: 45px;
  top: 85px;
  opacity: 0;
  visibility: hidden;
  box-shadow: 0 6px 10px rgba(0,0,0,0.15);
}
.nav-links li:hover .drop-menu,
.nav-links li:hover .mega-box{
  transition: all 0.3s ease;
  top: 70px;
  opacity: 1;
  visibility: visible;
}
.nav-links-mob li:nth-child(2) a{
    margin-left:10px;
    background:transparent;
    color:#3D46FF;
    border:2px solid #3D46FF;
    font-weight: 500;
}
.nav-links-mob li:nth-child(2) a:hover{
    color:#FFF;
    background:#3D46FF;
}
.drop-menu li a{
  width: 100%;
  display: block;
  padding: 0 0 0 15px;
  font-weight: 400;
  border-radius: 0px;
}
.mega-box{
  position: absolute;
  left: 0;
  width: 100%;
  padding: 0 30px;
  top: 85px;
  opacity: 0;
  visibility: hidden;
}
.mega-box .content{
  background: #242526;
  padding: 25px 20px;
  display: flex;
  width: 100%;
  justify-content: space-between;
  box-shadow: 0 6px 10px rgba(0,0,0,0.15);
}
.mega-box .content .row{
  width: calc(25% - 30px);
  line-height: 45px;
}
.content .row img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.content .row header{
  color: #f2f2f2;
  font-size: 20px;
  font-weight: 500;
}
.content .row .mega-links{
  margin-left: -40px;
  border-left: 1px solid rgba(255,255,255,0.09);
}
.row .mega-links li{
  padding: 0 20px;
}
.row .mega-links li a{
  padding: 0px;
  padding: 0 20px;
  color: #d9d9d9;
  font-size: 17px;
  display: block;
}
.row .mega-links li a:hover{
  color: #f2f2f2;
}
.wrapper .btn{
  color: #fff;
  font-size: 20px;
  cursor: pointer;
  display: none;
  margin: 0;
}
.wrapper .menu-btn{
    color: #000;
}
.wrapper .btn.close-btn{
  position: absolute;
  right: 30px;
  top: 10px;
  color: #000;
}

@media screen and (max-width: 991px) {
  .wrapper .btn{
    display: block;
  }
  .wrapper .nav-links{
    position: fixed;
    height: 100vh;
    width: 100%;
    max-width: 350px;
    top: 0;
    left: -100%;
    background: #fff;
    display: block;
    padding: 50px 10px;
    line-height: 50px;
    overflow-y: auto;
    box-shadow: 0px 15px 15px rgba(0,0,0,0.18);
    transition: all 0.3s ease;
  }
  /* custom scroll bar */
  ::-webkit-scrollbar {
    width: 10px;
  }
  ::-webkit-scrollbar-track {
    background: #242526;
  }
  ::-webkit-scrollbar-thumb {
    background: #3A3B3C;
  }
  #menu-btn:checked ~ .nav-links{
    left: 0%;
  }
  #menu-btn:checked ~ .btn.menu-btn{
    display: none;
  }
  #close-btn:checked ~ .btn.menu-btn{
    display: block;
  }
  .nav-links li{
    margin: 15px 10px;
  }
  .nav-links li a{
    padding: 0 20px;
    display: block;
    font-size: 20px;
    color: #000000;
  }
  .nav-links .drop-menu{
    position: static;
    opacity: 1;
    top: 65px;
    visibility: visible;
    padding-left: 20px;
    width: 100%;
    max-height: 0px;
    overflow: hidden;
    box-shadow: none;
    transition: all 0.3s ease;
  }
  #showDrop:checked ~ .drop-menu,
  #showMega:checked ~ .mega-box{
    max-height: 100%;
  }
  .nav-links .desktop-item{
    display: none;
  }
  .nav-links .mobile-item{
    display: block;
    color: #f2f2f2;
    font-size: 20px;
    font-weight: 500;
    padding-left: 20px;
    cursor: pointer;
    border-radius: 5px;
    transition: all 0.3s ease;
  }
  .nav-links .mobile-item:hover{
    background: #3A3B3C;
  }
  .drop-menu li{
    margin: 0;
  }
  .drop-menu li a{
    border-radius: 5px;
    font-size: 18px;
  }
  .mega-box{
    position: static;
    top: 65px;
    opacity: 1;
    visibility: visible;
    padding: 0 20px;
    max-height: 0px;
    overflow: hidden;
    transition: all 0.3s ease;
  }
  .mega-box .content{
    box-shadow: none;
    flex-direction: column;
    padding: 20px 20px 0 20px;
  }
  .mega-box .content .row{
    width: 100%;
    margin-bottom: 15px;
    border-top: 1px solid rgba(255,255,255,0.08);
  }
  .mega-box .content .row:nth-child(1),
  .mega-box .content .row:nth-child(2){
    border-top: 0px;
  }
  .content .row .mega-links{
    border-left: 0px;
    padding-left: 15px;
  }
  .row .mega-links li{
    margin: 0;
  }
  .content .row header{
    font-size: 19px;
  }
}
nav input{
  display: none;
}

.body-text{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  text-align: center;
  padding: 0 30px;
}
.body-text div{
  font-size: 45px;
  font-weight: 600;
}

/* banner-sec */
.banner-sec .carousel .carousel-item img{
    width: 100%;
    height: 600px;
    object-fit: cover;
}
.banner-sec .carousel .carousel-item .carousel-caption{
    top: 28%;
}
.banner-sec .carousel .carousel-item .carousel-caption h6{
    font-family: "Roboto", sans-serif;
}
.banner-sec .carousel .carousel-item .carousel-caption h3{
    font-family: "Playfair Display", serif;
    font-size: 40px;
    margin-bottom: 35px;
    font-weight: 700;
    line-height: 54px;
}
.banner-sec .carousel .carousel-item .carousel-caption p{
    font-family: "Roboto", sans-serif;
    font-size: 22px;
    padding: 0 180px;
    margin-bottom: 20px;
}
.banner-sec .carousel .carousel-item .carousel-item-btn{
    margin-top: 55px;
}
.banner-sec .carousel .carousel-item .carousel-item-btn .btn{
    padding: 10px 22px;
    background: #fff;
    color: #3D46FF;
    font-weight: 600;
}
.banner-sec .carousel .carousel-indicators li{
    width: 15px;
    height: 15px;
    border-radius: 50px;
    border: 0;
    margin-right: 5px;
    margin-left: 5px;
}
.banner-sec .carousel-indicators{
    bottom: 25px;
}
/* banner-sec */

/* about-section */
.about-section{
    padding: 70px 0;
}

.about-section .about-section-txt{
    padding-left: 30px;
}
.about-section .about-section-txt h6{
    color: #525560;
    font-weight: 600;
    line-height: 35px;
    font-size: 20px;
    margin-bottom: 3px;
    font-family: "Roboto", sans-serif;
}
.about-section .about-section-txt h3{
    font-weight: 700;
    font-family: "Playfair Display", serif;
    font-size: 32px;
    margin-bottom: 12px;
}
.about-section .about-section-txt p{
    font-size: 18px;
    color: #8A8A8A;
    line-height: 28px;
    margin-bottom: 5px;
    font-family: "Roboto", sans-serif;
}
.about-section .about-section-txt .nav-links-btn{
    /* background-image: linear-gradient(to right, #378663 0%, #FEC009 100%); */
    background: #3D46FF;
    color: #fff;
    font-size: 15px;
    font-family: "Roboto", sans-serif;
    padding: 9px 28px;
    border: 0;
    border-radius: 6px;
}
.about-section .about-section-txt .about-section-btn{
    margin-top: 25px;
}
/* end about-section */

/* key-features-secton */
.key-features-secton{
    background: #E9F1FF;
    padding: 70px 0;
}
.key-features-secton .key-features-secton-txt{
    text-align: center;
    margin-bottom: 50px;
}
.key-features-secton .key-features-secton-txt h6{
    color: #378663;
    font-weight: 600;
    line-height: 35px;
    font-size: 20px;
    margin-bottom: 3px;
    font-family: "Poppins", sans-serif;
}
.key-features-secton .key-features-secton-txt h3{
    font-weight: 500;
    font-family: "Poppins", sans-serif;
    font-size: 32px;
    margin-bottom: 12px;
}
.key-features-secton-txt1{
    height: 100%;
    display: flex;
    align-items: center;
    padding-left: 30px;
}

.key-features-secton-txt1 h2{
    font-family: "Playfair Display", serif;
    font-weight: 700;
    font-size: 34px;
    margin-bottom: 18px;
    color: #252A34;
}
.key-features-secton-txt1 h5{
    font-family: "Roboto", sans-serif;
    margin: 12px 0;
    color: #525560;
}
.key-features-secton-txt1 h6{
    font-family: "Roboto", sans-serif;
        font-size: 18px;
    font-weight: 500;
    line-height: 26px;
    color: #525560;
}

.key-features-secton-txt1 p{
    font-size: 16px;
    margin-bottom: 7px;
    color: #3D46FF;
    font-weight: 500;
    font-family: "Roboto", sans-serif;
}
.key-features-secton-txt1 p img{
    width: 15px;
    height: 12px;
    margin-right: 5px;
}
.key-features-secton-txt1 .nav-links-btn{
    background-image: linear-gradient(to right, #378663 0%, #FEC009 100%);
    color: #fff;
    font-size: 15px;
    padding: 8px 30px;
    margin-top: 15px;
    border: 0;
    border-radius: 6px;
}
.key-features-btn{
   margin-top: 35px;
    text-align: center;
}
.key-features-btn .btn{
    padding: 10px 30px;
}
/* end key-features-secton */


/* faq-section  */
.faq-section{
    background: #E9F1FF;
    padding: 50px 0 40px;
}
.faq-section-txt h3{
    font-family: "Playfair Display", serif;
    font-size: 36px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 30px;
}
.faq-section-txt .containerss {
  background-color: white;
  color: black;
  border-radius: 0px;
  /* box-shadow: 0 5px 10px 0 rgb(0,0,0,0.25); */
  margin: 20px 0;
  border: 1px solid #00000040;
}
.faq-section-txt .question {
  font-size: 18px;
  font-weight: 500;
  padding: 15px 80px 15px 20px;
  position: relative;
  display: flex;
  align-items: center;
  cursor: pointer;
  color: #252A34;
  font-family: "Roboto", sans-serif;
}
.faq-section-txt .question::after {
  content: "\002B";
  font-size: 26px;
  position: absolute;
  font-weight: 500;
  right: 20px;
  transition: 0.2s;
}
.faq-section-txt .question.active::after {
  transform: rotate(45deg);
}
.faq-section-txt .answercont {
  max-height: 0;
  overflow: hidden;
  transition: 0.3s;
}
.faq-section-txt .answer {
  padding: 0 20px 20px;
  line-height: 1.5rem;
}
/* end faq-section  */

/* talkus-section */
.talkus-section{
    padding: 60px 0 80px;
    background: #E9F1FF;
}
.talkus-section h3{
    font-family: "Playfair Display", serif;
    font-size: 36px;
    margin-bottom: 0px;
    font-weight: 700;
    line-height: 54px;
    text-align: center;
}
.talkus-section p{
    font-family: "Roboto", sans-serif;
    font-size: 20px;
    margin-bottom: 35px;
    text-align: center;
    color: #525560;
}

/* end talkus-section */

/* talkus-section */
/* .talkus-section .talkus-section-card{
    box-shadow: rgba(0, 0, 0, 0.24) -14px 18px 15px -12px;
    padding: 20px 20px 20px 35px;
} */
.talkus-section .talkus-section-card .contact-card{
    display: flex;
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 25px;
}
.talkus-section .talkus-section-card .contact-card-img{
    background: #3D46FF;
    width: 45px;
    height: 45px;
    display: block;
    padding: 8px;
    border-radius: 6px;
    line-height: 28px;
    text-align: center;
    margin-right: 15px;
}
.talkus-section .talkus-section-card .contact-card-img img{
    width: 25px;
    height: fit-content;
}
.talkus-section .talkus-section-card .contact-card2 p{
    margin-bottom: 4px;
    color: #525560;
    text-align: left;
    font-size: 16px;
}
.talkus-section .talkus-section-card .contact-card2 h6{
    font-size: 16px;
    margin: 0;
}
.talkus-section .talkus-section-card .contact-card2 h6 a{
    color: #000;
}
.talkus-section .talkus-section-card-right{
    /* background: #DBF0E3; */
    padding: 0 15px;
}
.talkus-section .talkus-section-card-right textarea.form-control{
    height: auto;
}
.talkus-section .talkus-section-card-right .form-control{
    border-radius: 8px;
    height: 45px;
    margin-bottom: 20px;
}
.talkus-section .talkus-section-card-right label{
    color: #757575;
    font-family: "Poppins", sans-serif;
}
.talkus-section .talkus-section-card-right .nav-links-btn{
    padding: 8px 30px;
    font-size: 14px;
    margin-top: 8px;
}
/* end talkus-section */

/* footer-section */
.footer-section{
    /* background-image: linear-gradient(to right, #378663 0%, #FEC009 100%); */
    background: #110E58;
    padding: 80px 60px 30px;
}
.footer-section .footer-section-logo img{
    width: 265px;
}
.footer-section .footer-section-logo ul{
    display: flex;
    list-style-type: none;
    margin-bottom: 0;
    margin-top: 18px;
}
.footer-section .footer-section-logo ul li{
    margin-right: 15px;
    margin-top: 15px;
}
.footer-section .footer-section-logo ul li img{
    width: 32px;
}
.footer-section-search1{
    display: inline-grid;
    align-items: end;
    height: 100%;
    width: 100%;
    padding-bottom: 20px;
    width: 475px;
}
.footer-section-search{
    background: #ffffff;
    padding: 10px 15px 10px 6px;
    border-radius: 8px;
}
.footer-section-search .input-group{}
.footer-section-search .input-group .form-control{
    height: 42px;
    border: 0;
}
.footer-section-search .input-group .btn{
    padding: 10px;
    border-radius: 8px;
}
.footer-section-search .input-group .btn img{
    width: 25px;
    height: auto;
}
.footer-section-menu{
    margin-top: 35px;
    margin-bottom: 35px;
}
.footer-section-menu ul{
    display: flex;
    list-style: none;
    justify-content: center;
}
.footer-section-menu ul li{
    margin-right: 35px;
}
.footer-section-menu ul li a{
    color: #fff;
    font-size: 18px;
    font-family: "Poppins", sans-serif;
    transition-duration: 0.3s;
}
.footer-section-menu ul li a:hover{
    color: #fff;
    font-weight: 700;
}
.footer-section-copy{
    border-top: 1px solid #fff;
    padding-top: 22px;
    margin-top: 15px;
}
.footer-section-copy p{
    text-align: center;
    font-size: 18px;
    color: #fff;
    font-family: "Poppins", sans-serif;
}
/* end footer-section */

/* about-page-sec */
.about-page-sec{
    background: #E9F1FF;
    padding: 70px 0;
}
/* .about-page-sec .about-page-sec-img{
    width: 450px;
} */
.about-page-sec .about-page-sec-txt{
    padding-top: 20px;
}
.about-page-sec .about-page-sec-txt h6{
    color: #378663;
    font-weight: 600;
    line-height: 35px;
    font-size: 20px;
    margin-bottom: 0px;
    font-family: "Poppins", sans-serif;
}
.about-page-sec .about-page-sec-txt h3{
    font-weight: 700;
    font-family: "Playfair Display", serif;
    font-size: 34px;
    margin-bottom: 15px;
}
.about-page-sec .about-page-sec-txt p{
    font-size: 18px;
    color: #525560;
    line-height: 32px;
    font-family: "Roboto", sans-serif;
    margin-bottom: 5px;
}
.about-page-sec .about-page-sec-txt p span{
    color: #3d46ff;
    font-weight: 600;
}
.about-page-sec .about-page-sec-btn .btn{
    padding: 8px 30px;
    margin-top: 20px;
}
/* end about-page-sec */





/* problem-banner */
.problem-banner{
    background: #F0F9F4;
    padding: 60px 0 30px;
}
.problem-banner .problem-banner-txt h6{
    color: #378663;
    font-weight: 600;
    line-height: 35px;
    font-size: 18px;
    margin-bottom: 0px;
    font-family: "Poppins", sans-serif;
    text-transform: uppercase;
}
.problem-banner .problem-banner-txt h3{
    font-weight: 500;
    font-family: "Poppins", sans-serif;
    font-size: 30px;
    margin-bottom: 25px;
}
.problem-banner .problem-banner-txt ul{
    list-style: none;
}
.problem-banner .problem-banner-txt ul li{
    font-size: 17px;
    display: flex;
    padding-bottom: 20px;
    color: #8A8A8A;
    font-family: "Noto Sans", sans-serif;
    align-items: baseline;
}
.problem-banner .problem-banner-txt ul li img{
    width: 13px;
    margin-right: 10px;
}
/* end problem-banner */

/* the-need-sec */
.the-need-sec{
    margin: 50px 0 20px;
}
.the-need-sec .the-need-sec1{
    background: #F0F9F4;
    padding: 25px;
}
.the-need-sec .the-need-sec1 .the-need-sec1-txt1{
    display: flex;
    align-items: center;
    height: 100%;
}
.the-need-sec .the-need-sec1 .the-need-sec1-txt h3{
    font-weight: 500;
    font-family: "Poppins", sans-serif;
    font-size: 26px;
    margin-bottom: 8px;
}
.the-need-sec .the-need-sec1 .the-need-sec1-txt p{
    font-size: 18px;
    color: #8A8A8A;
    line-height: 26px;
    font-family: "Noto Sans", sans-serif;
    margin-bottom: 0px;
}
/* end the-need-sec */

/* solution-banner */
.solution-banner{
    background: #F0F9F4;
    padding: 60px 0 30px;
}
.solution-banner .solution-banner-txt h6{
    color: #378663;
    font-weight: 600;
    line-height: 35px;
    font-size: 20px;
    margin-bottom: 0px;
    font-family: "Poppins", sans-serif;
    text-transform: uppercase;
    text-align: center;
}
.solution-banner .solution-banner-txt h3{
    font-weight: 500;
    font-family: "Poppins", sans-serif;
    font-size: 30px;
    margin-bottom: 15px;
    text-align: center;
    padding: 0 170px;
}
/* end solution-banner */

/*  */
.solution-banner-timeline .timeline{
	/* width:800px; */
	/* background-color:#072736; */
	color:#8A8A8A;
	padding:30px 20px;
	/* box-shadow:0px 0px 10px rgba(0,0,0,.5); */
}
.solution-banner-timeline .timeline ul{
	list-style-type:none;
	border-left:3px solid #378663;
	padding:10px 0px 10px 5px;
}
.solution-banner-timeline .timeline ul li{
	padding:20px 0px 5px 30px;
	position:relative;
	cursor:pointer;
	transition:.5s;
}
.solution-banner-timeline .timeline ul li img{
    width: 35px;
    margin-bottom: 10px;
}
.solution-banner-timeline .timeline ul li span{
	display:inline-block;
	background-color:#1685b8;
	border-radius:25px;
	padding:2px 5px;
	font-size:15px;
	text-align:center;
}
.solution-banner-timeline .timeline ul li .content h3{
	color:#1F1A1A;
	font-size:17px;
	padding-top:5px;
    font-family: "Poppins", sans-serif;
    margin-bottom: 0px;
}
.solution-banner-timeline .timeline ul li .content p{
	padding:5px 0px 0px 0px;
	font-size:16px;
    font-family: "Noto Sans", sans-serif;
    margin-bottom: 0;
}
.solution-banner-timeline .timeline ul li:before{
	position:absolute;
	content:'';
	width:15px;
	height:15px;
	/* background-color:#34ace0; */
	background-color:#378663;
	border-radius:50%;
	left:-14px;
	top:28px;
	transition:.5s;
}
/* .solution-banner-timeline .timeline ul li:hover{
	background-color:#071f2a;
} */
.solution-banner-timeline .timeline ul li:hover:before{
	background-color:#34ace0;
	box-shadow:0px 0px 10px 2px #34ace0;
}
@media (max-width:300px){
	.solution-banner-timeline .timeline{
		width:100%;
		padding:30px 5px 30px 10px;
	}
	.solution-banner-timeline .timeline ul li .content h3{
		color:#34ace0;
		font-size:15px;
	}
}
.solution-banner-img1{
    margin-top: 70px;
    position: relative;
}
.solution-banner-img1 .solution-banner-img{
    margin-bottom: 30px;
    height: 480px;
}
.solution-banner-img1 .solution-banner-img img{
    border-radius: 10px;
}
.solution-banner-img1 .solution-banner-img4{
    width: 175px;
    position: absolute;
    right: 45px;
}
.solution-banner-img1 .solution-banner-img3{
    width: 230px;
    height: 230px;
    margin: auto;
}
/*  */

/* sukhtribe-banner */
.sukhtribe-banner{
    position: relative;
    padding: 50px 0;
}
.sukhtribe-banner .sukhtribe-banner-txt{
    background: #F0F9F4;
    padding: 35px 60px 15px 35px;
    border-radius: 8px;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}
.sukhtribe-banner .sukhtribe-banner-txt h6{
    color: #378663;
    font-weight: 600;
    line-height: 35px;
    font-size: 18px;
    margin-bottom: 0px;
    font-family: "Poppins", sans-serif;
    text-transform: uppercase;
}
.sukhtribe-banner .sukhtribe-banner-txt h3{
    font-weight: 500;
    font-family: "Poppins", sans-serif;
    font-size: 26px;
    margin-bottom: 15px;
    line-height: 36px;
}
.sukhtribe-banner .sukhtribe-banner-txt p{
    font-size: 17px;
    color: #8A8A8A;
    line-height: 28px;
    font-family: "Noto Sans", sans-serif;
}
.sukhtribe-banner .sukhtribe-banner-img{
    width: 400px;
    position: absolute;
    left: -50px;
    top: 35px;
}
/* end sukhtribe-banner */

/* sukhtribe-section */
.sukhtribe-section{
    padding: 50px 0;
}
.sukhtribe-section .sukhtribe-section-img{
    width: 380px;
    margin-top: 30px;
}
.sukhtribe-section .sukhtribe-section-txt h6{
    color: #378663;
    font-weight: 600;
    line-height: 35px;
    font-size: 16px;
    margin-bottom: 0px;
    font-family: "Poppins", sans-serif;
    text-transform: uppercase;
}
.sukhtribe-section .sukhtribe-section-txt h3{
    font-weight: 500;
    font-family: "Poppins", sans-serif;
    font-size: 26px;
    margin-bottom: 15px;
}
.sukhtribe-section .sukhtribe-section-txt p{
    font-size: 18px;
    color: #8A8A8A;
    line-height: 30px;
    font-family: "Noto Sans", sans-serif;
    margin-bottom: 25px;
}
.sukhtribe-section .sukhtribe-section-txt ul{
    list-style: none;
}
.sukhtribe-section .sukhtribe-section-txt ul li{
    font-size: 15px;
    display: flex;
    padding: 8px;
    color: #1F1A1A;
    font-family: "Noto Sans", sans-serif;
    align-items: center;
    background: #F0F9F4;
    margin-bottom: 13px;
    border-radius: 6px;
}
.sukhtribe-section .sukhtribe-section-txt ul li img{
    width: 18px;
    margin-right: 10px;
}
.sukhtribe-section .sukhtribe-section-btn .btn{
    padding: 8px 30px;
}
/* end sukhtribe-section */

/* sukhtribe-section1 */
.sukhtribe-section1{
    background: #F0F9F4;
    padding: 50px 0;
}
.sukhtribe-section1 .sukhtribe-section1-txt{
    margin-top: 30px;
}
.sukhtribe-section1 .sukhtribe-section1-txt h3{
    font-weight: 500;
    font-family: "Poppins", sans-serif;
    font-size: 30px;
    margin-bottom: 22px;
}
.sukhtribe-section1 .sukhtribe-section1-txt ul{
    list-style: none;
    margin-bottom: 5px;
}
.sukhtribe-section1 .sukhtribe-section1-txt ul li{
    font-size: 17px;
    display: flex;
    padding-bottom: 20px;
    color: #8A8A8A;
    font-family: "Noto Sans", sans-serif;
    align-items: center;
}
.sukhtribe-section1 .sukhtribe-section1-txt ul li img{
    width: 18px;
    margin-right: 10px;
}
.sukhtribe-section1-btn .btn{
    padding: 8px 30px;
}
.sukhtribe-section1-img{
    width: 375px;
    margin: auto;
}
/* end sukhtribe-section1 */

/* sukhstore-banner */
.sukhstore-banner {
    width: 100%;
    height: 500px;
    position: relative;
    color: white;
    text-align: center;
}  
.sukhstore-banner img {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index:9;
}  
.sukhstore-banner .overlay {
    width: 100%;
    height: 500px;
    /* background-color: rgba(0, 35, 82, 0.7); */
    position: absolute;
    top: 0;
    left: 0;
    z-index:9;
}  
.sukhstore-banner .overlay .overlay-media{
    padding: 0;
}
.sukhstore-banner .overlay .overlay-Sukhstore{
    padding: 0;
}
.sukhstore-banner h2 {
    margin-top: 170px;
    margin-bottom: 20px;
    font-size: 42px;
    font-family: "Poppins", sans-serif;
}  
.sukhstore-banner p {
    margin-top: 8px;
    font-size: 1.2em;
    font-family: "Poppins", sans-serif;
    padding: 0 190px;
    line-height: 32px;
}  
/* end sukhstore-banner */

/* launching-soon-section */
.launching-soon-section{
    padding: 200px 0;
}
.launching-soon-section .launching-soon-section-txt h3{
    text-align: center;
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    color: #378663;
    font-size: 38px;
}
/* end launching-soon-section */

/* contact-page-sec */
.contact-page-sec{
    padding: 60px 0 10px;
}
.contact-page-sec h3{
    font-size: 34px;
    text-align: center;
    margin-bottom: 45px;
}
.contact-page-sec-txt{
    display: grid;
    gap: 40px 50px;
    grid-template-columns: auto auto;
}
.contact-page-sec-txt .contact-page-sec-txt-card img{
    width: 30px;
    height: 30px;
    margin-bottom: 10px;
}
.contact-page-sec-txt .contact-page-sec-txt-card h6{
    font-size: 18px;
    color: #1F1A1A;
}
.contact-page-sec-btn{
    text-align: center;
    margin-top: 60px;
}
.contact-page-sec-btn .btn{
    padding: 8px 30px;
}
/* end contact-page-sec */

.contact-mob{
    display: none;
}

/* glimpses-work */
.glimpses-work{
    padding: 60px 0;
}
.glimpses-work .containers {
  max-width: 80rem;
  width: 100%;
  padding: 0rem;
  margin: 0 auto;
}
.glimpses-work .main .containers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 25px;
  justify-content: center;
  align-items: center;
}
.glimpses-work .main .card {
  color: #252a32;
  border-radius: 2px;
  background: #ffffff;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 3px rgba(0, 0, 0, 0.24);
}
.glimpses-work .main .card-image {
  position: relative;
  display: block;
  width: 100%;
  padding-top: 100%;
  background: #ffffff;
}
.glimpses-work .main .card-image img {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media only screen and (max-width: 600px) {
  .glimpses-work .main .container {
    display: grid;
    grid-template-columns: 1fr;
    grid-gap: 1rem;
  }
}
.glimpses-work .main h3{
    font-family: "Playfair Display", serif;
    display: flex;
    justify-content: space-between;
    font-size: 36px;
    font-weight: 700;
    align-items: end;
        margin-bottom: 35px;
}
.glimpses-work .main h3 span{
    color: #3D46FF;
    font-size: 16px;
    font-family: "Roboto", sans-serif;
    font-weight: 500;
}
.glimpses-work .main h3 span img{
    width: 13px;
        height: 10px;
}
/* end glimpses-work */

/*  */
.vission-mission-sec{
    padding: 70px 0 50px;
    background: #E9F1FF;
}
.vission-mission-sec .vission-mission-sec-txt{
    display: flex;
    gap: 20px;
    margin-top: 30px;
    padding-left: 50px;
}
.vission-mission-sec .vission-mission-sec-txt1{
    height: 100%;
    padding-top: 5px;
}
.vission-mission-sec .vission-mission-sec-txt2 h4{
    font-family: "Playfair Display", serif;
    font-size: 30px;
    font-weight: 700;
}
.vission-mission-sec .vission-mission-sec-txt2 p{
    font-family: "Roboto", sans-serif;
        font-size: 18px;
    line-height: 28px;
}
.vission-mission-sec-btn{
    margin: 40px auto 0;
}
.vission-mission-sec-btn .btn{
    background: #3D46FF;
    color: #fff;
    font-size: 15px;
    border: 0;
        padding: 10px 30px;
}
/* end vission-mission-sec */

/* directors-desk */
.directors-desk{
    padding: 60px 0 60px;
}
.directors-desk h3{
    font-family: "Playfair Display", serif;
    font-size: 34px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 30px;
}
.directors-desk .directors-desk-card{
    border: 2px solid #3D46FF;
    border-radius: 12px;
    padding: 60px 30px 15px;
    text-align: center;
    position: relative;
}
.directors-desk .directors-desk-card .directors-desk-card-body::before{
    content: "";
    background-image: url(../img/bg/qqq.png);
    background-size: 100% 100%;
    background-repeat: no-repeat;
    width: 45px;
    height: 35px;
    position: absolute;
    left: 35px;
    top: 15px;
}
.directors-desk .directors-desk-card h6{
    font-family: "Roboto", sans-serif;
    font-weight: 400;
    color: #525560;
    line-height: 28px;
    font-size: 18px;
    margin-bottom: 25px;
}
.directors-desk .directors-desk-card img{
    width: 85px;
    margin-bottom: 15px;
}
.directors-desk .directors-desk-card h5{
    font-family: "Roboto", sans-serif;
        margin-bottom: 5px;
}
.directors-desk .directors-desk-card p{
    font-family: "Roboto", sans-serif;
}
/* end directors-desk */

/* our-impact */
.our-impact{
    background: #1309CF;
    padding: 70px 0 20px;
}
.our-impact .our-impact-txt h5{
    font-family: "Roboto", sans-serif;
    color: #fff;
    font-weight: 600;
    font-size: 22px;
    margin-bottom: 20px;
}
.our-impact .our-impact-txt h3{
    font-family: "Roboto", sans-serif;
    color: #fff;
    font-weight: 600;
    font-size: 32px;
    line-height: 40px;
}
.our-impact-txt-right{
    border-left: 4px solid #fff;
    padding-left: 15px;
    margin-bottom: 50px;
}
.our-impact-txt-right h2{
    font-family: "Roboto", sans-serif;
    color: #fff;
    margin-bottom: 5px;
    font-weight: 700;
    line-height: 25px;
}
.our-impact-txt-right p{
    font-family: "Roboto", sans-serif;
    color: #fff;
    margin: 0;
}
/* end our-impact */

/* about-nibodhita */
.about-nibodhita{
    padding-bottom: 210px;
}
.about-nibodhita-banner .carousel .carousel-item .carousel-caption {
    top: 20%;
}
.about-nibodhita .about-nibodhita-txt{
    border: 1px solid #5249F433;
    padding: 40px 45px 20px;
    position: absolute;
    top: -140px;
    background: #fff;
}
.about-nibodhita .about-nibodhita-txt h3{
    font-family: "Playfair Display", serif;
    font-weight: 700;
    font-size: 36px;
}
.about-nibodhita .about-nibodhita-txt p{
    font-family: "Roboto", sans-serif;
    font-size: 18px;
    line-height: 30px;
    margin-bottom: 5px;
}
/* end about-nibodhita */

/* our-programs */
.our-programs{
    padding: 70px 0px 0;
    background: #E9F1FF;
}
.our-programs .our-programs-txt{
    padding-left: 40px;
    padding-top: 0px;
}
.our-programs .our-programs-txt h3{
    font-family: "Playfair Display", serif;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 25px;
}
.our-programs .our-programs-txt ul{
        list-style: none;
}
.our-programs .our-programs-txt ul li{
   font-family: "Roboto", sans-serif;
    font-size: 16px;
    border: 2px solid #D8E3FF;
    border-radius: 6px;
    margin-bottom: 20px;
    padding: 8px 15px;
    background: #fff;
}
.our-programs .our-programs-txt ul li img{
    width: 26px;
    margin-right: 8px;
}
/* end our-programs */

/* rooted-purpose */
.rooted-purpose{
    padding: 60px 0;
}
.rooted-purpose .rooted-purpose-txt{
    text-align: center;
}
.rooted-purpose .rooted-purpose-txt h3{
    font-family: "Playfair Display", serif;
    font-weight: 700;
    font-size: 36px;
    margin-bottom: 20px;
}
.rooted-purpose .rooted-purpose-txt p{
    font-family: "Roboto", sans-serif;
    font-size: 20px;
}
.rooted-purpose .rooted-purpose-txt p span{
    color: #3D46FF;
}
/* end rooted-purpose */

/* driven-Collaboration */
.driven-Collaboration{
    background: #E9F1FF;
    padding: 70px 0;
}
.driven-Collaboration .driven-Collaboration-txt h3{
    font-family: "Playfair Display", serif;
    font-weight: 700;
    font-size: 28px;
    margin-bottom: 15px;
}
.driven-Collaboration .driven-Collaboration-txt p{
    font-family: "Roboto", sans-serif;
    font-size: 17px;
}
.driven-Collaboration .driven-Collaboration-txt p span{
    color: #3D46FF;
}
.driven-Collaboration .driven-Collaboration-txt .btn{
    background: #3D46FF;
    color: #fff;
    font-size: 14px;
    font-family: "Roboto", sans-serif;
    padding: 9px 28px;
    border: 0;
    border-radius: 6px;
}
/* end driven-Collaboration */

/* JoinUs-Making */
.JoinUs-Making{
    background: #E9F1FF;
    padding: 70px 0 60px;
}
.JoinUs-Making .JoinUs-Making-txt{
    text-align: center;
}
.JoinUs-Making .JoinUs-Making-txt h3{
    font-family: "Playfair Display", serif;
    font-weight: 700;
    font-size: 36px;
    margin-bottom: 20px;
}
.JoinUs-Making .JoinUs-Making-txt p{
    font-family: "Roboto", sans-serif;
    font-size: 20px;
}
.JoinUs-Making .JoinUs-Making-txt .btn{
    background: #3D46FF;
    color: #fff;
    font-size: 15px;
    font-family: "Roboto", sans-serif;
    padding: 8px 35px;
    border: 0;
    border-radius: 6px;
    margin-top: 20px;
}
/* end JoinUs-Making */

/* information-desk-card */
.information-desk-card{
    background: #E9F1FF;
    padding: 70px 0 0;
}
.information-desk-card .information-desk-card1{
    background: #fff;
    text-align: center;
    padding: 40px;
    border: 1px solid #291EF2;
    border-radius: 10px;
    margin: 40px 70px;
    height: 200px;
}
.information-desk-card .information-desk-card1 h5{
    font-family: "Roboto", sans-serif;
}
.information-desk-card .information-desk-card1 .btn{
    background: #3D46FF;
    color: #fff;
    font-size: 15px;
    font-family: "Roboto", sans-serif;
    padding: 8px 35px;
    border: 0;
    border-radius: 6px;
    margin-top: 30px;
}
/* end information-desk-card */

/* our-appeal */
.our-appeal{
    padding: 40px 0;
}
.our-appeal .our-appeal-txt{
    text-align: center;
    background: #E9F1FF;
    padding: 40px 175px;
    border-radius: 20px;
}
.our-appeal .our-appeal-txt h3{
    font-family: "Playfair Display", serif;
    font-weight: 700;
    font-size: 32px;
    margin-bottom: 12px;
}
.our-appeal .our-appeal-txt p{
    font-family: "Roboto", sans-serif;
    font-size: 17px;
    margin: 0;
}
/* end our-appeal */

/* collaborate-sec */
.collaborate-sec{
    padding: 20px 0 60px;
}
.collaborate-sec .collaborate-sec-txt{
    height: 100%;
    display: flex;
    align-items: center;
    padding-left: 10px;
}
.collaborate-sec .collaborate-sec-txt h3{
    font-family: "Playfair Display", serif;
    font-weight: 700;
    font-size: 36px;
    margin-bottom: 12px;
}
.collaborate-sec .collaborate-sec-txt p{
    font-family: "Roboto", sans-serif;
    font-size: 20px;
    margin: 0 0 8px;
    color: #3D46FF;
}
.collaborate-sec .collaborate-sec-txt p img{
    width: 15px;
    height: 12px;
    margin-right: 5px;
}
/* end collaborate-sec */

/* donate-difference */
.donate-difference{
    background: #E9F1FF;
        padding: 60px 0;
}
.donate-difference h3{
    font-family: "Playfair Display", serif;
    font-weight: 700;
    font-size: 34px;
    margin-bottom: 35px;
    text-align: center;
}
.donate-difference .donate-difference-img img{
    padding: 10px 25px;
}
.donate-difference .donate-difference-img p{
    font-family: "Roboto", sans-serif;
    font-size: 20px;
    margin: 0 0 8px;
    color: #525560;
    font-weight: 600;
}
.donate-difference .donate-difference-OR{
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.donate-difference .donate-difference-OR h1{
    font-family: "Playfair Display", serif;
    font-weight: 700;
    font-size: 36px;
    margin-bottom: 35px;
    text-align: center;
}
.donate-difference .donate-difference-txt p{
    font-family: "Roboto", sans-serif;
    font-size: 20px;
    margin: 0 0 8px;
    color: #525560;
    font-weight: 600;
}
.donate-difference .donate-difference-txt p span{
    font-size: 16px;
}
.donate-difference .donate-difference-txt h6{
    margin-bottom: 14px;
        font-weight: 300;
}
.donate-difference .donate-difference-txt h6 span{
    font-weight: 700;
    color: #525560;
}
.donate-difference .donate-difference-txt1{
    height: 100%;
    align-items: center;
    display: flex;
}
/* end donate-difference */


/* <button class="button-24" role="button">Button 24</button> */

/* CSS */
a.button-24{
    text-decoration: none;
}
.btns.button-24{
    margin-top: 30px;
}
.button-24 {
  background: #3d46ff;
  border: 1px solid #3d46ff;
  border-radius: 6px;
  box-sizing: border-box;
  color: #FFFFFF!important;
  cursor: pointer;
  display: inline-block;
  font-size: 15px!important;
  font-weight: 600;
  line-height: 16px;
  /* min-height: 40px; */
  outline: 0;
  padding: 12px 20px!important;
  text-align: center;
  text-rendering: geometricprecision;
  text-transform: none;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
  vertical-align: middle;
  /* padding: 9px 28px; */
}

.button-24:hover,
.button-24:active {
  background-color: initial;
  background-position: 0 0;
  color: #525560!important;
  font-weight: 600!important;
}

.button-24:active {
  opacity: .5;
}


/* donateDifferenceModal */
#donateDifferenceModal .donate-difference {
    background: transparent;
    padding: 0px 0;
}
#donateDifferenceModal .donate-difference h3{
    font-size: 28px;
    margin-bottom: 25px;
}
#donateDifferenceModal .donate-difference .donate-difference-img p{
    font-size: 17px;
}
#donateDifferenceModal .donate-difference .donate-difference-OR h1{
    font-size: 30px;
}
#donateDifferenceModal .donate-difference .donate-difference-txt p{
    font-size: 17px;
}
#donateDifferenceModal .donate-difference .donate-difference-txt p span {
    font-size: 15px;
}
#donateDifferenceModal .donate-difference .donate-difference-txt h6{
    font-size: 15px;
}
/* end donateDifferenceModal */

/**/
.our-programme-sec-headr h3{
    text-align: center;
    margin-bottom: 20px;
    margin-top: 20px;
    font-family: "Playfair Display", serif;
    font-weight: 700;
    font-size: 32px;
}
.our-programme-sec{
    background: #3D46FF;
    padding: 50px 0;
}
.our-programme-sec .our-programme-sec-left1{
    display: flex;
    align-items: center;
    height: 100%;
}
.our-programme-sec .our-programme-sec-left h3{
    color:#fff;
    font-family: "Roboto", sans-serif;
    font-weight: 600;
}
.our-programme-sec .our-programme-sec-left p{
    color:#fff;
    font-family: "Roboto", sans-serif;
}
.our-programme-sec1 .our-programme-sec-left h3{
    color:#000;    
    font-size: 24px;
    font-weight: 600;
    font-family: "Roboto", sans-serif;
}
.our-programme-sec1 .our-programme-sec-left p{
    color:#000;
    font-family: "Roboto", sans-serif;
}
.our-programme-sec1{
    background:#E9F1FF;
    padding: 50px 0;
}
.our-programme-sec-right{
    display: grid;
    gap: 12px;
    grid-template-columns: auto auto;
}
.our-programme-sec2{
    background: #E9F1FF;
    padding: 40px 0;
}
.our-programme-sec2-txt{
    margin-bottom: 30px;
}
.our-programme-sec2-txt h3{
    text-align:center;
    margin-bottom: 15px;
    font-weight: 600;
    font-family: "Roboto", sans-serif;
}
.our-programme-sec2-txt p{
    text-align:center;
    font-family: "Roboto", sans-serif;
}
.our-programme-sec2-img{
    margin-bottom: 30px;
}
.our-programme-sec2-img p{
    text-align:center;
}
.our-programme-sec3{
    padding:50px 0;
    background: #3D46FF;
}
.our-programme-sec3-txt{
    margin-bottom:20px;
}
.our-programme-sec3-txt h5{
    text-align: center;
    font-size: 18px;
    font-weight: 700;
}
.our-programme-sec3-txt p{
    color:#fff;
    text-align: center;
}
.our-programme-sec1-1{
    background: #3D46FF;
}
.our-programme-sec1-1 p{
    color:#fff;
    font-family: "Roboto", sans-serif;
}
.our-programme-sec4{
    background: #E9F1FF;
    padding: 40px 0;
    margin-bottom: 0px;
}
.programme-banner .carousel .carousel-item .carousel-caption p{
    padding: 0 0px;
}
/**/