﻿@import url('https://fonts.googleapis.com/css?family=Inter:300,400,700,800&display=swap');


body {
    font-family: 'Inter', sans-serif;
    background-color: #EBEAEA;
    color: #595959;
    font-size: 16px;
}

@media print {
    a[href]:after {
      content: none !important;
    }
  }


/* Popup */

.popup-overlay {
    height: 100%;
    width: 100%;
    margin: 0 auto;
    position: fixed;
    display: none;
    z-index: 101;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    background: rgba(0, 0, 0, 0.7);
  }
  
  .popup__body {
    height: auto;
    max-height: 600px;
    width: calc(100% - 25vw);
    width: clamp(200px, 100% - 25vw, 1500px);
    max-width: 100%;
    margin: 100px auto;
    background: #f3f3f3;
    color: #000;
    position: relative;
    z-index: 103;
    padding: 0;
    border-radius: 5px;
    -webkit-box-shadow: 0 2px 5px #000;
            box-shadow: 0 2px 5px #000;
  }
  
  .popup__body a {
    text-decoration: none;
  }
  
  .popup__body img {
    display: block;
    max-width: 100%;
  }
  
  .popup__body .heading {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 15px;
    text-align: center;
  }
  
  @media (max-width: 767.98px) {
    .popup__body .heading {
      font-size: 20px;
    }
  }
  
  .popup__body .close-btn {
    cursor: pointer;
    position: absolute;
    top: 0;
    color: #fff;
    right: 15px;
    font-size: 45px;
    text-shadow: 0 2px 10px rgba(0,0,0,.9);
  }

.obsah{
    background: #fff;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.04);
    border-radius: 5px;
}


.btn {
    color: white;
    background-color: #9B0D0D;
    padding: 10px 40px;
    margin-top: 10px;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
    font-size: 16px;
}

.btn:hover, .btn:active, .btn:focus, .btn:target {
    background-color: white;
    color: #9B0D0D;
}

/*------------ Headers a menu --------------*/
.header-cerveny {
    width: 100%;
    padding: 3px 0;
    background: #9B0D0D; /* For browsers that do not support gradients */
}

.navbar {
    background-color: #212121;
    margin-bottom: 0;
    border: none;
    border-radius: 0;
   
}

