@font-face {
  font-family: 'portada';
  src: url('fonts/portada.ttf');
}

body {
  font-family: 'portada';
}

.hero-image {
  position: relative;
}

.hero-image img {
  width: 100%;
}

.hero-text {
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
}

.hero-text button {
  border: none;
  outline: 0;
  display: inline-block;
  padding: 10px 25px;
  color: black;
  background-color: #ddd;
  text-align: center;
  cursor: pointer;
}

.hero-text button:hover {
  background-color: #555;
  color: white;
}

.aboout-section {
  width: 100%;
  padding-top: 50px;
  padding-bottom: 50px;
  background: #215146;
  border-top: 25px solid #d4c01b;
  color: #ffffff;
}

.aboout-section h2 {
  font-size: 26px;
  font-weight: 700;
}

.aboout-section p {
  font-size: 18px;
  font-weight: 400;
}

.accordion {
  background-color: #D9D9D9;
  border-radius: 50px;
  margin: 10px auto;
  color: #6d6e71;
  cursor: pointer;
  padding: 10px 35px;
  width: 100%;
  border: none;
  text-align: right;
  outline: none;
  font-size: 18px;
  transition: 0.4s;
}

.active,
.accordion:hover {
  background-color: #387F67;
  color: #ffffff;
  font-weight: bold;
}

.accordion:after {
  color: #387F67;
  font-weight: bold;
  float: right;
  margin-left: 5px;
}

.active:after {}

.panel {
  padding: 0px 18px;
  background-color: #F4F4F4;
  color: #000000;
  text-align: right;
  max-height: 0;
  overflow: hidden;
  border-radius: 20px;
  transition: max-height 0.2s ease-out;
}

.panel ul li {
  line-height: 28px;
}

.panel h4 {
  font-size: 22px;
  margin-top: 25px;
}

.panel .bank {
  text-align: center;
}

.panel .bank img {
  width: 85%;
}

.parallax-section {
  /* The image used */
  background-image: url("../img/featurebg.jpg");

  /* Set a specific height */
  min-height: 500px;
  padding: 160px 0px;
  /* Create the parallax scrolling effect */
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.parallax-section .headtitle {
  font-size: 42px;
  color: #ffffff;
  text-align: right;
  margin-bottom: 50px;
}

.parallax-section .cardf {
  background: #16352D;
  color: #ffffff;
  text-align: center;
  margin: 10px 10px;
  padding: 43px 15px;
  border-radius: 20px;
}

.parallax-section img {
  width: 30%;
}

.parallax-section h2 {
  font-size: 24px;
  margin: 15px auto;
}

.parallax-section p {
  color: #D3D4D4;
}

@media (max-width: 767.98px) {
  .parallax-section .cardf {
    margin: 10px 0px;
    padding: 20px 15px;
  }

  .parallax-section img {
    width: 65%;
  }

  .parallax-section h2 {
    font-size: 18px;
    margin: 15px auto;
  }

  .parallax-section p {
    font-size: 14px;
  }
}

.card-mobile {
  margin: auto;
  text-align: center;
}

.card-mobile .title {
  color: grey;
  font-size: 18px;
}

.card-mobile img{
  width: 75%;
}
.card-mobile p{
  font-size: 16px;
  color: #215146;
}
.faq-section {
  background: #f4f4f4;
  color: #16352D;
  text-align: right;
  padding: 15px 5px;
  border-radius: 30px;
}

.faq-section .img {
  display: inline-block;
  float: right;
  padding: 15px 0px;
  text-align: center;
  width: 30%;
}

.faq-section .img img {
  width: 40%;
}

.faq-section .content {
  display: inline-block;
  text-align: right;
  width: 60%;
}

.faq-section .content h2 {
  font-size: 18px;
}

.top-footer {
  background: #F4F4F4;
}

.top-footer p {
  font-size: 22px;
  color: #215146;
}

.top-footer a {
  font-size: 24px;
  color: #215146;
  margin: 20px 5px;
}

.top-footer img {
  width: 28%;
}

.bottom-footer {
  background: #d3d4d4;
}

.bottom-footer img {
  width: 50%;
}

.bottom-footer a {
  text-decoration: none;
  font-size: 18px;
  color: #215146;
}

