﻿:root {
    --dark-color-main: #0C3657;
    --dark-color-transparent: rgba(12, 54, 87, .8);
    --red-color-main: #CE3044;
    --red-color-darker: #BA2C3F;
}

html {
    scroll-behavior: smooth;
}

html, body {
    width: 100%;
    height: 100%;
    padding: 0;
    margin: 0;
    display: block;
    scroll-behavior: smooth;
}

h1, h2, h3, h3, h5, h6 {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin-top: 0;
    font-weight: bold;
    color: #CD2F43;
    color: var(--red-color-main);
    padding-bottom: 5px;
}

h1 {
    font-size: 36px;
    line-height: 50px;
    font-weight: bold;
    margin-bottom: 16px;
    color: #2A3F54 !important;
    color: var(--dark-color-main) !important;
}

h2 {
    font-size: 32px;
    line-height: 43px;
    font-weight: 600;
    margin-bottom: 16px;
}

h3 {
    font-size: 22px;
    line-height: 30px;
    color: #212121;
    margin-bottom: 10px;
}

h4 {
    font-size: 22px;
    line-height: 22px;
    color: #212121;
    margin-bottom: 10px;
}

h5 {
    font-size: 18px;
    line-height: 23px;
    color: #212121;
    font-weight: 600;
    margin-bottom: 10px;
}

h6 {
    font-size: 16px;
    line-height: 18px;
    color: #333333;
    font-weight: 600;
    margin-bottom: 10px;
}

p, div, ul, li {
    font-family: 'Rubik', Tahoma, Geneva, Verdana, sans-serif;
}

section {
    background-color: #fff;
}

.main-heading {
    display: flex;
    position: relative;
    padding-bottom: 5px;
    font-weight: bold !important;
}

    .main-heading:after {
        content: "";
        position: absolute;
        left: 0;
        bottom: 0;
        height: 5px;
        width: 125px;
        border-bottom: 3px solid #CD2F43;
        border-bottom: 3px solid var(--red-color-main);
    }

.sub-heading {
    color: #656565;
    font-weight: normal !important;
}

.red-text {
    color: #CD2F43 !important;
    color: var(--red-color-main) !important;
}

.alt-background {
    background: #f2f2f2;
}

.form-control {
    border: none;
    color: #aaa;
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
    z-index: 100;
}

.btn-link, a {
    color: var(--red-color-main) !important;
}

    .btn-link:hover, .btn-link:visited, a:hover, a:visited {
        color: #A3000B !important;
        color: var(--red-color-darker) !important;
    }

    a.nav-link, a.nav-link:hover, a.nav-link:visited, footer a, footer a:hover, footer a:visited {
        color: #fff !important;
    }

.btn-primary, .btn-primary:disabled, .btn-primary:disabled:hover, .btn-primary:visited {
    border: var(--red-color-main) 2px solid;
    border: var(--red-color-main) 2px solid;
    padding: .5rem 3rem !important;
    color: #fff !important;
    background: #CD2F43;
    background: var(--red-color-main);
    -webkit-transition: background-color 150ms linear;
    -ms-transition: background-color 150ms linear;
    transition: background-color 150ms linear;
}

    .btn-primary:hover {
        border: #CD2F43 2px solid;
        border: var(--red-color-main) 2px solid;
        padding: .5rem 3rem !important;
        color: #CD2F43 !important;
        color: var(--red-color-main) !important;
        background: #fff;
        -webkit-transition: background-color 150ms linear;
        -ms-transition: background-color 150ms linear;
        transition: background-color 150ms linear;
    }

.jumbotron .btn-primary:hover {
    color: #fff !important;
    background: transparent !important;
    border: #fff 2px solid;
}

.btn-primary:focus {
    background-color: #A3000B !important;
    background-color: var(--red-color-darker) !important;
    border-color: #A3000B !important;
    border-color: var(--red-color-darker) !important;
}

.btn-secondary, .btn-secondary:visited {
    border: #fff 2px solid;
    padding: .5rem 3rem !important;
    background: #fff !important;
    color: #2A3F54 !important;
    color: var(--dark-color-main) !important;
    border-color: #fff;
}

