section.fragen {
    text-align: center;
    padding: 50px 3%;
}

section.fragen .fragenContainer {
    display: flex;
    flex-wrap: wrap;
    margin-top: 50px;
    justify-content: space-evenly;
}

section.fragen .fragenContainer .frage {
    display: flex;
    align-items: center;
    text-align: left;
    width: 30%;
}

section.fragen .fragenContainer .frage:last-child {
    width: 35%;
}

section.fragen .fragenContainer .frage p {
    font-size: 25px;
    color: var(--blue);
}

section.fragen .fragenContainer .frage img {
    width: 50px;
    height: 50px;
    object-fit: contain;
    padding: 5px;
    border: 1.5px solid var(--gold);
    border-radius: 50%;
    margin: 0 10px 0 20px;
}

@media screen and (max-width: 1600px) {
    section.fragen .fragenContainer .frage p {
        font-size: 20px;
    }
}

@media screen and (max-width: 1300px) {
    section.fragen .fragenContainer .frage img {
        width: 40px;
        height: 40px;
    }

    section.fragen .fragenContainer .frage p {
        font-size: 15px;
    }
}

@media screen and (max-width: 1100px) { 
    section.fragen .fragenContainer .frage img {
        width: 30px;
        height: 30px;
    }

    section.fragen .fragenContainer .frage p {
        font-size: 12px;
    }
}

@media screen and (max-width: 900px) {
    section.fragen .fragenContainer .frage img {
        width: 25px;
        height: 25px;
        margin: 0 5px 0 10px;
    }

    section.fragen .fragenContainer .frage p {
        font-size: 10px;
    }
}

@media screen and (max-width: 700px) {
    section.fragen .fragenContainer .frage {
        width: 45%;
    }

    section.fragen .fragenContainer .frage:last-child {
        /* width: 35%; */
    }

    section.fragen .fragenContainer .frage:nth-child(3) {
        flex-basis: 100%;
        display: flex;
        justify-content: center;
        margin: 15px 25% 0 25%;
    }
}