.navbar > a {
    color: white;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

.navbar > .container .navbar-brand, .navbar > .container-fluid .navbar-brand {
    background-color: #9B0D0D;
    padding: 27px 10px;
    height: auto;
    margin-right: 30px;
    margin-left: 0;
}

.navbar-brand > img {
    width: 240px;
}

.navbar .navbar-nav {
    margin: 13px 0;
}

.navbar-nav > li > a {
    color: white;
    position:relative;
    font-size: 18px;
    padding: 15px 20px;
    margin: 0 5px;
    -webkit-transition: .4s all;
    -moz-transition: .4s all;
    -ms-transition: .4s all;
    -o-transition: .4s all;
    transition: .4s all;
    border-radius: 3px;
}
/*@media(min-width: 767px) {
    .nav-main > li > a:after {
    content: " ";
    position: absolute;
    width: 1px;
    height: 20px;
    top: 15px;
    right: 0px;
    background-color: #E80000; 
}

.nav-main > li:last-of-type > a:after {
    display: none;
}
}*/

.nav > li > a:focus, .nav > li > a:hover {
    color: white;
    background-color: #9B0D0D;
}


.nav .open > a, .nav .open > a:focus, .nav .open > a:hover {
    border:none;
    background-color: #9B0D0D;
}

.navbar-nav > li > .dropdown-menu {
    background-color: #212121;
    border:none;
}

.dropdown-menu > li > a {
    color: white;
    padding: 5px 20px;
    font-size: 16px;
}

.dropdown-menu > li > a:focus, .dropdown-menu > li > a:hover {
    color: white;
    background-color: #9B0D0D;
}

.dropdown-vlajky .dropdown-menu {
    background-color: rgba(255,255,255,.5);
    min-width: 0;
    box-shadow: none;
    border-radius: 0;
    border: none;
}
.dropdown-vlajky a.dropdown-toggle{
    padding: 15px 10px;
}
.dropdown-vlajky .dropdown-menu .dropdown-item {
    padding: 6px 15px 6px 14px;
    display: block;
    text-align: center;
}


/*------------- SLIDER ------------*/

.carousel-inner{
    height: 600px;
}

.carousel {
    margin-bottom: 30px;
    position: relative;
}

.carousel .item {
    background-size: cover;
    background-position: center right;
    background-color: white;
    position: relative;
    height: 100%;
}

.carousel .item::after{
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    background-color: rgba(0,0,0,.65);
    z-index: -1;
}


.carousel .carousel-control .fa {
    position: absolute;
    top: 50%;
    font-size: 60px;
    margin-top: -30px;
}


.carousel-caption {
    top: 100px;
    bottom: 100px;
    right: 0;
    text-align: left;
    padding-left: 30px;
    padding-right: 20%;
    width: 990px;
    left: 100%;
}

.carousel-caption h2 {
    font-size: 48px;
    margin-bottom: 15px;
    font-weight: 700;
}

.carousel-caption p {
    font-size: 20px;
}

.carousel-caption .btn {
    font-size: 20px;
    position: absolute;
    bottom: 30px;
    background-color: #9d0d0d;
    color: white;
    padding: 10px 38px;
    border-radius: 5px;
    box-shadow: 0 5px 10px rgba(0,0,0,.5);
    border: 0;
}

.carousel-caption .btn:hover, .carousel-caption .btn:focus, .carousel-caption .btn:active, .carousel-caption .btn:target {
    background-color: #7B0A0A;
    color: white;
}

.item.active .carousel-caption {
    -webkit-transition: all 1.6s ease;
    -moz-transition: all 1.6s ease;
    -o-transition: all 1.6s ease;
    transition: all 1.6s ease;
    left: 20%;

}
.carousel-control.left .fa  {
    left:10px;
}
.carousel-control.right .fa  {
    right:10px;
}





/*------------ SLužby ----------*/

.sluzby .sloupec .obsah {
    background-color: white;
    height: 350px;
    padding: 15px;
    position: relative;
}

.sluzby .sloupec-jeden .obsah {
    height: auto;
    text-align: center;
}

.sluzby .banner {
    display: block;
    max-width: 100%;
}

.sluzby .row {
    margin-bottom: 50px;
}

.sluzby .obsah h3 {
    margin-bottom: 5px;
    font-size: 27px;
    text-transform: uppercase;
    font-weight: 700;
    color: #484848;
    line-height: 1.3;
}

.sluzby .btn {
    background-color: transparent;
    color: #9B0D0D;
    border: 2px solid #9B0D0D;
    -webkit-transition: background-color 0.4s ease,color 0.4s ease;
    -moz-transition: background-color 0.4s ease,color 0.4s ease;
    -o-transition: background-color 0.4s ease,color 0.4s ease;
    transition: background-color 0.4s ease,color 0.4s ease;
    padding: 8px 38px;
    font-weight: bold;
    font-size: 14px;
}

.sluzby .btn-default {
    /*position: absolute;
    left: 50%;
    margin-left: -53.5px;
    bottom: -20px;*/
    position: absolute;
    bottom: 15px;
    right: 15px;
}

@media (max-width: 576px) {
    .sluzby .sloupec .obsah {
        height: auto;
    }

    .sluzby .btn-default {
        position: relative;
        bottom: unset;
        right: unset;
    }

    .sluzby .sloupec .obsah-img {
        height: 350px;
    }
}
.sluzby .btn:hover, .sluzby .btn:target, .sluzby .btn:focus, .sluzby .btn:active {
    background-color: #9B0D0D;
    color: white;
}

.sluzby .sloupec-jeden .btn {
    margin-top: 0;
    padding: 10px;
    line-height: 12px;
    font-size: 12px;
    margin: 0 3px;
    border: none;
    background-color: #9B0D0D;
    color: white;
    -webkit-transition: all 0s ease;
    -moz-transition: all 0s ease;
    -o-transition: all 0s ease;
    transition: all 0s ease;
    -webkit-transition: background-color 0.4s ease,color 0.4s ease;
    -moz-transition: background-color 0.4s ease,color 0.4s ease;
    -o-transition: background-color 0.4s ease,color 0.4s ease;
    transition: background-color 0.4s ease,color 0.4s ease;
}

.sluzby .sloupec-jeden .btn:hover, .sluzby .sloupec-jeden .btn:active, .sluzby .sloupec-jeden .btn:target, .sluzby .sloupec-jeden .btn:focus {
    transform: none;
    background-color: #790B0B;
    color: #fff;
}



.sluzby .sloupec-jeden p {
    margin-bottom: 0;
}

.sluzby .sloupec-jeden p b {
    font-weight: bold;
    font-size: 20px;
    margin-right: 10px;
}



.sluzby .sloupec .fa {
    float: left;
    font-size: 100px;
    margin-right: 30px;
    margin-top: 3px;
    background-color: white;
    color: #C0C0C0;
    border-radius: 50%;
    width: 120px;
    height: 120px;
    padding-top: 9px;
    padding-left: 7px;
    margin-bottom: 150px;
    -webkit-transition: .6s all;
    -moz-transition: .6s all;
    -ms-transition: .6s all;
    -o-transition: .6s all;
    transition: .6s all;
}

.sluzby .sloupec:hover .fa {
    color: #9B0D0D;
}

.sluzby .sloupec hr {
    margin: 0;
    text-align: left;
    margin-bottom: 20px;
    margin-top: 5px;
    -webkit-transition: all 0.6s ease;
    -moz-transition: all 0.6s ease;
    -o-transition: all 0.6s ease;
    transition: all 0.6s ease;
}

.sluzby .sloupec:hover hr {
    max-width: 100%;
}

.sluzby .mensi-casti .sloupec .fa {
    font-size: 80px;
    width: 100px;
    height: 100px;
}

.sluzby .ramecek {
    overflow: hidden;
}

.sluzby .obsah-img {
    -webkit-transition: all 0.6s ease;
    -moz-transition: all 0.6s ease;
    -o-transition: all 0.6s ease;
    transition: all 0.6s ease;
}

.sluzby .obsah-img:hover {
    -ms-transform: scale(1.1); /* IE 9 */
    -webkit-transform: scale(1.1); /* Safari */
    transform: scale(1.1);
}

/*---------------- PODSTRANKY ---------------*/

.podstranka-nadpis {
    background: url('../img/lista.jpg') #9B0D0D;
    background-size: cover;
    background-position: center;
    padding: 40px 0;
    overflow: hidden;
    position: relative;
    z-index: 0;
}

.podstranka-nadpis .stin {
    background-color: rgba(0,0,0,0.25);
    width: 100%;
    height: 200px;
    position:absolute;
    z-index: 50;
    top: 0;
    left: 0;
}

.podstranka-nadpis .container {
    position: relative;
    z-index: 100;
}

.podstranka {
    background-color: white;
    padding: 40px 15px 40px 15px;
}

.podstranka-nadpis h1 {
    color: white;
    font-weight: bold;
    text-transform: uppercase;

}

.podstranka-nadpis h1 + hr {
    border: 2px solid #B20000;
    width: 110px;
    max-width: 100%;
    margin: 20px 0;
    margin-top: 0;
}

.podstranka .img-logo {
    margin: 0 auto;
    margin-bottom: 10px;
}

.podstranka .sponzoring .row {
    margin-top: 15px;
    margin-bottom: 15px;
}

.podstranka a {
    font-weight:bold;
    color: #B20000;
}

.podstranka h2, .podstranka h3, .podstranka h4, .podstranka h5 {
    color: #B20000;
    font-weight: bold;
    text-transform: uppercase;
}

.podstranka h5 {
    font-size: 16px;
}

.podstranka .img-novinka {
    background-size: cover !important;
    background-position: center center !important;
    min-height: 300px;
}

.podstranka .kontakty {

    border-left: 1px solid #B20000;
}

/*------------------- foooter ------------------ #9B0D0D / #EE4040 / #E80000-*/

footer {
    background-color: #212121;
    font-size: 16px;
    font-family: 'Roboto Condensed', sans-serif;
    -webkit-font-smoothing: antialiased;
    -webkit-transform: translateZ(0px);
    padding-bottom: 30px;
}

footer ul.hl-cinnosti {
    list-style: none; /* Remove list bullets */
    padding: 0;
    margin-bottom: 30px;
}

footer ul.hl-cinnosti li:before {
    font: normal normal normal 14px/1 FontAwesome;
    content: "\f0a9"; /* Insert content that looks like bullets */
    padding-right: 8px;
}

footer h3 {
    color: #F2F2F2;
    font-weight: bold;
    font-size: 29px;
    margin-bottom: 20px;
    margin-top: 30px;
    transition: none;
    transform: none;
}

footer p {
    color: #C0C0C0;
}

footer a {
    color: #B20000;
    text-decoration: none;
    transition: none;
    transform: none;
}

footer a:hover {
    text-decoration: underline;
    color: #B20000;
}

footer p.udaje a + br + a {
    margin-left: 16px;
}

footer p.udaje a {
    color: white;
}

.text-white {
    color: white;
}

footer ul.hl-cinnosti li {
    color: #B20000;
}

#mapa {
    margin-bottom: 25px;
}



