.c5-content-pd{
  padding: 0 15px;
}
.c5-textbox--black {
  background-color: #3b3d42;
  padding: 15px;
  color: #fff;
}
.c5-colImg img{
  width: 100%;
}
.c5-underBar{
  text-decoration: underline;
}
.c5-list{
  list-style: none;
}

@media screen and (max-width: 639px) {
  .c5-content-pd{
    padding: 0;
  }
}

.c5-anchorLink-style{
  padding-top: 100px;
  margin-top: -100px;
}

@media screen and (max-width: 639px) {
  .c5-anchorLink-style{
    padding-top: 0;
    margin-top: 0;
  }
}

.c5-floatingButtons {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  position: fixed;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 10px;
  right: 20px;
  bottom: 90px;
}

@media (max-width: 768px) {
  .c5-floatingButtons {
    flex-direction: row;
    gap: 0;
    left: 0;
    right: 0;
    bottom: 0;
    justify-content: center;
    letter-spacing: -1.5px;
  }
}

.c5-floatingButtons.show {
  opacity: 1;
  visibility: visible;
}

.c5-floatingButton{
  width: 100%;
  margin: auto;
  text-align: center;
  border-right: solid 1px #ccc;
}

@media (max-width: 768px) {
  .c5-floatingButton{
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 70px;
    flex: 1;
    box-sizing: border-box;
    border-radius: 0;
    padding: 8px 8px;
  }
}

.c5-floatingButton:last-child{
  border-right: none;
}