@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@500;600;700;800&family=Work+Sans:wght@400;500&display=swap");

@import url("https://fonts.googleapis.com/css2?family=Dancing+Script&family=Poppins:wght@500;600;700;800&family=Work+Sans:wght@400;500&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Work Sans", sans-serif;
  outline: none;
}

body.active-popup {
  overflow: hidden;
}

:root {
  --commoncolorgradient: linear-gradient(0deg, #9748bb 0%, #970f7c 100%);
  --backgroundgraywhite: #f2f1f0;
  --backgroundyellow: #f9c110;
  --commoncolor: #c61c61;
  --backgroundwhite: #ffffff;
  --backgroundpurple: #c61c61;
  --linkshovercolor: #fea116;
  --blacktintcolor: #070910ea;
  --paragraytint: rgb(90, 82, 82);
  --parawhitetint: #e6e5e5;
  --helper-tint: #fefcff;
  --contenthovercolor: #070910ea;
}

h1,
h2,
h3,
h4 {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  color: var(--blacktintcolor);
}

h2 {
  font-size: 45px;
  font-weight: 600;
}

h3 {
  font-size: 25px;
}

h4 {
  font-size: 18px;
}

p {
  line-height: 1.6;
  font-size: 17px;
  margin-top: 15px;
  color: var(--paragraytint);
}

li {
  list-style: none;
}
a {
  text-decoration: none;
}

/*--------++--------------
        Reusable code section
     ++------------------- ---*/

.section {
  padding: 90px 0px;
}
.container {
  max-width: 80%;
  margin: 0 auto;
}

.grid {
  display: grid;
  gap: 50px;
}

.grid-two-column {
  grid-template-columns: repeat(2, 1fr);
}

.grid-three-column {
  grid-template-columns: repeat(3, 1fr);
}

.grid-four-column {
  grid-template-columns: repeat(4, 1fr);
}

.btn {
  background: var(--backgroundyellow);
  padding: 15px 20px;
  border: none;
  color: var(--blacktintcolor);
  display: inline-block;
  text-transform: capitalize;
  font-size: 20px;
  font-weight: 500;
  cursor: pointer;
  border-radius: 10px;
  transition: all 0.3s;
}

.btn:hover,
.btn:active {
  background: var(--contenthovercolor);
  color: var(--helper-tint);
}

.common-head-label h3 {
  color: var(--commoncolor);
  text-transform: capitalize;
}

.common-head-label2 h3 {
  color: var(--backgroundyellow);
  text-transform: capitalize;
}

.common-content-heading h2 {
  text-transform: capitalize;
  color: var(--blacktintcolor);
}

.common-page-section {
  width: 100%;
  height: 55vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* +++++++===============
 Index page style
  ==============+++++++ */

/* +++----- Preloader style -------++ */

.preloader-section {
  width: 100%;
  height: 100vh;
  background: var(--commoncolorgradient);
  z-index: 99999;
  position: fixed;
}

.wrapper {
  width: 200px;
  height: 60px;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.circle {
  width: 20px;
  height: 20px;
  position: absolute;
  border-radius: 50%;
  background-color: #fff;
  left: 15%;
  transform-origin: 50%;
  animation: circle 0.5s alternate infinite ease;
}

@keyframes circle {
  0% {
    top: 60px;
    height: 5px;
    border-radius: 50px 50px 25px 25px;
    transform: scaleX(1.7);
  }
  40% {
    height: 20px;
    border-radius: 50%;
    transform: scaleX(1);
  }
  100% {
    top: 0%;
  }
}
.circle:nth-child(2) {
  left: 45%;
  animation-delay: 0.2s;
}
.circle:nth-child(3) {
  left: auto;
  right: 15%;
  animation-delay: 0.3s;
}
.shadow {
  width: 20px;
  height: 4px;
  border-radius: 50%;
  background-color: rgba(0, 0, 0, 0.5);
  position: absolute;
  top: 62px;
  transform-origin: 50%;
  z-index: -1;
  left: 15%;
  filter: blur(1px);
  animation: shadow 0.5s alternate infinite ease;
}

@keyframes shadow {
  0% {
    transform: scaleX(1.5);
  }
  40% {
    transform: scaleX(1);
    opacity: 0.7;
  }
  100% {
    transform: scaleX(0.2);
    opacity: 0.4;
  }
}
.shadow:nth-child(4) {
  left: 45%;
  animation-delay: 0.2s;
}
.shadow:nth-child(5) {
  left: auto;
  right: 15%;
  animation-delay: 0.3s;
}
.wrapper span {
  position: absolute;
  top: 75px;
  font-size: 20px;
  letter-spacing: 12px;
  color: #fff;
  left: 15%;
}

/* +++----- Popup style -------++ */

.popup-container {
  width: 100%;
  height: 100vh;
  padding: 100px 0px;

  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.47);
  visibility: hidden;
}

.popup-box {
  background: var(--backgroundwhite);
  width: 40%;
  padding: 50px 40px;
  border-radius: 20px;
  margin-top: auto;
  text-align: center;
  box-shadow: 0px 0px 10px 1px rgba(151, 72, 187, 0.75);
  -webkit-box-shadow: 0px 0px 10px 1px rgba(151, 72, 187, 0.75);
  -moz-box-shadow: 0px 0px 10px 1px rgba(151, 72, 187, 0.75);
}

.popup-image-box {
  position: relative;
  margin-bottom: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.popup-image-box img {
  width: 200px;
}

.blast-svg {
  position: absolute;
  left: 0px;
  top: 60px;
}

/* svg style */
.conf0 {
  fill: #fc6394;
}
.conf1 {
  fill: #ef3c8a;
}
.conf2 {
  fill: #5adaea;
}
.conf3 {
  fill: #974cbe;
}
.conf4 {
  fill: #3cbecd;
}
.conf5 {
  fill: #813bbe;
}
.conf6 {
  fill: #f9b732;
}
.conf7 {
  display: none;
  fill: none;
  stroke: #000000;
  stroke-miterlimit: 10;
}
.conf8 {
  fill: none;
  stroke: #f9b732;
  stroke-width: 9;
  stroke-linecap: round;
  stroke-miterlimit: 10;
}

.confetti-cone {
  transform-origin: 200px 50px;
  animation: confetti-cone1 1.2s ease infinite;
}
@keyframes confetti-cone1 {
  0% {
    transform: translate(40px, 95px) rotate(45deg) scale(1, 1);
  }
  15% {
    transform: translate(10px, 145px) rotate(45deg) scale(1.1, 0.85);
  }
  100% {
    transform: translate(40px, 105px) rotate(45deg) scale(1, 1);
  }
}

#yellow-strip {
  fill: none;
  stroke: #f9b732;
  stroke-width: 9;
  stroke-linecap: round;
  stroke-miterlimit: 10;
  animation: confdash 1.2s ease infinite;
}

@keyframes confdash {
  0% {
    stroke-dasharray: 1000;
    stroke-dashoffset: 500;
    transform: translate(-30px, 30px);
    opacity: 0;
  }
  2% {
    stroke-dasharray: 1000;
    stroke-dashoffset: 500;
    transform: translate(-30px, 30px);
    opacity: 0;
  }
  35% {
    stroke-dasharray: 1000;
    stroke-dashoffset: 900;
    transform: translate(-2px, 0px);
    opacity: 1;
  }

  85% {
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
    transform: translate(1px, -5px);
    opacity: 1;
  }
  90% {
    stroke-dashoffset: 1000;
    stroke-dashoffset: 1000;
    transform: translate(2px, -8px);
    opacity: 0;
  }
  100% {
    stroke-dashoffset: 1000;
    stroke-dashoffset: 500;
    transform: translate(2px, -8px);
    opacity: 0;
  }
}

#a2 {
  transform-origin: 310.9px 241px;
  animation: confa 1.2s ease-out infinite;
}

#a1 {
  transform-origin: 276px 246px;
  animation: confa 1.2s ease-out infinite;
}

