/* ----- Active and Hover Links ----- */
/* ----- Active and Hover Links End ----- */
@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
.navBlock {
  flex: 0 0 80%;
  max-width: 80%;
}
.navBlock .navbarLink ul {
  justify-content: end;
  width: 100%;
}
.navBlock .navbarLink ul li {
  margin-left: 30px;
}
.navBlock .navbarLink ul li a {
  font-size: 16px;
  line-height: 16px;
  color: #000;
}

.crossLine {
  background: #fff;
  position: relative;
  display: inline-block;
  padding: 0px;
  width: 45px;
  height: 25px;
  cursor: pointer;
  border: inherit;
}
.crossLine:focus, .crossLine:hover {
  border: inherit;
  outline: none;
}
.crossLine .line {
  display: block;
  background: #000;
  height: 3px;
  width: 30px;
  position: absolute;
  left: 0px;
  right: 0px;
  margin: auto;
}
.crossLine .line.crossLine1 {
  top: 0px;
  transition: 0.5s ease-in-out;
}
.crossLine .line.crossLine2 {
  top: 45%;
  transition: 0.5s ease-in-out;
}
.crossLine .line.crossLine3 {
  bottom: 0px;
  transition: 0.5s ease-in-out;
}
.crossLine.active .line.crossLine1 {
  top: 45%;
  transform: rotate(45deg);
}
.crossLine.active .line.crossLine2 {
  opacity: 0;
}
.crossLine.active .line.crossLine3 {
  bottom: 45%;
  transform: rotate(135deg);
}
@media (max-width: 991px) {
  .crossLine.active {
    background: inherit;
    padding: 25px 0;
  }
  .crossLine.active .line {
    background: #fff;
  }
  .crossLine.active .line.crossLine3 {
    bottom: 50%;
  }
}
#sidebarCollapse {
  z-index: 5555;
}

* {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
}
body.overflowhidden {
  overflow: hidden;
}

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

p {
  font-size: 16px;
  line-height: 20px;
}

ul {
  padding-left: 0px;
  margin-bottom: 0px;
}
ul li {
  font-size: 16px;
  line-height: 20px;
}

.sectionPadding {
  padding: 80px 0px;
}

.mainHeader .logo {
  flex: 0 0 20%;
  max-width: 20%;
}
.mainHeader .logo a {
  display: inline-block;
}
.mainHeader .logo a img {
  height: 100px;
  -o-object-fit: contain;
     object-fit: contain;
}
.mainHeader header {
  display: flex;
  align-items: center;
  width: 100%;
  margin: 10px 0;
  flex-wrap: wrap;
}
.mainHeader header .navBlock ul {
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
}
.mainHeader header .navBlock ul li {
  list-style: none;
  margin-left: 20px;
}
.mainHeader header .navBlock ul li a {
  color: #000;
  font-size: 18px;
  line-height: 24px;
}
.mainHeader header .navBlock ul li a:hover {
  color: #ff0000;
}
@media (max-width: 991px) {
  .mainHeader header .navBlock ul li a {
    font-size: 14px;
  }
}
@media (max-width: 767px) {
  .mainHeader header .navBlock ul {
    justify-content: center;
    margin-top: 30px;
  }
  .mainHeader header .navBlock ul li {
    margin: 0 10px;
  }
}
@media (max-width: 767px) {
  .mainHeader header {
    flex-direction: column;
  }
}

.homebanner .bannerBox .bannerImage {
  background: #ead59e;
}
.homebanner .bannerBox .bannerImage img {
  width: 100%;
}

.aboutUsSection .aboutusImage {
  position: relative;
  text-align: right;
  display: flex;
  align-items: center;
  width: 100%;
}
.aboutUsSection .aboutusImage::before {
  content: "";
  position: absolute;
  background: #bf4746;
  width: 250px;
  height: 250px;
  z-index: -1;
  left: 0;
  top: 0;
}
.aboutUsSection .aboutusImage img {
  height: 400px;
  -o-object-fit: contain;
     object-fit: contain;
  box-shadow: 0px 10px 20px #ccc;
  margin-left: 60px;
  margin-top: 50px;
}
.aboutUsSection p {
  font-size: 16px;
  line-height: 26px;
}
.aboutUsSection h4 {
  font-size: 14px;
  line-height: 14px;
  margin-bottom: 10px;
  font-weight: 700;
}
@media (max-width: 991px) {
  .aboutUsSection .aboutusImage {
    margin-bottom: 50px;
  }
}

.sectionTitle {
  position: relative;
  font-size: 30px;
  line-height: 30px;
  display: inline-block;
  padding-left: 50px;
  font-weight: 400;
  margin-bottom: 20px;
}
.sectionTitle:before {
  content: "";
  position: absolute;
  width: 40px;
  height: 2px;
  background: #bf4746;
  left: 0px;
  top: 0px;
  bottom: 0;
  margin: auto;
}
@media (max-width: 575px) {
  .sectionTitle {
    font-size: 20px;
    line-height: 30px;
  }
}

.bankDetailsSec {
  padding: 40px 0px;
  background: #ffe5e5;
}
.bankDetailsSec ul {
  display: flex;
  flex-wrap: wrap;
}
.bankDetailsSec ul li {
  flex: 0 0 25%;
  max-width: 25%;
  list-style: none;
}
.bankDetailsSec ul li span {
  padding-bottom: 5px;
  display: inline-block;
}
.bankDetailsSec ul li .mrg0 {
  margin-bottom: 0px;
}
@media (max-width: 767px) {
  .bankDetailsSec ul li {
    flex: 0 0 50%;
    max-width: 100%;
  }
  .bankDetailsSec ul li .mrg0 {
    margin-bottom: 20px;
  }
}
@media (max-width: 575px) {
  .bankDetailsSec ul li {
    flex: 0 0 100%;
    max-width: 100%;
  }
}

