section.service {
    padding: 50px 0;
}
section.service h2, section.service p {
    text-align: center;
}
section.service .hr {
    margin: 20px auto;
}
section.service .produkte-wrapper {
    display: flex;
    justify-content: center;
    gap: 25px;
    padding: 30px 0;
}
section.service .produkte-wrapper .produkte-item {
    width: 425px;
    padding: 15px;
    background-color: var(--main-blue);
    color: var(--main-white);
    text-align: center;
}
section.service .produkte-wrapper .produkte-item p {
    color: var(--main-white);
    text-align: center;
}
section.service .produkte-wrapper .produkte-item h3 {
    color: var(--main-white);
}
section.service .produkte-wrapper .produkte-item .hr {
    margin: 20px auto;
    border-bottom: 2px solid var(--main-white);
}
section.service .download-area {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    text-align: left;
    padding: 10px 5%;
}
section.service .download-area ul {
    list-style: none;
}
section.service .download-area ul li {
    padding: 2px 0;
}
section.service .download-area ul li a {
    color: var(--main-white);
}
section.service .download-area ul li:before {
    font-family: "Font Awesome 5 Free";
    content: "\f56d";
    display: inline-block;
    padding-right: 10px;
    margin-top: 1px;
    vertical-align: top;
    font-weight: 900;
    color: var(--main-white);
    text-rendering: optimizeLegibility;
}
section.service .more-button-wrapper {
    display: flex;
    align-self: center;
    justify-content: center;
}
section.service .more-button {
    display: inline-block;
    margin: 0 auto;
    padding: 5px;
    cursor: pointer;
    border: 2px solid var(--main-blue);
}
.less {
    max-height: 150px;
    overflow: hidden;
    -webkit-transition: max-height .5s ease-in-out;
    -moz-transition: max-height .5s ease-in-out;
    transition: max-height .5s ease-in-out;
}
.more {
    height: auto;
    max-height: 1000px;
    -webkit-transition: max-height .5s ease-in-out;
    -moz-transition: max-height .5s ease-in-out;
    transition: max-height .5s ease-in-out;
}
section.download {
    padding: 50px;
    background-color: var(--main-blue);
}
.download-container {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    grid-column-gap: 0;
    align-items: start;
}
.download-container .download-item {
    text-align: center;
    margin: 0 auto;
    padding: 25px 0;
}
section.download .download-container h3, section.download .download-container p, section.download .download-container i{
    color: var(--main-white);
}
section.download .download-container .hr {
    margin: 20px auto;
    border-bottom: 2px solid var(--main-white);
}
section.download .download-button {
    display: inline-block;
    width: auto;
    padding: 10px 20px;
    margin: 20px 0;
    border: 2px solid var(--main-white);
    cursor: pointer;
}
section.download .download-button span{
    font-weight: 700;
    color: var(--main-white);
    margin: 0 auto;
}
section.frame-container {
    padding: 50px 0;
    text-align: center;
}
section.frame-container h2, section.frame-container p {
    text-align: center;
}
section.frame-container .hr {
    margin: 20px auto;
}
section.frame-container img {
    display: block;
    margin: 20px auto;
}
.frame-wrapper {
    margin: 50px auto 0;
    padding: 10px;
    width: calc(90% - 50px);
    height: auto;
    border: 2px solid var(--main-blue);
}
.frame-wrapper iframe {
    min-width: 100%;
    height: 550px;
}
.frame-wrapper .credits {
    text-align: left;
    margin-top: 5px;
    font-size: 13px;
    color: var(--main-black);
    border-top: 1px solid var(--main-blue);
}
.frame-wrapper .credits span{
    cursor: pointer;
}
.frame-wrapper .credits span:hover{
    color: var(--main-blue);
}
.frame-wrapper .button {
    display: inline-block;
    width: auto;
    padding: 10px 20px;
    margin: 20px 0;
    border: 2px solid var(--main-blue);
    cursor: pointer;
    -webkit-transition: all .5s ease-in-out;
    -moz-transition: all .5s ease-in-out;
    transition: all .5s ease-in-out;
}
.frame-wrapper .button.btn-disabled {
    display: inline-block;
    width: auto;
    padding: 10px 20px;
    margin: 20px 0;
    border: 2px solid darkgrey;
    cursor: not-allowed;
    color: darkgrey;
    -webkit-transition: all .5s ease-in-out;
    -moz-transition: all .5s ease-in-out;
    transition: all .5s ease-in-out;
}
.frame-wrapper .cookie-wrapper {
    display: block;
    width: 450px;
    text-align: center;
    padding: 25px;
    margin: 0 auto;
    -webkit-transition: all .5s ease-in-out;
    -moz-transition: all .5s ease-in-out;
    transition: all .5s ease-in-out;
}
.frame-wrapper .cookie-wrapper i {
    text-align: center;
    font-size: 50px;
    color: var(--main-blue);
    margin-bottom: 25px;
    -webkit-transition: all .5s ease-in-out;
    -moz-transition: all .5s ease-in-out;
    transition: all .5s ease-in-out;
}

@media only screen and (max-width: 1625px) {
    section.service .produkte-wrapper .produkte-item {
         max-width: 350px;
     }
}
@media only screen and (max-width: 1450px) {
    section.service .produkte-wrapper .produkte-item {
        max-width: 300px;
    }
}
@media only screen and (max-width: 1250px) {
    section.service .produkte-wrapper .produkte-item {
        max-width: 250px;
    }
    .download-container .download-item:nth-child(1) {
        max-width: 1000px;
        width: 100%;
    }
}
@media only screen and (max-width: 1130px) {
    .download-container {
        display: block;
    }
}
@media only screen and (max-width: 1110px) {
    section.service {
        padding-bottom: 0;
    }
    section.service .produkte-wrapper {
        flex-direction: column;
    }
    section.service .produkte-wrapper .produkte-item {
        max-width: 450px;
        width: 90%;
        margin: 25px auto;
    }
    .less {
        max-height: 1000px;
        overflow: auto;
    }
    section.service .more-button-wrapper {
        display: none;
    }
}
@media only screen and (max-width: 650px) {
    .frame-wrapper .cookie-wrapper {
        max-width: 450px;
        padding: 10px;
        width: calc(100% - 10px);
    }
    .frame-wrapper iframe {
        width: 100%;
    }
}
