:root {

  /* background color */
  --bg-primary-color: #E91E63;
  --bg-secondary-color: #e8e4f2;
  --bg-tertiory: #F3A51E;



  /* font color */
  --text-primary-color: black;
  --text-secondary-color: #E91E63;
  --text-tertiory-color: #e8e4f2;


  /* font fammily */
  --font-familly-primary: "Arya", sans-serif;
  --font-familly-secondary: "Poppins", sans-serif;


}


@media (max-width:997px) {
  .bg-image img{
    height: auto !important;
  }
   .hero-section-bg {
    padding-top: 100px !important; /* for mobile */
    padding-bottom: 20px !important;
  }
}

.heading-1 {
  color: var(--text-tertiory-color);
  font-family: var(--font-familly-primary);
  text-align: center;
}


.heading-3 {
  font-size: 20px;
  color: var(--text-secondary-color);
  font-family: var(--font-familly-secondary);
  margin-bottom: 0px;
}

.hero-section-bg {
  background-color: var(--bg-primary-color);
  text-align: center;
  color: var(--text-tertiory-color);
}




.blog-content-bg {
  background-color: #FBE8E7;
  border-top: 5px solid var(--text-secondary-color);

}

.heading-2 {
  color: var(--text-secondary-color);
  font-family: var(--font-familly-primary);
}

.para {
  font-family: var(--font-familly-secondary);
  line-height: 30px;
  text-align: justify;
}



.list-item {
  list-style: square;
  /* color: var(--text-secondary-color); */
  line-height: 35px;
}

.list-item li {
  font-family: var(--font-familly-secondary);
}


.bg-image img {
  width: 100%;
  height: 550px;
  margin-top: 50px;
  margin-bottom: 50px;
}


.blog-content h5 {
  font-family: var(--font-familly-primary);
}

.blog-content p {
  font-family: var(--font-familly-secondary);
  font-size: 13px;
}


.blog-card-btn {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 3px 1px;
  border-radius: 10px;
  background: var(--bg-primary-color);
  font-family: var(--font-familly-primary);
  box-shadow: 0px 6px 24px 0px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  cursor: pointer;
  border: none;
  font-size: 15px;
}

.blog-card-btn:after {
  content: " ";
  width: 0%;
  height: 100%;
  background: var(--bg-primary-color);

  position: absolute;
  transition: all 0.4s ease-in-out;
  right: 0;
}

.blog-card-btn:hover::after {
  right: auto;
  left: 0;
  width: 100%;

}

.blog-card-btn span {
  text-align: center;
  text-decoration: none;
  width: 100%;
  padding: 8px 50px;
  color: #fff;
  font-size: 1.125em;
  font-weight: 700;
  letter-spacing: 2px;
  z-index: 20;
  transition: all 0.3s ease-in-out;
}

.blog-card-btn:hover span {
  color: white;
  animation: scaleUp 0.3s ease-in-out;
}

@keyframes scaleUp {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(0.95);
  }

  100% {
    transform: scale(1);
  }
}


.blog-card {
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.blog-card img {
  height: 180px;

}


/*------Raigad table----------*/
.table-1 {
  display: flex;
  justify-content: center;
  align-items: center;
}

table {
  border-collapse: collapse;
  margin-bottom: 25px;
}

table,
th,
td {
  border: 1px solid black;
  font-family: var(--font-familly-secondary);
}

th,
td {
  padding: 10px 50px;
  text-align: left;
}


/*-----Accordian----*/


.accordion-item {
  border: none !important;

}

.accordion-button{
  border-radius: 3px !important;
}

.accordion-button:not(.collapsed) {
  background-color: white !important;
  color: black !important;
  box-shadow: none !important;
  }

.accordion-button:focus{
box-shadow: none !important;

}

.accordion-body{
 
  padding-left: 30px;
}

