* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    list-style: none;
    text-decoration: none;
    font-family: 'Roboto', sans-serif;
}

body {
    background: #e3e9ef;
    overflow-x: hidden;
}

img {
    width: 100%;
    display: block;
}

/*H1 nadpis na stránke*/
.heading {
    display: block;
    align-content: center;
    height: 17vh;
    background-color: #DA0037;
}

.heading h1 {
    margin-left: 10%;
    font-size: 2rem;
    color: #e0e0e0;
}

/*Hlavná sekcia stránky*/
.onas-section {
    display: flex;
    flex-direction: row;
    margin-top: 5%;
    justify-content: center;
}

.onas-text {
    max-width: 30%;
    margin-right: 10%;
    align-content: center;
}

.onas-text h2 {
    font-size: 2.5rem;
    margin-bottom: 35px;
}

.onas-text p {
    font-size: 1.2rem;
    line-height: 1.6rem;
}

.onas-foto {
    width: 35%;
}

/*Responzivita hlavnej sekcie*/
@media (max-width: 1000px) {
    .onas-section {
        flex-direction: column;
        justify-content: space-around;
    }

    .onas-text {
        max-width: 100%;
        margin-left: 5%;
        margin-right: 5%;
    }

    .onas-foto {
        width: fit-content;
        margin-left: 5%;
        margin-right: 5%;
        margin-top: 5%;

    }
}

/*Statistika number counter*/
.div-statistika {
    display: flex;
    justify-content: center;
    margin-top: 5%;
}

.statistika {
    display: flex;
    width: 80vw;
    justify-content: space-around;
    gap: 10px;

}

.container {
    width: 28vmin;
    height: 28vmin;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    padding: 1em 0;
    position: relative;
    font-size: 1rem;
    border-radius: 0.5em;
    background-color: #21242b;
}

i {
    color: #DA0037;
    font-size: 2.5em;
    text-align: center;
}

span.cislo {
    color: #ffffff;
    display: grid;
    place-items: center;
    font-weight: 600;
    font-size: 3em;
}

span.text {
    color: #e0e0e0;
    font-size: 1em;
    text-align: center;
    pad: 0.7em 0;
    font-weight: 400;
    line-height: 0;
}

/*statistika responzivita*/
@media screen and (max-width: 1024px) {
    .statistika {
        width: 85vw;
    }

    .container {
        height: 26vmin;
        width: 26vmin;
        font-size: 12px;

    }
}

@media (max-width: 768px) {
    .statistika {
        width: 90vw;
        flex-wrap: wrap;
        gap: 30px;
    }

    .container {
        width: calc(50% - 40px);
        height: 30vmin;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .statistika {
        gap: 15px;
    }

    .container {
        height: 25vmin;
        font-size: 8px;
    }
}

/*Call to action long sekcia*/
.call-to-action-long {
    display: flex;
    justify-content: space-around;
    padding-top: 4%;
    padding-bottom: 4%;
    padding-left: 1%;
    padding-right: 1%;
    margin-top: 5%;
    background-color: #DA0037;
}

.cta-text {
    align-content: center;
    margin-right: 1px;
}

.cta-text h2 {
    font-size: 3rem;
    padding-bottom: 2%;
    color: #e3e9ef;
}



.cta-text p {
    font-size: 1.2rem;
    line-height: 1.6rem;
    color: #e3e9ef;
}

.cta-num-btn {
    display: block;
    text-align: center;
}

.cta-button {
    background-color: rgb(17, 17, 17);
    color: #e3e9ef;
    border-radius: 21px;
    display: inline-block;
    font-size: 2rem;
    font-weight: 700;
    padding: 30px 70px;
    margin: 20px 0 20px 0;
    text-decoration: none;
    border: 2px solid #21242b;
}

.cta-button:hover {
    background-color: #DA0037;
    color: #e3e9ef;
    transition: 0.2s;
    border: 2px solid #e3e9ef;
}

@media (max-width: 640px) {
    .cta-text h2 {
        font-size: 2rem;
        padding-bottom: 2%;
    }

    a.cta-button {
        font-size: 1.5rem;
        font-weight: 700;
        padding: 25px 40px;
        margin: 20px 0 20px 0;
        text-decoration: none;
    }

}

/*Call to action long responzivita*/
@media (max-width: 1055px) {
    .call-to-action-long {
        flex-direction: column;
    }

    .cta-text {
        display: block;
        text-align: center;
    }
}

/*sekndárna sekcia*/
.onas-section2 {
    display: flex;
    flex-direction: row-reverse;
    margin-top: 10%;
    margin-bottom: 10%;
    justify-content: center;
}

.onas-text2 {
    max-width: 30%;
    margin-left: 10%;
    align-content: center;
}

.onas-text2 h2 {
    font-size: 2.5rem;
    margin-bottom: 35px;
}

.onas-text2 p {
    font-size: 1.2rem;
    line-height: 1.6rem;
}

/*Responzivita sekundárnej sekcie*/
@media (max-width: 1000px) {
    .onas-section2 {
        flex-direction: column;
        justify-content: space-around;
    }

    .onas-text2 {
        max-width: 100%;
        margin-left: 5%;
        margin-right: 5%;
    }
}