@keyframes confa {
  0% {
    opacity: 0;
    transform: translate(-30px, 20px) rotate(0);
  }
  15% {
    opacity: 1;
    transform: translate(25px, -10px) rotate(60deg);
  }
  80% {
    opacity: 1;
    transform: translate(33px, -18px) rotate(180deg);
  }
  100% {
    opacity: 0;
    transform: translate(37px, -23px) scale(0.5) rotate(230deg);
  }
}

#b1 {
  transform-origin: 195.2px 232.6px;
  animation: confb 1.2s ease-out infinite;
}

#b2 {
  transform-origin: 230.8px 219.8px;
  animation: confb 1.2s ease-out infinite;
}
#b3 {
  transform-origin: 222.8px 190.6px;
  animation: confb 1.2s ease-out infinite;
}

#b4 {
  transform-origin: 262px 188.5px;
  animation: confb 1.2s ease-out infinite;
}

#b5 {
  transform-origin: 282.3px 170.6px;
  animation: confb 1.2s ease-out infinite;
}

@keyframes confb {
  0% {
    opacity: 0;
    transform: translate(-30px, 20px) rotate(0);
  }
  12% {
    opacity: 1;
    transform: translate(25px, -10px) rotate(60deg);
  }
  76% {
    opacity: 1;
    transform: translate(33px, -18px) rotate(180deg);
  }
  100% {
    opacity: 0;
    transform: translate(37px, -23px) scale(0.5) rotate(240deg);
  }
}

