body {
  font-size: 18px;
}

.about_p {
  line-height: 200%;
  font-size: 18px;
  font-family: "Poppins", sans-serif;
}

.boy_img {
  width: 60%;
  margin-left: 20%;
}

.clearfix {
  height: auto;

}

.col_half ol li {
  line-height: 200%;
  font-size: 18px;
  font-family: "Poppins", sans-serif;

}

.container_syll {
  margin-top: 10px;

  /* border: 2px solid black;  */
}

.ohidden {
  border: 2px solid #000;
  height: 350px;

}

.ohidden div p {
  font-size: 17px;
}

.rajesh_img {
  width: 70%;
  margin-left: 20%;
  filter: drop-shadow(5px 10px 5px rgb(99, 99, 99));
}





.header_top {
  padding-top: 50px;
  padding-bottom: 0;
  margin: 0;
}

.header_top h3 {
  font-size: 3rem;
  font-weight: 600;
}

.header_top p {
  font-size: 2rem;
}

/* card */
.card-title {
  color: #262626;
  font-size: 1.5em;
  line-height: normal;
  font-weight: 700;
  margin-bottom: 0.5em;
  text-align: center;
}

.small-desc {
  font-size: 1em;
}

.card {
  display: block;
  position: relative;
  max-width: 600px;
  max-height: 370px;
  border-radius: 10px;
  padding: 2em 1.2em;
  margin: 12px;
  margin-left: 25%;
  text-decoration: none;
  overflow: hidden;
  border: 2px solid black;
  box-shadow: 20px 20px 43px #969696,
    -20px -20px 43px #ffffff;
  font-family: "Poppins", sans-serif;
}
@media (max-width: 495px) {
  .card {
      width: 100%;
      max-height: 620px;
      margin-bottom: 20px;
      margin-left: 0%;
  }
}

/* footer */
.widget_links ul li {
  list-style: none;
  line-height: 2.5;
}

.con_num_email {
  margin-top: 50px;
}

.con_soc {
  margin-top: 50px;
}

.pay_detail {
  border: 2px solid black;
}

/* payment card */
.card_pay {
  width: 560px;
  height:400px;
  color: #000;
  border-radius: 15px;
  border: 2px solid black;
  box-shadow: 1px 5px 60px 0px #100a886b;
  /* margin-left: 25%; */
}
@media only screen and (max-width: 767px) {
  .card_pay {
    height: 500px; 
    width: 500px;
  }
}
@media only screen and (max-width: 495px) {
  .card_pay {
    width: 100%;
    height: auto; 
    margin-left: 0%;
  }
}
iframe{
  border-radius: 20px;
}
@media only screen and (max-width: 495px) {
  iframe {
    width: 100%;
    height: auto; 
    margin-left: 0%;
  }
}


.card .card-border-top {
  width: 60%;
  height: 3%;
  margin: auto;
  border-radius: 0px 0px 15px 15px;
}

/* payment button */
button {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 5px;
  background: #183153;
  font-family: "Poppins", sans-serif;
  box-shadow: 0px 6px 24px 0px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  cursor: pointer;
  border: none;
}

button:after {
  content: " ";
  width: 0%;
  height: 100%;
  border-radius: 5px;
	background: #F44336;
  position: absolute;
  transition: all 0.4s ease-in-out;
  right: 0;
}

button:hover::after {
  right: auto;
  left: 0;
  width: 100%;
}

button span {
  text-align: center;
  text-decoration: none;
  width: 100%;
  padding: 18px 25px;
  color: #fff;
  font-size: 1.125em;
  font-weight: 700;
  letter-spacing: 0.3em;
  z-index: 20;
  transition: all 0.3s ease-in-out;
}

button:hover span {
  color: #183153;
  animation: scaleUp 0.3s ease-in-out;
}

@keyframes scaleUp {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(0.95);
  }

  100% {
    transform: scale(1);
  }
}