@import url(https://fonts.googleapis.com/css?family=PT+Sans:400italic,400&subset=latin,latin-ext);
@import url('https://fonts.googleapis.com/css?family=Josefin+Sans:300,300i,400,400i,600,600i,700&subset=latin-ext');
@import url('https://fonts.googleapis.com/css?family=Fira+Sans:300,400,500,600&subset=latin-ext');
@import url('https://fonts.googleapis.com/css?family=PT+Sans+Narrow:400,700&subset=latin-ext');
@import url('https://fonts.googleapis.com/css?family=Oswald:200,400&subset=latin-ext');
@import url('https://fonts.googleapis.com/css?family=Roboto:300,400,700&subset=latin-ext');
@import url('https://fonts.googleapis.com/css?family=Open+Sans:400,600,700&subset=latin-ext');
@import url('https://fonts.googleapis.com/css?family=Saira+Condensed:400,500,600&subset=latin-ext');
@import url('https://fonts.googleapis.com/css?family=Commissioner:400,600,700&subset=latin-ext');

body {
    font-family: "Commissioner";
    background-color: white;
    color: #555;
    margin: 0;
    padding: 0;
}

.wrap {
    /* max-width: 1250px; */
    margin: 0 auto;
    padding: 0px 4vw;
}

a {
    color: inherit;
    text-decoration: none;
}


.spinner0 {
    display:none;
    margin: 0 auto;
    width: 30px;
    height: 30px;
    background-color: #ffffff;
    height: 100vh;
    z-index: 9999;
    width: 100vw;
    position: fixed;
    top: 0;
}

.spinner {
  width: 40px;
  height: 40px;
  margin:  0 auto;
  margin-top: 40vh;
  background-color: #2374c7;
  -webkit-animation: sk-rotateplane 1.2s infinite ease-in-out;
  animation: sk-rotateplane 1.2s infinite ease-in-out;
}

@-webkit-keyframes sk-rotateplane {
  0% { -webkit-transform: perspective(120px) }
  50% { -webkit-transform: perspective(120px) rotateY(180deg) }
  100% { -webkit-transform: perspective(120px) rotateY(180deg)  rotateX(180deg) }
}

@keyframes sk-rotateplane {
  0% { 
    transform: perspective(120px) rotateX(0deg) rotateY(0deg);
    -webkit-transform: perspective(120px) rotateX(0deg) rotateY(0deg) 
  } 50% { 
    transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg);
    -webkit-transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg) 
  } 100% { 
    transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);
    -webkit-transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);
  }
}

nav {
    width: 100%;
    z-index: 9;
    position: absolute;
    top: 0px;
    left: 0;
}

nav ul {
    margin: 0;
    font-size: 0;
    float: right;
    padding: 0;
}

nav li {
    display: inline-block;
    line-height: 14vh;
    font-size: 1.5vw;
    font-weight: 500;
    padding: 0 1vw 0 1vw;
    cursor: pointer;
    position: relative;
    border-bottom: 2px solid transparent;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
        list-style: none;
}

nav li:hover {
    color: #fff;
    text-shadow: 0px 15px 0px #2374c7;
}

header {
    height: 100vh;
    width: 100%;
    position: relative;
    text-align: right;
}

.instagram {
    position: absolute;
    right: 0;
    /* float: right; */
    top: 90vh;
    margin: 0px 0px 5px 0;
    font-size: 1.5vw;
    line-height: 5vh;
    background-image: url(/www/images/instagram.png);
    background-repeat: no-repeat;
    background-position: 0 50%;
    padding-left: 40px;
    display: inline-block;
}

.header-text {
    padding: 10px;
    position: absolute;
    background-color: rgba(70, 178, 195, 0);
    width: 1040px;
    height: 300px;
    color: white;
    font-size: 90px;
    font-weight: 500;
    line-height: 80px;
    text-shadow: 0 0 15px black;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
}

.subnav {
    position: absolute;
    bottom: 0;
    background-color: #191919;
    width: 100%;
    height: 60px;
    margin-bottom: 60px;
}

.subnav ul {
    margin: 0;
    font-size: 0;
    padding: 0;
    text-align: center;
}

.subnav li {
    display: inline-block;
    line-height: 60px;
    background-color: #191919;
    color: white;
    font-size: 20px;
    font-weight: 500;
    
    border-left: 1px dotted #525151;
    margin-right: -1px;
    border-right: 1px dotted #525151;
    cursor: pointer;
    position: relative;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
}

.subnav li a {
    padding: 0 40px 0 40px;
    line-height: 60px;
    display: block;
}
.subnav li:hover {
    background-color: #333333;
}

.subnav li:hover ul {
    border-color: rgba(255, 255, 255, 0.29);
}

.subnav li:hover ul li {
    line-height: 60px;
    color: white;
    border-color: rgba(255, 255, 255, 0.29);
    background-color: #212121;
}

.subnav li:hover ul li a {
    line-height: 60px;
    color: white;

}

