:root {
    --main-color: #31463f;
    --main-color-a: #92602f;
    --main-color-a-hover: #a37e4e;
    --main-bg: #FFFFFF;
    --main-bg-box: #c9c1b7;
    --main-border-color: #9c897a;
    --accessibility-bg: #1e3029;
    --inscreva-bg: #d69a50;
    --inscreva-hover: #e8b06e;
    --font-size-base: 18px;
    --home-saiba-bg: rgba(255, 255, 255, 0.2);
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
/* Loader */
.home-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--main-bg);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    z-index: 9999;
    transition: opacity 0.5s, visibility 0.5s;
}
.home-loader.hidden {
    opacity: 0;
    visibility: hidden;
}
.home-loader-logo {
    background-color: var(--main-color);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
    margin-bottom: 30px;
    animation: pulse 2s infinite;
}
.home-loader-logo-text {
    color: white;
    font-size: 2rem;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
}
.home-loader-progress {
    width: 300px;
    height: 6px;
    background-color: #e0e0e0;
    border-radius: 3px;
    overflow: hidden;
}
.home-loader-progress-bar {
    height: 100%;
    width: 0%;
    background-color: var(--main-color-a);
    transition: width 0.3s;
}
@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}
body {
    font-family: 'Source Sans 3', sans-serif;
    font-optical-sizing: auto;
    color: #333;
    background-color: var(--main-bg);
    line-height: 1.6;
    font-size: var(--font-size-base);
    transition: background-color 0.3s, color 0.3s;
}
/* Padronização de títulos */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1rem;
}
h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.75rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1rem; }
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
/* Barra de acessibilidade */
.home-accessibility-bar {
    /*background: linear-gradient(135deg, var(--main-bg-box) 0%, #FFFFFF 100%);*/
    color: var(--main-color);
    padding: 10px 0;
    font-size: 0.95rem;
}
.home-accessibility-bar .container {
    display: flex;
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: 15px;
}
.home-accessibility-links {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
}
.home-accessibility-bar a {
    color: var(--main-color);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: all 0.3s;
    padding: 5px 12px;
    border-radius: 4px;
    white-space: nowrap;
    box-sizing: border-box;
}
.home-accessibility-bar a:hover {
    background-color: rgba(214, 154, 80, 0.15);
}
.home-accessibility-bar a.home-inscreva-btn {
    background-color: var(--main-color);
    font-weight: 600;
    padding: 6px 18px !important;
    border-radius: 4px;
    color: var(--main-bg);
    font-size: 1.05rem;
}
.home-accessibility-bar a.home-inscreva-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.home-accessibility-bar a.instagram-icon .fa-square-instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    transition: all 0.3s ease;
}

.home-accessibility-bar a.instagram-icon:hover .fa-square-instagram {
    transform: scale(1.1);
}

.home-accessibility-bar a.instagram-icon:hover{
    background-color: transparent;
}

.home-accessibility-bar a.larger-font {
    font-size: 2em;
}

/* Menu principal - MODIFICAÇÃO PRINCIPAL */
.home-main-menu {
    background: #1D453D;
    padding: 15px 0;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}
.home-main-menu .container {
    display: flex;
    flex-direction: row; /* Alterado para coluna */
    align-items: center;
}
.menu-top-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}
.home-logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--main-bg);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
}
.home-logo i {
    color: var(--main-color-a);
}

.home-logo img {
    max-height: 64px
}
.mobile-menu-btn {
    display: block;
    background: none;
    border: none;
    color: var(--main-bg);
    font-size: 1.8rem;
    cursor: pointer;
    padding: 5px 10px;
}
.home-nav-menu {
    display: flex;
    list-style: none;
    flex-wrap: nowrap;
}

.home-nav-menu li {
    position: relative;
    flex-shrink: 0;
}

.home-nav-menu a {
    color: var(--main-bg);
    text-decoration: none;
    padding: 12px 18px;
    display: flex;
    align-items: center;
    gap: 5px;
    font-weight: 500;
    transition: all 0.3s;
    white-space: nowrap;
    width: fit-content;
    box-sizing: border-box;
}

