*{
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
}

nav{
    display: flex;
    justify-content: space-around;
    align-items: center;
    min-height: 4vh;
    background-color: #a44949;
    font-family: 'Poppins', sans-serif;
}

.logo{
    color: rgb(241, 241, 241);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 20px;
}
.nav-links{
    display: flex;
    width: 30%;
    justify-content: space-around;

}
.nav-links li{
    list-style: none;
}
.nav-links a{
    color: rgb(241, 241, 241);
    text-decoration: none;
    letter-spacing: 3px;
    font-weight: bold;
    font-size: 14px;
}

.burger{
    display: none;
    cursor: pointer;
}

.burger div{
    width: 25px;
    height: 3px;
    background-color: rgb(241, 241, 241);
    margin: 5px;
    transition: all 0.3s ease;
}

@media screen and (max-width:1024px){
    .nav-links{
        width: 45%;
    }
}

@media screen and (max-width:768px){
    body{
        overflow-x: hidden;
    }
    .nav-links{
        position: absolute;
            right: 0px;
            height: 92vh;
            top: 8vh;
            background-color: #a44949;
            display: flex;
            flex-direction: column;
            align-items: center;
            width: 50%;
            transform: translateX(100%);
            transition: transform 0.5s ease-in;
    }
    .nav-links li{
        opacity: 0;
    }
    .burger{
        display: block;
    }

    .banner{
        width: 50%;
    }
}

@media (max-width: 1200px) {
    .text-box {
        margin: 0 6px;
    }
    .text-uvod {
        font-size: 16px
    }
    .footer {
        width: 100%;
        margin: 0;
    }
}

.nav-active{
    transform: translateX(0%);
}

@keyframes navLinkFade{
    from{
        opacity: 0;
        transform: translateX(50px);
    }
    to{
        opacity: 1;
        transform: translateX(0px);
    }
}

.toggle .line1{
    transform: rotate(-45deg) translate(-5px,6px);
}
.toggle .line2{
    opacity: 0;
}
.toggle .line3{
    transform: rotate(45deg) translate(-5px,-6px); 
}

.banner{
    width: 100%;
    
}

.text-box{
    display: flex;
    position: fixed;
    background: rgb(250, 250, 250);
    margin-top: -4px;
    margin-left: 240px;
    margin-right: 240px;
    justify-content: space-around;
    min-height: 100vh;
}

.text-uvod{
    font-family: 'Poppins', sans-serif;
    font-size: 28px;
    letter-spacing: 2px;
    color: black;
    text-align: center;
    font-weight: bold;
}

.footer{
    display: grid;
    grid-template-rows: repeat(1, min-content);
    grid-auto-flow: column;
    position: fixed;
    bottom: 0;
    width: 74.48%;
    margin-left: 240px;
    margin-right: 240px;    
    justify-content: space-around;
    min-height: 28vh;
    background-color: #a44949;
    font-family: 'Poppins', sans-serif;
    color: rgb(241, 241, 241);
}

.footer-list{
    display: block;
    justify-content: space-around;
    list-style: none;
    letter-spacing: 1px;
    font-family: 'Poppins', sans-serif;
}

.heder{
    justify-content: space-around;
    letter-spacing: 1px;
    padding-top: 30px;
    padding-bottom: 50px;
}

.mapouter{
    position: relative;
    text-align: right;
    padding-top: 7px;
    height: 250px;
    width: 250px;
}

.gmap_canvas{
    overflow: hidden;
    background: none;
    height: 250px;
    width: 250px;
}