/*==========  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) {}

/* Medium Devices, Desktops */
@media only screen and (min-width : 850px) {
    .header-main::after {
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        width: calc(50% - 25px);
        height: 100%;
        background-image: url(/wp-content/uploads/2025/01/img-head-right.webp);
        background-repeat: no-repeat;
        background-position: right center;
        background-size: 100% 100%;
        z-index: -99;
    }

    .header-main::before {
        content: '';
        position: absolute;
        right: 0;
        top: 0;
        width: calc(50% - 25px);
        height: 100%;
        background-image: url(/wp-content/uploads/2025/01/img-head-left.webp);
        background-repeat: no-repeat;
        background-position: left center;
        background-size: 100% 100%;
        z-index: -99;
    }

    #logo img {
        max-height: unset !important;
        width: 100px;
    }
}