@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;
}

.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);
    }


}

.intro {
    position: relative;
    left: 50%;
    top: 45%;
    transform: translate(-50%, -50%);
    margin: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.uvod {
    position: relative;
    background-image: url('../images/BGimages.jpg');
    background-attachment: fixed;
    height: 100vh;
    background-position-y: -200px;
    background-size: auto;
}

.intro h1 {
    font-size: 55px;
    font-weight: 700;
    font-family: 'Exo';
}

.intro h2 {
    font-size: 17px;
    font-weight: 200;
}

.intro img {
    height: 90px;
    width: 100px;
    margin-top: 20px;
    margin-bottom: 20px;
}



.intro button {
    width: 170px;
    height: 45px;
    background: none;
    border: 1px solid white;
    border-radius: 6px;
    padding: 5px 10px;
    cursor: pointer;
    font-size: 15px;
    position: relative;
    transition: .2s;
    color: white;
}

.intro button::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 0%;
    background: #0080C2;
    left: 50%;
    transform: translate(-50%);
    bottom: 0px;
    transition: .2s;
    z-index: -1;
    border-radius: 6px;
}

.intro button:hover {
    transition: .2s;
    width: 190px;
    height: 54px;
    color: white;
    font-size: 17px;
    transition-delay: .2s;
}


.intro button:hover::before {
    height: 100%;
}

@media(max-width:820px) {
    .intro h1 {
        font-size: 40px;
    }
}

@media(max-width:600px) {
    .intro h1 {
        font-size: 35px;
    }

    .intro h2 {
        font-size: 13px;
    }

    .intro img {
        height: 60px;
        width: 100px;
    }

    .intro button {
        width: 140px;
        height: 40px;
        font-size: 13px;
    }

    .intro button:hover {
        transition: .2s;
        width: 160px;
        height: 45px;
        color: white;
        font-size: 15px;
    }
}

@media(max-width: 490px) {
    .intro h1 {
        font-size: 30px;
    }
}

@media(max-width: 420px) {
    .intro h1 {
        font-size: 25px;
    }

    .intro button {
        width: 130px;
        height: 37px;
        font-size: 11px;
    }

    .intro button:hover {
        transition: .2s;
        width: 160px;
        height: 45px;
        color: white;
        font-size: 15px;
    }
}

.references {
    height: 500px;
    width: 100vw;
    background: white;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.ref-layout {
    display: flex;
    flex-direction: row;
}

.ref-box {
    width: 250px;
    height: 350px;
    background: #FFFFFF;
    box-shadow: 8px 9px 7px rgba(0, 0, 0, 0.25);
    border-radius: 25px;
    margin: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.ref-box h1 {
    color: #002B4A;
    font-size: 30px;
    margin-top: 10px;
}

.ref-box h2 {
    color: black;
    font-size: 19px;
}

.ref-box p {
    color: black;
    width: 70%;
    text-align: center;
    margin-top: 10px;
    font-size: 16px;
}

@media(max-width : 930px) {
    .ref-layout {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }

    .references {
        height: 900px;
        width: 100vw;
    }

}

@media(max-width:620px) {
    .references {
        height: 1250px;
    }

    .ref-box {
        margin-top: 10px;
    }
}

.sluzby {
    background-image: url('../images/sluzbyBG.jpg');
    position: relative;
    width: 100vw;
    height: 1300;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.sluzby h1 {
    font-family: 'Exo';
    font-size: 50px;
    text-align: center;
    font-weight: 700;
    margin-bottom: 50px;
    margin-top: 30px;
}

.sluzby-layout {
    position: relative;
    width: 900px;
    height: 1400px;
    background: rgba(254, 254, 254, 0.08);
    box-shadow: 11px 16px 8px 2px rgba(0, 0, 0, 0.15);
    border-radius: 21px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    align-items: center;
}

.sluzby-box {
    width: 240px;
    height: 350px;
    background: rgba(5, 34, 55, 0.62);
    border-radius: 10px;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    flex-direction: column;
    text-align: center;
}

.sluzby-box p {
    font-size: 15px;
    width: 80%;
    font-weight: 200;
}

@media(max-width: 510px) {
    .sluzby-box p {
        font-size: 12px;
    }
}

.nav a {
    visibility: hidden;
}

.sluzby-box button {
    width: 150px;
    height: 40px;
    background: rgba(19, 61, 90, 0.85);
    backdrop-filter: blur(19px);
    border-radius: 6px;
    border: none;
    cursor: pointer;
    overflow: hidden;
}

.sluzby-box button img {
    margin-left: 5px;
    position: relative;
    right: 0%;
    transition: .5s;
    opacity: 1;
    width: 10px;
}

.sluzby-box button:hover img {
    right: -20px;
    transition: .5s;
    opacity: 0;
}

.odposlech {
    font-size: 16px;
}


.sluzby-box h2 {
    font-size: 20px;
}

.zbozi {
    font-size: 10px;
}

@media(max-width:980px) {
    .sluzby {
        height: 2000px;
    }

    .sluzby-layout {
        width: 600px;
        height: 1900px;
    }
}

@media(max-width:630px) {
    .sluzby {
        height: 1700px;
    }

    .sluzby-layout {
        width: 500px;
        height: 1600px;
    }

    .sluzby-box {
        width: 200px;
        height: 300px;
    }

    .sluzby-box img {
        width: 50px;
    }

    .sluzby-box h2 {
        font-size: 17px;
    }
}

@media(max-width:510px) {
    .sluzby {
        height: 1700px;
    }

    .sluzby-layout {
        width: 375px;
        height: 1500px;
    }

    .sluzby-box {
        width: 170px;
        height: 280px;
    }

    .sluzby-box img {
        width: 50px;
    }

    .sluzby-box h2 {
        font-size: 17px;
    }
}


.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;
}

.intro h1,
.intro h2,
.intro img,
.intro button {
    visibility: hidden;
}