#landing {
    width: 100%;
    margin-top: 3%;
    margin-bottom: 5%;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    flex-direction: column;
    color: #fff;
}


/* JAZYKOVÝ SWITCH */

.langWrapper {
    width: 95%;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.langHolder {
    width: 10%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.langHolder a {
    font-size: 1rem;
}

.langItem {
    margin-right: 5%;
    padding: 0.9rem;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    text-align: center;
    transition: 0.25s;
}

.langItem:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.active {
    background-color: rgba(255, 255, 255, 0.5);
}


/* LOGO A SLOGAN */

.logoAndSlogan {
    width: 50%;
    display: inline-flex;
    justify-content: space-evenly;
    align-items: center;
}

.logo {
    min-width: 50px;
    width: 320px;
}


/* TEXTY */

.landingTexts {
    width: 80%;
    margin-top: 6%;
    text-align: center;
    display: flex;
    justify-content: space-evenly;
}

#firstLandingText {
    width: 20%;
}

#secondLandingText {
    width: 20%;
}

#thirdLandingText {
    width: 20%;
}


/* TLAČÍTKA */

.landingButtons {
    width: 80%;
    margin-top: 7%;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
}

.moreButton {
    padding: 1rem 2.6rem;
    font-size: 17pt;
    font-weight: 200;
    color: #fff;
    background-color: transparent;
    border: 2px solid #fff;
    border-radius: 12px;
    transition-duration: 0.3s;
}

.moreButton:hover {
    background-color: #fff;
    color: #002d65;
}

/* MENŠÍ ŠÍŘKA NEŽ 1300px */

@media only screen and (max-width: 1300px) {

    /* JAZYKOVÉ PŘEPÍNAČE */
    .langWrapper {
        width: 80%;
    }

    /* LOGO A SLOGAN */
    .logoAndSlogan {
        width: 60%;
    }

    .logo {
        max-width: 250px;
    }

    .moreButton {
        margin-top: 20%;
    }
}


/* MENŠÍ ŠÍŘKA NEŽ 1000px */

@media only screen and (max-width: 1000px) {

    /* LOGO A SLOGAN */
    .logoAndSlogan {
        width: 75%;
    }

    .logo {
        max-width: 150px;
    }

    /* TEXTY */
    .landingTexts {
        width: 80%;
        justify-content: space-between;
    }

    #firstLandingText {
        width: 30%;
    }

    #secondLandingText {
        width: 30%;
    }

    #thirdLandingText {
        width: 30%;
    }
}


/* MENŠÍ ŠÍŘKA NEŽ 675px */

@media only screen and (max-width: 675px) {

    /* JAZYKOVÉ PŘEPÍNAČE */
    .langWrapper {
        width: 100%;
        justify-content: center;
    }

    /* LOGO A SLOGAN */
    .logoAndSlogan {
        width: 60%;
        margin-top: 10%;
        display: inline-flex;
        justify-content: space-between;
        align-items: center;
    }

    .logo {
        margin-right: 15%;
    }

    /* TEXTY */
    .landingTexts {
        width: 70%;
        margin-top: 6%;
        justify-content: center;
        flex-direction: column;
    }

    #firstLandingText {
        width: 100%;
        margin-top: 25%;
        margin-bottom: 20%;
        text-align: left;
    }

    #secondLandingText {
        width: 100%;
        margin-bottom: 25%;
        text-align: right;
    }

    #thirdLandingText {
        width: 100%;
        text-align: left;
    }

    /* TLAČÍTKO "CHCI VÍCE INFO" */
    .landingButtons {
        width: 100%;
        flex-direction: column;
        justify-content: center;
    }

    .moreButton {
        margin-top: 20%;
        padding: 15px 30px;
        font-size: 1.1rem;
    }
}