#c1 {
  transform-origin: 174.8px 183.4px;
  animation: confc 1.2s ease-out infinite;
}
#c2 {
  transform-origin: 178.9px 156.2px;
  animation: confc 1.2s ease-out infinite;
}

#c3 {
  transform-origin: 206.7px 140px;
  animation: confc 1.2s ease-out infinite;
}

#c4 {
  transform-origin: 213.5px 120.2px;
  animation: confc 1.2s ease-out infinite;
}

@keyframes confc {
  0% {
    opacity: 0.7;
    transform: translate(-30px, 20px) rotate(0);
  }
  18% {
    opacity: 1;
    transform: translate(5px, -10px) rotate(60deg);
  }
  76% {
    opacity: 1;
    transform: translate(13px, -18px) rotate(180deg);
  }
  100% {
    opacity: 0;
    transform: translate(17px, -23px) scale(0.5) rotate(230deg);
  }
}

#d1 {
  transform-origin: 127px 176px;
  animation: confd 1.2s ease-out infinite;
}
#d2 {
  transform-origin: 133px 118px;
  animation: confd 1.2s ease-out infinite;
}
#d3 {
  transform-origin: 152px 100px;
  animation: confd 1.2s ease-out infinite;
}

@keyframes confd {
  0% {
    opacity: 0.7;
    transform: translate(-20px, 20px) rotate(0);
  }
  18% {
    opacity: 1;
    transform: translate(-5px, -10px) rotate(60deg);
  }
  76% {
    opacity: 1;
    transform: translate(-8px, -18px) rotate(180deg);
  }
  100% {
    opacity: 0;
    transform: translate(-10px, -23px) scale(0.5) rotate(230deg);
  }
}

/* svg style end */

.closebtn {
  display: flex;
  justify-content: end;
  margin-bottom: 40px;
}
.closebtn i {
  font-size: 32px;
  cursor: pointer;
  color: var(--commoncolor);
}

.popup-box h3 {
  text-transform: capitalize;
  margin-bottom: 20px;
}

.popup-span {
  font-weight: bold;
  font-size: 35px;
  color: var(--backgroundyellow);
}

/* +++----- Header style -------++ */

.header.active-header {
  z-index: 10;
}

.header {
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding-right: 40px;
  align-items: center;
  background: var(--backgroundwhite);
  position: sticky;
  top: 0;
  left: 0;
  z-index: 999;
  box-shadow: 0px 3px 7px 0px rgba(115, 37, 162, 0.75);
  -webkit-box-shadow: 0px 3px 7px 0px rgba(115, 37, 162, 0.75);
  -moz-box-shadow: 0px 3px 7px 0px rgba(115, 37, 162, 0.75);
}

