html, body {
    margin: 0;
    padding: 0;
    font-family: "Roboto";
    background-color: #0D0D0D;
    scroll-behavior: smooth;
    overflow-x: hidden;
}

/* - SCROLLBAR - */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background-color: #2e2e2e;
    box-shadow: inset 0 0 7px black;
    border-radius: 5px;
}

::-webkit-scrollbar-thumb {
    background-color: #a70000;
    border-radius: 5px;
}


::-webkit-scrollbar-thumb:hover {
    background-color: #cf0000;
}
/*---------------*/

/* COOKIES */

.cookies {
    display: flex;
    justify-content: center;
    width: 100vw;
}

.cookies > p {
    margin: 10px 10px;
    text-align: center;
    color: white;
    font-size: 0.9em;
}

.cookies > p > a {
    text-decoration: underline;
}


/*---------------*/

body > div {
    display: none;
}

a {
    text-decoration: none;
    color: white;
}

.bxslider {
    display: flex;
    width: 100vw;
}

.bx-controls-direction {
    display: flex;
    justify-content: space-between;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 90vw;
}

.bx-controls-direction > a {
    font-size: 2em;
    color: white;
    visibility: hidden;
}

.bx-controls-direction > a:nth-child(1)::before {
    content: url(../svg/left_thin_white.svg);
    visibility: visible;
}

.bx-controls-direction > a:nth-child(2)::before {
    content: url(../svg/right_thin_white.svg);
    visibility: visible;
}

.bx-pager{
    display: flex;
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translate(-50%);
}

.bx-pager-item{
    margin: 10px;
    background-color: #7070709d;
    width: 20px;
    height: 20px;
    border-radius: 10px;
}

.active {
    background-color: #fff;
}

.bx-pager-item > a{
    color: transparent;
    text-align: center;
    padding: 5px;
}

.header1, .header2, .header3 {
    background-size: cover;
    background-repeat: no-repeat;
    width: 100vw;
    height: 100vh;
}

.header1 {
    background-image: url(../img/pozadi-main.jpg);
    background-position: center;
}

.header2 {
    background-image: url(../img/lukohry1-web.jpg);
    background-position: center;
}

.header3 {
    background-image: url(../img/reball1-web.jpeg);
    background-position: center;
}