.footer-copy {
    background-color: #4B4B4B;
    color: white;
    padding: 18px 0;
    font-size: 14px;
}

.footer-copy a {
    color: white;
    float: right;
    text-decoration: none;
}

.footer-copy span {
    font-size: 22px;
    font-weight: 500;
    top: 1px;
    position: relative;
}


/* ----------- KALEND�?�? --------------*/




.calendar {
    background-color:#B20000;
    color: white;
    margin-top: 30px;
}

.calendar h4 {
    margin:0;
    padding: 30px 0 30px;
    text-align:center;
}

#calendar {
    text-transform: uppercase;
    background-color: white;
    color: #4B4B4B;
    padding: 20px 15px;
}

#calendar .accordion-toggle {
    display: none;
}

.bootstrap-datetimepicker-widget table td.today {
    /*background-color: #BF3939;*/
    background-color: white;
    color: #B20000;
}


.bootstrap-datetimepicker-widget table td.active, 
.bootstrap-datetimepicker-widget table td.active:hover,
.bootstrap-datetimepicker-widget table td span.active  {
    background-color:#B20000;
    color: white;
}

.bootstrap-datetimepicker-widget table td.today:before {
    border-bottom-color: #B20000;
    position: absolute;
}


/*------------- COOKIE TLAČÍTKO ----------*/

