.youtube_videos {
    display: flex;
    gap: 20px;
    margin: 20px 0;
}

.youtube_videos .left,
.youtube_videos .right {
    width: 50%;
}

.youtube_videos iframe {
    width: 100%;
    aspect-ratio: 16/9;
    border: none;
}

@media screen and (max-width: 1000px) {
    .youtube_videos {
        flex-wrap: nowrap;
        overflow-x: auto;
        padding-bottom: 10px;
    }

    
    .youtube_videos .left,
    .youtube_videos .right {
        width: 300px;
        flex-shrink: 0;
    }
}

@media screen and (max-width: 768px) {
    .youtube_videos .left,
    .youtube_videos .right {
        width: 280px;
    }
    .instagram_live iframe {
        height: 450px !important;
    }
}

@media screen and (max-width: 480px) {
    .youtube_videos .left,
    .youtube_videos .right {
        width: 260px;
    }
}
.breadcrumbs {
    background: #f5f5f5;
    padding: 15px 0;
    position: absolute;
    top: 100px;
    width: 100%;
    z-index: 1;
}

.breadcrumbs ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.breadcrumbs li {
    position: relative;
    padding-right: 20px;
    margin-right: 10px;
    font-size: 14px;
    color: #666;
}

.breadcrumbs li:not(:last-child):after {
    content: '/';
    position: absolute;
    right: 0;
    color: #999;
}

.breadcrumbs li a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s;
}

.breadcrumbs li a:hover {
    color: #000;
}

.breadcrumbs li:last-child {
    color: #000;
    padding-right: 0;
    margin-right: 0;
}

.breadcrumbs li:last-child:after {
    display: none;
}
