/*
Theme Name:   Vectra 2019
Description:  Vectra 2019 Website
Author:       Tyson Brady
Author URL:   https://vectra-corp.com
Template:     understrap
Version:      1.0
License:      GNU General Public License v2 or later
License URI:  http://www.gnu.org/licenses/gpl-2.0.html
Text Domain:  vectra-2019
*/

/* Write here your own personal stylesheet */

@import url('https://fonts.googleapis.com/css?family=IBM+Plex+Sans:100,400,500,700|Nunito+Sans:300&display=swap');
@import url('https://fonts.googleapis.com/css?family=Roboto&display=swap');

li.dropdown:hover>ul.dropdown-menu {
  display: block !important;
	margin-top: -2px;
}


body {
    background-color: #F5F7FA;
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    overflow-x: hidden;
}

/* .mm-wrapper_blocking body {
    padding-top: 0px;
} */



/* Font Styles */


.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
    font-family: 'IBM Plex Sans', sans-serif;
}

.page-content h2 {
    color: #1F3967;
    font-size: 1.625rem;
    font-weight: 500;
}


p, ul li {
    /* font-family: 'Nunito Sans', sans-serif; */
/*     font-family: 'Roboto', sans-serif !important; */
    font-size: 1.0625rem;
    line-height: 1.75;
}

p a {
    color: #1F3967;
    font-weight: 500;
}

p a:hover {
    color: #1F3967;
    font-weight: 500;
}

*:focus{
    outline: none;
    box-shadow:none !important;
}