.cc_container .cc_btn, .cc_container .cc_btn:visited {
    color: white !important;
    background-color: #B20000 !important;
    border: 2px solid #B20000;

}

.cc_container .cc_btn:hover, .cc_container .cc_btn:active {
    background-color: white !important;
    color: #B20000 !important;
}

.cc_container a, .cc_container a:visited {
    color: #B20000 !important;

}

.cc_container a:hover, .cc_container a:active {
    text-decoration: underline !important;
    color: #B20000 !important;
}


/*---------- RESPONZIVITA -----------*/

@media (max-width: 1200px) {
    .navbar > .container .navbar-brand, .navbar > .container-fluid .navbar-brand {
        margin-right: 0;
    }
    .sluzby .obsah h3 {
        font-size: 30px;
    }
    .sluzby .sloupec .fa {
        float: left;
        font-size: 100px;
        margin-right: 15px;
        margin-top: 15px;
        background-color: white;
        color: #C0C0C0;
        border-radius: 50%;
        /* border: 3px solid #9B0D0D; */
        width: 120px;
        height: 120px;
        padding-top: 9px;
        padding-left: 7px;
        margin-bottom: 0px;
        -webkit-transition: all 0.4s ease;
        -moz-transition: all 0.4s ease;
        -o-transition: all 0.4s ease;
        transition: all 0.4s ease;
    }


}

@media (max-width: 991px) {
    .carousel-caption {
        top: 0;
        bottom: 0;
        right: 0;
        text-align: left;
        padding-left: 30px;
        padding-right: 20%;
        width: auto;
        left: 100%;

    }
    .sluzby .row {
        margin-bottom: auto;
    }
    .sluzby .sloupec .obsah {
        margin-top: 20px;
    }

    .navbar-toggle .icon-bar {
        background: white;
    }

    .navbar-toggle {
        margin: 23px 15px;
    }
    .navbar-nav {
        margin: 7.5px -15px;
    }
    
    .calendar {
        margin-bottom: 20px;
    }
    
    .sluzby .row.mensi-casti {
        margin-bottom: 20px;
    }
}
@media (max-width: 767px) {
    .item.active .carousel-caption {

        left: auto;
    }
    .navbar .vlajky li a {
        float: left;
         padding: 0 10px;  


    }
    
    .navbar-nav>li>a {
        padding: 15px 15px;
        text-align: center;
    }
    .navbar-nav .open .dropdown-menu>li>a {
        text-align: center;
    }
    
    .navbar-nav .open .dropdown-menu .dropdown-header, .navbar-nav .open .dropdown-menu>li>a {
        padding: 10px 15px;
    }
    .navbar-nav {
        margin: 0;
        margin-top: 10px;
    }
    
    .navbar .vlajky {
            margin: 15px auto;
    width: 230px;
    }
    .header-cerveny {
        display: none;
    }
}



@media (max-width: 500px) {
    .carousel-caption h2 {
        font-size: 38px;
        margin-bottom: 30px;
    }
    .carousel-caption p {
        font-size: 18px;
    }

    .sluzby .sloupec .fa {

        margin-bottom: 0px;
                margin-top: 0;
                margin-right: 6px;

    }
    .sluzby .obsah h3 {
        font-size: 25px;
        margin-top: 10px;
    }
    
    .navbar-brand>img {
        width: 215px;
    }
    .navbar > .container .navbar-brand, .navbar > .container-fluid .navbar-brand {
        padding: 32px 15px;
    }
    
    .sluzby .sloupec .fa-line-chart {
        margin-right: 10px;
    font-size: 90px;
    }
}

.cont-kontakty-str hr {
    margin: 45px 0;
}

.cont-kontakty-str h3 {
    margin-bottom:20px;
    position: relative;
}

.cont-kontakty-str h3:after {
    content: " ";
    position: absolute;
    left: 0;
    top: 30px;
    width: 60px;
    height: 2px;
    background-color: #B20000;
}