.subnav li ul {
    position: absolute;
    bottom: 0;
    left: 0;
    height: auto;
    width: 100%;
    border-top: 1px solid rgba(255, 255, 255, 0.29);
    -webkit-transition: all 0.55s ease-in-out;
    -moz-transition: all 0.55s ease-in-out;
    -ms-transition: all 0.55s ease-in-out;
    -o-transition: all 0.55s ease-in-out;
    margin-bottom: 60px;
    border-color: rgba(255, 255, 255, 0);
}
.subnav li ul li {
    -webkit-transition: all 0.55s ease-in-out;
    -moz-transition: all 0.55s ease-in-out;
    -ms-transition: all 0.55s ease-in-out;
    -o-transition: all 0.55s ease-in-out;
    line-height: 1px;
    display: block;
    padding: 0px;
    border-left: 1px solid rgba(255, 255, 255, 0.29);
    border-right: 1px solid rgba(255, 255, 255, 0.29);
    border-color: rgba(255, 255, 255, 0);
    background-color: rgba(255, 0, 0, 0);
}

.subnav li ul li a {
    -webkit-transition: all 0.55s ease-in-out;
    -moz-transition: all 0.55s ease-in-out;
    -ms-transition: all 0.55s ease-in-out;
    -o-transition: all 0.55s ease-in-out;
    padding: 0;
    line-height: 1px;
    color: transparent;
}
.subnav li ul li:hover {
    background-color: #4a4a4a;
}

.article-header {
    background-color: rgba(197, 3, 3, 0);
    width: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 1px 0 100px 0;
    position: relative;
}

.art-title {
    width: 100%;
    /* padding-right: 240px; */
    /* margin-left: 150px; */
    margin-top: 22vh;
    margin-bottom: 5vh;
    position: relative;
    z-index: 99;
}

.art-nadpis {
    font-size: 2vw;
    /* font-weight: 600; */
    margin: 0px 0 2vh 0px;
    position: relative;
}

.art-nadpis::after {
    content: "";
    width: 50px;
    height: 0px;
    background-color: #2374c7;
    position: absolute;
    left: 0;
    bottom: -12px;
}

.art-popis {
    font-size: 1.3vw;
    line-height: 2vw;
    /* margin-left: 35px; */
    margin: 0px 0 0px 0;
}


.logo {
    float: left;
    line-height: 14vh;
    font-size: 2vw;
    /* font-weight: 800; */
    /* text-transform: uppercase; */
    /* padding-left: 5px; */
    margin: 0px 2vw 0 0px;
    /* color: #2374c7; */
}

.logo small {
    font-size: 15px;
    /* line-height: 15px; */
}

.pagn {
    margin-top: 20px;
    width: 75vw;
    border-left: 4px solid #2374c7;
    padding-left: 26px;
    font-size: 18px;
    cursor: default;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
}

.pagn li {
    list-style: none;
    display: inline-block;
    padding: 0 5px 0 5px;
    cursor: pointer;
    font-weight: 500;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
}


.pagn li:hover {
    color: #2374c7;
    background-color: white;
}

.pagn:hover {
    border-color: white;
}


.home-img {
    text-align: left;
    font-size: 0;
    padding-bottom: 100px;
    margin-left: -5px;
}

.image-box {
    display: inline-block;
    height: 220px;
    background-size: cover;
    background-repeat: no-repeat;
    margin: 2px;
    border: 3px solid rgba(62, 62, 62, 0);
    -webkit-transition: all 0.35s ease-in-out;
    -moz-transition: all 0.35s ease-in-out;
    -ms-transition: all 0.35s ease-in-out;
    -o-transition: all 0.35s ease-in-out;
    cursor: pointer;
    position: relative;
}

.thumb {
    display: inline-block;
    visibility: hidden;
}

.image-box:hover {
    border: 3px solid #2374c7;
}


.image-box img {
    display: inline-block;
    height: 100%;
    background-size: cover;
    background-repeat: no-repeat;
}

.image-box:hover .caption {
    background-color: #2374c7;
    color: #fff;
}

.caption {
    font-size: 16px;
    position: absolute;
    bottom: 0;
    text-align: center;
    background-color: transparent;
    width: 100%;
    color: rgba(255, 255, 255, 0);
    padding: 2px 4px 4px 4px;
    box-sizing: border-box;
    -webkit-transition: all 0.55s ease-in-out;
    -moz-transition: all 0.55s ease-in-out;
    -ms-transition: all 0.55s ease-in-out;
    -o-transition: all 0.55s ease-in-out;
}

.gallery0 {
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
    background-color: #fff;
    display:none;
}

.lightbox {
    display: none;
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    z-index: 999999;
    width: 70%;
    height: 100vh;
    text-align: center;
    margin: auto;
}

.lightbox img {
    max-width: 100%;
    max-height: 100vh;
    position: fixed;
    max-height: 80vh;
    left: 0;
    right: 0;
    top:0;
    bottom:0;
    margin: auto;
}

.lightbox .caption {
    display: block;
    font-size: 20px;
    color: #444;
    padding-top: 10px;
    padding-bottom: 20px;
}

