* {
    font-family: rajdhani, sans-serif;
    font-style: normal;
    letter-spacing: 1px;
    /* outline: 1px solid limegreen; */
}

.content {
  width: 100%;
}

.content-box {
  padding: 5rem 0px;
}

.content-box h2, .content-box h3 {
  font-weight: bold;
  text-align: center;
  margin-bottom: 70px;
  font-size: 1.7rem;
}

.content-box p {
  font-size: 22px;
  text-align: left;
  font-weight: 600;
}

/* .description p {
  text-align: justify;
} */

.content-box a, 
.content-box a:active,
.content-box a:hover,
.content-box a:visited,
.content-box a:focus {
  color: #a9804b;
  text-decoration: none;
}

.hero {
  width: 100%;
  height: 35vh;
  /* background-color: #cecece; */
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  color: #fff;
  background-image: url("../gfx/bcg.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: right;
}

.hero h2 {
  font-size: 1.5rem;
  text-transform: capitalize;
  font-weight: bold;
  text-align: center;
}

.hero h3 {
  font-size: 1.2rem;
}

.questions-container {
  background: rgb(243,243,243);
  background: linear-gradient(180deg, rgba(235,235,235,1) 0%, rgba(255,255,255,0) 90%);

}

.question {
  width: 100%;
  overflow: hidden;
  background-color: #fff;
  margin: 30px 0;
  padding: 0;
  font-size: 18px;;
  font-weight: 600;
  -webkit-box-shadow: 0px 0px 10px 0px rgba(220, 220, 220, 1);
  -moz-box-shadow: 0px 0px 10px 0px rgba(220, 220, 220, 1);
  box-shadow: 0px 0px 10px 0px rgba(220, 220, 220, 1);
  cursor: pointer;
  position: relative;
  max-height: 100%;
  transition-duration: 0.2s;
}

.question .simple-question {
  position: relative;
  text-align: left;
  display: block;
  font-weight: bold;
  margin: 0px;
  padding: 20px;
  padding-left: 5%;
  padding-right: 70px;
}

.question .simple-question::after {
  content: "";
  display: block;
  border-left: 2px solid #333;
  border-bottom: 2px solid #333;
  width: 8px;
  height: 8px;
  transform: rotate(315deg);
  transform-origin: center;
  transition: transform .3s ease-in-out;
  position: absolute;
  top: 40%;
  right: 15px;
}

.rotate::after {
  transform: rotate(135deg) !important;
  transition: transform .3s ease-in-out;
}


.question .simple-answer {
  max-height: 0;
  padding: 0 5%;
  text-align: left;
  transition: max-height .5s ease-in-out;
}

.question p {
  font-size: 18px;
  font-weight: 600;
}

.prospect-link {
  word-wrap: break-word;
}

.question .answer-image {
  margin: 0px auto;
  text-align: center;
}

.question .answer-image img {
  width: 100%;
}

.question .simple-answer .line {
  border-top: 1px solid #e6e6e6;
  line-height: 1;
}

.contact {
  padding-top: 0px;
  padding-bottom: 40px;
  background-color: #fff;
}

.contact .contact-mail {
  font-weight: 600;
  font-size: 22px;
}

@media screen and (min-width: 460px) {
  .hero h2 {
    font-size: 2rem;
  }
  
  .hero h3 {
    font-size: 1.4rem;
  }
}

@media screen and (min-width: 576px) {
  .hero {
    height: 40vh;
  }
  .hero h2 {
    font-size: 2.2rem;
  }
  
  .hero h3 {
    font-size: 1.5rem;
  }
}

@media screen and (min-width: 768px) {
  .hero {
    height: 45vh;
  }
  .hero h2 {
    font-size: 2.7rem;
  }
  
  .hero h3 {
    font-size: 2rem;
  }
}

@media screen and (min-width: 992px) {
  .hero {
    height: 55vh;
  }
  .hero h2 {
    font-size: 3rem;
  }
  
  .hero h3 {
    font-size: 2.4rem;
  }
}

@media screen and (min-width: 1200px) {
  .hero {
    height: 70vh;
  }
  .hero h2 {
    font-size: 3.5rem;
  }
  
  .hero h3 {
    font-size: 3rem;
  }
  .question .simple-question {
    padding-left: 30px;
  }
  .question .simple-question::after {
    width: 10px;
    height: 10px;
    right: 30px;
  }
  .question .simple-answer {
    padding: 0px 30px;
  }
  
}

@media screen and (min-width: 1400px) {
  .hero {
    height: 80vh;
  }
  .hero h2 {
    font-size: 4.2rem;
  }
  
  .hero h3 {
    font-size: 3.5rem;
  }
  .question .answer-image img {
    width: 80%;
  }
}