.btn-secondary:hover {
    color: #fff !important;
    background: transparent !important;
    border: #fff 2px solid;
}

.content-section {
    padding: 8rem 0;
}

.navbar > div {
    max-width: 1600px;
    margin: auto
}

.navbar.sticky {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(42, 63, 84, .9);
    padding: 0px 50px;
    transition: .5s;
    z-index: 5;
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.2);
}

.navbar-nav .nav-item .nav-link {
    color: #fff;
}

.nav-link.underline-animation:after {
    background: none repeat scroll 0 0 transparent;
    bottom: 0;
    content: "";
    display: block;
    height: 2px;
    left: 50%;
    position: relative;
    background: #fff;
    transition: width 0.3s ease 0s, left 0.3s ease 0s;
    width: 0;
}

.nav-link.underline-animation:hover:after {
    width: 100%;
    left: 0;
}

.nav-item.show .nav-link.underline-animation:after {
    width: 100%;
    left: 0;
}

.modal {
    background-color: rgba(0, 0, 0, 0.7);
    background-color: var(--dark-color-transparent);
}

.jumbotron {
    background-color: #2A3F54;
    background-color: var(--dark-color-main);
    position: relative;
    padding: 1rem 2rem 4rem;
}

    .jumbotron.full {
        height: 100vh;
        width: 100%;
        margin-bottom: 0;
        background-color: rgba(42, 63, 84, .8);
        background-color: var(--dark-color-transparent);
    }

    .jumbotron.threequart {
        height: 75vh;
        margin-bottom: 25vh;
        background-color: rgba(42, 63, 84, .8);
        background-color: var(--dark-color-transparent);
        background-image: url('/Images/technology-785742_1920.jpg');
        background-size: cover;
        background-position: center center;
    }

    .jumbotron h1 {
        font-size: 3rem;
    }

    .jumbotron .hero-content .btn-primary, .jumbotron .hero-content .btn-secondary {
        width: 16rem;
    }

.background-video {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: -1;
    min-width: 100vw;
    min-height: 100vh;
}

.jumbotron h1, .jumbotron h3, .parallax-overlay h1.main-heading, .parallax-overlay h3 {
    color: #fff !important;
}

#material-background {
    position: absolute !important;
    z-index: -200;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
}

.jumbotron .container {
    text-align: center;
}

iframe {
    border: 3px solid white;
    padding: 5px;
}

.logos {
    margin-bottom: 2.5rem;
}

#features {
    padding: 2rem;
}

    #features .info {
        text-align: center;
        padding: 2.5rem 1.5rem 1.5rem;
        border-radius: 1rem;
        box-shadow: 0 10px 20px rgba(0,0,0,0.2);
        margin: .75rem;
        height: 250px;
    }

    #features i.fa {
        font-size: 2.25rem;
        color: #CD2F43;
        color: var(--red-color-main);
    }

    #features h2 {
        margin-bottom: 0;
        margin-top: 16px;
        color: #CD2F43;
        color: var(--red-color-main);
        font-size: 1.25rem;
        font-weight: bold;
    }

