h2.asns-title-images-or-videos-with-faq-title {
    text-align: center;
}

.asns-title-images-or-videos-with-faq-images-menu-container {
    position: relative;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: flex-start;
}

.asns-title-images-or-videos-with-faq-media-ratio {
    width: 100%;
    aspect-ratio: 36 / 25;
}

.asns-title-images-or-videos-with-faq-media-container {
    position: relative;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    flex: 1 1 50%;
    border-radius: 30px;
    overflow: hidden;
}

.asns-title-images-or-videos-with-faq-media {
    position: absolute;
    inset: 0;
    display: flex;
    opacity: 0;
    z-index: -100;
    pointer-events: none;
    transition: all .3s ease-in-out;
}

.asns-title-images-or-videos-with-faq-media.selected {
    opacity: 1;
    z-index: 1;
    transition: all .3s ease-in-out;
}



.asns-title-images-or-videos-with-faq-media iframe,
.asns-title-images-or-videos-with-faq-media img,
.asns-title-images-or-videos-with-faq-media video {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.asns-title-images-or-videos-with-faq-media iframe {
    pointer-events: all;
}

.asns-title-images-or-videos-with-faq-accordion-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex-wrap: wrap;
    flex: 1 1 50%; 
    padding-left: 2%;
    align-self: stretch;
}




.asns-title-images-or-videos-with-faq-accordion-item {
    display: flex;
    flex-direction: column;
    min-height: 100px;
    min-width: 100%;
    border-bottom: 1px solid #52B9A5;
    transition: all .3s ease-in-out;
}

.asns-title-images-or-videos-with-faq-accordion-item:first-of-type {
    border-top: 1px solid #52B9A5;
}

.asns-title-images-or-videos-with-faq-accordion-title-container {
    display: flex;
    flex-direction: row;
    min-height: 100px;
    min-width: 100%;
    transition: all .3s ease-in-out;
}

.asns-title-images-or-videos-with-faq-accordion-title-container h3 {
    position: relative;
    display: flex;
    flex-direction: row;
    font-family: 'Metropolis';
    font-size: var(--font-size-30);
    font-weight: normal;
    min-height: 100px;
    min-width: 100%;
    align-items: center;
    margin: 0;
    padding-right: 70px;
    transition: all .3s ease-in-out;
}

.asns-title-images-or-videos-with-faq-accordion-title-container h3.initial,
.asns-title-images-or-videos-with-faq-accordion-title-container h3.selected,
.asns-title-images-or-videos-with-faq-accordion-title-container h3:hover {
    font-weight: 500;
    transition: all .3s ease-in-out;
}

.asns-title-images-or-videos-with-faq-accordion-title-container h3::after {
    position: absolute;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    font-family: 'Metropolis';
    font-size: var(--font-size-30);
    font-weight: normal;
    content: '+';
    right: 0;
    height: 60px;
    width: 60px;
    border-radius: 100px;
    background-color: #F5F4EC;
    transition: all .3s ease-in-out;
}

.asns-title-images-or-videos-with-faq-accordion-title-container h3.collapsed.selected::after {
    content: '+';
    transition: all .3s ease-in-out;
}

.asns-title-images-or-videos-with-faq-accordion-title-container h3.selected::after {
    content: '-';
    transition: all .3s ease-in-out;
}


.asns-title-images-or-videos-with-faq-accordion-title-container h3.collapsed {
    display: flex;
    flex-direction: row;
    align-items: center;
    font-weight: normal;
    min-height: 100px;
    min-width: 100%;
    margin: 0;
    transition: all .3s ease-in-out;
}

.asns-title-images-or-videos-with-faq-accordion-title-container h3.collapsed:hover {
    font-weight: 500;
    transition: all .3s ease-in-out;
}

/* .asns-title-images-or-videos-with-faq-accordion-title-container h3:not(.collapsed)::before, */
.asns-title-images-or-videos-with-faq-accordion-title-container h3.selected::before,
.asns-title-images-or-videos-with-faq-accordion-title-container h3.initial::before {
    display: inline-block;
    content: '';
    height: 15px;
    width: 15px;
    border-radius: 50px;
    margin-right: 10px;
    background-color: var(--list-style-color);
}

