/*==========  Non-Mobile First Method  ==========*/

/* Large Devices, Wide Screens */
@media only screen and (max-width : 1200px) {}

/* Medium Devices, Desktops */
@media only screen and (max-width : 992px) {}

/* Small Devices, Tablets */
@media only screen and (max-width : 768px) {}

/* Extra Small Devices, Phones */
@media only screen and (max-width : 480px) {}

/* Custom, iPhone Retina */
@media only screen and (max-width : 320px) {}

@media only screen and (min-width : 850px) {
    .logo-center .logo{
        margin: 0 50px;
    }

    #logo img {
        max-height: 165px !important
    }

    #masthead {
        z-index: 999
    }

    #logo>a {
        background-image: url(/wp-content/uploads/2025/05/logo-bg.webp);
        background-size: 100% 100%;
        width: 273px;
        height: 111px;
        display: flex;
        align-items: center;
        justify-content: center;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        position: absolute;
    }

    .a-section-2 .large-2 {
        flex-basis: 20%;
        max-width: 20%;
    }
}