/*! Place your custom styles here */
.reset-border {
    border: 2px solid transparent !important;
  }
@keyframes blinkBorder {
  0%, 100% { border-color: transparent; }
  25%, 75% { border-color: orange; }
  50% { border-color: orangered; }
}

.blink {
  border-width: 5px !important;
  border-style: solid !important;
  animation: blinkBorder 1s ease-in-out 3;
}
.footer-3 {
  background: #a97033 !important;
}
.type--fine-print {
  font-size: 1.2em !important;
}
.btn--primary, .btn--primary:visited {
  background: #003057 !important;
  border-color: #003057 !important;
}
#return-to-top {
    position: fixed;
    bottom: 93px;
    right: 28px;
    background: rgb(0, 0, 0);
    background: #F44336;
    width: 50px;
    height: 50px;
    display: block;
    text-decoration: none;
    z-index:9999;
    -webkit-border-radius: 35px;
    -moz-border-radius: 35px;
    border-radius: 35px;
    display: none;
    -webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
#return-to-top i {
    color: #fff;
    margin: 0;
    position: relative;
    left: 0px;
    top: 6px;
    font-size: 36px;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
#return-to-top:hover {
    background: rgba(0, 0, 0, 0.9);
}
#return-to-top:hover i {
    color: #fff;
    top: 1px;
}