@charset "UTF-8";

.m-service-details__section--text--paragragh {
  margin-bottom: 16px !important;
}

.accordion {
  border-radius: 8px;
  /*overflow: hidden;*/
}
.accordion input {
  position: absolute;
  opacity: 0;
  z-index: -1;
}
.accordion .row {
  display: flex;
}
.accordion .row .col {
  flex: 1;
}
.accordion .row .col:last-child {
  margin-left: 1em;
}
.accordion .tab {
  width: 100%;
  color: black;
  overflow: hidden;
}
.accordion .tab-label {
  display: flex;
  justify-content: space-between;
  padding: 1em;
  background: #f0f3fc;
  font-weight: bold;
  cursor: pointer;
}
.accordion .tab-label::after {
  /*content: "⮟";*/
  content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='25' height='25' viewBox='0 0 96 96' class='b-icon --svg-baseline'%3E%3Cpolygon points='0.375,2.656 1.625,1.093 8.5,6.594 15.375,1.093 16.625,2.656 8.5,9.155' transform='matrix(5.2215379,0,0,5.2215379,3.6169278,21.24484)'%3E%3C/polygon%3E%3C/svg%3E");
  width: 1em;
  height: 1em;
  text-align: center;
  transition: all 0.65s;
}
.accordion .tab-content {
  max-height: 0;
  padding: 0 1em;
  color: #000000;
  background: #f0f3fc;
  transition: all 0.65s;
}
.accordion .tab-close {
  display: flex;
  justify-content: flex-end;
  padding: 1em;
  font-size: 0.75em;
  background: #000000;
  cursor: pointer;
}
.accordion input:checked + .tab-label::after {
  transform: rotate(180deg);
  transition: all 0.65s;
}
.accordion input:checked ~ .tab-content {
  max-height: 2000vh;
  padding: 1em;
}

.accordion hr {
    margin: 32px 0px 32px 0px;
    background-color: #96b2ed;
    border: 1px solid #96b2ed;
    border-radius: 10px 10px 10px 10px;
    height: 1px;
    opacity: 15%;
}