.bg-radial-darkblue {
    background: #0D2C54;  /* fallback for old browsers */
    background: -webkit-linear-gradient(to left, #154584, #0D2C54);  /* Chrome 10-25, Safari 5.1-6 */
    background: linear-gradient(to left, #154584, #0D2C54); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */

}

.topbar {
    background: #0D2C54;
    padding: 1rem;
    color: #ccc;
    display: none;
}

.topbar .row a {
    color: rgba(255,255,255,0.75);
    margin-right: 1rem;
}

.topbar .row a i {
    color: #fff;
}

.topbar  ul.topbar__social {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.topbar  ul.topbar__social li {
    display: inline;
}

.topbar  ul.topbar__social li a {
    margin-right: 0rem;
    margin-left: 1rem;
}

.navbar {
    background: #ffffff;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    border-bottom: 1px solid #e8eaed
    /* box-shadow: 0 0rem 1.25rem rgba(31,45,61,.18); */
}

.navbar-light .navbar-toggler {
    border: none;
}

a.navbar-brand {
    width: 12rem;
}

button#mobile-menu-btn {
    background: none;
    border: none;
}


@media (min-width: 992px) {

a.navbar-brand {
    width: auto;
    padding-right: 1.5rem;
}

.nav-item--search {
    padding: 12px 0;
}

a.nav-item.nav-link.nav-search {
    padding: 0px;
    height: 66px;
    display: flex;
    align-items: center;
    border-right: 1px solid #ccc;
    margin-right: 1rem;
    padding-right: 1.5rem;
}

.navbar .nav-link {
    display: block;
    padding: 1rem 2rem;
    font-size: 1.125rem
}

.navbar .nav-link:hover {
    color: #809CB8;
}


.navbar .nav-link--contact {
    /* margin-top: 0.5rem; */
}

.navbar .nav-link {
    font-weight: 500;
}

.dropdown-item {
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
}

a.dropdown-item:active {
    background: #ffffff;
    color: #000000;
}

.dropdown-toggle:after { content: none !important }

@media (min-width: 992px) {

    ul.dropdown-menu {
        border: none;
        box-shadow: 0 0rem 1.25rem rgba(31,45,61,.18);
        border-radius: 0;
    }

    ul.dropdown-menu:after {
        bottom: 100%;
        left: 50%;
        border: solid transparent;
        content: " ";
        height: 0;
        width: 0;
        position: absolute;
        pointer-events: none;
        border-color: rgba(0, 0, 0, 0);
        border-bottom-color: #ffffff;
        border-width: 15px;
        margin-left: -15px;
    }


    .nav-item.dropdown>.dropdown-menu {
        opacity:0;
        position: absolute;
        display: block;
        pointer-events: none;
    }

    .nav-item.dropdown:not([data-toggle=hover]) .dropdown-menu.show {
        pointer-events: auto;
        animation: show-dropdown .3s ease forwards
    }

    .nav-item.dropdown:not([data-toggle=hover]) .dropdown-menu.hide {
        display: block;
        animation: hide-dropdown .3s ease backwards
    }

    .nav-item.dropdown[data-toggle=hover]>.dropdown-menu {
        display: block;
        margin: 0;
        left: 50%;
        transform: translateX(-50%) translateY(-0px) scale(.97);
        transition: all .2s ease
    }
}

@media (min-width: 992px) and (prefers-reduced-motion:reduce) {
    .nav-item.dropdown[data-toggle=hover]>.dropdown-menu {
        transition:none
    }
}

@media (min-width: 992px) {
    .nav-item.dropdown[data-toggle=hover]:hover>.dropdown-menu {
        display:block;
        opacity: 1;
        pointer-events: auto;
        visibility: visible;
        transform: translateX(-50%) translateY(-0px) scale(1)
    }
}

@keyframes show-dropdown {
    0% {
        opacity: 0;
        transform: translateX(0) translateY(-3px) scale(.97);
        transition: all .3s ease
    }

    100% {
        transform: translateX(0) translateY(-3px) scale(1);
        opacity: 1
    }
}

@keyframes hide-dropdown {
    from {
        opacity: 1;
        transform: translateX(-16px) translateY(-3px) scale(1);
        transition: all .3s ease
    }

    to {
        opacity: 0;
        transform: translateX(-16px) translateY(-3px) scale(.97)
    }
}

}





.navbar-light .navbar-nav .nav-link {
    color: rgba(0,0,0,1) !important;
}



.home-hero {
    background: #ffffff;
    box-shadow: 0 0rem 1.25rem rgba(31,45,61,.18);
}

.home-hero__content .heading2 {
    font-size: 3rem;
}



.home-hero__image {
    min-height: 600px;
    background: url('/wp-content/themes/vectra-2019/img/hero-bg.jpg') no-repeat;
    background-position: center center;
    position: relative;
}

.home-hero__image--overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    
    opacity: 0.3;
    left: 0;

}

.home-hero__menu-item {
    height: 200px;
    display: inline-block;
    border: 1px solid #F5F7FA;
    transition: all .1s linear;

}

.home-hero__menu-item:hover {
    border-bottom: 6px solid #c7d7e8;
    text-decoration: none;
    background: #f5f7fa;
}

.btn--contact {
    position: absolute;
    right: 0;
    bottom: 0;
    display: block;
    color: #fff;
    font-weight: bold;
    background: #809CB8;
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
    border-top-right-radius: 0;
    padding: 0.75rem 1.5rem;
}


img.hh-menu__icon {
    display: block;
    margin: 0 auto;
    margin-top: 30px;
    margin-bottom: 20px;
}

.hh-menu__title {
    display: block;
    margin: 0 auto;
    max-width: 180px;
    text-align: center;
    font-weight: 600;
    color: #082560;
    
}




.card {
    border: none;
}




/* Footer */

#trianglePath1 {
    fill: #fff;
    stroke: #fff;
}

#trianglePath2 {
    fill: #809CB8;
    stroke: #809CB8;
}

.v-footer {
    background-color: #154584;
    /* background-image: linear-gradient(138deg, #154584, #0D2C54); */
    padding-top: 9.375rem;
    padding-bottom: 9.375rem;
    color: rgba(255,255,255,0.71);
    position: relative;
}

/* .v-footer::before {
    position: absolute;
    content: '';
    top: 0;
    left: -25%;
    z-index: -1;
    width: 150%;
    height: 75%;
    background: #809CB8;
    -webkit-transform: rotate(-2deg);
    transform: rotate(-2deg);
    -webkit-transform-origin: 0 0;
    transform-origin: 0 0;
} */

.v-footer h3 {
    color: #fff;
    font-size: 1.125rem;
    font-weight: 600;
    letter-spacing: -0.2px;
    margin-bottom: 10px;    
}

.v-footer__logo {
    width: 230px;
    margin-bottom: 2rem;
}

.v-footer--top {
    margin-bottom: 4rem;
}

