.content {
    margin-top: 8rem
}

.content .images-carousel {
    width: 100%;
    height: 25rem;
    min-height: 25rem
}

@media screen and (min-width: 992px) {
    .content .images-carousel {
        min-height: 30rem;
        height: 50vh
    }
}

.content .indicator {
    margin-right: .5rem;
    display: inline-block;
    width: .9rem;
    height: .9rem;
    border-radius: 9999px;
    background-color: var(--orange-main, #ffa500)
}

.content .indicator.blue {
    background-color: #2626b4
}

.content .indicator:where([dir=rtl],[dir=rtl] *) {
    margin-left: .5rem;
    margin-right: unset
}

.responsive-iframe-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
}

.responsive-iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

@media (min-width: 768px) {
    .responsive-iframe-container {
        padding-bottom: 50%; /* Adjust aspect ratio for larger screens */
    }
}

@media (min-width: 1024px) {
    .responsive-iframe-container {
        padding-bottom: 42%; /* Adjust aspect ratio for even larger screens */
    }
}