.language-switcher {
    /* margin: 20px; */
    /* text-align: right; */
}
.top-header-nav .language-switcher li a {
    /* margin: 0 10px; */
    /* text-decoration: none; */
    /* font-weight: bold; */
    color: #333;
}
.language-switcher a.active {
    color: #FF9529;
}

.top-header-nav .language-switcher li a.active {
    color: #FF9529;
}

.subscribe-form .button {
    background-color: #ff9900;
    clip-path: polygon(0 0, 100% 0%, 85% 100%, 0 100%);
    padding: 0 35px 0 30px;
    height: 45px;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: -0.2px;
    color: #222;
    line-height: 45px;
    text-align: center;
}

/* 001F54 */

/* Preloader Wrapper */
.site-preloader {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #f4f4f4; /* Light background */
    z-index: 9999;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
}

/* Circle Loader */
.circle-loader {
    border: 4px solid rgba(58, 31, 39, 0.2); /* Lighter burgundy for background */
    border-top: 4px solid #3A1F27; /* Dark burgundy for the rotating part */
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin 1s linear infinite;
}

/* Spin animation */
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