.upcommingSec {
  padding-top: 0px;
}
.upcommingSec .sectionTitle {
  padding-left: 0px;
}
.upcommingSec .sectionTitle::before {
  display: none;
}
.upcommingSec ul li {
  list-style: none;
  position: relative;
  padding-left: 20px;
  margin-bottom: 15px;
}
.upcommingSec ul li::before {
  content: "";
  position: absolute;
  background: #000;
  height: 10px;
  width: 10px;
  top: 0;
  left: 0px;
  border-radius: 50px;
}

.committeSec .committe {
  display: flex;
  flex-wrap: wrap;
}
.committeSec .committe .committeBox {
  flex: 0 0 44%;
  max-width: 100%;
  margin: 0 15px 30px;
  background: #fff;
  box-shadow: 0px 10px 20px #ccc;
  padding: 20px;
  margin-bottom: 26px;
}
.committeSec .committe .committeBox .committImg img {
  height: 250px;
  -o-object-fit: contain;
     object-fit: contain;
  width: 100%;
}
.committeSec .committe .committeBox .committName {
  text-align: center;
}
.committeSec .committe .committeBox .committName p {
  font-size: 16px;
  line-height: 20px;
  margin: 5px 0px;
  text-align: center;
  font-weight: 600;
  margin-top: 10px;
  min-height: 40px;
}
.committeSec .committe .committeBox .committName span {
  text-align: center;
  font-size: 14px;
  line-height: 14px;
  display: inline-block;
  margin: auto;
}
@media (max-width: 991px) {
  .committeSec .committe .committeBox {
    flex: 0 0 45%;
  }
}
@media (max-width: 767px) {
  .committeSec .committe .committeBox {
    flex: 0 0 44%;
  }
}
@media (max-width: 575px) {
  .committeSec .committe .committeBox {
    flex: 0 0 92%;
  }
}
.committeSec .committe.mainCommitte {
  justify-content: center;
}
.committeSec .committe.mainCommitte .committeBox {
  flex: 0 0 25%;
}
@media (max-width: 991px) {
  .committeSec .committe.mainCommitte {
    display: block;
    max-width: 300px;
    margin: auto;
  }
}
@media (max-width: 991px) {
  .committeSec .sectionTitle.margTop {
    margin-top: 50px;
  }
}

.activities {
  background: #f2f2f2;
}
.activities ul {
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.activities ul li {
  list-style: none;
  flex: 0 0 25%;
  max-width: 100%;
}
.activities ul li .eventBox {
  margin: 0 15px 30px;
  border: 1px solid;
}
.activities ul li .eventBox img {
  width: 100%;
  height: 400px;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (max-width: 1199px) {
  .activities ul li {
    flex: 0 0 33.33%;
    max-width: 100%;
  }
}
@media (max-width: 991px) {
  .activities ul li {
    flex: 0 0 50%;
  }
}
@media (max-width: 575px) {
  .activities ul li {
    flex: 0 0 100%;
  }
}

footer.sectionPadding {
  padding-top: 0px;
  padding-bottom: 50px;
}
footer .footerlinks ul {
  display: flex;
  flex-wrap: wrap;
}
footer .footerlinks ul li {
  list-style: none;
  flex: 0 0 50%;
  max-width: 50%;
}
footer .footerlinks ul li a {
  color: #000;
  font-size: 18px;
  line-height: 18px;
  margin-bottom: 15px;
  display: block;
}

.footerSec {
  background: #fff;
  padding: 20px 0;
  text-align: center;
}
.footerSec .dispFlex {
  display: flex;
  flex-direction: row;
  margin-bottom: 30px;
}
.footerSec .dispFlex li {
  padding-top: 0;
  margin: 0 10px;
}
.footerSec .dispFlex li span {
  padding-top: 10px;
}
.footerSec ul {
  margin: 0;
  padding: 0;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.footerSec ul li {
  list-style: none;
  padding: 0;
  padding-top: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.footerSec ul li:first-child {
  padding-top: 0;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.footerSec ul li a span {
  color: #000;
}
.footerSec ul li a i {
  background: #ff0000;
  height: 30px;
  width: 30px;
  border-radius: 50%;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.subTitle {
  font-size: 26px;
  margin-bottom: 30px;
  padding-top: 20px;
  line-height: 30px;
}

.floatwht {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 20px;
  right: 20px;
  background-color: #25d366;
  color: #fff;
  border-radius: 50px;
  text-align: center;
  font-size: 30px;
  box-shadow: 2px 2px 3px #999;
  z-index: 100;
}
.floatwht i {
  margin-top: 16px;
  color: #fff;
}

.karyakarmSec {
  padding-bottom: 30px;
}
.karyakarmSec ul {
  justify-content: space-between;
}
.karyakarmSec ul li {
  position: relative;
  list-style: none;
  padding-left: 20px;
  margin-bottom: 15px;
  flex: 0 0 46%;
  max-width: 46%;
  font-size: 16px;
  line-height: 28px;
}
.karyakarmSec ul li::before {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  background: #000;
  border-radius: 50%;
  left: 0;
  top: 4px;
}/*# sourceMappingURL=style.css.map */