*{
    margin: 0;
    padding: 0;
    font-family: "Nunito", sans-serif;
    box-sizing: border-box;
}

#sideNav {
    width: 250px;
    height: 100%;
    position: fixed;
    right: -250px;
    top: 0;
    z-index: 2;
    background: #9bbc69;
    transition: 0.5s;
}

nav ul li {
    list-style: none;
    margin: 50px 20px;
}

nav ul li a {
    text-decoration: none;
    color: #252525 ;
    transition: .3s;
    font-size: 18px;
}

nav ul li a:hover {
    color: #fff;
}

#menuBtn {
    width: 60px;
    height: 60px;
    /*background: #9bbc69;*/
    text-align: center;
    position: absolute;
    right: 3rem;
    top: 2rem;
    border-radius: 3px;
    z-index: 3;
    cursor: pointer;
}

#menuBtn img {
    width: 40px;
    margin-top: 10px;
}

header {
    width: 100%;
    padding: 1rem;
}

h1 {
    text-align: center;
    color: #8d613e;
    font-weight: 300;
    font-size: 4rem;
    margin-top: -10rem;
}

.logo {
    width: 250px;
    position: relative;
    left: 30px;
    top: 20px;
}

.container {
    width: 70%;
    margin: 5rem auto;
     padding: 1rem;
}

main {
    text-align: center;
}

h2 {
    margin: 1rem 0;
    font-size: 28px;
}

.rychlyKontakt {
    font-size: 22px;
    margin: 1rem;
}

strong {
    color: #8d613e; 
}

em {
    color: #446530;
    font-weight: 600;
}

.vyrazny {
    color: #8d613e;  
    font-size: 26px;
}

.jmena {
    margin-bottom: 5rem;
}

p {
    margin: 2rem 0;
    font-size: 20px;
    line-height: 34px;
}

h3 {
    margin: 1rem 0;
    color: #446530;
    font-size: 26px;
}

table {
    width: 100%;
    text-align: left;
    font-size: 22px;
    line-height: 60px;
    margin-bottom: 60px;
    margin-top: 60px;
}

.tabulkaPravo {
    text-align: right;
    font-size: 26px;
}

.terapie {
   font-size: 20px; 
    text-align: left;
    line-height: 60px;
    list-style: url(sipka.svg);
}

.pristroj {
    width: 100%;
}



/*------------media-----------*/



@media (max-width: 1425px){
    
    h1 {
        margin-top: 1rem;
    }
}

@media (max-width: 550px){
    
    h1 {
        font-size: 3rem; 
    }
    
    .logo {
        width: 150px;
    }
    
    .container {
        width: 90%;
        margin-top: 2rem;
    }
    
    h2 {
        font-size: 22px;
    }
    
    h3 {
        font-size: 20px;
    }
    
    .rychlyKontakt {
        font-size: 16px;
    }
    
    p, li, strong, em, table, .vyrazny {
        font-size: 16px;
    }
    
}

@media (max-width: 450px) {
    
    h1 {
        font-size: 2.4rem; 
    }
}

















