@charset "utf-8";
/* CSS Document */
@import url(https://fonts.googleapis.com/css?family=Open+Sans);

:root {
    --blue: #1e90ff;
    --blue-rgb: 18, 88, 148;
    --dark-blue: #125894; /* h3, links */
    --dark-blue-bg: 0, 23, 41; /* entity hover */
    --grey: #25303b; /* footer light */
    --dark-grey: #1b232b;/* footer dark*/
    --font-color: #252525;
    --page-bg-color: #f4f5f6;
  }


body {
    font-family: "Open Sans", sans-serif;
    background-color: var(--page-bg-color);
}

.base-anim {
    transition: all 0.25s ease;
}
a.default-link:hover, a.default-link:focus {
    background: var(--dark-blue)!important;
    color: #fff!important;
}
a.invert-link:hover, a.invert-link:focus {
    background: #fff!important;
    color: var(--font-color)!important;
}
.hover-invert:hover img, .hover-invert:focus img {
    filter: invert(1);
}
.skip-to-content {
    position: absolute;
    top: 20px;
    left: 20px;
}

/* Header / Navbar */
header {
    background-color: #fff;
}
.navbar {
    height: 134px;
    padding: 18px 0;
}
.navbar-brand img {
    height: 93px;
}
.navbar .nusz-logo {
    height: 58px;
}
.navbar .nav-link {
    color: var(--font-color);
    font-weight: bold;
}
.navbar .navbar-nav {
    border-right: 1px solid #c3c3c3;
}
@media (max-width: 991.99px) {
    .navbar .navbar-nav {
        border: 0;
    }
    header .navbar-collapse {
        position: absolute;
        left: 0px;
        right: 0px;
        top: 134px;
        background: rgb(255, 255, 255);
        box-shadow: 0 20px 15px rgba(0, 0, 0, 0.2);
    }
}

/* Footer */
footer {
    background-color: var(--grey);
}
footer .top-container {
    padding: 30px 0;
}
footer .footer-logo {
    height: 63px;
}
footer .app-links {
    color: #fff;
    font-weight: bold;
}
footer a img {
    border-radius: 8px;
}
footer .footer-bottom {
    background-color: var(--dark-grey);
    padding: 20px 0;
}
footer .footer-bottom span, footer .footer-bottom a {
    margin-right: 27px;
    color: #fff;
    font-size: 12px;
    text-decoration: none;
}

/* Home content */
/* SECTION Entity select */
nav.entities{
    background: url("../img/vizcenter_bg.jpg") no-repeat fixed center;
    background-size: cover;
    padding-top: 195px;
    padding-bottom: 195px;
}
.entity-select{
    background-color: rgba(var(--blue-rgb), 0.85);
    border-radius: 10px;
    padding: 55px 0;
}
.entity-select .welcome-text {
    line-height: 44px;
}
.entity-select p, .entity-select h2 {
    color: #fff;
}
.entity-select a {
    height: 100%;
    text-decoration: none;
}
.entity-select .company-logo-container {
    height: 94px;
    display: flex;
    align-items: center;
    width: 100%;
    justify-content: center;
}                             
.entity-select .entities.row .company-link {
    transition: all 0.25s ease;
    border-right: 1px solid rgba(255, 255, 255, 0.25);
    padding: 15px 25px;
}
.entity-select .entities.row > div:last-child > .company-link {
    border-right: none;
}
.entity-select .entities.row .company-link:hover, .entity-select .entities.row .company-link:focus {
    background-color: rgba(var(--dark-blue-bg), 0.8);
}
@media (min-width: 992px) {
    .entity-select{
        padding: 55px 70px!important;
    }
}
@media (max-width: 991.9px) {
    .entity-select .welcome-text {
        line-height: 30px;
        font-size: 20px;
    }
    .entity-select .entities.row .company-link {
        border: 0;
    }
}
/* SECTION Miert a vizcenter */
#why-us > div {
    margin-top: -55px;
}
#why-us h2 {
    color: var(--dark-blue);
    margin-bottom: 65px;
    font-weight: bold;
}
#why-us p {
    line-height: 28px;
}
/* SECTION News */
#news {
    margin: 120px 0 100px 0;
}
#news h2 {
    color: var(--dark-blue);
    margin-bottom: 50px;
    font-weight: bold;
}
#news article .article-tile {
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 40px;
}
#news article h3 {
    font-weight: bold;
    margin-bottom: 35px;
    min-height: 67px;
}
#news article a {
    text-decoration: none;
    color: var(--dark-blue);
    font-size: 18px;
    text-transform: uppercase;
}
/* Default Content */
.static-content .page-title-container {
    background-color: var(--dark-blue);
    padding: 55px 0 110px 0;
}
.static-content h1 {
    color: #fff;
    margin-bottom: 50px;
    font-weight: bold;
}
.white-box {
    background-color: #fff;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
    padding: 45px 0;
}
.static-content .page-title-container + .white-box {
    margin-top: -55px!important;
}
@media (min-width: 992px) {
    .white-box {
        padding: 45px 70px!important;
    }
}