@import url('https://fonts.googleapis.com/css2?family=Exo:wght@100;200;300;400;500;600;700;800;900&display=swap');

* {
    list-style: none;
    margin: 0;
    padding: 0;
    color: white;
    font-family: 'Exo';
    outline: none;
}

html {
    scroll-behavior: smooth;
}


body {}

html,
body {
    width: 100%;
    overflow-x: hidden;
    background-image: url('images/cenikBG.jpg');
    background-size: cover;
}

.logos {
    display: flex;
    flex-direction: row;
    position: absolute;
    top: 20px;
}

.logo {
    position: relative;
    width: 150px;
    padding: 0 10px;
}

.logo2 {
    width: 150px;
    padding: 0 10px;
}

@media(max-width:1090px) {

    .logo,
    .logo2 {
        width: 100px;
    }


}

@media(max-width:930px) {

    .logo,
    .logo2 {
        width: 150px;
    }
}

@media(max-width:530px) {

    .logo,
    .logo2 {
        width: 100px;
    }

    .logos {
        top: 25px;
    }
}

.nav {
    height: 80px;
    transition: .3s;
    position: relative;
    z-index: 100000;
}

.menu li {
    font-size: 14px;
    padding: 0 15;
    line-height: 80px;
    height: 100%;
    transition: .2s;
}

a {
    text-decoration: none;
    margin-top: -3px;
}

.menu a li:hover {
    color: #0080C2;
    transition: .2s;
}

.menu {
    display: flex;
    float: right;
    position: relative;
    right: 3%;
}

header .fas {
    display: none;
}





@media(max-width:1600px) {
    .menu a li {
        font-size: 12px;
        padding: 0 10;
    }
}

@media(max-width:1400px) {
    .menu {
        flex-direction: column;
        background: rgba(37, 37, 37, 0.89);
        height: 100vh;
        width: 60%;
        right: -60%;
        position: fixed;
        transition: .3s;
        text-align: center;
    }

    header .fas {
        display: block;
        font-size: 30;
    }

    header .fa-bars {
        position: absolute;
        right: 5%;
        line-height: 80px;
        z-index: 0;
    }

    header .fa-times {
        position: absolute;
        right: 10%;
        top: 2.5%;
    }

    .menu a {
        font-size: 20px;
        position: relative;
        top: 50px;
    }

    .menu li {
        height: 70px;
    }

    .menu-show {
        right: 0;
        transition: .3s;
        z-index: 20;
        box-shadow: 0px 0px 10px rgb(46, 39, 41);
    }


}

.uvod {
    position: relative;
    background: none;
    height: 100vh;
    background-size: auto;
}


.content {
    width: 960px;
    height: 410px;
    background: rgba(254, 254, 254, 0.08);
    box-shadow: 11px 16px 8px 2px rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(12px);
    border-radius: 21px;
    position: relative;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

@media(max-width:1300px) {
    .content {
        top: 40%;
    }
}

@media(max-width:1000px) {
    .content {
        width: 800px;
    }
}

.content h1 {
    text-align: center;
    font-size: 50px;
    line-height: 130px;
}

.content h2 {
    text-align: center;
    font-weight: 300;
    font-size: 16px;
    margin-top: -30px;
}

.ceny {
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    margin-top: 50px;
}

.left-layout {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.content h4 {
    text-align: center;
    font-weight: 300;
    font-size: 16px;
}

.info {
    margin-top: 40px;
}

@media(max-width:850px) {
    .content {
        width: 500px;
        height: 550px;
    }

    .ceny {
        flex-direction: column;
    }

    .left-layout {
        justify-content: space-evenly;
    }

    h3 {
        text-align: center;
    }

    .right {
        text-align: center;
        margin-top: 30px;
    }
}

@media(max-width:530px) {
    .content {
        width: 400px;
    }
}

@media(max-width:430px) {
    .content {
        width: 300px;
    }

    .content h1 {
        font-size: 30px;
        line-height: 80px;
    }

    .content h2 {
        font-size: 12px;
        width: 80%;
        margin: auto;
        margin-top: -15px;
    }

    .ceny {
        margin-top: 40px;
    }

    .info {
        width: 80%;
        margin: auto;
        margin-top: 40px;
    }

    .left h3 {
        font-size: 15px;
    }

    h3 {
        margin-bottom: 10px;
    }
}


.footer {
    width: 100vw;
    height: 50px;
    background: #002B4A;
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer h1 {
    font-size: 15px;
    color: #adadad;
    font-weight: 200;
}