.pozadi {
    background-color:rgba(0, 0, 0, 0.3);
    width: 100vw;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.nadpis {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
}

h1 {
    position: relative;
    color: white;
    font-size: 150px;
    font-family: "BebasNeue";
    margin: 0;
    padding: 0;
    letter-spacing: 5px;
    margin-bottom: -20px;
    width: 100%;
    width: fit-content;
    text-align: center;
}

.podnadpis {
    color: white;
    font-size: 45px;
    font-family: "BebasNeue";
    margin: 0;
    padding: 0;
    text-align: center;
    margin-top: 15px;
}

.podnadpis:nth-child(3) {
    font-size: 30px;
    margin-top: 10px;
}

.podnadpis:last-child {
    font-size: 28px;
    margin-top: 5px;
}

h1::after {
   content: "";
   width: 30px;
   height: 5px;
   background-color: #9F0000;
   position: absolute;
   left: 0%;
   bottom: 15%;
   animation: aaa;
   animation-duration: 4s;
   animation-iteration-count: infinite;
}

.scroll {
    position: absolute;
    top: 98%;
    left: 50%;
    transform: translate(-50%, -100%);
    width: 60px;
    animation-name: hop;
    animation-duration: 2s;
    animation-iteration-count: infinite;
}

.stickmenu {
    position: fixed;
    top: 50%;
    right: 0%;
    transform: translate(-0%, -50%);
    width: 60px;
    height: 240px;
    background-color: #0D0D0D;
    z-index: 5;
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
    transition: ease-in;
    transition-duration: 0.4s;
}

.stickmenu > ul {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    list-style: none;
    margin: 0;
    padding: 0;
}

.stickmenu > ul > li {
    position: relative;
    width: 60px;
    height: 60px;
}

.stickmenu > ul > li > a {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    position: absolute;
    top: 50%;
    transform: translate(-0%, -50%);
    width: 220px;
    color: white;
    font-size: 30px;
    text-decoration: none;
    text-align: left;
}

.stickmenu > ul > li > a > p {
    margin-top: 15px;
    margin-bottom: 0px;
}

.stickmenu > ul > li > a > .eng {
    margin-top: 5px;
    margin-bottom: 0px;
}

.stickmenu > ul > li > a > i {
    text-align: center;
    padding: 10px;
    padding-right: 15px;
    font-size: 40px;
}

.stickmenu > ul > li > a > img {
    padding: 10px;
    padding-right: 15px;
    width: 40px;
}

.stickmenu:hover {
    width: 250px;
}

.mezi {
    scroll-margin-top: 40px;
    margin-top: 40px;
}

.mezi > h2 {
    font-family: "BebasNeue";
    font-size: 70px;
    text-transform: uppercase;
    color: white;
    text-align: center;
    letter-spacing: 1px;
    word-spacing: 5px;
}

.important { 
	color: #cf0000;
	font-weight: bold;
}

.myBold { 
	color: #fce16b;
	font-weight: bold;
}

.mycontact, .mykontakt {
	font-size: 90%;
}

.lock {
    width: 100%;
    max-height: 1200px;
    height: 100vh;
    min-height: 700px;
    content: "";
    background-size: cover;
    background-position: top center;
    background-attachment: fixed;
    background-repeat: no-repeat;
}

.bg-1 {
    background-image: url(../img/bg-1.jpg);
}

.bg-2 {
    background-image: url(../img/bg-2.jpg);
}

.bg-3 {
    background-image: url(../img/bg-3.jpg);
}

.bg-4 {
    background-image: url(../img/bg-4.jpg);
}

.bg-5 {
    background-image: url(../img/bg-5.jpg);
}

.text {
    position: relative;
    font-size: 30px;
    color: white;
    width: 100%;
    max-height: 1200px;
    height: 100vh;
    min-height: 700px;
    background-color: rgba(0, 0, 0, 0.4);
    text-align: justify;
    text-align-last: center;
}

.text > p {
    position: absolute;
    width: 900px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

main > h2 {
    font-family: "BebasNeue";
    font-size: 70px;
    text-transform: uppercase;
    color: white;
    text-align: center;
    margin-top: 100px;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.menu > ul {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    width: 100%;
    padding: 5px;
    list-style: none;
    position: absolute;
    left: 50%;
    transform: translate(-50%);
}

.menu > ul > li > a {
    font-size: 25px;
    padding: 5px;
    margin: 10px;
    text-decoration: none;
    border: 1px solid #b6b6b6;
    cursor: pointer;
    transition-duration: 0.3s;
    transition-property: background;
}

.menu > ul > li > a:hover {
    background-color: rgb(51, 51, 51);
}

.ceniky {
    margin-top: 100px;
    position: relative;
    height: 830px;
    color: white;
}

.cenik2 {
    margin-top: 20px;
}

.ceniky > div {
    position: absolute;
    background-color: black;
    text-align: center;
    font-size: 20px;
    width: 1000px;
    height: 830px;
    left: 50%;
    transform: translate(-50%);
}


table, td ,tr {
    border: 1px solid white;
    border-collapse: collapse;
}

table {
    margin-top: 80px;
    margin-left: 50%;
    transform: translate(-50%);
    width: 850px;
}

td {
    height: 30px;
}

p {
    margin-top: 30px;
}

.ceniky > div > p {
    width: 850px;
    margin-left: 50%;
    transform: translate(-50%);
}

.treti > p {
    font-size: 18px;
    width: 900px;
    text-align: center;
    margin-left: 50%;
    transform: translate(-50%);
}

.treti > p > b {
    font-size: 20px;
}

.typy {
    font-size: 40px;
    font-weight: bold;
    margin: 30px;
    text-transform: uppercase;
    width: 400px;
    border-top: 1px solid white;
    padding-top: 30px;
}

.typynotext {
    font-size: 10px;
    font-weight: bold;
    margin: 10px;
    text-transform: uppercase;
    width: 400px;
    border-top: 1px solid white;
    padding-top: 5px;
}



.prvni {
    z-index: 2;
}

.ontop {
    z-index: 3;
}

main > p {
    font-size: 25px;
    margin-top: 50px;
    text-align: center;
    color: white;
    margin-bottom: 0px;
}

.mapa {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-top: 50px;
    margin-bottom: 100px;
}

.mapa > iframe {
    width: 900px;
    height: 500px;
}

.mapa > p {
    color: white;
    text-align: center;
    font-size: 20px;
    margin-bottom: 10px;
}

footer {
    display: grid;
    grid-template-columns: 50% 50%;
    grid-template-areas: "kontakt vytvoril";
    background-color: #2B2B2B;
    font-size: 20px;
}

.kontakt {grid-area: kontakt;}
.vytvoril {grid-area: vytvoril;}

h3 {
    font-family: "BebasNeue";
    font-size: 40px;
    text-transform: uppercase;
    text-align: center;
    letter-spacing: 1px;
    margin: 10px;
}

.kontakt, .vytvoril {
    color: white;
    text-align: center;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: center;
    margin: 50px;
}

.info {
    display: grid;
    grid-template-columns: 50% 50%;
    grid-template-areas: "email email2";
    margin-bottom: 10px;
}

.email > p, .email2 > p {
    margin: 5px;
}

.email {
    grid-area: "email";
    text-align: right;
}

.email2 {
    text-align: left;
    grid-area: "email2";
}

.vytvoril > p {
    margin-top: 10px;
    margin-bottom: 5px;
}

.vytvoril > p > a {
    color: white;
    text-decoration: none;
}

.web {
    margin-bottom: 30px;
}

.social > a {
    font-size: 30px;
}



/*ANIMACE*/

@keyframes aaa {

    0% {
        width: 30px;
        left: 0%;
    }

    25% {
        width: 100px;
    }

    50% {
        width: 30px;
        left: 100%;
        transform: translate(-100%);    
    }

    75% {
        width: 100px;
    }

    100% {
        width: 30px;
        left: 0%;
    }

}

@keyframes hop {

    0% {
        top: 96%;
    }

    12.5% {
        top: 91%;
    }

    25% {
        top: 96%;
    }

    37.5% {
        top: 94%;
    }

    50% {
        top: 96%;
    }

    100% {
        top: 96%;
    }

}


/*------------------*/



/* MEDIA QUERY */

@media only screen and (max-width: 1440px) {
        
    .bx-controls-direction {
        width: 85vw;
    }
    
    .bx-controls-direction > a {
        font-size: 2em;
    }
    
    .bx-pager{
        top: 20px;
    }
    
    .bx-pager-item{
        margin: 10px;
        width: 20px;
        height: 20px;
    }
    
    .header1 {
        background-position: right;
    }

    .header2 {
        background-position: 50%;
    }
    
    .header3 {
        background-position: 50%;
    }

    h1 {
        color: white;
        font-size: 100px;
        font-family: "BebasNeue";
        top: 38%;
        letter-spacing: 5px;
        margin-bottom: -10px;
    }
    
    .podnadpis:nth-child(3) {
        font-size: 25px;
    }    

    .podnadpis:last-child {
        font-size: 23px;
    }
    
    .podnadpis {
        font-size: 30px;
        top: 50%;
    }
    
    h1::after {
        width: 30px;
        height: 5px;
        bottom: 15%;
     }
     
     .scroll {
         top: 98%;
         width: 40px;
     }

     .stickmenu {
        width: 50px;
        height: 200px;
        border-top-left-radius: 5px;
        border-bottom-left-radius: 5px;
    }
    
    .stickmenu > ul > li {
        width: 50px;
        height: 50px;
    }
    
    .stickmenu > ul > li > a {
        width: 180px;
        font-size: 20px;
    }
    
    .stickmenu > ul > li > a > p {
        margin-top: 15px;
    }

    .stickmenu > ul > li > a > .eng {
        margin-top: 7px;
    }
    
    .stickmenu > ul > li > a > i {
        padding: 10px;
        padding-right: 15px;
        font-size: 30px;
    }

    .stickmenu > ul > li > a > img {
        padding: 10px;
        padding-right: 15px;
        width: 30px;
    }
    
    .stickmenu:hover {
        width: 180px;
    }
    
     .mezi, .lock {
         margin-top: 30px;
     }
     
     .mezi {
        scroll-margin-top: 30px;
    }
    
    .mezi > h2 {
        margin-top: 30px;
         font-size: 30px;
         letter-spacing: 1px;
         word-spacing: 3px;
    }    

    .lock {
        background-size: cover;
    }

     .text {
         font-size: 25px;
     }
     
     .text > p {
         width: 500px;
     }
     
    main > h2 {
         font-size: 45px;
         margin-top: 50px;
         letter-spacing: 1px;
         margin-bottom: 15px;
     }
     
     .menu > ul {
         padding: 5px;
     }
     
     .menu > ul > li > a {
         font-size: 18px;
         padding: 5px;
         margin: 7px;
     }
     
     .ceniky {
         margin-top: 100px;
         height: 600px;
     }

     .cenik2 {
        margin-top: 20px;
    }    
     
     .ceniky > div {
         font-size: 15px;
         width: 800px;
         height: 600px;
     }

     .ceniky > div > p {
        width: 740px;
    }

     table {
         margin-top: 50px;
         width: 740px;
     }
     
     td {
         height: 20px;
     }
     
     .treri > p {
         margin-top: 20px;
     }
     
     .treti > p {
         font-size: 18px;
         width: 740px;
     }
          
     .typy {
         font-size: 25px;
         margin: 20px;
         width: 300px;
         padding-top: 20px;
     }
     
     .mapa {
         margin-top: 80px;
        margin-bottom: 100px;
    }
    
    .mapa > iframe {
        width: 750px;
        height: 400px;
    }
    
    .mapa > p {
        font-size: 18px;
        margin-bottom: 10px;
    }    

    footer {
        font-size: 15px;
    }

     h3 {
         font-size: 30px;
         margin: 10px;
     }

     .kontakt, .vytvoril {
         margin: 40px;
     }
          
     .vytvoril > p {
         margin-top: 0px;
         margin-bottom: 5px;
     }

     .web {
        margin-bottom: 20px;
    }    
     
     .social > a {
         font-size: 20px;
     }
     

}

@media only screen and (max-width: 1024px) {
    
    .bx-controls-direction {
        width: 85vw;
    }
    
    .bx-controls-direction > a {
        font-size: 1.5em;
    }
    
    .bx-pager{
        top: 10px;
    }
    
    .bx-pager-item{
        margin: 10px;
        width: 15px;
        height: 15px;
    }
    
    .header1 {
        background-position: 25%;
    }

    .header2 {
        background-position: 50%;
    }
    
    .header3 {
        background-position: 50%;
    }

    h1 {
        font-size: 90px;
        top: 38%;
        letter-spacing: 3px;
    }
    
    .podnadpis:nth-child(3) {
        font-size: 20px;
    }    

    .podnadpis:last-child {
        margin-top: 10px;
        font-size: 18px;
    }
    
    .podnadpis {
        font-size: 25px;
        top: 50%;
    }
    
    h1::after {
        width: 30px;
        height: 3px;
        bottom: 15%;
     }
     
     .scroll {
         top: 98%;
         width: 35px;
     }

     .stickmenu {
        width: 50px;
        height: 200px;
        border-top-left-radius: 5px;
        border-bottom-left-radius: 5px;
    }
    
    .stickmenu > ul > li {
        width: 50px;
        height: 50px;
    }
    
    .stickmenu > ul > li > a {
        width: 150px;
        font-size: 20px;
    }
    
    .stickmenu > ul > li > a > i {
        padding: 10px;
        padding-right: 15px;
        font-size: 30px;
    }

    .stickmenu:hover {
        width: 150px;
    }
     
    .mezi, .lock {
        margin-top: 25px;
    }
     
    .mezi {
        scroll-margin-top: 25px;
    }
    
    .mezi > h2 {
        font-size: 35px;
        letter-spacing: 1px;
        word-spacing: 3px;
   }    
     
     .lock {
         background-size: cover;
     }
     
     .text {
         font-size: 20px;
     }
     
     .text > p {
         width: 400px;
     }
     
    main > h2 {
         font-size: 38px;
         margin-top: 40px;
         letter-spacing: 1px;
         margin-bottom: 10px;
     }
     
     .menu > ul {
         padding: 5px;
     }
     
     .menu > ul > li > a {
         font-size: 15px;
         padding: 3px;
         margin: 3px;
     }
     
     .ceniky {
         margin-top: 80px;
         height: 500px;
     }

     .cenik2 {
        margin-top: 20px;
    }    
     
     .ceniky > div {
         font-size: 12px;
         width: 700px;
         height: 500px;
     }

     table {
         margin-top: 40px;
         width: 600px;
     }
     
     td {
         height: 15px;
     }
     
     .treti > p {
         margin-top: 15px;
     }

     .ceniky > div > p {
         width: 600px;
     }
     
     .treti > p {
         font-size: 12px;
         width: 600px;
     }
          
     .typy {
         font-size: 20px;
         margin: 15px;
         width: 250px;
         padding-top: 15px;
     }

     .mapa {
        margin-top: 70px;
        margin-bottom: 80px;
    }
   
   .mapa > iframe {
        width: 600px;
        height: 300px;
    }
   
    .mapa > p {
        font-size: 15px;
        margin-bottom: 5px;
    }    

    footer {
        font-size: 15px;
    }

     h3 {
         font-size: 30px;
         margin: 10px;
     }

     .kontakt, .vytvoril {
         margin: 30px;
     }
          
     .vytvoril > p {
         margin-top: 0px;
         margin-bottom: 5px;
     }

     .web {
        margin-bottom: 10px;
    }    
     
     .social > a {
         font-size: 18px;
     }
     

}

@media only screen and (max-width: 768px) {

    .bx-controls-direction {
        width: 95vw;
    }
    
    .bx-controls-direction > a {
        font-size: 1em;
    }
    
    .bx-pager{
        top: 10px;
    }
    
    .bx-pager-item{
        margin: 10px;
        width: 12px;
        height: 12px;
    }

    .header1 {
        background-position: 25%;
    }

    .header2 {
        background-position: 50%;
    }
    
    .header3 {
        background-position: 50%;
    }

    h1 {
        font-size: 70px;
        top: 40.5%;
        letter-spacing: 3px;
    }

    .podnadpis:nth-child(3) {
        font-size: 18px;
    }    

    .podnadpis:last-child {
        margin-top: 7px;
        font-size: 16px;
    }
    
    .podnadpis {
        font-size: 25px;
        top: 50%;
    }
    
    h1::after {
        width: 30px;
        height: 3px;
        bottom: 15%;
     }
     
    .scroll {
        top: 98%;
        width: 35px;
    }

    .stickmenu {
        position: fixed;
        top: 0%;
        transform: translate(-0%, -0%);
        width: 100%;
        height: 0px;
        border-bottom-left-radius: 0px;
        border-bottom-left-radius: 10px;
        border-bottom-right-radius: 10px;
        transition-duration: 0.2s;
    }

    .stickmenu::after {
        position: absolute;
        top: 0%;
        right: 0%;
        width: 40px;
        height: 40px;
        border-bottom-left-radius: 5px;
        padding: 10px;
        font-family: 'icomoon' !important;
        content: "\e9bd";
        color: white;
        font-size: 40px;
        background-color: #0D0D0D;
        transition-duration: 0.2s;
    }

    .stickmenu > ul {
        margin-left: 50%;
        margin-top: 5px;
        height: 0%;
        opacity: 0;
        transition-delay: 0.2s;
        transition-duration: 0.2s;
    }

    .stickmenu > ul > li {
        margin-top: 15px;
        height: 25px;
    }

    .stickmenu > ul > li > a {
        width: 100%;
        font-size: 25px;
    }

    .stickmenu > ul > li > a > p, .stickmenu > ul > li > a > .eng {
        margin: 0;
        transform: translate(-50%, 0%);
    }
    
    .stickmenu > ul > li > a > i, .stickmenu > ul > li > a > img {
        display: none;
    }
    
    .stickmenu.show {
        height: 200px;
        width: 100%;
    }

    .stickmenu.show::after {
        content: "\ea0f";
        font-size: 30px;
        text-align: center;
        transform: rotate(180deg);
        background-color: transparent;
        border-radius: 50px;
    }

    .stickmenu.show > ul {
        height: 100%;
        opacity: 1;
    }

    .mykontakt, .mycontact {
        visibility: hidden;
        position: relative;
    }

    .mykontakt::after, .mycontact::after {
        visibility: visible;
        position: absolute;
        top: 0;
        left: 50%;
        transform: translate(-50%);
    }
    
    .mykontakt:after {
        content: "Kontakt";
    }

    .mycontact:after {
        content: "Contact";
    }

     .mezi, .lock {
         margin-top: 25px;
     }

     .mezi {
         scroll-margin: 25px;
     }
     
     .mezi > h2 {
         font-size: 35px;
         letter-spacing: 1px;
         word-spacing: 3px;
     }

     .bg-1 {
        background-position: 70%;
    }

     .bg-3 {
         background-position: 25%;
     }

     .bg-4 {
        background-position: 50%;
    }

     .bg-5 {
        background-position: 25%;
    }
    
     .lock {
         background-size: cover;
         background-attachment: scroll;
     }
     
     .text {
         font-size: 20px;
     }
     
     .text > p {
         width: 400px;
     }
     
     main > h2 {
         font-size: 38px;
         margin-top: 40px;
         letter-spacing: 1px;
         margin-bottom: 10px;
     }
     
     .menu > ul {
         padding: 5px;
         width: 700px;
     }
     
     .menu > ul > li > a {
         font-size: 15px;
         padding: 3px;
         margin: 5px;
     }
     
     .ceniky {
         margin-top: 80px;
         height: 470px;
     }

     .cenik2 {
        margin-top: 20px;
    }    
     
     .ceniky > div {
         font-size: 12px;
         width: 700px;
         height: 470px;
     }

     table {
         margin-top: 40px;
         width: 550px;
     }
     
     td {
         height: 15px;
     }
     
     p {
         margin-top: 15px;
     }

     .ceniky > div > p {
         width: 600px;
     }
     
     .treti > p {
         font-size: 12px;
         width: 600px;
     }
     
     .typy {
         font-size: 20px;
         margin: 15px;
         width: 250px;
         padding-top: 15px;
     }

     .mapa {
        margin-top: 80px;
        margin-bottom: 100px;
    }
   
    .mapa > iframe {
        width: 650px;
        height: 350px;
    }
   
    .mapa > p {
        font-size: 18px;
        margin-bottom: 13px;
    }    

    footer {
        font-size: 14px;
    }

    h3 {
        font-size: 25px;
        margin: 10px;
    }

    .kontakt, .vytvoril {
        margin: 30px;
    }
         
    .vytvoril > p {
        margin-top: 0px;
        margin-bottom: 5px;
    }

    .web {
       margin-bottom: 10px;
   }    
    
    .social > a {
        font-size: 15px;
    }
    

}

@media only screen and (max-width: 500px) {  

    .header1 {
        background-position:30%;
    }

    .header2 {
        background-position: 50%;
    }
    
    .header3 {
        background-position: 50%;
    }

    h1 {
        font-size: 50px;
        top: 40.5%;
        letter-spacing: 3px;
        margin-bottom: -5px;
        text-align: center;
    }

    .podnadpis:nth-child(3) {
        font-size: 15px;
    }

    .podnadpis:last-child {
        margin-top: 7px;
        font-size: 13px;
    }
    
    .podnadpis {
        font-size: 25px;
        top: 50%;
    }
    
    h1::after {
        width: 30px;
        height: 2px;
        bottom: 12%;
     }
     
     .scroll {
         top: 98%;
         width: 35px;
     }

     .stickmenu::after {
        width: 30px;
        height: 30px;
        padding: 10px;
        font-size: 30px;
    }

    .stickmenu > ul {
        margin-top: 5px;
    }

    .stickmenu > ul > li {
        height: 20px;
        margin-top: 10px;
    }
    
    .stickmenu > ul > li > a {
        font-size: 20px;
    }

    .stickmenu.show {
        height: 140px;
    }

    .stickmenu.show::after {
        font-size: 25px;
    }

     .mezi, .lock {
         margin-top: 25px;
     }

     .mezi {
        scroll-margin: 25px;
    }
     
     .mezi > h2 {
         font-size: 35px;
         letter-spacing: 1px;
         word-spacing: 3px;
     }
     
     .lock {
         background-size: cover;
         background-size: cover;
     }
     
     .bg-4 {
        background-position: 45%;
    }

     .text {
         font-size: 18px;
     }
     
     .text > p {
         width: 250px;
         text-align: center;
     }
     
     main > h2 {
         font-size: 38px;
         margin-top: 40px;
         letter-spacing: 1px;
         margin-bottom: 10px;
     }
     
     .menu > ul {
         padding: 5px;
         width: 400px;
         width: 100%;
     }
     
     .menu > ul > li > a {
         font-size: 12px;
         padding: 3px;
         margin: 5px;
     }
     
     .ceniky {
         margin-top: 80px;
         height: 410px;
     }

     .cenik2 {
        margin-top: 20px;
        height: 470px;
    }
     
     .ceniky > div {
         font-size: 10px;
         width: 410px;
         height: 410px;
     }

     .cenik2 > div {
         height: 470px;
     }

     table {
         margin-top: 20px;
         width: 330px;
     }
     
     td {
         height: 15px;
     }
     
     .treti > p {
         margin-top: 15px;
     }

     .ceniky > div > p {
         width: 330px;
     }
     
     .treti > p {
         font-size: 11px;
         width: 330px;
     }

     .treti > p:nth-child(1) {
         margin-top: 20px;
     }
          
     .typy {
         font-size: 16px;
         margin: 10px;
         width: 250px;
         padding-top: 10px;
     }

    .mapa {
        margin-top: 70px;
        margin-bottom: 100px;
    }
    
    .mapa > iframe {
        width: 350px;
        height: 400px;
    }
    
    .mapa > p {
        max-width: 350px;
        font-size: 13px;
        margin-bottom: 5px;
    }    

     footer {
         font-size: 13px;
         grid-template-columns: 100%;
         grid-template-areas: "kontakt"
                              "vytvoril";     
     }
     
     h3 {
         font-size: 25px;
         margin-bottom: 5px;
     }

     .kontakt, .vytvoril {
         margin: 0;
     }

     .kontakt {
        margin-top: 20px;
        margin-bottom: 20px;
    }

    .vytvoril {
        margin-bottom: 20px;
    }
          
    .vytvoril > p {
        margin-top: 5px;
        margin-bottom: 4px;
    }

    .web {
        margin-bottom: 10px;
    }
         
    .social > a {
        font-size: 15px;
    }
     

}

@media only screen and (max-width: 390px) {

    .header1 {
        background-position:30%;
    }

    .header2 {
        background-position: 50%;
    }
    
    .header3 {
        background-position: 50%;
    }

    h1 {
        font-size: 40px;
        top: 40.5%;
        letter-spacing: 1px;
    }
    
    
    .podnadpis {
        font-size: 13px;
        top: 49%;
    }
    
    h1::after {
        width: 30px;
        height: 2px;
        bottom: 12%;
     }
     
     .scroll {
         top: 98%;
         width: 35px;
     }
         
    .stickmenu::after {
        width: 20px;
        height: 20px;
        padding: 5px;
        font-size: 20px;
    }

    .stickmenu > ul {
        margin-top: 5px;
    }

    .stickmenu > ul > li {
        height: 20px;
        margin-top: 10px;
    }
    
    .stickmenu > ul > li > a {
        font-size: 15px;
    }

    .stickmenu.show {
        height: 140px;
    }

    .stickmenu.show::after {
        font-size: 16px;
    }

     .mezi {
        scroll-margin: 25px;
        margin-top: 25px;
    }

     
     .mezi > h2 {
         font-size: 30px;
         letter-spacing: 0px;
         word-spacing: 0px;
     }
          
     .lock {
         background-size: cover;
     }

     .bg-1 {
         background-position: 65%;
     }

     .bg-3 {
         background-position: 30%;
     }

     .bg-4 {
         background-position: top center;
     }

     .bg-5 {
        background-position: 30%;
    }
     
     .text {
         font-size: 15px;
     }
     
     .text > p {
         width: 240px;
         text-align: center;
     }
     
     main > h2 {
         font-size: 35px;
         margin-top: 40px;
         letter-spacing: 1px;
         margin-bottom: 10px;
     }
     
     .menu > ul {
         padding: 0px;
         width: 100vw;
     }
     
     .menu > ul > li > a {
         font-size: 8px;
         padding: 2px;
         margin: 2px;
     }
     
     .ceniky {
         margin-top: 80px;
         height: 830px;
     }

     .cenik2 {
        margin-top: 20px;
    }
     
     .ceniky > div {
         font-size: 10px;
         width: 300px;
         height: 830px;
     }
  

     table {
         margin-top: 30px;
         width: 280px;
     }
     
     td {
         height: 15px;
     }
     
     p {
         margin-top: 10px;
     }

     .ceniky > div > p {
         width: 280px;
     }
     
     .treti > p {
         font-size: 9px;
         width: 300px;
     }

     .treti > p:nth-child(1) {
         margin-top: 30px;
     }
     
     .typy {
         font-size: 16px;
         margin: 10px;
         width: 230px;
         padding-top: 10px;
     }
     
     .mapa {
        margin-top: 40px;
        margin-bottom: 50px;
    }
    
    .mapa > iframe {
        width: 250px;
        height: 300px;
    }
    
    .mapa > p {
        max-width: 300px;
        font-size: 13px;
        margin-bottom: 5px;
    }    



    footer {
        font-size: 13px;
        grid-template-columns: 100%;
        grid-template-areas: "kontakt"
                             "vytvoril";     
    }
    
    h3 {
        font-size: 25px;
        margin-bottom: 5px;
    }

    .kontakt, .vytvoril {
        margin: 0;
    }

    .kontakt {
       margin-top: 20px;
       margin-bottom: 20px;
   }

   .vytvoril {
       margin-bottom: 20px;
   }
         
   .vytvoril > p {
       margin-top: 5px;
       margin-bottom: 4px;
   }

   .web {
       margin-bottom: 10px;
   }
        
   .social > a {
       font-size: 15px;
   }     

}

