:root {
    --menu-breakpoint: 767px;
}

.h_menu {
    position: relative;
}

.menu-toggle {
    display: none;
    width: 100%;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 14px 16px;
    border: 0;
    background: linear-gradient(to bottom, #800000 55%, #2f2e33 100%);
    box-shadow: inset 0 1px 8px #222;
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: .04em;
    text-transform: uppercase;
    cursor: pointer;
}

.menu-toggle::after {
    content: '';
    width: 12px;
    height: 12px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg);
    transition: transform .25s ease;
    flex: 0 0 auto;
}

.menu-toggle.is-active::after {
    transform: rotate(-135deg) translate(-2px, -2px);
}

.menu {
    margin: 0;
    padding: 0;
    list-style: none;
}

.menu::after {
    content: '';
    display: block;
    clear: both;
}

@media (max-width: 767px) {
    .menu-toggle {
        display: flex;
        margin-top: 20px;
    }

    .menu {
        display: block;
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-8px);
        transition: max-height .28s ease, opacity .2s ease, transform .2s ease, visibility .2s ease;
        background: #fff;
    }

    .menu.is-open {
        max-height: 80vh;
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
        overflow-y: auto;
        box-shadow: 0 10px 25px rgba(0, 0, 0, .12);
    }

    .menu li {
        float: none;
        display: block;
    }

    ul.menu.list-unstyled li a,
    .menu li a {
        float: none;
        border-left: 0;
        border-top: 1px solid #e0e0e0;
        background: #fff;
        color: #4b4b4b;
        box-shadow: none;
        padding: 14px 16px;
    }

    ul.menu.list-unstyled li:first-child a {
        border-top: 0;
    }

    ul.menu.list-unstyled li a:hover,
    ul.menu.list-unstyled li a:focus,
    .menu li a:hover,
    .menu li a:focus {
        background: #f5f5f5;
        color: #1d1d1d;
    }

    body.menu-open {
        overflow: hidden;
    }
}

@media (min-width: 768px) {
    .menu {
        display: block !important;
        max-height: none !important;
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
        overflow: visible !important;
    }
}

.wow.reveal-ready {
    visibility: hidden;
    opacity: 0;
}

.wow.animated.is-visible {
    visibility: visible;
    opacity: 1;
}

@media (prefers-reduced-motion: reduce) {
    .menu,
    .menu-toggle::after,
    .wow {
        transition: none !important;
        animation: none !important;
    }

    .wow,
    .wow.reveal-ready,
    .wow.animated.is-visible {
        visibility: visible !important;
        opacity: 1 !important;
    }
}


@media (max-width: 767px) {
    .detail-gallery {
        overflow: visible;
    }

    .detail-gallery .images_3_of_2 {
        width: 100%;
        float: none;
        margin: 0 0 16px;
    }

    .detail-gallery .images_3_of_2:nth-child(2n) {
        margin-right: 0;
    }

    .detail-gallery .images_3_of_2 img {
        width: 100%;
        height: auto;
        display: block;
    }
}