.logo {
  width: 25%;
  padding: 15px 0px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.logo img {
  width: 120px;
}

.nav-links {
  display: flex;
  gap: 35px;
}

.nav-links li a {
  color: var(--blacktintcolor);
  font-size: 18px;
  font-weight: 500;
}
.nav-links li a:hover {
  color: var(--linkshovercolor);
}

.call-details {
  display: flex;
  gap: 20px;
  align-items: center;
}
.call-details i {
  background: var(--commoncolor);
  color: var(--helper-tint);
  padding: 15px;
  font-size: 25px;
  border-radius: 50%;
}
.call-details h3 {
  color: var(--commoncolor);
}

.mobile-nav {
  display: none;
}

.mobile-menu {
  display: none;
  font-size: 30px;
  cursor: pointer;
}

/* +++----- Hero section style -------++ */
.hero {
  width: 100%;
  min-height: 90vh;
  background: url("../images/blob-haikei.svg");
  background-size: cover;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-container {
  width: 90%;
  margin: auto;
}

.hero-big-head {
  color: var(--helper-tint);
  font-size: 55px;
  font-weight: 700;
  text-transform: capitalize;
}

.hero-para {
  color: var(--parawhitetint);
}

.hero-btn {
  margin-top: 30px;
}

.hero-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-top-left-radius: 150px;
  border-bottom-right-radius: 150px;
  border-top-right-radius: 50px;
  border-bottom-left-radius: 50px;
}

/* +++----- Carousel section style -------++ */

.swiper {
  width: 100%;
  height: 100%;
  border-radius: 20px;
}

.swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}

.swiper-slide img {
  width: 100%;
  height: 100%;
}

/* +++----- About section style -------++ */

.about-section {
  background: var(--backgroundpurple);
}

.about-section .common-content-heading h2 {
  color: var(--helper-tint);
}

.about-section p {
  color: var(--parawhitetint);
}

