
.main-title {
  margin-bottom: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.main-title span {
  color: white;
  background: #002B5E;
  margin-left: 10px;
  padding: 0px 10px 4px;
  border-radius: 5px;
  text-transform: uppercase;
  font-weight: bold;
}
.standard-container {
  margin-bottom: 50px;
  padding-bottom: 0;
}
.accordion .card {
    border: none;
}
.accordion>.card>.card-header {
    padding: 0;
    background: transparent;
    border-bottom: none;
}
.accordion .btn-block {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: black;
    text-decoration: none;
    font-weight: bold;
    padding: 20px 0;
    border-bottom: 1px solid black;
    margin-bottom: 1px;
}
.accordion .btn-block span {
    font-size: 16px;
    display: flex;
    gap: 10px;
    align-items: center;
    font-weight: 400;
}
.accordion .btn-block span i {
    transition: 0.3s;
}
.accordion .btn-block.collapsed span i {
    transform: rotate(180deg);
}
.accordion .btn-block:focus {
    box-shadow: none;
}
.accordion .card-body {
    padding: 20px 0;
    border-bottom: 1px solid black;
}
.accordion .card:last-child .card-body {
    border-bottom: 0;
}
.scroll-top {
  transition: 0.3s;
  position: sticky;
  right: 0;
  bottom: 20px;
  margin-left: auto;
  margin-right: -70px;
  margin-top: -50px;
  display: flex;
  border: 2px solid #00000021;
  background: transparent;
  color: #002B5E;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  align-items: center;
  font-size: 26px;
  justify-content: center;
}
.scroll-top:hover {
  background: #002B5E;
  color: white;
}