input {
  position: absolute;
  opacity: 0;
  z-index: -1;
}
.accordion-wrapper {
  border-radius: 8px;
  overflow: hidden;
  width: 600px;
  margin: 0 auto;
}
.accordion {
  width: 100%;
  color: white;
  overflow: hidden;
}
.accordion-grps {
  position: sticky;
  top: 10px;
}
.accordion > a {
  color: white;
}
.accordion:last-child {
  margin-bottom: 0;
}
.accordion-label {
  display: flex;
  -webkit-box-pack: justify;
  justify-content: space-between;
  padding: 17px;
  background: #4eabf7;
  font-weight: bold;
  cursor: pointer;
  margin-bottom: 4px;
}
.accordion-label-start {
  display: flex;
  -webkit-box-pack: justify;
  justify-content: space-between;
  padding: 17px;
  background: #4eabf7;
  font-weight: bold;
  cursor: pointer;
  margin-bottom: 4px;
}
.accordion-label:hover {
  background: rgba(4, 57, 94, 1);
}
.accordion-label::after {
  content: "\279C";
  width: 16px;
  height: 16px;
  text-align: center;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.accordion-content {
  max-height: 0;
  padding: 0 16px;
  color: rgba(4, 57, 94, 1);
  background: white;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.accordion-content ul {
  padding: 0;
}
.accordion-content ul li {
  list-style: none;
  font-size: 15px;
  /* border-bottom: 1px solid; */
  margin-bottom: 7px;
}
.accordion-content p {
  margin: 0;
  color: rgba(4, 57, 94, 0.7);
  font-size: 18px;
}
input:checked + .accordion-label {
  background: rgba(4, 57, 94, 1);
}
/* input:checked + .accordion-label-start {
  background: rgba(4, 57, 94, 1);
} */
input:checked + .accordion-label::after {
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}
input:checked ~ .accordion-content {
  max-height: 57vh;
  overflow-y: scroll;
  padding: 10px 3px;
}

/* .malireise-services {
  padding: 50px 50px 70px;
} */

.malireise-services .col-lg-4 {
  width: 100%;
}

/* .malireise-services .col-lg-4 {
  box-shadow: 0 0 32px #dedede;
  padding: 18px;
} */

.malireise-services .img-responsive {
  max-width: 100%;
  height: auto;
}

.malireise-services .col-lg-4 h3 {
  font-size: 26px;
  font-weight: 500;
  color: #8a623d;
  font-family: "Poppins", sans-serif;
  margin-top: 35px;
}

.malireise-services .col-lg-4 a {
  color: #8a623d;
  text-transform: uppercase;
  font-size: 15px;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
}
.container-fluid .col-md-4 {
  max-width: 20%;
  padding: 1rem 0;
}

@media (max-width: 575.98px) {
  .container-fluid .col-md-4 {
    max-width: 100%;
  }
  input:checked ~ .accordion-content {
    display: none;
  }
  .accordion-label-start::after {
    content: "\279C";
    width: 16px;
    height: 16px;
    text-align: center;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  input:checked + .accordion-label-start {
    background: #4eabf7;
  }
}

/* Custom: Between phones and tablets (SM) */
@media (min-width: 576px) and (max-width: 767.98px) {
  .container-fluid .col-md-4 {
    max-width: 100%;
  }
}
