#pageSpinner {
    position: fixed;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,0.35);
    backdrop-filter: blur(1px);
    z-index: 2000;
}
#pageSpinner.show { display: flex; }
#pageSpinner .spinner {
    width: 48px;
    height: 48px;
    border: 4px solid rgba(255,255,255,0.25);
    border-top-color: red;
    border-radius: 50%;
    animation: spin 0.9s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
body.lang-loading { cursor: progress; }
.header {
    min-height: 60vh !important;
    background-color: rgba(0,0,0,0.6);
}
.header .navbar-nav .nav-link { margin: 0; }
.header .navbar-nav { flex-wrap: wrap; }
@media (min-width: 768px) {
    .header .navbar-nav { flex-wrap: nowrap; }
}
.header .navbar-nav .nav-link { margin: 0; }
.logo img {
    width: 250px;
}
.footer-logo img {
    height: 70px;
}
.color-red {
    color: red !important;
}
.color-secondary {
    color: gray !important;
}
.color-primary {
    color: #CC3333 !important;
}
.font-weight-bold {
    font-weight: bold !important;
}
.background-gray {
    background-color: #e0e0e0;
}
.news-item-img {
    width: 150px;
    height: 100px;
    object-fit: cover;
}
.border-secondary {
    border-color: #c0c0c0 !important;
}
.video-main {
    height: 400px;
}
.additional-video {
	height: 170px;
}
.border-radius-10 {
    border-radius: 10px;
}
.contact-img {
    width: 200px;
    height: 200px;
    border-radius: 200px;
}
.support-img {
	display: block;
    height: 90px;
    max-height: 90px;
    max-width: 180px;
    width: auto;
    object-fit: contain;
    margin: 0 auto;
}
.btn-outline-danger.bg-white {
    border-radius: 20px !important;
}
.btn-outline-danger.bg-white:hover {
    background-color: #CC3333 !important;
}
.socials .social-btn { width: 100%; }
@media (max-width: 768px) {
    .socials .social-btn { width: auto; }
    .news-item-img {
        width: 100%;
        height: inherit;
    }
    .video-main {
        height: 300px;
    }
    .additional-video {
        width: 100%;
        height: 300px;
    }
    .contact-img {
        width: 70px;
        height: 70px;
        border-radius: 70px;
    }
}
.active-lang {
    color: white !important;
    font-weight: bold;
}