ul.v-footer__menu {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

ul.v-footer__menu li {
    margin-bottom: 0.5rem;
}

ul.v-footer__menu a {
    color: rgba(255,255,255,0.71);
}



ul.v-footer__links {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

ul.v-footer__links li {
    display: inline;
    margin-left: 1.25rem;
}

ul.v-footer__links li a {
    color: rgba(255,255,255,0.71);
}

.home-hero__left {
    padding: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #154584;
}


.home-hero__left h2 {
    color: #fff;
}

.home-hero__left h2::after {
    content: '';
    display: block;
    margin-top: 2rem;
    margin-bottom: 2rem;
    height: .25rem;
    width: 6rem;
    position: relative;
    background: #809cb8;
}

@media (max-width: 992px) {
    .home-hero__left h2::after {
        left: 50%;
        transform: translateX(-50%);
    }
}

.home-hero__left h1 {
    color: #fff;
    font-size: 1.125rem;
    font-weight: 400;
}

@media (min-width: 1200px) {

    .home-hero__left {
        padding: 0;
        padding-left: 10% !important;
        padding-right: 10% !important;
    }

    .home-hero__left h2 {
        color: #fff;
    }
    
    .home-hero__left h2::after {
        content: '';
        display: block;
        margin-top: 2rem;
        margin-bottom: 2rem;
        height: .25rem;
        width: 6rem;
        position: relative;
    }
    
    .home-hero__left p {
        color: #fff;
        font-size: 1.125rem;
    }

}




h1.heading2, h2.heading2, h3.heading2, h4.heading2, h5.heading2, h6.heading2 {
    font-size: 2.250rem;
    font-weight: 400;
    line-height: 1.27;
    letter-spacing: -1px;
    font-family: 'IBM Plex Sans', sans-serif;
}

.section-title {
    margin-bottom: 2rem;
}

.section--siem, .section--recon, .section--bwise {
    padding-top: 0;
    padding-bottom: 3.5rem;
}

.section--image {
    margin-bottom: 2rem;
}

@media (min-width: 992px) {

    .section--siem, .section--recon {
        padding-top: 10rem;
        padding-bottom: 10rem;
    }
    
    .section--bwise {
        background-color: #eeeeee;
        padding-top: 10rem;
        padding-bottom: 10rem;  
    }

    .section--image {
        margin-bottom: 0
    }

}

.section--siem p, .section--recon p, .section--bwise p {
    margin-bottom: 2rem;
}

.section--techpartners {
    border-top: 1px solid #eeeeee;
    padding: 6rem 0;
    background: #fafafa;
}

.section--techpartners .wpls-logo-showcase .slick-dots {
    display: none !important;
}

.section--techpartners button.slick-arrow {
    opacity: 0.3;
}

.col-12.text-center.techpartners__title {
    font-size: 1.5rem;
}

.section--areas {
    background: #809CB8;
    padding-top: 2rem;
    color: #fff;
    padding-bottom: 2rem;
    font-weight: 500;
}

.section--areas .col {
    display: flex;
    align-items: center;
    justify-content: center;
}


a.btn--simple {
    padding: 0;
    font-weight: 600;
    font-size: 1.125rem;
}

a.btn--simple::before {
    content: '';
    display: inline-block;
    width: 1rem;
    height: 0.25rem;
    background-color: #082560;
    margin-right: 0.5rem;
    margin-bottom: 0.125rem;
    transition: all .1s linear;
}

a.btn--simple:hover::before {
    content: '';
    display: inline-block;
    width: 1rem;
    height: 0.25rem;
    background-color: #809CB8;
    margin-left: -1rem;
    margin-right: 1.5rem;
    margin-bottom: 0.125rem;
}

a.btn--block {
    padding: 0;
    font-weight: 600;
    font-size: 1.125rem;
    transition: all .1s linear;
}

a.btn--block::after {
    content: '';
    display: inline-block;
    width: 1rem;
    height: 0.25rem;
    background-color: #082560;
    margin-right: 0.5rem;
    margin-bottom: 0.125rem;
    transition: all .1s linear;
}

a.btn--block:hover::after {
    content: '';
    display: inline-block;
    width: 1rem;
    height: 0.25rem;
    background-color: #809CB8;
    margin-left: -1rem;
    margin-right: 1.5rem;
    margin-bottom: 0.125rem;
}

/* Sticky */

.stickycontact {
    display: inline-block;
    background-color: #0D2C54;
    padding: 0.5rem 1rem;
    font-weight: 500;
    color: #ffffff;
    text-transform: uppercase;
    font-size: 0.938rem;
}

.stickycontact:hover {
    cursor: pointer;
}

.stickyscroller {
    background-color: #809CB8;
    padding: 0.5rem 1rem;
    display: inline-block;
    opacity: 0;
    font-weight: 500;
    font-size: 0.938rem;
    color: #ffffff;
    transition: all .1s linear;
}

.stickyscroller--visible {
    padding: 0.5rem 1rem;
    opacity: 1;
}

.stickyscroller--visible:hover {
    cursor: pointer;
}

.stickyui {
    position: fixed;
    right: 0;
    bottom: 0;
}

/* Contact Modal */

.modal-title {
    font-weight: 600;
    font-family: 'Roboto', sans-serif;
    letter-spacing: 1px;
}

.modal-body {
    background: #fafafa;
}

.modal-content {
    border-radius: 0rem;
}

#frm_form_1_container label {
    display: none;
}


/* Other */

.section--usefullinks {
    padding-top: 4rem;
    padding-bottom: 4rem;
    background: #fafafa
}

.section--usefullinks .card { 
    border-color: #f1f1f1;
}

.card a {
    padding: 0;
    font-weight: 600;
    color: #809CB8 !important;
    font-size: 1rem;
}

.section--usefullinks h5.card-title::after {
    content: '';
    display: block;
    margin-top: 1rem;
    margin-bottom: 2rem;
    height: .25rem;
    width: 3rem;
    position: relative;
    background: #809CB8;
}



.page-header {
    padding-top: 3rem;
    padding-bottom: 3rem;
}

.page-header h1 {
    color: #fff;
}





.page-hero {
    display: flex;
    align-items: center;
    background: #fafafa;
    /* background: linear-gradient(52deg, rgba(246,246,246,1) 0%, rgba(255,255,255,1) 46%); */
    padding-bottom: 2rem;
}

.page-hero--image {
    margin-bottom: 1.5rem
}

.page-hero__dots {
    display: none;
}

@media (min-width: 992px) {
    .page-hero {
        height: 36rem;
        padding-bottom: 0
    }
    .page-hero__image {
        margin: 0
    }
    img.page-hero__dots {
        display: block;
        position: absolute;
        top: -2rem;
        right: -2rem;
        z-index: 1;
    }
    
    .page-hero__dots--lower {
        position: absolute;
        top: 14rem;
        left: 0rem;
        z-index: -1;
    }
}

.page-hero h1 {
    font-size: 2.250rem;
    font-weight: 400;
    line-height: 1.27;
    letter-spacing: -1px;
    font-family: 'IBM Plex Sans', sans-serif;
}

.page-hero h3 {
    margin-bottom: 2.5rem;
    color:#1F3967
}

.page-hero p {
    margin-bottom: 2rem;
}

.page-hero .page-hero__image {
    z-index: 2;
    position: relative;
}


/* .page-hero h1::after {
    content: '';
    display: block;
    margin-top: 2rem;
    margin-bottom: 2rem;
    height: .25rem;
    width: 6rem;
    position: relative;
    background: #154584;
} */

p.page-hero__lead {
    font-size: 1.0625rem;
}


.page .section--white {
    padding-top: 8rem;
    padding-bottom: 8rem;
    border-top: 1px solid #eeeeee;
    border-bottom: 1px solid #eeeeee;
    margin-bottom: -1px;
}

.page .section--grey {
    padding-top: 8rem;
    padding-bottom: 8rem;
    background-color: #eeeeee;
}

.page .section--grey .wpb_content_element, 
.page .section--white .wpb_content_element {
  
}






.techpartners__title {
    font-weight: 500;
    font-size: 1.125rem;
    margin-bottom: 2rem;
}





/* Search bar */

.searchbar{
        margin-bottom: auto;
        margin-top: auto;
        height: 50px;
        padding: 5px;
    }

    .search_input{
        color: #1F3967;
        border: 0;
        outline: 0;
        background: none;
        width: 0;
        caret-color:transparent;
        line-height: 40px;
        transition: width 0.4s linear;
        border-bottom: 1px solid #e8eaed;
    }

    .searchbar:hover > .search_input {
        padding: 0 10px;
        width: 20rem;
        caret-color:rgb(92, 92, 92);
        transition: width 0.4s linear;
    }

    .searchbar:hover > .search_icon {
        background: white;
        color: #1F3967;
    }

    .search_icon{
        height: 40px;
        width: 40px;
        float: right;
        display: flex;
        justify-content: center;
        align-items: center;
        border-radius: 50%;
        color:#1F3967;
    }



    /* Mobile Footer */

    .footer--mobile {
        z-index: 99999;
        position: relative;
    }

    footer #accordion {
        background: #F4F4F4;
        width: 100%;
        padding: 0rem 1rem;
    }
    
    footer .card {
        background: none;
        border: none;
        border-bottom: 1px solid rgba(0,0,0,.125);
    }
    
    footer .card-header {
        background: none;
        border: none;
        display: flex;
		max-height: 62px;
    }

    footer .card-header > .icon--plus {
        display: none;
    }

    footer .card-header.collapsed > .icon--plus {
        display: flex;
    }

    footer .card-header.collapsed > .icon--minus {
        display: none;
    }

    footer .card-header img {
        width: 0.75rem;
    }
    
    footer button.btn-link {
        color: #000;
        font-weight: 500;
    }

    footer button.btn-link:hover, footer button.btn-link.focus, footer button.btn-link:focus {
        color: #000;
        text-decoration: none;
    }

    footer .card-body ul {
        list-style: none;
        padding-left: 1rem;
    }
    
    footer .card-body ul li a {
        color: #000 !important;
        font-weight: 400;
        display: block;
        margin-bottom: 1rem;
        font-size: 0.875rem !important;
    }

    footer .footer--blue {
        background: #1F3967;
        color: #fff;
        padding-top: 1rem;
        padding-bottom: 1.5rem
    }

    footer .footer--blue ul {
        list-style: none;
        padding: 0;
        margin: 0;
        border-bottom: 1px solid #809CB8;
        padding-bottom: 1rem;
        margin-bottom: 1.5rem;
    }

    footer .footer--blue ul li {
        display: inline;
        padding: 0 0.5rem;
    }

    footer .footer--blue ul li a {
        color: #fff;
        font-size: 0.938rem;
    }


    /* Contact Page */

    .page .nav-pills {
    
    }
    
    .page .nav-pills .nav-link {
        background: none;
        color: #000;
        border-bottom: 4px solid #fff;
        border-radius: 0;
    }
    
    .page .nav-pills .nav-link:hover {
        border-bottom-color: #c7d7e8;   
    }
    
    .page .nav-pills .nav-link.active, .page .nav-pills .show>.nav-link {
        background: #fff;
        color: #000;
        border-bottom-color: #c7d7e8;
    }

    .office__title {
        font-size: 2.250rem;
        font-weight: 500;
        line-height: 1.27;
        letter-spacing: -1px;
        font-family: 'IBM Plex Sans', sans-serif;
        margin-bottom: 1rem;
    }
    
    ul.office__info {
        list-style-type: none;
        padding: 0;
    }
    
    .page #pills-tabContent {
        padding: 2rem;
        border: 1px solid #c7d7e8;
        margin-bottom: 3rem;
        min-height: 20rem;
    }

    .section--contactform {
        border-top: 1px solid #eeeeee;
        padding-top: 6rem;
        padding-bottom: 6rem;
        background: #fafafa;
        /* background: linear-gradient(52deg, rgba(246,246,246,1) 0%, rgba(255,255,255,1) 46%); */
    }

    .google-maps {
        position: relative;
        padding-bottom: 75%; 
        height: 0;
        overflow: hidden;
    }
    .google-maps iframe {
        position: absolute;
        top: 0;
        left: 0;
        width: 100% !important;
        height: 100% !important;
    }

    .section--locations {
        padding-top: 4rem;
        padding-bottom: 4rem;
    }

    @media (max-width: 992px) {
        .page-hero__image-col::after {
            content: '';
            display: block;
            margin-top: -0.4rem;
            height: 1.2rem;
            width: 102%;
            margin-left: -1%;
            background: #fafafa;
            transform: rotate(2deg);
            position: relative;
            z-index: 2;
        }
    }

    .partner-button {
        background: #809cb8;
        color: #fff;
        padding: 0.75rem 2rem;
    }

    .partner-button:hover {
        opacity: 0.8;
        text-decoration: none;
        color: #fff;
    }


    /* Forms */

    .form__card {
        background-color: #fff;
        border: 1px solid #dadce0;
        border-radius: 8px;
        margin-bottom: 12px;
        padding: 24px;
        margin-top: 0;
        page-break-inside: avoid;
    }




    /* CPS Survey Page */

    .page-cps .frm_primary_label {
        margin-bottom: 1rem !important;
    }

    .single .wrapper {
        padding-top: 0rem;
    }

    .blog-post_hero {
        position: relative;
        padding-top: 12rem;
        padding-bottom: 2rem;
        background: linear-gradient(to left, #154584, #0D2C54);
    }

    .blog-post_hero--overlay {
        background: rgb(31,57,103);
    }

    .blog-post_hero--overlay {
        position: absolute;
        height: 100%;
        width: 100%;
        top: 0;
        z-index: 0;
    }
    
    header.entry-header {
        position: relative;
        z-index: 1;
    }
    
    article {
        background: #fff;
    }

    header.entry-header {
        border-bottom: 1px solid #e9e9e9;
        padding-bottom: 2rem;
        margin-bottom: 2rem;
        color: #1F3967;
    }

    div#comments {
        display: none;
    }



    /* Blog Listing Page */

    .blog .page-hero {
        height: 18rem;
        background: rgb(20,36,62);
        background: linear-gradient(335deg, rgba(20,36,62,1) 3%, rgba(31,57,103,1) 59%);
        /* background: url('/wp-content/themes/vectra-2019/img/blog-bg.jpg') center center; background-size: cover; */
        padding-top: 5rem;
    }

    .blog .page-hero h1 {
        color: #ffffff;
        font-weight: 500;
        letter-spacing: 0px;
    }

    .blog .wrapper, .single .wrapper {
        background: #f5f5f5;
    }

    .blog #content {
        margin-top: -5rem;
    }

    .blog .card-columns .card {
        background: #ffffff;
        margin-bottom: 1.25rem;
        border: 0px;
    }

    .card .card-category {
        background: #809cb8;
        border-radius: 0.25rem;
        display: inline-block;
        padding: 0.125rem 0.5rem;
        font-size: 0.7rem;
        color: #fff;
        font-weight: 700;
    }

    .card h2.entry-title {
        margin-top: 1rem;
    }
    
    .blog .card .entry-title a {
        font-size: 1.75rem;
        font-weight: 500;
        line-height: 1.27;
        letter-spacing: -1px;
        font-family: 'IBM Plex Sans', sans-serif;
        color: #000 !important;
    }

    .card-text {
        font-family: 'Nunito Sans', sans-serif;
        font-size: 1rem;
        line-height: 1.5;
    }
    
    
    .card-time {
        text-transform: uppercase;
        font-size: 0.8rem;
        color: #6c757d;
        font-weight: 600;
        margin-bottom: 1rem;
    }

    .card.category-compliance .card-category {
        background: rgba(164, 207, 79, 1);
    }

    .card.category-threat-talk .card-category {
        background: rgba(255, 129, 58, 1); 
    }

    .card.category-security-advisory .card-category {
        background: rgb(215, 38, 56);
    }

    .card.card--hightlight.category-compliance .card-body {
        background: rgba(164, 207, 79, 0.3);
    }

    .card.card--hightlight.category-threat-talk .card-body {
        background: rgba(255, 129, 58, 0.15);    
    }

    .card.card--hightlight.category-security-advisory .card-body {
        background: rgba(215, 38, 56, 0.15);
    }


    /* Single Post Page */

    .single .blog-post_hero {
        padding-bottom: 8rem;
    }

    .single #content {
        padding-bottom: 6rem;
    }

    h1.entry-title {
        color: #fff;
        z-index: 1;
        position: relative;
    }

    .blog-post_block {
        background: #ffffff;
        border-radius: 0.25rem;
        box-shadow: 0 1px 8px rgba(0,0,0,.1);
        margin-top: -6rem;
    }

    .entry-time {
        text-transform: uppercase;
        font-size: 1rem;
        color: #6c757d;
        font-weight: 600;
    }

    .entry-category {
        background: #809cb8;
        border-radius: 0.25rem;
        display: inline-block;
        padding: 0.125rem 0.5rem;
        font-size: 0.7rem;
        color: #fff;
        font-weight: 700;
    }

    .entry-original {
        background: #f6f7f8;
        border: 1px solid #809cb8;
        padding: 1rem;
        margin-bottom: 1rem;
        margin-top: 2rem;
    }

    




    
