.velky-nadpis {
    display: block;
    margin-top: 26vh;

    text-align: center;
    font-size: 4rem;
    font-weight: 900;
}

.podnadpis {
    display: block;
    margin-top: 1vh;
    margin-bottom: 36vh;

    text-align: center;
    font-size: 1rem;
    font-weight: 300;
}

.gridy {
    position: relative;
}

.grid-container {
    width: 100%;
    height: fit-content;
    
    display: grid;
    grid-template-columns: repeat(2, 1fr);

    column-gap: 100px;

    list-style: none;
}
.mobilny-grid-container {
    display: none;
}

.biela {
    border: gray 1px solid;
    background-color: rgb(236, 239, 241);
    padding: 12vh 0;
}
.mobil {
    background-repeat: no-repeat;
    background-position: center;
    background-size: auto 90%;
}

.obedy {
    background-image: url("../res/obedy.webp");
}
.navigacka {
    background-image: url("../res/navigacka.webp");
}
.prehliadka {
    background-image: url("../res/prehliadka.webp");
}
.strana {
    background-image: url("../res/strana.webp");
}

.slide-text-container {
    display: grid;
    
    align-content: center;
    justify-content: start;
    gap: 5vh;

    width: 80%;
    margin-left: 10%;
    margin-right: 10%;
    height: 100%;
}

.slide-nadpis {
    font-size: 1.8rem;
    font-weight: 600;
}

.slide-podnadpis {
    font-size: 1.2rem;
    font-weight: 500;
}

.slide-text {
    font-size: 1rem;
}

.google-play-img {
    width: 153px;
    height: 45px;

    transition: 500ms ease-in-out;
}

.mobilny-google-play {
    display: none;
}

.upozornenie {
    display: block;
    width: 40%;

    margin: 0 auto 6vh auto;
    padding: 3vh;

    background-color: white;
    border-color: red;
    border-width: 0;
    border-style: solid;
    
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
    border-left-width: 5px;
}


.upozornenie > h3 {
    font-size: 1.2rem;
    margin-bottom: 2vh;
}

.upozornenie > p {
    font-size: 1rem;
    margin-top: 1vh;
}


.scroll-divider {
    position: absolute;
    width: 100vw;
    height: 6px;
    
    display: grid;
    align-content: center;

    top: 0;
    right: 0;

    background-color: #E6DFED;
    border-top: 1px gray solid;
    border-bottom: 1px gray solid;
}

.scroll-divider__kruh {
    position: absolute;
    width: 50px;
    height: 50px;

    top: -25px;
    left: calc(50% - 30px);

    background-color: #E6DFED;

    border: 1px gray solid;
    border-radius: 10000px;
}

.dvojita-sipka-dole {
    position: absolute;
    display: block;
    width: fit-content;
    height: fit-content;
    
    top: 35%;
    left: 42.5%;

    transform:rotate(90deg);
    font-size: 1.5rem;
}

.zlty {
    background-color: #FEE5C7;
}


.founders-challenge {
    position: relative;
    display: block;
    width: 100%;
    height: 100vh;

    background-image: url("../res/founders_challenge_gradient.webp");
    background-repeat: repeat-x;
    background-size: auto 100%;
    z-index: -2;

    overflow-y: visible;
}

.founders-challenge__obrazok {
    position: absolute;
    width: calc(100vh * 1.596784996651038);
    height: 100vh;

    top: 0;
    right: -6vw;
    z-index: -1;

    background-image: url("https://i0.wp.com/ickk.sk/wp-content/uploads/2025/03/Founders-Finale-2025_LED_titulna.png?fit=2384%2C1493&ssl=1");
    background-size: auto 100%;
}

.fc-info {
    width: 30%;
    height: 100%;
    display: grid;

    margin-left: 5%;
    align-content: center;
}

.fc__nadnadpis {
    display: block;
    width: fit-content;
    height: fit-content;

    background-color: white;
    padding: 4px 8px;

    font-weight: 900;
    font-size: 1rem;
}

.fc__nadpis {
    display: block;
    width: 100%;
    height: fit-content;

    margin-top: 2%;
    margin-bottom: 3%;

    font-weight: 900;
    font-size: 2rem;
}

.fc__text {
    display: block;
    width: 100%;
    height: fit-content;

    margin-top: 3%;

    font-size: 1rem;
}

.fc__loga {
    margin-top: 2%;
}

.fc__logo {
    display: inline-block;
    width: 40%;
    height: auto;
    vertical-align: middle;
}

.fc__logo > img {
    width: 100%;
    height: 100%;
}


@media (max-width: 1264px) {

    .founders-challenge__obrazok {
        right: -10vw;
    }
}


@media (max-width: 1132px) {

    .founders-challenge {
        background: #FEE5C7;
        height: fit-content;
    }

    .founders-challenge__obrazok {
        position: unset;
        width: 100vw;
        height: calc(100vw / 1.596784996651038);

        background-size: 100vw auto;
        background-position-x: center;
        background-position-y: center;
        background-repeat: no-repeat;
    }

    .fc-info {
        width: fit-content;
        height: fit-content;
        margin: 0 10%;
        margin-bottom: 5%;
    }

    .fc__logo {
        width: 50%;
    }
}