.asns-title-images-or-videos-with-faq-accordion-content-container {
    font-family: 'Metropolis';
    font-size: var(--font-size-22);
    font-weight: normal;
    padding: 0 60px 30px 25px;
}

.asns-title-images-or-videos-with-faq-accordion-content-container p:last-of-type {
    margin: 0;
}

.asns-title-images-or-videos-with-faq-accordion-title-item.selected:hover {
    font-weight: 500;
    cursor: pointer;
    transition: all .3s ease-in-out;
}

.asns-title-images-or-videos-with-faq-accordion-title-item.selected {
    font-weight: 500;
    transition: all .3s ease-in-out;
}



                    

/* Mobiel */
@media(max-width: 767px) {
    #asns-title-images-or-videos-with-faq-wrapper {
        margin: 70px 0!important;
    }
    .asns-title-images-or-videos-with-faq-images-menu-container {
        flex-direction: column;
    }

    .asns-title-images-or-videos-with-faq-media-container {
        width: 100%;
        margin-bottom: 35px;
    }

    .asns-title-images-or-videos-with-faq-accordion-title-container h3::after {
        font-size: var(--font-size-30);
        height: 50px;
        width: 50px;
        transition: all .3s ease-in-out;
    }

    /* .asns-title-images-or-videos-with-faq-accordion-title-container h3:not(.collapsed)::before, */
    .asns-title-images-or-videos-with-faq-accordion-title-container h3.selected::before,
    .asns-title-images-or-videos-with-faq-accordion-title-container h3.initial::before {
        position: relative;
        top: -3px;
        display: inline-block;
        content: '';
        height: 14px;
        width: 14px;
        border-radius: 50px;
        margin-right: 10px;
        background-color: var(--list-style-color);
    }

}


/* ---- TABLET - PORTRAIT ---- */
@media (min-width: 768px) and (max-width: 1024px) and (orientation: portrait) {
    .asns-title-images-or-videos-with-faq-images-menu-container {
        flex-direction: column;
    }

    .asns-title-images-or-videos-with-faq-media-container {
        width: 100%;
        margin-bottom: 35px;
    }

    .asns-title-images-or-videos-with-faq-accordion-title-container h3::after {
        font-size: var(--font-size-30);
        height: 50px;
        width: 50px;
        transition: all .3s ease-in-out;
    }

    /* .asns-title-images-or-videos-with-faq-accordion-title-container h3:not(.collapsed)::before, */
    .asns-title-images-or-videos-with-faq-accordion-title-container h3.selected::before,
    .asns-title-images-or-videos-with-faq-accordion-title-container h3.initial::before {
        position: relative;
        top: -3px;
        display: inline-block;
        content: '';
        height: 14px;
        width: 14px;
        border-radius: 50px;
        margin-right: 10px;
        background-color: var(--list-style-color);
    }
}

/* ---- TABLET - LANDSCAPE ---- */
@media (min-width: 768px) and (max-width: 1200px) and (orientation: landscape) {
    .asns-title-images-or-videos-with-faq-images-menu-container {
        flex-direction: row;
    }

    .asns-title-images-or-videos-with-faq-container {
        flex-direction: row;
        padding-left: 0;
    }

    .asns-title-images-or-videos-with-faq-media-container {
        width: 100%;
        margin-bottom: 35px;
    }


    .asns-title-images-or-videos-with-faq-accordion-title-container h3::after {
        font-size: var(--font-size-30);
        height: 50px;
        width: 50px;
        transition: all .3s ease-in-out;
    }

    /* .asns-title-images-or-videos-with-faq-accordion-title-container h3:not(.collapsed)::before, */
    .asns-title-images-or-videos-with-faq-accordion-title-container h3.selected::before,
    .asns-title-images-or-videos-with-faq-accordion-title-container h3.initial::before {
        position: relative;
        top: -3px;
        display: inline-block;
        content: '';
        height: 14px;
        width: 14px;
        border-radius: 50px;
        margin-right: 10px;
        background-color: var(--list-style-color);
    }
}