.home-nav-menu a:hover {
    background-color: var(--main-color-a);
}
.home-submenu {
    display: none;
    position: absolute;
    background-color: var(--main-bg);
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
    z-index: 100;
    border-radius: 0 0 8px 8px;
    overflow: hidden;
}
.home-submenu li a {
    color: var(--main-color);
    padding: 12px 15px;
    width: 100%;
}
.home-submenu li a:hover {
    background-color: var(--main-bg-box);
    color: var(--main-color);
}
.home-nav-menu li:hover .home-submenu {
    display: block;
}
/* Slideshow */
.home-slideshow {
    height: 500px;
    position: relative;
    overflow: hidden;
}
.home-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}
.home-slide.active {
    opacity: 1;
}
.home-slide-content {
    position: absolute;
    bottom: 80px;
    left: 0;
    width: 100%;
    text-align: center;
}
.home-slide-content h2 {
    color: white;
    font-size: 2.2rem;
    margin-bottom: 30px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.7);
    font-weight: 700;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 20px;
}
.home-slide-buttons {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}
.home-btn {
    padding: 14px 36px;
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    font-size: 1.05rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 6px 15px rgba(0,0,0,0.3);
}
.home-btn-inscreva {
    background-color: var(--main-color-a);
}
.home-btn-inscreva:hover {
    background-color: var(--main-color-a-hover);
    transform: translateY(-7px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.4);
}
.home-btn-saiba {
    background-color: var(--home-saiba-bg);
    border: 2px solid white;
}
.home-btn-saiba:hover {
    background-color: rgba(255,255,255,0.3);
    transform: translateY(-7px);
}
.home-countdown {
    background: linear-gradient(135deg, #2a3d36 0%, var(--main-color) 100%);
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.home-countdown:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('/viicbctem/static/image/img-destaque-03.jpg') center/cover;
    opacity: 0.15;
}
.home-countdown-title {
    color: var(--main-bg);
    margin-bottom: 50px;
    font-size: 2rem;
    font-weight: 800;
    position: relative;
}
.home-countdown-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
}
.home-countdown-box {
    background-color: rgba(255,255,255,0.1);
    border: 2px solid rgba(255,255,255,0.25);
    border-radius: 50%;
    width: 160px;
    height: 160px;
    padding: 15px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
    position: relative;
    overflow: hidden;
}
.home-countdown-box:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, transparent 50%, rgba(0,0,0,0.2) 100%);
}
.home-countdown-number {
    font-size: 3rem;
    font-weight: 800;
    color: white;
    text-shadow: 0 2px 6px rgba(0,0,0,0.4);
}
.home-countdown-label {
    font-size: 1.1rem;
    color: var(--main-bg);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    margin-top: 5px;
}
.home-countdown-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: rgba(255,255,255,0.7);
    font-weight: 300;
}
/* Inscrições */
.home-subscriptions {
    padding: 100px 0;
    background-color: #f8f6f3;
}
.home-section-title {
    text-align: center;
    margin-bottom: 60px;
    color: var(--main-color);
    position: relative;
}
.home-section-title:after {
    content: "";
    display: block;
    width: 120px;
    height: 5px;
    background: linear-gradient(90deg, var(--main-color-a), var(--main-color));
    margin: 25px auto;
    border-radius: 3px;
}
.home-subscriptions-container {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}
.home-subscription-box {
    background-color: var(--main-bg);
    border: 1px solid var(--main-border-color);
    border-radius: 15px;
    padding: 45px 35px;
    text-align: center;
    flex: 1;
    min-width: 320px;
    max-width: 400px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
    transition: all 0.4s ease;
    position: relative;
    z-index: 1;
    overflow: hidden;
}
.home-subscription-box:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--main-color-a), var(--main-color));
}
.home-subscription-box:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.18);
}
.home-subscription-icon {
    font-size: 3.5rem;
    color: var(--main-color-a);
    margin-bottom: 25px;
}
.home-subscription-title {
    color: var(--main-color);
    font-size: 1.6rem;
    margin-bottom: 20px;
    font-weight: 800;
}
.home-subscription-price {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--main-color-a);
    margin-bottom: 30px;
}
.home-subscription-features {
    list-style: none;
    margin-bottom: 35px;
    text-align: left;
}
.home-subscription-features li {
    padding: 12px 0;
    border-bottom: 1px solid #eee;
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.1rem;
}
.home-subscription-features li i {
    color: var(--main-color-a);
    min-width: 25px;
    font-size: 1.2rem;
}
/* Sobre o evento */
.home-about {
    padding: 120px 0;
    background: linear-gradient(rgba(255,255,255,0.85), rgba(255,255,255,0.85)), url('/viicbctem/static/image/img-destaque-06.jpg');
    background-size: cover;
    background-attachment: fixed;
    background-position: center;
}
.home-about-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    background-color: rgba(255,255,255,0.9);
    padding: 50px;
    border-radius: 15px;
    box-shadow: 0 10px 35px rgba(0,0,0,0.12);
}
.home-about-content p {
    margin-bottom: 25px;
    font-size: 1.15rem;
    line-height: 1.8;
}
/* Palestrantes */
.home-speakers {
    padding: 100px 0;
    background: linear-gradient(135deg, #f0ece8 0%, #e2ddd7 100%);
}
.home-speakers-container {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}
.home-speaker-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    width: 280px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}
.home-speaker-card:hover {
    transform: translateY(-10px);
}
.home-speaker-img {
    height: 250px;
    width: 100%;
    background-size: cover;
    background-position: center;
}
.home-speaker-info {
    padding: 25px;
    text-align: center;
}
.home-speaker-name {
    color: var(--main-color);
    margin-bottom: 8px;
}
.home-speaker-title {
    color: var(--main-color-a);
    font-weight: 600;
    margin-bottom: 15px;
}
/* Cidade */
.home-city {
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('/viicbctem/static/image/img-destaque-04.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: white;
    padding: 140px 0;
    text-align: center;
}
.home-city .container {
    max-width: 850px;
}
.home-city-title {
    margin-bottom: 40px;
    font-size: 2.8rem;
}
.home-city-text {
    margin-bottom: 40px;
    font-size: 1.2rem;
    line-height: 1.8;
}
/* Galeria */
.home-gallery {
    background: linear-gradient(135deg, var(--main-color) 0%, #1e3029 100%);
    padding: 100px 0;
}
.home-gallery-title {
    color: var(--main-bg);
    text-align: center;
    margin-bottom: 70px;
    font-size: 2.5rem;
}
.home-gallery-container {
    display: flex;
    overflow-x: auto;
    gap: 25px;
    padding: 25px 0;
    scroll-behavior: smooth;
    scrollbar-width: none;
}
.home-gallery-container::-webkit-scrollbar {
    display: none;
}
.home-gallery-item {
    flex: 0 0 auto;
    width: 380px;
    height: 280px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,0.4);
    transition: transform 0.3s;
    position: relative;
}
.home-gallery-item:hover {
    transform: translateY(-15px);
}
.home-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}
.home-gallery-item:hover img {
    transform: scale(1.1);
}
.home-gallery-item:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(transparent 60%, rgba(0,0,0,0.7));
}
.home-gallery-nav {
    display: flex;
    justify-content: center;
    margin-top: 40px;
    gap: 20px;
}
.home-gallery-btn {
    background-color: var(--main-color-a);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 1.4rem;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}
