* {
                margin: 0;
                padding: 0;
                box-sizing: border-box;
}


@font-face {
        font-family: 'Galano';
        src: url('../font/galano.otf') format('opentype');
    }

header h1 a{
        font-family: 'Galano', sans-serif;
    }


.subitem {
                background: #323232;
    margin: 8px 0;
    height: 2.8em;
    line-height: 2.8em;
    text-indent: 3.75em;
    display: block;
    position: relative;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 1em;
    font-weight: 500;
    color: #fff;
    border-radius: 10px;
    margin: 10px 5px 10px 0;
}

#accordion li {
                list-style-type: none;
}

#wraper {
    width: 100%;
    margin-top: 40px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}



@keyframes gradientBorder {
    0% {
        border-image-source: linear-gradient(to right, red, black);
    }
    50% {
        border-image-source: linear-gradient(to bottom, red, black);
    }
    100% {
        border-image-source: linear-gradient(to left, red, black);
    }
}


.main-container {
    width: 100%;
    padding: 20px;
    align-items: center;
}

.video-container {
    width: 100%;
    height: auto;
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

@media (min-width: 576px) {
    .main-container {
        width: 100%;
    }
}

@media (min-width: 768px) {
    .main-container {
        width: 100%;
    }
}

@media (min-width: 992px) {
    .main-container {
        width: 100%;
    }
}

@media (min-width: 1200px) {
    .main-container {
        width: 80%;
    }
}

.hover\:shadow-red-glow:hover {
    box-shadow: 0 0 10px 2px rgba(255, 0, 0, 0.5);
    animation: gradientBorder 2s infinite;
    & img {
        filter: grayscale(100%);
        transform: scale(1.1);
    }
}