/*
Theme Name: Detektyw Łódź
Author: Detektyw Łódź
Description:  Detektyw Łódź
Version: 1.0
Text Domain: detektyw-lodz
Tags: Detektyw Łódź
*/

body {
    margin: 0;
    -webkit-font-smoothing: auto;
    font-family: 'Teko';
}

article,
aside footer,
header,
main,
menu,
nav,
section {
    display: block;
}

a {
    text-decoration: none;
}

a:active,
a:hover {
    outline: 0;
}

img {
    width: 100%;
    height: auto;
}

p {
    font-size: 22px;
    font-weight: 300;
}

.pr-color {
    color: #021239;
}

/*
=================================
  BOOTSTRAP
=================================
*/
.container {
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
}

@media (min-width: 576px) {
    .container {
        max-width: 540px;
    }
}

@media (min-width: 768px) {
    .container {
        max-width: 720px;
    }
}

@media (min-width: 992px) {
    .container {
        max-width: 960px;
    }
}

@media (min-width: 1200px) {
    .container {
        max-width: 1140px;
    }
}

/*
=================================
  HEADER
=================================
*/
header {
    position: fixed;
    z-index: 10;
    top: 0;
    left: 0;
    right: 0;

    height: 94px;
    /*line-height: 94px;*/

    background-color: #f8f8f8;
    border-top: 1px solid #e7e7e7;
    border-bottom: 1px solid #e7e7e7;

    -moz-box-shadow: 0 0 3px rgba(0, 0, 0, .5);
    -webkit-box-shadow: 0 0 3px rgba(0, 0, 0, .5);
    -khtml-box-shadow: 0 0 3px rgba(0, 0, 0, .5);
    -ms-box-shadow: 0 0 3px rgba(0, 0, 0, .5);
    -o-box-shadow: 0 0 3px rgba(0, 0, 0, .5);
    box-shadow: 0 0 3px rgba(0, 0, 0, .5);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.logo,
nav {
    display: inline-block;
}

.logo img {
    width: auto;
}

nav ul {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    margin: 0;
    list-style: none;
}

nav ul li {
    margin-right: 15px
}

nav ul li:last-child {
    margin-right: 0px;
}

nav ul li a.nav-link {
    position: relative;
    display: inline-block;
    padding: 5px 15px;
    font-size: 24px;
    font-weight: 400;
    letter-spacing: .5px;
    color: #021239;
    border: 1px solid transparent;
    border-radius: 3px;
    transition: background-color .25s ease-in-out, color .25s ease-in-out, border-color .25s ease-in-out;
}

nav ul li.active a.nav-link:before {
    content: '';
    position: absolute;
    left: 15px;
    right: 15px;
    bottom: 7px;
    height: 2px;
    background-color: #021239;
    z-index: 9;
}

li.menu-item-20 {
    position: relative;
}

li.menu-item-20 a.nav-link {
    background-color: #021239;
    color: #fff;
}

li.menu-item-20 a.nav-link:hover {
    border: 1px solid #021239;
    color: #021239;
    background-color: transparent;
}

li.menu-item-20:after {
    content: "";
    width: 7px;
    height: 7px;
    position: absolute;
    top: 7px;
    right: 7px;
    border-radius: 50%;
    background: green;
    animation: pulse 1.25s infinite;
    z-index: 9;
}

nav ul li.menu-item-20.active a.nav-link:before {
    content: none;
}

nav.mobile {
    display: none;
}

@keyframes pulse {

    0%,
    to {
        background: green;
    }

    50% {
        background-color: transparent;
    }
}


/*
=================================
  FRONT SECTION HERO
=================================
*/

section.hero {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

.overlay {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 94px;
    background-color: rgba(2, 18, 57, .6);
    z-index: 9;
}

h1 {
    margin: 0;
    padding: 10px 30px;
    font-size: 55px;
    font-weight: 500;
    color: #fff;
    background-color: rgba(2, 18, 57, .8);
}

h1 a {
    color: #fff;
    text-decoration: underline;
}

h1 a:hover,
h1 a:active,
h1 a:focus {
    color: #fff;
}

/*
=================================
  FRONT SECTION PAGE CONTENT
=================================
*/

.page-content {
    padding: 80px 0;
}

.page-content .container {
    display: flex;
}

.content {
    width: 65%;
}

aside {
    width: 35%;
}

aside a {
    display: inline-flex;
    justify-content: end;
    width: 100%;
    margin-bottom: 50px;
}

aside img {
    width: auto;
}

h2 {
    position: relative;
    margin: 50px 0 30px 0;
    font-size: 45px;
    font-weight: 500;
    line-height: 1.3;
    letter-spacing: .3px;
    color: #021239;
}

h2:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -10px;
    height: 3px;
    width: 100px;
    background-color: #4070e6;
}

h2:first-child {
    margin-top: 0px;
}

strong {
    font-weight: 500;
}

.content ul {
    list-style: none;
}

.content li {
    position: relative;
}

.content li:before {
    content: "•";
    position: relative;
    color: #4070e6;
    left: -10px;
}

.content a {
    color: #4070e6;
    text-decoration: underline;
}

.content a:hover {
    color: #19326f;
}

.content ul {
    margin: 0;
}

.content ul li {
    font-size: 22px;
    margin-bottom: 10px;
}


/*
=================================
  PAGE HEADER
=================================
*/
.page-header {
    background-color: #021239;
    margin-top: 94px;
    padding: 70px 0;
}

.page-header h1 {
    padding: 0;
}

/*
=================================
  FOOTER
=================================
*/

footer {
    background-color: #021239;
    font-size: 20px;
    color: #efefef;
    text-align: center;
    padding: 20px 0;
}

footer a {
    color: #efefef;
    text-decoration: none;
}

footer a {
    color: #efefef;
    text-decoration: underline;
}