html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
}

/* hr ARC */
hr.arc-hr {
    line-height: 1em;
    position: relative;
    outline: 0;
    border: 0;
    text-align: center;
    height: 45px;
    background: white !important;
    opacity: 1;
}

    hr.arc-hr:before {
        content: "";
        background: linear-gradient(to right, white, rgb(185,31,49), white) !important;
        position: absolute;
        left: 0;
        top: 50%;
        width: 100%;
        height: 3px;
    }

    hr.arc-hr:after {
        content: "";
        position: relative;
        display: inline-block;
        padding: 25px 25px;
        line-height: 1.5em;
        background-color: white !important;
        background-image: url(../img/Blue-Oak-Tree.svg) !important;
        background-size: 40px !important;
        background-repeat: no-repeat !important;
        background-position: center !important;
    }





/* Button ARC */
.btn-arc {
    background-color: rgb(185,31,49);
    border-color: #003058;
    border-width: 2px;
    color: white !important;
    transition: background ease-in 0.1s;
    padding: 5px 12px;
}

    .btn-arc:hover,
    .btn-arc:focus {
        background-color: /*rgb(185,31,49)*/ #003058;
        /*border-color: rgb(185,31,49);*/
        color: white;
    }

a.btn-arc {
    text-decoration: none;
}
/**************/