html,
body {
    font-family: "SourceSans";
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 400;
}

.btn,
.isc-side-nav a,
.nav .nav-item .nav-link.active,
.nav .nav-item .nav-link,
a.isc-nav-link {
    font-size: 1.25rem;
    font-family: "Klavika", "Trebuchet MS", sans-serif;
}

h1 strong,
h2 strong,
h3 strong,
h4 strong,
h5 strong,
h6 strong {
    font-weight: 500;
}

::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    background-color: #F5F5F5;
}

::-webkit-scrollbar {
    width: 12px;
    background-color: #F5F5F5;
}

::-webkit-scrollbar-thumb {
    background-color: #CD1642;
}


/* this will style the thumb, ignoring the track */

::-webkit-scrollbar-corner {
    background-color: black;
}

a {
    -moz-transition: 0.2s;
    -webkit-transition: 0.2s;
    -o-transition: 0.2s;
    transition: 0.2s;
}

.isc-divider {
    background: rgba(0, 0, 0, 0) linear-gradient(to right, #cd1642 39.5%, #bfc5c9 39.5%) repeat scroll 0 0;
    color: #cd1642;
    height: 4px;
    width: 100%;
}

.isc-header-hr {
    border-bottom: 1px solid #777;
    background: transparent;
    border-top: none;
    margin: 0;
    padding-bottom: 0;
}

a.isc-nav-link {
    letter-spacing: 0;
    line-height: 0;
    margin: 0;
    padding: 10px 15px;
    border: none;
    color: #777;
}

a.isc-nav-link:hover,
a.isc-nav-link:active {
    text-decoration: none;
    background-color: transparent;
    color: #cd1542;
}

a.isc-nav-link:focus {
    text-decoration: none;
    background-color: transparent;
    color: #bfc5c9;
}

.isc-nav-item {
    display: flex;
    align-items: center;
    padding: 10px 0;
    margin-top: 6px;
}

.isc-side-nav {}

.isc-side-nav a {
    border-bottom: 1px #7e7e7c solid;
    margin-top: 0 !important;
    color: #000;
    padding: 10px 15px;
    width: 100%;
}

.isc-side-nav a:hover {
    text-decoration: none;
    background: #eee;
    color: #000;
}

.isc-fg-red {
    color: #cd1642;
}

.isc-bg-black {
    background: #2d2f39;
}

.isc-border-top-red {
    border-top: 1px solid #cd1642;
}

.isc-border-bottom-red {
    border-bottom: 1px solid #cd1642;
}

.isc-border-bottom-white {
    border-bottom: 1px solid #fff;
}

.isc-border-right-red {
    border-right: 1px solid #cd1642;
}

.isc-hr {
    border-top: 2px solid #cd1642;
}

.isc-footer {
    width: 100%;
    background: #4a484c;
}

.isc-footer h2 {
    color: #fff;
    padding-top: 3rem;
    font-weight: 500;
}

.isc-footer p {
    color: #fff;
}

.isc-footer a {
    color: #88c5ff !important;
}

.isc-footer a:hover {
    color: #fff !important;
}

.slide-down {
    animation: slide-down 0.4s ease;
}

@keyframes slide-down {
    0% {
        opacity: 0;
        transform: translateY(-20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0px);
    }
}

.element-slide-down {
    animation: element-slide-down 0.4s ease;
}

@keyframes element-slide-down {
    0% {
        transform: translateY(-20px);
    }
    100% {
        transform: translateY(0px);
    }
}