#phishing-recommendations {
    background: #f2f2f2;
    padding: 5rem .5rem;
}

    #phishing-recommendations .card {
        background-size: cover;
        background-position: center center;
        background-repeat: no-repeat;
        border: none;
        box-shadow: 0 0 10px rgba(0,0,0,0.6);
        -moz-box-shadow: 0 0 10px rgba(0,0,0,0.6);
        -webkit-box-shadow: 0 0 10px rgba(0,0,0,0.6);
        -o-box-shadow: 0 0 10px rgba(0,0,0,0.6);
    }

        #phishing-recommendations .card, #phishing-recommendations .card .overlay {
            padding: 0;
            border-radius: .75rem;
            ;
        }

    #phishing-recommendations .card-body {
        padding: 3rem 1rem;
    }

    #phishing-recommendations .col-md-6 {
        margin-bottom: 2rem;
    }

    #phishing-recommendations .card h4, #phishing-recommendations .card a {
        color: #fff;
    }

        #phishing-recommendations .card a.btn-card {
            position: relative;
            border: 2px solid #fff;
            border-radius: 4px;
            outline: 0;
            overflow: hidden;
            background: none;
            z-index: 1;
            cursor: pointer;
            transition: 0.08s ease-in;
            -o-transition: 0.08s ease-in;
            -ms-transition: 0.08s ease-in;
            -moz-transition: 0.08s ease-in;
            -webkit-transition: 0.08s ease-in;
        }

            #phishing-recommendations .card a.btn-card:hover {
                color: #2A3F54;
                color: var(--dark-color-main);
                font-weight: 700;
            }

            #phishing-recommendations .card a.btn-card:before {
                content: "";
                position: absolute;
                background: #fff;
                bottom: 0;
                left: 0;
                right: 0;
                top: 100%;
                z-index: -1;
                transition: top 0.09s ease-in;
                -webkit-transition: top 0.09s ease-in;
            }

            #phishing-recommendations .card a.btn-card:hover:before {
                top: 0;
            }

    #phishing-recommendations .card.blue-card .overlay {
        height: 100%;
        width: 100%;
        background-color: rgba(0,84,136,0.8);
        color: #fff !important;
    }

    #phishing-recommendations .card.green-card .overlay {
        height: 100%;
        width: 100%;
        background-color: rgba(11,102,35,0.8);
        color: #fff !important;
    }

section.parallax {
    background-image: url("/Images/technology-785742_1920.jpg");
    padding: 0;
}

    section.parallax .parallax-overlay, .jumbotron.threequart .overlay {
        background: rgba(42, 63, 84, .8);
        background: var(--dark-color-transparent);
        height: 100%;
        width: 100%;
    }

.accordion .card-header {
    background-color: #f2f2f2;
}

.accordion .card-body {
    background-color: #fff;
}

#back-slash {
    padding: 5rem 0;
}

    #back-slash h2, #back-slash h3 {
        color: #2A3F54 !important;
        color: var(--dark-color-main) !important;
    }

@media only screen and (max-width: 991px) {
    #back-slash {
        background: #f2f2f2 !important;
    }
}

#contact-form textarea {
    padding-top: 2rem;
}

#backToTop {
    width: 40px;
    line-height: 40px;
    overflow: hidden;
    z-index: 999;
    display: none;
    cursor: pointer;
    position: fixed;
    bottom: 50px;
    right: 10px;
    background-color: #2A3F54;
    background-color: var(--dark-color-main);
    color: #fff !important;
    text-align: center;
    font-size: 24px;
    text-decoration: none;
}

    #backToTop:hover {
        scale: 105%;
    }

footer {
    background-color: #2A3F54 !important;
    background-color: var(--dark-color-main) !important;
}

    footer, footer p, footer a {
        color: #fff;
    }

        footer a {
            text-decoration: underline;
        }

            footer a:hover {
                color: #ddd;
            }

.grecaptcha-badge {
    display: none !important;
}

.mobile-menu-button {
    /*position: fixed;
    */
    position: absolute;
    right: 10px;
    top: 30px;
    z-index: 201;
    border: none;
}

