.custom_information_first {
    display: flex;
    justify-content: center;
    width: 100%;
    flex-direction: column;
}
.custom_information_first_content {
    margin: 100px auto;
    width: 70%;
}
.custom_information_first_contact {
    margin: 50px auto;
    display: flex;
    gap: 20px;
    justify-content: center;
}
.custom_information_first_contact_wizard {
    all: unset;
    background-color: #1BB76D;
    padding: 10px;
    color: white;
    cursor: pointer;
}
.custom_information_first_content_elements {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 5px;
}
.custom_information_first_content_element {
    background-color: #A9A9A9;
    border: 2px solid #A9A9A9;
    border-bottom: none;
    color: #f7f7f7;
    padding: 10px;
    text-align: center;
    transition: ease-in-out 200ms;
    cursor: pointer;
    display: block;
    font-weight: normal;
    font-size: 16px;
    margin: 0;
    text-transform: uppercase;
}
.custom_information_first_content_element_aktiv {
    background-color: white;
    border-color: #1BB76D;
    color: #494949;
}
.custom_information_first_content_text {
    background-color: white;
    border: 2px solid #1BB76D;
    padding: 20px;
}
.custom_information_first_content_text_inhalt {
    display: none;
    flex-direction: column;
    min-height: 400px;
}
.custom_information_first_content_text_inhalt p{
    font-weight: 600;
}
.custom_information_first_content_text_inhalt a{
    color: #1BB76D;
}
.active_inhalt {
    display: flex;
}
.custom_information_first_content_text_h3 {
    font-weight: bolder;
    font-size: 20px;
}

.custom_information_second {
    margin: 100px auto 0;
    display: flex;
    justify-content: center;
    width: 100%;
    flex-direction: column;
}
.custom_information_second_content {
    margin: 50px auto;
    width: 70%;
}
.custom_information_second_content_grid {
    display: grid;
    grid-template-columns: 3fr 5fr 5fr 5fr;
    gap: 10px;
    overflow-x: auto;
    height: 100%;
}
.custom_information_second_content_grid_element {
    border-right: 2px solid #5F5F5F;
    display: flex;
    flex-direction: column;
    font-style: italic;
    color: #5F5F5F;
    gap: 50px;
    padding: 0 10px;
    height: 100%;
}
.custom_information_second_content_grid_element:last-child {
    border-right: none;
}
.custom_information_second_content_grid_element p {
    display: flex;
    align-items: center;
    gap: 5px;
    height: 70px;
    width: 300px;
}
.custom_information_second_content_grid_element:first-child p {
    width: 200px;
    text-align: end;
}
.custom_information_second_content_grid_element span {
    width: 80%;
}
.custom_information_second_content_grid_element_icon_done {
    background-image: url("../img/icons/done.svg");
    width: 30px;
    height: 30px;
    background-size: cover;
    display: inline-block;
}
.custom_information_second_content_grid_element_icon_notdone {
    background-image: url("../img/icons/cancel.svg");
    width: 30px;
    height: 30px;
    background-size: cover;
    display: inline-block;
}
.custom_information_second_logo {
    width: 100px;
    height: 100px;
    background-image: url("../img/icons/main_logo.svg");
    background-size: cover;
    background-repeat: no-repeat;
}

.custom_information_third {
    padding: 50px 0 0 0;
    margin: 0 auto;
}
.custom_information_third_content {
    display: flex;
    padding-right: 10%;
    margin-top: 100px;
}
.custom_information_third_content_img {
    width: 50%;
    max-width: 100%;
    overflow: hidden;
    display: flex;
}
.custom_information_third_content_img img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
}
.custom_information_third_content_text {
    width: 50%;
}
.custom_information_third_content_text_willy {
    padding: 10px;
    width: fit-content;
    border: 2px solid #1BB76D;
}
.custom_information_third_content_text_willy_h3 {
    all: unset;
    font-weight: 700;
    font-size: 16px;
}
.custom_information_third_content_text_willy_info {
    font-size: 14px;
}
.custom_information_third_content_text_willy li {
    line-height: 25px;
}
.custom_information_third_content_text_easyce {
    display: flex;
    flex-direction: column;
}
.custom_information_third_small {
    display: none;
    width: 100%;
    justify-content: center;
    align-items: center;
}
.custom_frame {
    width: 300px;
    height: 300px;
    position: relative;
    /*clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);*/
    overflow: hidden;
    margin-bottom: -50px;
}
.custom_frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    clip-path: inherit;
}

@media (max-width: 1000px) {
    .custom_information_third_content_img {
        display: none;
    }
    .custom_information_third_small {
        display: flex;
    }
    .custom_information_third_content_text {
        width: 100%;
    }
    .custom_information_third_content {
        padding-left: 10%;
    }
    .custom_information_second_content {
        width: 95%;
    }
    .custom_information_first_content_element {
        border-bottom: 2px solid #A9A9A9;
    }
}
@media (max-width: 600px) {
    .custom_information_first_content {
        width: 100%;
    }
    .custom_information_first_contact {
        flex-direction: column;
    }
    .custom_information_first_contact a {
        margin-left: 0;
        text-align: center;
    }
}