b {
    font-weight: 700 !important;
}
a {
    font-weight: 500 !important;
    color: #B41919 !important;
}
h1 {
    margin-left: 10px;
}
.header {
    width: 100%;
    height: auto;
    margin-bottom: 0px;
    /* text-indent: 10px; */
    padding-top: 1px;
    padding-left: 20px;
    background: rgb(222,222,222);
    background: linear-gradient(180deg, rgba(235,235,235,1) 0%, rgba(255,255,255,1) 100%);
}

.footer {
    width: 100%;
    height: auto;
    margin-top: 20px;
    background: rgb(222,222,222);
    background: linear-gradient(0deg, rgba(235,235,235,1) 0%, rgba(255,255,255,1) 100%);
    border-top: 1px solid rgb(180, 25, 25);
    padding-bottom: 20px;
}

.redband {
    background-color: rgb(180, 25, 25);
    height: 1px
}
.left-col {
 box-shadow: 0 6px 10px -4px rgba(0, 0, 0, 0.15);
 height: calc(100% - 60px);
 border-radius: 2px;
}
@media (max-width: 768px) {
 .left-col {
     box-shadow: 0 6px 10px -4px rgba(0, 0, 0, 0.15);
     height: 100%;
     margin-bottom: 10px;
 }
 .header {
     text-align: center;
 }
}
#backto {
  display: inline-block;
  background-color: #666;
  width: 50px;
  height: 50px;
  text-align: center;
  border-radius: 4px;
  position: fixed;
  bottom: 30px;
  right: 30px;
  transition: background-color .3s, 
    opacity .5s, visibility .5s;
  opacity: 0;
  visibility: hidden;
  z-index: 1000;
}
#backto::after {
  content: " ";
  display:block;
  width: 50px;
  height: 50px;
  background: url(../img/up.svg) center center no-repeat;
  background-size: contain;
}
#backto:hover {
  cursor: pointer;
  background-color: #333;
}
#backto:active {
  background-color: #555;
}
#backto.show {
  opacity: 1;
  visibility: visible;
}
