.small-hero {
  padding: 8rem 8rem;
}

.space {
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.small-hero_content {
  color: white;
  margin-top: 15rem;
}

.small-hero_content h3 {
  font-size: 3.5rem;
  font-weight: bold;
  margin-bottom: 2rem;
}

.small-hero_content p {
  font-size: 1.6rem;
}

.small-hero_content a {
  color: white;
  text-decoration: none;
}

/* About Section */

.about-section {
  display: flex;
  justify-content: space-between;
}



.about-text {
  margin: 0 8rem;
}

.about-main-details {
  font-size: 1.6rem;
  color: white;
  margin-bottom: 2rem;
}

.detail-heading {
  font-size: 2.5rem;
  font-weight: 600;

}

@media only screen and (max-width: 1000px){

  .about-section {
    display: block;
  }

  .about-img {
    margin-bottom: 2rem;
  }

  .about-text{
    margin: 0;
  }

  .about-img img {
    width: 100%;
  }
}

@media only screen and (max-width: 600px){
  .small-hero {
    padding: 4rem 4rem;
  }

  .small-hero_content h3 {
    font-size: 2.2rem;
   }

   .small-hero_content p {
    font-size: 1.4rem;
  }
}

/* fREQUENTLY aSKED qUESTION */
.question-group{
  max-width: 60rem;
  margin: 8rem auto;
  color: white;
  padding: 2rem;
}

.question-container {
  margin-bottom: 2rem;
}

.question {
  color:#5957cd;
  font-size: 2rem;
  font-weight: 500;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #5957cd;
  position: relative;
  padding-left: 5rem;
}

.question::before {
  content: "?";
  font-weight: 600;
  font-size: 24px;
  text-align: center;
  height: 30px;
  width: 30px;
  background-color: #5957cd;
  border-radius: 100%;
  color: #fff;
  margin-right: 10px;
  padding: 5px 0;
  vertical-align: middle;
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
}

.question::after {
  content: "\f105";
  font-family: "Ionicons";
  font-size: 20px;
  font-weight: normal;
  position: absolute;
  right: 15px;
  top: 3px;
}


.answer {
  background-color: white;
  padding: 0;
  font-size: 1.6rem;
  color: #7a7a7a;
  line-height: 24px;
  margin-top: 1rem;
  height: 0;
  overflow: hidden;
  transition: all 0.5s;
}

.showAnswer {
  height: 9rem;
  padding: 1rem 2rem;
}

@media only screen and (max-width: 700px){
  .question {
    font-size: 1.6rem;
    padding-right: 5rem;
  }

  .showAnswer {
    height: auto;
  }
}

/* Blog Pages */
.blog-content {
  color: #7a7a7a;
  font-size: 1.6rem;
}

._rhd {
  color: #5957cd;
  font-size: 2.8rem;
  font-weight: 500;
}