.home-gallery-btn:hover {
    background-color: var(--main-color-a-hover);
    transform: scale(1.15);
}
/* Mapa */
.home-map {
    height: 500px;
    width: 100%;
    position: relative;
}
.home-map:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(49, 70, 63, 0.1), rgba(49, 70, 63, 0.3));
    z-index: 1;
}
.home-map iframe {
    width: 100%;
    height: 100%;
    border: none;
}
/* Patrocinadores */
.home-sponsors {
    background-color: white;
    padding: 100px 0;
}
.home-sponsors-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 60px;
    padding: 0 20px;
}
.home-sponsor-item {
    flex: 0 0 220px;
    height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: white;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    transition: all 0.4s;
}
.home-sponsor-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
}
.home-sponsor-item img {
    max-width: 100%;
    max-height: 90px;
    filter: grayscale(30%);
    transition: filter 0.3s;
}
.home-sponsor-item:hover img {
    filter: grayscale(0);
}
/* Chamada para submissão */
.home-submission {
    padding: 100px 0;
    background: linear-gradient(rgba(49, 70, 63, 0.9), rgba(49, 70, 63, 0.9)), url('/viicbctem/static/image/img-destaque-05.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
}
.home-submission-content {
    max-width: 800px;
    margin: 0 auto;
}
.home-submission-title {
    font-size: 2.5rem;
    margin-bottom: 30px;
}
.home-submission-text {
    font-size: 1.2rem;
    margin-bottom: 40px;
    line-height: 1.8;
}
/* Rodapé */
.footer {
    background: #1D453D;
    color: var(--main-bg);
    padding: 100px 0 50px;
}
.footer-container {
    display: flex;
    flex-wrap: wrap;
    gap: 60px;
}
.footer-column {
    flex: 1;
    min-width: 300px;
}
.footer-title {
    font-size: 1.5rem;
    margin-bottom: 35px;
    position: relative;
    padding-bottom: 15px;
}
.footer-title:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 70px;
    height: 4px;
    background: linear-gradient(90deg, var(--main-color-a), var(--main-color));
    border-radius: 2px;
}
.footer-menu {
    list-style: none;
}
.footer-menu li {
    margin-bottom: 18px;
}
.footer-menu a {
    color: var(--main-bg);
    text-decoration: none;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.1rem;
}
.footer-menu a:hover {
    color: var(--main-color-a-hover);
    transform: translateX(8px);
}
.footer-contact {
    margin-bottom: 25px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    line-height: 1.7;
}
.footer-contact i {
    color: var(--main-color-a);
    margin-top: 7px;
    min-width: 25px;
    font-size: 1.2rem;
}
.social-icons {
    display: flex;
    gap: 20px;
    margin-top: 30px;
}
.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background-color: rgba(255,255,255,0.12);
    border-radius: 50%;
    color: var(--main-bg);
    transition: all 0.3s;
    font-size: 1.4rem;
    text-decoration: none !important;
}
.social-icons a:hover {
    background-color: var(--main-color-a);
    transform: translateY(-8px);
}
.copyright {
    text-align: center;
    padding-top: 60px;
    margin-top: 60px;
    border-top: 1px solid rgba(255,255,255,0.15);
    font-size: 1rem;
    color: rgba(255,255,255,0.7);
}

