/* poppins-regular - latin */

@font-face {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 300;
    src: url('../fonts/poppins-v15-latin-regular.eot');
    /* IE9 Compat Modes */
    src: local(''), url('../fonts/poppins-v15-latin-regular.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
    url('../fonts/poppins-v15-latin-regular.woff2') format('woff2'), /* Super Modern Browsers */
    url('../fonts/poppins-v15-latin-regular.woff') format('woff'), /* Modern Browsers */
    url('../fonts/poppins-v15-latin-regular.ttf') format('truetype'), /* Safari, Android, iOS */
    url('../fonts/poppins-v15-latin-regular.svg#Poppins') format('svg');
    /* Legacy iOS */
}

:root {
    --accent-color: #000839;
    --action-color: #0b89e8;
}

*,
*:after,
*::before {
    box-sizing: border-box;
    margin: 0px;
    padding: 0px;
}

html {
    font-size: 14px;
    font-weight: 300;
}

body {
    background: #fff;
    font-family: 'Poppins', sans-serif;
    color: #222;
    font-size: 14px;
    font-weight: 300;
}


/* GENERAL */

.bg-none {
    background: none;
}

.bg-black {
    background-color: #000!important;
}

.bg-accent {
    background-color: var(--accent-color)!important;
}

.bg-action {
    background-color: var(--action-color)!important;
}

.text-accent {
    color: var(--accent-color)!important;
}

.text-action {
    color: var(--action-color)!important;
}

.bg-dark-20 {
    background: rgba(0, 0, 0, 0.2)
}

.bg-dark-50 {
    background: rgba(0, 0, 0, 0.5)
}

.bg-accent-overlay {
    position: relative;
}

.bg-accent-overlay:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: #0002;
}

a {
    color: #222
}

a:hover {
    text-decoration: none;
}

.object-fit-cover {
    object-fit: cover;
}

.object-fit-contain {
    object-fit: contain;
}

.border-dashed {
    border: 1px dashed #ddd!important;
}

.article {
    line-height: 2;
}

.article ul,
.article ol {
    margin-left: 30px;
    line-height: 2;
}

img.grayscale {
    filter: grayscale(1)
}

.radius-0 {
    border-radius: 0px;
}

.radius-5 {
    border-radius: 5px;
}

.radius-10 {
    border-radius: 10px;
}

.radius-50 {
    border-radius: 50px;
}

.radius-circle {
    border-radius: 50%;
}

.font-small {
    font-size: 12px;
}

.btn-accent {
    background: var(--accent-color);
    border-color: transparent;
    color: #fff;
}

.btn-accent:hover {
    background: #2d20b8;
    color: #fff;
}

.btn-link {
    text-decoration: none!important;
}

.position-relative {
    z-index: 2;
}


/* NAVBAR */

#navbar {
    background: var(--accent-color);
    position: relative;
}

#navbar .container {
    position: relative;
}

#topnav {
    position: sticky;
    position: -webkit-sticky;
    top: 0;
    z-index: 999;
    box-shadow: 0px 10px 50px -20px #0003;
}

#topnav:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: #0002;
}

#topnav .container {
    position: relative;
}

#topnav .navbar-nav .nav-link {
    color: #fff;
    font-size: 0.8rem;
    text-transform: uppercase;
    padding: 0 15px;
    height: 50px;
    line-height: 50px;
    border-radius: 5px;
}

#topnav .navbar-nav .nav-item.active>.nav-link {
    background: #fff1;
}

.pathway {
    background: var(--accent-color);
    font-size: 12px;
    color: #fff;
    position: relative;
}

.pathway:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: #0004;
}

.pathway .breadcrumb-item a {
    color: #fff!important;
}

.pathway .breadcrumb-item+.breadcrumb-item::before {
    color: #fff;
}


/* FOOTER */

footer {
    font-size: 0.9rem;
    color: #fffa;
}

footer h5 {
    color: #fff;
}

footer a {
    color: #fffa;
}

footer a:hover {
    color: #fff;
}

.copyright {
    position: relative;
    font-size: 0.8rem;
}

.copyright:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: #0002;
}


/*breadcrumb*/

.breadcrumb-item a {
    color: #ccc!important;
}

.breadcrumb-item a:hover {
    color: #fff!important;
}


/* pagination */

.pagination>li.btn-secondary:not(:first-child) {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

.pagination>li.btn-secondary:not(:last-child) {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}

li.btn.btn-secondary>a {
    color: #fff!important;
}


/* breadcrumbs */

li.breadcrumb-item.text-light.current {
    color: #222;
}


/* RESPONSIVE */

@media (min-width: 576px) {
    .nav-col-2 {
        flex: 0 0 16.666667%;
        max-width: 12%;
        padding-left: 15px;
        padding-right: 0px;
    }
    .col-6 {
        position: relative;
        width: 100%;
        padding-left: 0px;
    }
}

@media (max-width: 480px) {
    .navbar-brand h5 {
        font-size: 14px!important;
    }
}