/* ======== RESPONSIVE CSS ========= */


/* ===================================================
		MIN WIDTH 
=================================================== */
@media (min-width: 576px) {}

@media (min-width: 641px) {}

@media (min-width: 768px) {}

@media screen and (min-width: 992px) {
    /* .navbar-collapse {
        justify-content: center;
    } */

    header .navbar-nav {
        background-color: var(--red);
    }

    .header-logo {
        max-width: 255px;
        top: 10px;
        left: 50%;
        transform: translate(-50%);
        position: absolute;
    }

    .desktop-absolute {
        position: absolute;
        width: 100%;
        left: 0;
        bottom: 30px;
    }

    .slide img {
        object-fit: cover;
        min-height: 820px;
    }

    .side-photo {
        position: absolute;
        left: -105px;
        top: 50%;
        width: 230px;
        transform: translate(0, -30%);
    }

}

@media screen and (min-width: 1200px) {
    .white-section h2 {
        font-size: 83px;
    }

    .white-section h2 span {
        font-size: 37px;
    }

    .side-photo {
        width: 260px;
    }
}

@media screen and (min-width: 1300px) {}

@media screen and (min-width: 1500px) {
    .desktop-absolute {
        top: 50%;
        transform: translate(0, -50%);
        bottom: auto;
    }
}




/* ===================================================
		MAX WIDTH 
=================================================== */
@media screen and (max-width: 1199px) {

    h1,
    .h1 {
        font-size: 4.5em;
    }

    h2,
    .h2 {
        font-size: 3.6em;
    }

    .red-section .vote-text {
        font-size: 30px;
    }
}

@media screen and (max-width: 991px) {
    .bg-mobile-blue {
        background-color: #00143B;
    }

    .blue-section {
        background-color: #00143B;
    }

    .red-section {
        background-color: #BF0A30;
    }

    header {
        background-color: var(--blue);
    }

    .page-template-page-home .splash .blue-gradient {
        display: none;
    }

    .page-template-page-home .splash .stripes {
        display: none;
    }
}


@media screen and (max-width: 771px) {
    .red-section .vote-text {
        font-size: 25px;
    }
}

@media screen and (max-width: 640px) {

    h1,
    .h1 {
        font-size: 3em;
    }

    h2,
    .h2 {
        font-size: 2.5em;
    }
}

@media screen and (max-width: 600px) {

    /* Reset for Mobile Admin bar */
    body {
        position: initial;
    }
}

@media screen and (max-width: 576px) {}


@media screen and (max-width: 500px) {
    .red-section .vote-text {
        font-size: 20px;
    }
}

@media screen and (max-width: 450px) {

    h1,
    .h1 {
        font-size: 2.5em;
    }
}

@media screen and (max-width: 400px) {}

@media screen and (max-width: 380px) {
    .tagline {
        font-size: 18px;
    }
}




/* ===================================================
		MIN - MAX WIDTH 
=================================================== */
@media (min-width: 992px) and (max-width: 1199px) {}

@media (min-width: 768px) and (max-width: 1199px) {}

@media (min-width: 768px) and (max-width: 991px) {
    .white-section .photo {
        width: 48%;
        height: 260px;
    }
}

@media (min-width: 576px) and (max-width: 767px) {
    .white-section .photo {
        width: 48%;
        height: 190px;
    }
}