.copyright a {
    color: rgba(255,255,255,0.7);
}

section#rodape-patrocinio{margin:15px 0 0 0}
section#rodape-patrocinio nav ul{padding:0;margin:0;list-style:none;text-align:center;}
section#rodape-patrocinio h2,section#rodape-patrocinio h3, section#rodape-patrocinio h4{margin:2px 0 5px 0;padding:2px}
section#rodape-patrocinio nav ul li{padding:15px;margin:5px;display:inline-block;}

/* Responsividade */
@media (max-width: 992px) {
    .home-nav-menu {
        display: none;
        background: linear-gradient(90deg, var(--main-color) 0%, #2a3d36 100%);
        flex-direction: column;
        z-index: 1000;
        box-shadow: 0 10px 20px rgba(0,0,0,0.2);
    }

    .home-nav-menu.active {
        display: flex;
        flex: 1;
        margin-top: 15px;
    }

    .home-main-menu .container.active {
        flex-direction: column;
    }

    .home-main-menu .container.active nav {
        width: 100%
    }

    .home-submenu {
        display: none;
        position: relative;
        background-color: var(--main-bg);
        min-width: 220px;
        box-shadow: 0 8px 16px rgba(0,0,0,0.1);
        z-index: 1000;
        border-radius: 0 0 8px 8px;
        overflow: hidden;
    }

    .home-nav-menu.active .home-submenu li {
        display: block;
        list-style: none;
    }

    .home-nav-menu.active li:hover .home-submenu {
        display: block;
    }

    .mobile-menu-btn {
        display: block;
        background: none;
        border: none;
        color: var(--main-bg);
        font-size: 1.8rem;
        cursor: pointer;
        padding: 5px 10px;
    }

    .home-slide-content h2 {
        font-size: 1.8rem;
    }

    .home-countdown-box {
        width: 130px;
        height: 130px;
    }

    .home-countdown-number {
        font-size: 2.5rem;
    }

    .home-gallery-item {
        width: 300px;
        height: 220px;
    }
}
@media (max-width: 768px) {
    h1 { font-size: 2.2rem; }
    h2 { font-size: 1.9rem; }

    .home-logo img {
        max-height: 60px
    }

    .home-slide-content h2 {
        font-size: 1.5rem;
    }

    .home-countdown-box {
        width: 110px;
        height: 110px;
    }

    .home-countdown-number {
        font-size: 2rem;
    }

    .home-countdown-label {
        font-size: 0.9rem;
    }

    .home-gallery-item {
        width: 280px;
        height: 200px;
    }

    .home-subscription-box {
        min-width: 280px;
        padding: 35px 25px;
    }

    .home-accessibility-bar .container {
        flex-direction: row;
        justify-content: center;
        align-items: center;
        flex-wrap: nowrap;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 5px;
    }

    .home-accessibility-links {
        display: flex;
        flex-wrap: nowrap;
        gap: 8px;
        padding-right: 10px;
    }

    .home-accessibility-bar a {
        background-color: var(--main-bg-box);
        color: var(--main-color);
        padding: 8px 12px;
        white-space: nowrap;
        margin-bottom: 0;
        font-size: 0.8rem;
    }

    .home-inscreva-btn {
        background-color: var(--main-color) !important;
        color: var(--main-bg) !important;
        padding: 8px 15px !important;
        font-size: 0.85rem;
        white-space: nowrap;
    }

    .footer-contact {
        font-size: 0.95rem;
    }
}
@media (min-width: 993px) {
    .mobile-menu-btn {
        display: none;
    }
}

body.high-contrast {
    background-color: #000 !important;
    color: #fff !important;
}

body.high-contrast *:not(img):not([style*="background-image"]) {
    background: #000 !important;
    color: #ff0 !important;
    border-color: #ff0 !important;
}

body.high-contrast .home-btn,
body.high-contrast .home-countdown-box,
body.high-contrast .home-subscription-box,
body.high-contrast .home-about-content,
body.high-contrast .home-speaker-card,
body.high-contrast .home-sponsor-item {
    background-color: #000 !important;
    color: #ff0 !important;
    border: 2px solid #ff0 !important;
}


body.high-contrast .home-subscription-features li,
body.high-contrast .home-countdown-number,
body.high-contrast .home-countdown-label,
body.high-contrast .home-section-title,
body.high-contrast .home-section-title:after,
body.high-contrast .home-subscription-price,
body.high-contrast .home-subscription-title,
body.high-contrast .home-subscription-features li i {
    background-color: transparent !important;
    color: #ff0 !important;
    border: none !important;
}

body.high-contrast .home-nav-menu a:hover,
body.high-contrast .footer-menu a:hover {
    background-color: #ff0 !important;
    color: #000 !important;
}

body.high-contrast .home-loader {
    background-color: #000 !important;
}

body.high-contrast .home-loader-progress {
    background-color: #333 !important;
}

body.high-contrast .home-loader-progress-bar {
    background-color: #ff0 !important;
}

body.high-contrast [style*="background-image"],
body.high-contrast .background-image,
body.high-contrast .hero-bg,
body.high-contrast .banner-bg {
    background-color: #000 !important;
}

.large-font {
    font-size: 20px;
}

.larger-font {
    font-size: 24px;
}

.small-font {
    font-size: 14px;
}
