                                      h1 {
    font-size: 50px;
    font-weight: bold;
    text-align: ;
    padding: 50px 0;
}

.content {
    /* background-color: #f5f5f5; */
    background-color: white;
    padding: 25px 10% 100px 10%;
    box-sizing: border-box;
    font-size: 18px;
}

.main-news {
    width: 100%;
    box-sizing: border-box;
    display: flex;
    margin-bottom: 50px;
    background-color: white;
}

.main-news-image {
    width: 40%;
}

.main-news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    aspect-ratio: 1.33;
}

.main-news-content {
    padding: 50px;
    box-sizing: border-box;
    width: 60%;
}

.main-news-title {
    font-size: 30px;
    font-weight: bold;
    margin-bottom: 20px;
}

.main-news-content p {
    font-size: 30px;
}

.main-news-date {
    margin-top: 25px;
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 25px;
}

.main-news-date img {
    width: 50px;
    height: 50px;
}

.main-news-date p {
    font-size: 25px;
}

.news-row {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 50px;
    gap: 25px;
}

.news {
    min-width: 250px;
    transition: 0.5s;
    background-color: white;
    padding-bottom: 10px;
    flex: 1;
    max-width: 362.25px;
}

.news:hover {
    transform: scale(1.025);
}

.news img {
    width: 100%;
    aspect-ratio: 1.33;
}

.news-title {
    font-size: 20px;
    font-weight: bold;
    padding: 15px 10px;
}

.news p {
    padding: 0 10px;
}

.news-date {
    padding: 0 10px;
    margin-top: 15px;
    display: flex;
    gap: 15px;
}

.news-date img {
    width: 25px;
    height: 25px;
}

.news-two-in-line {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
}

.news-two img {
    width: 100%;
}

.news-two {
    flex: 1;
    background-color: white;
}

.news-two .news-title {
    font-size: 30px;
    margin-bottom: 20px;
}

.news-two p {
    padding: 0 10px;
    font-size: 25px;
}

.news-two .news-date img {
    width: 50px;
    height: 50px;
}

.news-two .news-date {
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 15px;
}

.news-two .news-date p {
    font-size: 25px;
}

@media (max-width: 1300px) {
    .content {
        padding: 25px 5% 50px 5%;
    }

    .main-news {
        flex-direction: column;
    }

    .main-news-image {
        width: 100%;
        aspect-ratio: 1.33;
    }

    .main-news-content {
        width: 100%;
        padding: 15px;
    }

    .main-news-title {
        font-size: 25px;
    }

    .main-news-content p {
        font-size: 18px;
    }

    .news-two .news-title {
        font-size: 25px;
        margin-bottom: 0;
    }

    .news-two p {
        font-size: 18px;
    }

    .news-two .news-date p {
        font-size: 18px;
    }
}

.aktualita {
    display: inline;
    flex-direction: row;
    justify-content: space-between;
    /* padding: 40px; */
    /*background-color: #262626;*/
    /*color: white;*/
    background-color: white;
    color: black;
    gap: 50px;
}

.aktualita-text {
    /* padding: 10px 10px 10px 10px; */
    /* width: 40%; */
    text-align: justify;
}

.aktualita-text p {
    margin: 0 0 30px 0;
    /*font-size: 22px;*/
}

.aktualita-text a {
    padding: 10px 35px;
    font-size: 20px;
}

.aktualita img {
    width: 30%;
    height: 100%;
    display: block;
    /* object-fit: cover; */
    /* object-position: center; */
    float: left;
    margin-right: 20px;
    margin-bottom: 20px;
}

.aktualita-image {
    /* width: 40%; */
}

.aktualita-clear {
clear:both;
}