.mobile-menu-icon {
    width: 30px;
    height: 40px;
    position: relative;
    margin: 0px;
    z-index: 201;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .5s ease-in-out;
    -moz-transition: .5s ease-in-out;
    -o-transition: .5s ease-in-out;
    transition: .5s ease-in-out;
    cursor: pointer;
    display: inline-block;
}

    .mobile-menu-icon span {
        display: block;
        position: absolute;
        height: 3px;
        width: 100%;
        border-radius: 9px;
        opacity: 1;
        left: 0;
        -webkit-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        transform: rotate(0deg);
        -webkit-transition: .25s ease-in-out;
        -moz-transition: .25s ease-in-out;
        -o-transition: .25s ease-in-out;
        transition: .25s ease-in-out;
        background: #FFF;
    }

        .mobile-menu-icon span:nth-child(1) {
            top: 0px;
            -webkit-transform-origin: left center;
            -moz-transform-origin: left center;
            -o-transform-origin: left center;
            transform-origin: left center;
        }

        .mobile-menu-icon span:nth-child(2) {
            top: 10px;
            -webkit-transform-origin: left center;
            -moz-transform-origin: left center;
            -o-transform-origin: left center;
            transform-origin: left center;
        }

        .mobile-menu-icon span:nth-child(3) {
            top: 20px;
            -webkit-transform-origin: left center;
            -moz-transform-origin: left center;
            -o-transform-origin: left center;
            transform-origin: left center;
        }
    /* Mobile Menu Open */
    .mobile-menu-icon.open span:nth-child(1) {
        -webkit-transform: rotate(45deg);
        -moz-transform: rotate(45deg);
        -o-transform: rotate(45deg);
        transform: rotate(45deg);
        top: 0px;
    }

    .mobile-menu-icon.open span:nth-child(2) {
        width: 0%;
        opacity: 0;
    }

    .mobile-menu-icon.open span:nth-child(3) {
        -webkit-transform: rotate(-45deg);
        -moz-transform: rotate(-45deg);
        -o-transform: rotate(-45deg);
        transform: rotate(-45deg);
        top: 21px;
    }

@-webkit-keyframes btn {
    0%, 100% {
        -moz-transform: scale(1);
        -ms-transform: scale(1);
        -webkit-transform: scale(1);
        transform: scale(1);
    }

    70% {
        -moz-transform: scale(1);
        -ms-transform: scale(1);
        -webkit-transform: scale(1);
        transform: scale(1);
    }

    80% {
        -moz-transform: scale(1.04);
        -ms-transform: scale(1.04);
        -webkit-transform: scale(1.04);
        transform: scale(1.04);
    }

    90% {
        -moz-transform: scale(0.96);
        -ms-transform: scale(0.96);
        -webkit-transform: scale(0.96);
        transform: scale(0.96);
    }
}

@-moz-keyframes btn {
    0%, 100% {
        -moz-transform: scale(1);
        -ms-transform: scale(1);
        -webkit-transform: scale(1);
        transform: scale(1);
    }

    70% {
        -moz-transform: scale(1);
        -ms-transform: scale(1);
        -webkit-transform: scale(1);
        transform: scale(1);
    }

    80% {
        -moz-transform: scale(1.04);
        -ms-transform: scale(1.04);
        -webkit-transform: scale(1.04);
        transform: scale(1.04);
    }

    90% {
        -moz-transform: scale(0.96);
        -ms-transform: scale(0.96);
        -webkit-transform: scale(0.96);
        transform: scale(0.96);
    }
}

@keyframes

;
@-webkit-keyframes fish {
    0%, 70%

{
    opacity: 0;
}

100% {
    opacity: 1;
}

}

@-moz-keyframes fish {
    0%, 70% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes

;
html {
    height: 100%;
}

a {
    cursor: pointer;
    color: #000;
    text-decoration: none;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

    a:hover {
        color: #ff5050;
    }

.fish, .fish-shadow {
    width: 640px;
    height: auto;
    position: absolute;
    top: -145px;
    left: -177px;
    -moz-animation: fish 1s forwards ease-in-out;
    -webkit-animation: fish 1s forwards ease-in-out;
    animation: fish 1s forwards ease-in-out;
}

    .fish path, .fish-shadow path {
        fill: #CD2F43;
    }

        .fish path:hover, .fish-shadow path:hover {
            fill: #CD2F43;
        }

    .fish .line, .fish-shadow .line {
        fill: none;
    }

.fish-shadow-con {
    opacity: 0.9;
    filter: blur(10px);
    position: absolute;
    top: 0;
    left: 0;
}

.fish-shadow {
    top: -125px;
    left: -157px;
}

    .fish-shadow path {
        fill: #000;
    }

        .fish-shadow path:hover {
            fill: red;
        }

.fish-shadow {
    top: -125px;
    left: -157px;
    opacity: 0.4;
}

.card {
    position: relative;
    z-index: 2;
    background-color: transparent;
    border: 0;
}

.card_title {
    font-size: 24px;
    margin: 0;
}

.card_title-info {
    font-size: 14px;
    margin: 7px 0 10px;
}

.card_button {
    -moz-animation: btn 6s 1.8s infinite ease-in-out;
    -webkit-animation: btn 6s 1.8s infinite ease-in-out;
    animation: btn 6s 1.8s infinite ease-in-out;
    opacity: 0.9;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

    .card_button:hover {
        opacity: 1;
        box-shadow: 0 2px 2px -3px #ff5050;
    }

.card_info {
    font-size: 14px;
}

.input {
    display: flex;
    flex-direction: column-reverse;
    position: relative;
    padding-top: 10px;
}

    .input + .input {
        margin-top: 10px;
    }

#login-modal .modal-dialog {
    position: relative;
    background-color: #fafafe;
    border-radius: 10px;
    margin: 40px;
    padding: 25px 20px 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    width: 320px;
    box-sizing: border-box;
}

#login-modal .modal-dialog:before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    right: 0;
    height: 60%;
    background-color: #fafafe;
    border-radius: 10px;
    z-index: 2;
}

#login-modal .modal {
    background-color: rgba(42, 63, 84, .8);
}
    #login-modal.modal.show {
        display: flex !important;
    }