.layered-image-col:nth-child(1) {
  background: radial-gradient(
        circle,
        transparent 20%,
        #c61c61 20%,
        #c61c61 80%,
        transparent 80%,
        transparent
      )
      0% 0% / 64px 64px,
    radial-gradient(
        circle,
        transparent 20%,
        #c61c61 20%,
        #c61c61 80%,
        transparent 80%,
        transparent
      )
      32px 32px / 64px 64px,
    linear-gradient(#fea116 2px, transparent 2px) 0px -1px / 32px 32px,
    linear-gradient(90deg, #fea116 2px, #c61c61 2px) -1px 0px / 32px 32px #c61c61;
  background-size: 64px 64px, 64px 64px, 32px 32px, 32px 32px;
  background-color: #c61c61;
}

.layered-image-col .about-image1 {
  width: 50%;
  height: 350px;
  object-fit: cover;
  transform: translateY(50px);
  border: 5px solid var(--backgroundyellow);
  border-radius: 10px;
}
.layered-image-col .about-image2 {
  width: 60%;
  height: 450px;
  object-fit: cover;
  transform: translate(200px, -50px);
  border: 5px solid var(--backgroundyellow);
  border-radius: 10px;
}

/* +++----- Mission section style -------++ */

.mission-section .layered-image-col:nth-child(2) {
  background: radial-gradient(
        circle,
        transparent 20%,
        #ffffff 20%,
        #ffffff 80%,
        transparent 80%,
        transparent
      )
      0% 0% / 64px 64px,
    radial-gradient(
        circle,
        transparent 20%,
        #ffffff 20%,
        #ffffff 80%,
        transparent 80%,
        transparent
      )
      32px 32px / 64px 64px,
    linear-gradient(#fea116 2px, transparent 2px) 0px -1px / 32px 32px,
    linear-gradient(90deg, #fea116 2px, #ffffff 2px) -1px 0px / 32px 32px #ffffff;
  background-size: 64px 64px, 64px 64px, 32px 32px, 32px 32px;
  background-color: #ffffff;
}

.mission-section .layered-image-col .about-image1 {
  width: 60%;
  height: 550px;
  object-fit: cover;
  transform: translateY(50px);
  border: 5px solid var(--commoncolor);
  border-radius: 10px;
}
.mission-section .layered-image-col .about-image2 {
  width: 50%;
  height: 450px;
  object-fit: cover;
  transform: translate(200px, -50px);
  border: 5px solid var(--commoncolor);
  border-radius: 10px;
}

.mission-schemas {
  margin-bottom: 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.m-single-schema {
  display: flex;
  align-items: center;
  gap: 20px;
}

.m-single-schema p {
  margin-top: 0px;
}
.m-single-schema i {
  color: var(--commoncolor);
}

.m-v-box {
  padding: 15px;
  background: var(--backgroundwhite);
  border-radius: 10px;
  box-shadow: 1px 1px 5px 0px rgba(88, 79, 79, 0.75);
  -webkit-box-shadow: 1px 1px 5px 0px rgba(88, 79, 79, 0.75);
  -moz-box-shadow: 1px 1px 5px 0px rgba(88, 79, 79, 0.75);
}

.mvbox2 {
  margin-top: 20px;
}

/* +++----- Cheat benefits section style -------++ */

.cheat-benefits-section {
  background: var(--backgroundpurple);
}

.cheat-benefits-section .common-content-heading h2 {
  color: var(--helper-tint);
}

.cheat-benefits-section p {
  color: var(--parawhitetint);
}

.cheat-benefits-head {
  text-align: center;
  margin-bottom: 60px;
}

.benefits-col-image img {
  width: 100%;
}

.single-benefit-col {
  display: flex;
  align-items: center;
  gap: 25px;
}

.single-benefit-col h3 {
  background: var(--backgroundyellow);
  padding: 10px 20px;
  border-radius: 50%;
  color: var(--blacktintcolor);
}

/* +++----- Team section style -------++ */

.team-section {
  padding-top: 60px;
}

.team-head {
  text-align: center;
  margin-bottom: 60px;
}

.team-overlay {
  background: var(--commoncolor);
  width: 100%;
  height: 100%;
  padding: 20px 0px;
  border-radius: 10px;
}

.team-img {
  text-align: center;
  margin-bottom: 20px;
}

.team-img img {
  width: 100%;
}

.team-member-name {
  text-align: center;
}

.team-member-name h4 {
  color: var(--helper-tint);
}

.team-member-name p {
  color: var(--parawhitetint);
}

/* +++----- Profile section style -------++ */

.profile-head h3 {
  text-align: center;
  text-transform: capitalize;
  border-bottom: 1px solid var(--backgroundyellow);
  padding-bottom: 10px;
  color: var(--blacktintcolor);
}

.profile-container {
  background: var(--backgroundyellow);
  max-width: 60%;
  margin: auto;
  padding: 20px;
  border-radius: 10px;
  transform: translateY(100px);
  border: 10px solid var(--helper-tint);
}

.profile-container-inner {
  margin-top: 30px;
}

.profile-col {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.profile-single-item h4 {
  color: var(--blacktintcolor);
}
.profile-single-item p {
  word-break: break-all;
  color: var(--blacktintcolor);
}

/* +++----- Footer section style -------++ */

.footer {
  background: var(--blacktintcolor);
}

.home-footer {
  padding-top: 200px;
  padding-bottom: 60px;
}

.footer-col:last-child {
  text-align: center;
}

.footer-col p {
  color: var(--helper-tint);
}

.footer-logo {
  width: 120px;
}

.footer-head h3 {
  color: var(--helper-tint);
}

.qr-code {
  margin-top: 30px;
}

.qr-code img {
  width: 70%;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 20px;
}

.social-links i {
  font-size: 30px;
  color: var(--helper-tint);
  cursor: pointer;
}

.social-links i:hover {
  color: var(--linkshovercolor);
}

.footer-contact {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-contact-single {
  display: flex;
  gap: 20px;
  align-items: center;
}

.footer-contact-single i {
  font-size: 20px;
  color: var(--backgroundyellow);
}

.footer-contact-single p {
  margin-top: 0px;
}
/* +++----- Scroll to top section style -------++ */

.scroll-top {
  position: fixed;
  bottom: 50px;
  right: 50px;
  background: var(--backgroundyellow);
  padding: 15px;
  font-size: 20px;
  cursor: pointer;
  color: var(--blacktintcolor);
  border-radius: 5px;
}

.scroll-top:focus {
  box-shadow: -1px 1px 20px 0px rgba(254, 161, 22, 0.75);
  -webkit-box-shadow: -1px 1px 20px 0px rgba(254, 161, 22, 0.75);
  -moz-box-shadow: -1px 1px 20px 0px rgba(254, 161, 22, 0.75);
}

/* +++----- Whatsapp floating button section style -------++ */

.whatsapp-btn {
  position: fixed;
  left: 30px;
  bottom: 20px;
  z-index: 100;
}

.whatsapp-btn img {
  width: 60px;
  cursor: pointer;
  transition: all 0.3s;
}

.whatsapp-btn img:hover {
  transform: scale(1.1);
}

/* +++++++===============
 Chit working page style
  ==============+++++++ */

/* +++----- Chit working section style -------++ */

.chit-work-page {
  background: linear-gradient(#00000088, #000000a0),
    url("../images/chitwork.webp");
  background-position: center;
  background-size: cover;
}

.common-page-heading h2 {
  color: var(--helper-tint);
  font-size: 50px;
  text-transform: capitalize;
  text-align: center;
}

.chit-work-head {
  text-align: center;
  margin-bottom: 60px;
}

.chit-work-content h3 {
  text-transform: capitalize;
}

.chit-work-image img {
  width: 100%;
}

.chit-work-info {
  margin-top: 40px;
}

/* +++----- Chit benefits section style -------++ */

/* +++++++===============
 Chit act page style
  ==============+++++++ */

/* +++----- Chit act section style -------++ */

.chit-act-page {
  background: linear-gradient(#00000088, #000000a0),
    url("../images/chitact.webp");
  background-position: center;
  background-size: cover;
}

.chit-act-head {
  text-align: center;
  margin-bottom: 60px;
}

.chit-act-container {
  width: 70%;
  margin: auto;
}

.chapt-head {
  text-align: center;
  margin-top: 40px;
}

.chapt-head h3:nth-child(1) {
  color: var(--commoncolor);
}

.preliminary-list-single {
  display: flex;
  align-items: center;
  gap: 20px;
}

.preliminary-list-single i {
  color: var(--commoncolor);
  margin-top: 10px;
}

.chapt1-def {
  margin-top: 20px;
}

.def-list {
  padding-left: 40px;
  margin-top: 10px;
}

.def-list li {
  list-style-type: upper-alpha;
  color: var(--commoncolor);
}

.chapt1-expl {
  margin-top: 20px;
}

.expl-list {
  padding-left: 40px;
  margin-top: 10px;
}

.expl-list li {
  list-style-type: upper-alpha;
  color: var(--commoncolor);
}

.chapt1-other-laws {
  margin-top: 20px;
}

.other-laws-list {
  padding-left: 40px;
  margin-top: 10px;
}

.other-laws-list li {
  list-style-type: upper-alpha;
  color: var(--commoncolor);
}

.chapt4-content h4 {
  margin-top: 20px;
}

.common-chapter-list {
  padding-left: 40px;
  margin-top: 10px;
}

.common-chapter-list li {
  list-style-type: decimal;
  color: var(--commoncolor);
}

.chapt5-content h4 {
  margin-top: 20px;
}

/* +++++++===============
 Chit group page style
  ==============+++++++ */

.chit-group-page {
  background: linear-gradient(#00000088, #000000a0),
    url("../images/chitgroup.webp");
  background-position: center;
  background-size: cover;
}

.chit-group-head {
  text-align: center;
  margin-bottom: 60px;
}

.chit-group-table {
  width: 100%;
  text-align: center;
  border-spacing: 0px;
  border-collapse: collapse;
}
.chit-group-table tr th {
  padding: 10px 0px;
  background: var(--commoncolor);
  color: var(--helper-tint);
}

.chit-group-table tr:last-child {
  background: var(--blacktintcolor);
  color: var(--helper-tint);
}

.chit-group-table tr:last-child .table-footer-col {
  display: flex;
  justify-content: space-around;
}

.chit-group-table tr td {
  padding: 10px 0px;
}

.banner-section {
  background: var(--backgroundpurple);
}

.chit-group-banner-img img {
  width: 100%;
}

/* +++++++===============
 Contact page style
  ==============+++++++ */

.contactus-page {
  background: linear-gradient(#00000088, #000000a0),
    url("../images/contact.webp");
  background-position: center;
  background-size: cover;
}

.contact-page-head {
  text-align: center;
  margin-bottom: 60px;
}

.contact-info-label h4 {
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-info-label h4::before {
  content: " ";
  width: 60px;
  height: 2px;
  display: inline-block;
  background: var(--backgroundyellow);
  margin-right: 10px;
}
.contact-info-label h4::after {
  content: " ";
  width: 60px;
  height: 2px;
  display: inline-block;
  background: var(--backgroundyellow);
  margin-left: 10px;
}

.contact-info-main {
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: center;
  margin-top: 20px;
}
.contact-info-main i {
  color: var(--backgroundyellow);
  font-size: 22px;
}
.contact-info-main p {
  margin-top: 0px;
  font-weight: 500;
}

.form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.form-container {
  margin-top: 50px;
}

.form-group input {
  width: 100%;
  padding: 12px;
  border: none;
  font-size: 17px;
  background: var(--backgroundgraywhite);
}

.form-group input:focus {
  box-shadow: 0px 0px 5px 0px rgba(254, 161, 22, 0.75);
  -webkit-box-shadow: 0px 0px 5px 0px rgba(254, 161, 22, 0.75);
  -moz-box-shadow: 0px 0px 5px 0px rgba(254, 161, 22, 0.75);
}

.form-group textarea {
  width: 100%;
  padding: 12px;
  border: none;
  font-size: 17px;
  background: var(--backgroundgraywhite);
  resize: none;
}

.form-group textarea:focus {
  box-shadow: 0px 0px 5px 0px rgba(254, 161, 22, 0.75);
  -webkit-box-shadow: 0px 0px 5px 0px rgba(254, 161, 22, 0.75);
  -moz-box-shadow: 0px 0px 5px 0px rgba(254, 161, 22, 0.75);
}

.payment-section {
  background: var(--backgroundpurple);
}

.payment-section .common-content-heading h2 {
  color: var(--helper-tint);
}

.payment-head {
  text-align: center;
}

.payment-container {
  padding-top: 60px;
}

.payment-qr-code {
  display: flex;
  flex-direction: column;
  gap: 20px;
  justify-content: center;
  align-items: center;
}
.payment-qr-code h4 {
  text-transform: capitalize;
  color: var(--helper-tint);
}

.payment-qr-code img {
  width: 250px;
  transition: all 0.3s;
}

.payment-qr-code img:nth-child(2):hover {
  transform: scale(1.3);
}

.payment-info {
  box-shadow: 0px 0px 5px 0px rgba(255, 255, 255, 0.75);
  -webkit-box-shadow: 0px 0px 5px 0px rgba(255, 255, 255, 0.75);
  -moz-box-shadow: 0px 0px 5px 0px rgba(255, 255, 255, 0.75);
  border-radius: 10px;
  padding: 25px 15px;
  background: var(--backgroundwhite);
}

.bank-details-nav {
  display: flex;
  justify-content: space-around;
  margin-bottom: 50px;
}

.bank-details-nav p {
  padding: 10px;
  cursor: pointer;
  transition: all 0.3s;
}

.bank-details-nav p.TabNavactive {
  background: var(--backgroundpurple);
  color: var(--helper-tint);
  border-radius: 10px;
}

.bank-details-nav-item-container {
  display: flex;
  justify-content: center;
  align-items: center;
}

#BItem2 {
  display: none;
}

.payment-info-inner img {
  width: 250px;
  margin-bottom: 50px;
}

.payment-info-inner p {
  color: var(--blacktintcolor);
}
