.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-link__block{
  width: 100%;
  max-width: 600px;
  margin: 0 auto;

}
.c5-link__block a{
  padding: 15px 5px;
  margin-right: auto;
  margin-left: auto;
  border: solid 1px #D14;
  text-align: center;
  font-weight: bold;
  display: block;
}

.c5-block__link{
  text-decoration: none;
  padding: 1.2em 1em 0 1em;
  border: solid 3px #D14;
  display: block;
  transition: all .2s;
}

.c5-block__link:hover{
  text-decoration: none;
  opacity: 0.6;
  transition: all .2s;
}

.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;
  }
}

.c5-floatingButtons.show {
  opacity: 1;
  visibility: visible;
}

.c5-floatingButton{
  width: 100%;
  margin: auto;
  text-align: center;
}

@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;
  }
}

.c5-border--Orange{
  border: solid 2px #f25529;
  padding: 15px;
}