#control-video:focus {
    outline: 1px solid white;
}


button:focus, .btn:focus, .btn.focus {
    outline: auto;
}

.mfa-card {
    width: 480px;
    border-radius: 16px;
}

@media (max-width: 760px) {
    .mfa-card {
        width: 100%;
    }
}

.mfa-card-body {
    padding: 2rem !important;
}

div#qrcode > img {
    max-width: 160px;
}

.p-showManualEntry {
    font-size: .875em !important;
}

#qrcode {
    padding: 16px;
    background: url(../Images/qr_code_bg.svg);
    background-size: cover;
}

#mfa-code-input {
    padding: 1rem .75rem !important;
    border: 1px solid #ced4da !important;
    box-shadow: none;
}

/* ----- Custom Toggle -----*/

.switch {
    position: relative;
    display: inline-block;
    width: 30px;
    height: 17px;
}

    .switch input {
        opacity: 0;
        width: 0;
        height: 0;
    }

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    -webkit-transition: .4s;
    transition: .4s;
}

    .slider:before {
        position: absolute;
        content: "";
        height: 13px;
        width: 13px;
        left: 4px;
        bottom: 2px;
        background-color: white;
        -webkit-transition: .4s;
        transition: .4s;
    }

input:checked + .slider {
    background-color: #2A3F54;
}

input:focus + .slider {
    box-shadow: 0 0 1px #2196F3;
}

input:checked + .slider:before {
    -webkit-transform: translateX(13px);
    -ms-transform: translateX(13px);
    transform: translateX(10px);
}

/* Rounded sliders */
.slider.round {
    border-radius: 34px;
}

    .slider.round:before {
        border-radius: 50%;
    }

.branded-page-main {

}

.bg-glass {
    background-color: rgba(255, 255, 255, .15);
    backdrop-filter: blur(4px);
    border-radius: 1rem;
    box-shadow: 0 0 1rem 0 rgba(0, 0, 0, .2);
}

.card-parent {
    border: 1px solid rgba(0,0,0,.125) !important;
    background-color: #fff;
    flex-direction: row;
    border-radius: 1rem !important;
}

.card-1 {
    background-color: rgba(42, 63, 84, .8);
    border-bottom-left-radius: inherit;
    border-top-left-radius: inherit;
    width: 50%;
}

.card-1>.d-flex {
    justify-content: center;
}

.card-2 {
    width: 50%;
}

@media (max-width: 768px) {
    .card-parent {
        flex-direction: column;
    }

    .card-1 {
        width: 100%;
        height: 50%;
        border-bottom-left-radius: 0;
        border-top-right-radius: inherit;
    }

        .card-1 > .d-flex {
            justify-content: start;
            align-items: center;
        }

    .card-2 {
        width: 100%;
    }
}

/* Red Herring Logo */
.rh-logo {
    display: block;
    margin: auto;
    max-width: 100%;
    height: auto;
}