/* Font Import */
@font-face {
  font-family: Roboto;
  src: url("https://fonts.googleapis.com/css2?family=Roboto:wght@100&display=swap");
}

h1 {
  text-align: center;
}

/* Sets the width for the accordion. Sets the margin to 90px on the top and bottom and auto to the left and right */

.servicos-pagination {
  display: flex;
  width: 100%;
  height: fit-content;
  margin: 0 0 20px 1.5%;
  justify-content: space-between;
}

.servicos-pag-ul {
  list-style: none;
  margin: 0;
  /* width: 100%; */
  height: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  padding-left: 0;
}

.servicos-pag-li{
  height: 44px;
  width: 44px;
  font-size: 14px;
  line-height: 44px;
  background-color: #EFEFEF;
}

.pagination-letter-selected {
  color: #FFFFFF !important;
  background-color: #002E67;
  text-decoration: none;
}

.servicos-pagination a {
  color: #4c4c4c;
  width: 100%;
  height: 100%;
  display: block;
  text-align: center;
}


.accordion-body {
  display: flex;
  /* justify-content: center; */
  width: 100%;
  height: auto;
}

.accordion {
  width: 735px;
  margin: 5px 0 5px 0;
  color: black;
}

.accordion .container {
  margin: 10px 10px;
  width: 100%;
}

/* Positions the labels relative to the .container. Adds padding to the top and bottom and increases font size. Also makes its cursor a pointer */

.accordion .label {
  position: relative;
  padding: 10px 0;
  font-size: 14px;
  color: #002e67;
  cursor: pointer;
  display: flex;
  width: 100%;
  justify-content: space-between;
}

/* Hides the content (height: 0), decreases font size, justifies text and adds transition */

.accordion .content {
  position: relative;
  background: white;
  height: 0;
  font-size: 14px;
  color: #414141;
  text-align: justify;
  width: 705px;
  overflow: hidden;
  transition: 0.5s;
  font-family: Roboto;
}

/* Adds a horizontal line between the contents */

.accordion hr {
  width: 100%;
  margin: 5px 0 5px 0;
  border-top: 1px solid #003e67;
}

.accordion .container.active .content {
  height: auto;
}

/* Changes from plus sign to negative sign once active */

.accordion-titles {
  font-size: 14px;
  font-weight: bold;
}

.accordion-inside-titles {
  margin-bottom: 0;
  font-weight: bold;
}

.accordion-line {
  margin-top: 0;
}

.mb-0 {
  margin-bottom: 0;
}


.hidden {
  display: none;
}

.scrolling-icon2 {
  display: block;
}

/* Mobile Adjustments */

#prev-letter-group-li {
  margin-right: 3px;
}

#prev-letter-group {
  color:#002E67;
}

#next-letter-group-li {
  margin-left: 3px;
}

#next-letter-group {
  color:#002E67;
}

@media only screen and (max-width: 480px) {
  .servicos-pagination {
    margin-left: 0;
    padding: 0 15px 5px 15px;
    max-width: 100%;
    height: fit-content;
    justify-content: center;
    flex-wrap: wrap;
  }

  .servicos-pag-ul {
    flex-wrap: wrap;
    justify-content: flex-start;
  }

  .accordion-body {
    margin-left: 0;
  }

  .accordion {
    width: 430px;
  }

  .accordion .content {
    width: auto;
  }

  .accordion .container {
    margin: 0;
  }

  .accordion hr {
    margin: 0;
    margin-bottom: 4%;
    margin-top: 3%;
  }
}