.gallery-close {
    opacity: 0.5;
    width: 70px;
    height: 70px;
    position: absolute;
    right: 0;
    background-image: url(/www/images/close.png);
    background-repeat: no-repeat; 
    background-position: 50% 50%;
    cursor: pointer;
    z-index: 999999999;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
}

.gallery-next {
    opacity: 0.5;
    background-image: url(/www/images/right.png);
    background-repeat: no-repeat; 
    background-position: 50% 50%;
    width: 70px;
    height: 350px;
    position: absolute;
    right: 0;
    bottom: 0;
    top: 0;
    margin: auto;
    cursor: pointer;
    z-index: 9999999999;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
}

.gallery-prev {
    opacity: 0.5;
    background-image: url(/www/images/left.png);
    background-repeat: no-repeat; 
    background-position: 50% 50%;
    width: 70px;
    height: 350px;
    position: absolute;
    left: 0;
    bottom: 0;
    top: 0;
    margin: auto;
    cursor: pointer;
    z-index: 9999999999;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
}

.gallery-prev:hover, .gallery-next:hover,.gallery-close:hover {
    opacity: 1;
}

.gal {
    width: 260px;
    height: 200px;
    display: inline-block;
    background-size: cover;
    background-repeat: no-repeat;
    margin: 5px 5px 7px 5px;
    -webkit-transition: all 0.35s ease-in-out;
    -moz-transition: all 0.35s ease-in-out;
    -ms-transition: all 0.35s ease-in-out;
    -o-transition: all 0.35s ease-in-out;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.gal-text {
    font-size: 30px;
    color: white;
    background-color: #2374c7;
    position: absolute;
    bottom: 0;
    left: 0;
    text-align: center;
    margin-bottom: 0px;
    line-height: 8px;
    padding-bottom: 15px;
    width: 100%;
    font-weight: 500;
    -webkit-transition: all 0.35s ease-in-out;
    -moz-transition: all 0.35s ease-in-out;
    -ms-transition: all 0.35s ease-in-out;
    -o-transition: all 0.35s ease-in-out;
    text-shadow: 0 0 10px rgb(35, 116, 199);
}

.gal:hover {
    box-shadow: 0 0 25px black;
}

.gal:hover .gal-text {
    line-height: 15px;
    padding-top: 15px;
}


.login {
    background-color: #4e4e4e;
    position: absolute;
    top: 30vh;
    left: 0;
    right: 0;
    width: 250px;
    padding: 10px 20px 40px 30px;
    margin: auto;
    color: #d2d0d0;
}

.login input {
    line-height: 25px;
    background-color: #a5a3a3;
    border: 1px solid #4e4e4e;
    padding-left: 10px;
    margin-left: 10px
}

.login input[type=submit] {
    background-color: #4CAF50;
    width: 90px;
    padding: 0;
    margin-top: 10px;
    color: #dbdbdb;
    cursor: pointer;
    line-height: 30px;
}

.login input[type=submit]:hover {
    background-color: #009688;
}

.flash {
    position: fixed;
    bottom: 0;
    left: 0;
    z-index: 9999;
    background-color: #0071ff;
    line-height: 45px;
    width: 450px;
    text-align: center;
    font-size: 20px;
    color: white;
}

.success {
    background-color: #4CAF50;
}

.error {
    background-color: #F44336;
}

.fl-close {
    float: right;
    width: 50px;
    height: 45px;
    background-image: url(/www/images/close.png);
    background-position: 50% 50%;
    background-repeat: no-repeat;
    background-size: 25px;
    cursor: pointer;

}

.header-image {
    width: 60vw;
    height: 72vh;
    background-color: white;
    display: inline-block;
    /* position: absolute; */
    /* top: 95px; */
    /* right: 0; */
    /* float: right; */
    background-size: cover;
    margin-top: 14vh;
    background-position: 50% 50%;
    /* margin-right: 00px; */
}

.header-slogan {
    text-align: left;
    width: auto;
    height: 300px;
    background-color: #ffffff;
    position: absolute;
    top: 60vh;
    left: 0px;
    box-sizing: border-box;
    padding: 0px 0px 0px 0px;
}

.header-slogan h1 {
    font-size: 5vw;
    line-height: 5vw;
    margin: 0px;
    padding-bottom: 20px;
    border-bottom: 2px solid #ffffff;
    font-weight: 600;
}

.header-slogan h2 {
    font-size: 2vw;
    line-height: 2vw;
    margin: 0px;
    font-weight: 400;
}

.header-slogan h3 {
    font-size: 1.5vw;
    margin-top: 0px;
    text-transform: uppercase;
    font-weight: 400;
}
/*
@media screen and (max-height: 700px) { 
    .header-image {
        height: 450px;
        height: calc(100vh - 190px);
        min-height:300px;
    }
}

@media screen and (max-height: 700px) { 
    .header-slogan {
        top: 320px;
        top: calc(100vh - 320px);
        top: max(170px,calc(100vh - 320px));
    }
}*/

.menu, .mobile-menu {
    display:none;
}