:root {
    --first-font: 'Avenir Next';
}

body {
    font-family: var(--first-font);
}

a {
    text-decoration: none;
    color: inherit;
}

#hi,
.menu {
    display: none;
}

header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 3;
    padding: 32px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all .3s ease;

    .logo {

        img {
            height: 48px;
        }
    }

    nav {

        a {
            font-weight: 550;
            font-size: 16px;
            color: #fff;
            text-transform: uppercase;
            margin-left: 30px;
            transition: color .3s ease;

            &:hover,
            &.active {
                color: #B1955E;
                border-bottom: 2px solid #B1955E;
            }
        }
    }

    &.sticky {
        background: #fff;
        box-shadow: 0px 4px 9px 0px #0000000D, 0px 17px 17px 0px #0000000A, 0px 38px 23px 0px #00000005, 0px 67px 27px 0px #00000003, 0px 105px 29px 0px #00000000;

        nav {

            a {
                color: #2F2019;

                &:hover,
                &.active {
                    color: #B1955E;
                    border-bottom: 2px solid #B1955E;
                }
            }
        }
    }
}

.main-slide-wrap {
    position: relative;

    .main-slider {

        .m-slide {
            position: relative;

            .slide-bg {
                height: 100vh;
                object-fit: cover;
                object-position: top;
            }

            .content {
                position: absolute;
                top: 50%;
                left: 15%;
                transform: translate(0, -50%);

                .mini-title {
                    font-weight: 400;
                    font-size: 40px;
                    color: #fff;
                }

                .title {
                    font-weight: 800;
                    font-size: 88px;
                    line-height: normal;
                    color: #fff;
                }

                p {
                    font-weight: 300;
                    font-size: 16px;
                    color: #fff;
                }

                a {
                    color: #E71B1E;
                    padding: 16px;
                    display: flex;
                    align-items: center;
                    background: #fff;
                    width: fit-content;
                    font-weight: 700;

                    img {
                        margin-left: 30px;
                    }
                }
            }
        }

        .slick-dots {
            position: absolute;
            top: 50%;
            z-index: 2;
            transform: translate(0, -50%);
            list-style: none;
            left: 3%;

            button {
                border: 0;
                background: none;
                font-weight: 400;
                font-size: 24px;
                color: #FFFFFF80;
                margin: 5px 0;
            }

            .slick-active {

                button {
                    font-weight: 700;
                    font-size: 24px;
                    color: #fff;
                    margin: 5px 0;
                    position: relative;

                    &::after {
                        content: '';
                        position: absolute;
                        top: 50%;
                        transform: translate(0, -50%);
                        width: 10px;
                        height: 10px;
                        background: #fff;
                        border-radius: 50%;
                        right: -15px;
                    }
                }
            }
        }
    }

    .slide-social {
        position: absolute;
        bottom: 50px;
        left: 5.5%;

        &::after {
            content: '';
            position: absolute;
            width: 1px;
            height: 30px;
            background: #fff;
            left: 50%;
            transform: translate(-50%, 0);
            bottom: -25px;
        }

        a {
            display: block;
            margin: 10px 0;
        }
    }
}

.slide-sep {
    margin-top: -50px;
    position: relative;
}

.first-section {
    padding: 100px 0;
    position: relative;
    overflow: hidden;

    .mini-title {
        font-weight: 300;
        font-size: 32px;
        color: #A38451;
    }

    .title {
        font-weight: 700;
        font-size: 64px;
        color: #E71B1E;
    }

    .first-shape {
        position: absolute;
        top: -100px;
        right: 0;
    }

    .content {
        display: flex;
        position: relative;
        z-index: 2;

        .box {
            background: #F7F5EF;
            padding: 20px 24px;
            border-radius: 4px;
            margin: 15px 0;
            position: absolute;
            bottom: 0;
            box-shadow: 0px 6px 13px 0px #0000000D, 0px 24px 24px 0px #0000000A, 0px 54px 32px 0px #00000008, 0px 96px 38px 0px #00000003, 0px 150px 42px 0px #00000000;

            .box-title {
                font-family: Avenir Next;
                font-weight: 700;
                font-size: 24px;
                color: #CE1417;
                display: flex;
                align-items: center;
                margin-bottom: 30px;

                img {
                    margin-right: 15px;
                }
            }

            .desc {
                font-weight: 400;
                font-size: 16px;
                color: #5F4534;
            }

            &:nth-child(2) {
                right: 3%;
                bottom: 33%;
            }

            &:nth-child(3) {
                right: 10%;
                bottom: 5%;
            }

            &:nth-child(4) {
                left: 10%;
                bottom: 5%;
                z-index: -1;
            }
        }


    }
}

.home-products {
    background-color: #2F2019;
    background-image: url(../img/products-bg.svg);
    background-repeat: no-repeat;
    padding: 100px 0;
    background-position: center;
    background-size: cover;

    .mini-title {
        font-weight: 400;
        font-size: 32px;
        color: #C3AF81;
        margin-bottom: 15px;
    }

    .title {
        font-weight: 700;
        font-size: 64px;
        color: #fff;
        line-height: 64px;
    }

    .title-desc {
        font-weight: 400;
        font-style: italic;
        font-size: 22px;
        color: #fff;
        text-align: right;
    }

    .p-slide-area {
        position: relative;

        .products-slider {
            margin-top: 50px;

            .p-slide {
                margin: 0 15px;

                .box {
                    border-radius: 8px;
                    overflow: hidden;

                    a {
                        padding: 20px 24px;
                        background: #fff;
                        display: flex;
                        align-items: center;
                        justify-content: space-between;
                        font-weight: 700;
                        font-size: 20px;
                        color: #E71B1E;
                    }
                }
            }

            .slick-dots {
                display: flex;
                justify-content: center;
                list-style: none;
                margin-top: 30px;

                li {
                    &::marker {
                        display: none;
                    }

                    button {
                        font-size: 0;
                        width: 10px;
                        height: 12px;
                        border-radius: 50%;
                        border: none;
                        margin: 0 5px;
                        background: #5F4534;
                    }
                }

                .slick-active {

                    button {
                        background: #F7F5EF;
                    }
                }
            }
        }

        .p-next,
        .p-prev {
            width: 50px;
            height: 50px;
            background: #fff;
            border-radius: 50%;
            text-align: center;
            line-height: 50px;
            position: absolute;
            top: calc(50% - 50px);
            transform: translate(0, -50%);
            cursor: pointer;
        }

        .p-prev {
            left: -10px;
            transform: translate(0, -50%) rotateY(180deg);
        }

        .p-next {
            right: -10px;
        }
    }
}

.home-history {
    padding: 100px 0 150px 0;
    position: relative;

    .mini-title {
        font-weight: 400;
        font-size: 32px;
        color: #A38451;
    }

    .title {
        font-weight: 700;
        font-size: 64px;
        color: #E71B1E;
    }

    .desc {
        font-weight: 300;
        font-size: 20px;
        color: #000;
        margin-top: 30px;
    }

    .history-right {
        background: #F7F5EF;
        border-bottom-left-radius: 200px;
        position: absolute;
        right: 0;
        top: 0;
        width: 50%;

        img {
            float: left;

            &:first-of-type {
                width: 60%;
                margin-top: 50px;
                position: relative;
                z-index: 2;
            }

            &:last-of-type {
                width: 50%;
                margin-left: -10%;
            }
        }

        .count-wrap {
            width: 100%;
            float: left;
            padding: 0 60px 50px 30px;
            text-align: center;
            display: flex;
            justify-content: space-between;
            margin-top: 50px;

            .count {
                font-weight: 400;
                font-size: 70px;
                color: #E71B1E;
                line-height: 80px;
            }

            .c-name {
                font-weight: 400;
                font-size: 17px;
                color: #A38451;
            }

            .box {
                padding: 15px 40px;
                width: 50%;

                &:first-of-type {
                    border-right: 1px solid #D9CEAF;
                }
            }
        }
    }
}

.product-process {
    background: url('../img/process-bg.png') no-repeat;
    padding: 100px 0;
    background-position: center;
    position: relative;
    background-size: cover;

    &::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: #000000b7;
    }

    .mini-title {
        font-weight: 400;
        font-size: 32px;
        color: #C3AF81;
        text-align: center;
        position: relative;
        z-index: 2;
    }

    .title {
        font-weight: 700;
        font-size: 64px;
        color: #fff;
        text-align: center;
        position: relative;
        z-index: 2;
    }

    .product-p-slider {
        position: relative;
        z-index: 2;
        text-align: center;
        margin-top: 100px;

        .p-p-slide {
            margin: 0 30px;
            position: relative;
            opacity: .3;

            .icon {
                width: 50px;
                height: 50px;
                background: #fff;
                margin: auto;
                border-radius: 50%;
                display: flex;
                align-items: center;
                justify-content: center;
            }

            .p-title {
                font-weight: 600;
                font-size: 20px;
                color: #fff;
                margin-top: 30px;
                padding-bottom: 30px;
                border-bottom: 1px solid #FFFFFF1A;
                margin-bottom: 50px;
            }

            .desc {
                color: #fff;
                font-weight: 400;
                font-size: 16px;
                opacity: 0;
                transition: all .3s ease;

                ul {
                    list-style: none;
                    padding: 0;
                    margin: 0;

                    li {
                        margin: 10px 0;
                    }
                }

            }

            a {
                margin-top: 50px;
                display: flex;
                width: fit-content;
                font-weight: 600;
                font-size: 14px;
                color: #E71B1E;
                padding: 16px;
                background: #FFFFFF;
                margin: 50px auto 0 auto;
                opacity: 0;
                transition: all .3s ease;

                img {
                    margin-left: 15px;
                }
            }
        }

        .slick-center .desc,
        .slick-center a {
            opacity: 1;
            transition: all .3s ease;
        }

        .slick-center {
            opacity: 1;
        }

        .slick-active::after {
            content: '';
            position: absolute;
            width: 95%;
            height: 2px;
            background: #fff;
            top: 3%;
            right: -113%;
            transform: translate(-60%, 10px);
        }
    }

    .p-p-wrap {
        position: relative;


        .p-p-prev {
            position: absolute;
            top: 16%;
            left: 35%;
            transform: rotateY(180deg);
            z-index: 5;
            cursor: pointer;
        }

        .p-p-next {
            position: absolute;
            top: 16%;
            right: 35%;
            z-index: 5;
            cursor: pointer;
        }
    }
}

.home-contact {
    padding: 100px 0;

    .title {
        font-weight: 700;
        font-size: 40px;
        color: #E71B1E;
        margin-bottom: 15px;
    }

    .desc {
        font-weight: 400;
        font-size: 16px;
        margin-bottom: 30px;
    }

    .info-group {

        a {
            display: flex;
            align-items: center;
            margin: 15px 0;

            .info {
                margin-left: 15px;

                span {
                    display: block;
                    font-weight: 400;
                    font-size: 16px;
                    color: #5F4534;

                    &:first-of-type {
                        font-weight: 700;
                        font-size: 18px;
                        color: #E71B1E;
                    }
                }
            }
        }
    }

    .social {

        .s-title {
            font-weight: 700;
            font-size: 18px;
            color: #E71B1E;
            margin: 30px 0 15px 0;
        }

        .social-group {

            a {
                display: inline-block;
                margin-right: 10px;
            }
        }
    }

    .contact-form {
        padding: 30px;
        background: #FBFBFB;
        border-radius: 24px;

        .title {
            font-weight: 700;
            font-size: 32px;
            color: #E71B1E;
        }

        .input-group {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 15px;

            input,
            select {
                background: #F7F5EF;
                border: none;
                padding: 16px 12px;
                border-bottom: 2px solid #D9CEAF;
                font-weight: 500;
                font-size: 16px;
                transition: all .3s ease;
                color: #5F4534;

                &:focus {
                    outline: 0;
                    box-shadow: none;
                    border-bottom: 2px solid #8B6A43;
                    background: #EBE6D6;
                }

                &::placeholder {
                    color: #D9CEAF;
                }
            }

        }

        textarea {
            background: #F7F5EF;
            border: none;
            padding: 16px 12px;
            border-bottom: 2px solid #D9CEAF;
            font-weight: 500;
            font-size: 16px;
            transition: all .3s ease;
            color: #5F4534;
            width: 100%;
            height: 200px;
            margin-top: 15px;

            &:focus {
                outline: 0;
                box-shadow: none;
                border-bottom: 2px solid #8B6A43;
                background: #EBE6D6;
            }

            &::placeholder {
                color: #D9CEAF;
            }
        }

        button {
            background: #E71B1E;
            font-weight: 700;
            font-size: 14px;
            color: #fff;
            border: none;
            padding: 16px 24px;
            margin-top: 15px;
            display: flex;
            align-items: center;

            svg {
                height: 10px;
                margin-left: 15px;
            }
        }

    }

    iframe {
        border-radius: 24px;
    }
}

footer {
    background: #533C30;
    padding: 50px 0 0 0;

    nav {
        float: right;

        a {
            font-weight: 600;
            font-size: 18px;
            color: #fff;
            margin-left: 30px;
        }
    }

    .footer-tel {
        font-weight: 500;
        font-size: 18px;
        color: #fff;
        float: right;
    }

    .f-social {
        margin: 0 10px;
    }

    .doc-link {
        font-weight: 500;
        font-size: 14px;
        color: #fff;
        border-right: 1px solid #FFFFFF1A;
        padding: 3px 24px;

        &:last-of-type {
            border-right: 0;
        }
    }

    .copyright {
        background: #2F2019;
        padding: 12px 0;
        margin-top: 50px;

        span {
            font-weight: 500;
            font-size: 16px;
            color: #fff;
        }
    }
}

.page-banner {
    position: relative;

    .bg {
        height: 450px;
        object-fit: cover;
    }

    .title {
        font-weight: 700;
        font-size: 75px;
        text-align: center;
        color: #fff;
        position: absolute;
        left: 50%;
        top: 60%;
        transform: translate(-50%, -50%);
    }

    .bread-shape {
        position: absolute;
        bottom: 5px;
        left: 5%;
        z-index: 2;
    }
}

.inner-content {
    padding: 100px;
    font-weight: 400;
    font-size: 18px;
    text-align: center;
    color: #5F4534;


    .bold {
        font-weight: 600;
        font-style: italic;
        font-size: 20px;
        color: #5F4534;
        text-align: center;
        margin-bottom: 50px;
    }

    strong {
        font-weight: 600;
        font-style: italic;
        font-size: 20px;
        color: #5F4534;
        text-align: center;
        margin-bottom: 50px;
    }

    .p-wrap {
        border-radius: 24px;
        overflow: hidden;
        position: relative;
        display: block;
        margin: 15px 0;

        .p-name {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            font-weight: 700;
            font-size: 32px;
            color: #fff;
            z-index: 2;
        }

        &::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: #0000005d;

        }
    }
}

.cat-content {
    display: flex;
    margin-top: -20px;

    .sidebar-m {
        display: none;
    }

    .sidebar {
        width: 25%;
        background: #F6F6F6;
        padding: 50px;

        ul {
            list-style: none;
            margin: 0;
            padding: 0;

            li {


                a {
                    font-weight: 400;
                    font-size: 22px;
                    color: #8B6A43;
                    display: flex;
                    align-items: center;
                    overflow: hidden;
                    transition: margin .3s ease;
                    padding: 20px 0;

                    img {
                        transform: translate(-15px, 0);
                        transition: all .3s ease;
                    }

                    span {
                        margin-left: 10px;
                        line-height: 22px;
                        margin-bottom: -5px;
                    }

                    &:hover {
                        font-weight: 700;
                        color: #E71B1E;
                        margin-left: 25px;

                        img {
                            transform: translate(0, 0);
                        }
                    }
                }

                &:first-of-type {
                    margin-top: 0;
                }

                &.active a {
                    font-weight: 700;
                    color: #E71B1E;
                    margin-left: 25px;

                    img {
                        transform: translate(0, 0);
                    }
                }
            }
        }
    }

    .content {
        width: 75%;
        padding: 50px 30px;
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;

        .box {
            border-radius: 8px;
            overflow: hidden;
            display: block;

            .p-img {
                background: #F6F6F6;
                padding: 60px;

                img {
                    filter: drop-shadow(0px 10px 6px rgba(0, 0, 0, .2));
                    height: 230px;
                    object-fit: contain;
                }
            }

            .p-info {
                padding: 16px;

                .p-gram {
                    font-weight: 400;
                    font-size: 16px;
                    color: #8B6A43;

                    b {
                        font-weight: 700;
                        font-size: 16px;
                    }
                }

                .p-name {
                    font-weight: 700;
                    font-size: 22px;
                    color: #E71B1E;
                }
            }
        }
    }
}

.d-cat-content {
    padding: 50px 0;

    .p-cat {
        display: block;
        font-weight: 400;
        font-size: 20px;
        color: #888888;
    }

    .big-img {
        padding: 120px 80px;
    }

    .p-name {
        font-weight: 700;
        font-size: 48px;
        color: #E71B1E;
    }

    .p-gram {
        font-weight: 400;
        font-size: 20px;
        color: #888888;

        b {
            font-weight: 600;
            font-size: 20px;
        }
    }

    .prop-group {
        display: flex;
        margin: 50px 0;

        .box {
            width: 20%;
            padding: 11px;
            display: flex;
            align-items: center;
            border: 1px solid #E7E7E7;

            span {
                font-weight: 500;
                font-size: 14px;
                color: #E71B1E;
                margin-left: 10px;
            }

            &:first-of-type {
                border-top-left-radius: 20px;
                border-bottom-left-radius: 20px;
            }

            &:last-of-type {
                border-top-right-radius: 20px;
                border-bottom-right-radius: 20px;
            }
        }
    }

    .content {

        b {
            font-weight: 700;
            font-size: 16px;
            color: #E71B1E;
        }

        p {
            font-weight: 400;
            font-size: 16px;
            color: #454545;
            margin-top: 15px;
        }
    }
}

.quality-content {

    .title {
        font-weight: 700;
        font-size: 32px;
        color: #E71B1E;
        margin-top: 50px;
    }

    p {
        font-weight: 400;
        font-size: 16px;
        color: #5F4534;
    }

    .info {
        padding: 15px;

        span {
            display: block;
            text-align: left;

            &:first-of-type {
                font-weight: 700;
                font-size: 16px;
                color: #8B6A43;

            }

            &:last-of-type {
                font-weight: 700;
                font-size: 22px;
                color: #E71B1E;
            }
        }
    }
}

.catalog-content {
    text-align: left;

    .title {
        font-weight: 700;
        font-size: 32px;
        color: #E71B1E;
    }

    p {
        font-weight: 400;
        font-size: 16px;
        color: #5F4534;
        margin-top: 30px;
    }

    a {
        padding: 16px 24px;
        font-weight: 700;
        font-size: 14px;
        color: #FFFFFF;
        background: #E71B1E;
        margin-top: 30px;
        display: flex;
        align-items: center;
        width: fit-content;

        img {
            margin-left: 10px;
        }
    }
}

@media(max-width:969px) {
    .main-slide-wrap {
        .main-slider {
            .m-slide {
                .content {
                    .mini-title {
                        font-weight: 400;
                        font-size: 28px;
                        color: #fff;
                    }

                    .title {
                        font-weight: 800;
                        font-size: 68px;
                        line-height: 68px;
                        color: #fff;
                        padding-bottom: 70px;
                    }
                }
            }


        }
    }

    .first-section {
        padding: 60px 0 600px 0;
        position: relative;
        overflow: hidden;

        .box {

            &:nth-child(1) {
                right: 1% !important;
                left: 1% !important;
                bottom: -50% !important;
            }

            &:nth-child(2) {
                right: 1% !important;
                left: 1% !important;
                bottom: -50% !important;
            }

            &:nth-child(4) {
                right: 1% !important;
                left: 1% !important;
                bottom: -25% !important;
                z-index: -1 !important;
            }

            &:nth-child(3) {
                right: 1% !important;
                bottom: -75% !important;
                left: 1% !important;
            }
        }
    }

    .home-history {
        padding: 100px 0 150px 0;
        position: relative;

        .history-right {
            background: #F7F5EF;
            border-bottom-left-radius: 200px;
            position: relative;
            right: 0;
            top: 0;
            width: 100%;

            .count-wrap {
                .count {
                    font-weight: 400;
                    font-size: 42px;
                    color: #E71B1E;
                    line-height: 80px;
                }
            }
        }

    }

    .product-process {
        .p-p-wrap {
            .p-p-next {
                right: 10%;
            }

            .p-p-prev {
                left: 10%;

            }
        }

        .title {
            font-weight: 700;
            font-size: 48px;
            color: #fff;
            text-align: center;
            position: relative;
            z-index: 2;
        }

        .mini-title {
            font-weight: 400;
            font-size: 24px;
            color: #C3AF81;
            text-align: center;
            position: relative;
            z-index: 2;
        }
    }

    .home-contact {
        .social {
            justify-items: center;
        }
    }

    .home-contact {
        & .contact-form {
            .input-group {
                grid-template-columns: repeat(1, 1fr);
            }
        }
    }

    footer {
        .footer-tel {
            font-weight: 500;
            font-size: 18px;
            color: #fff;
            float: none;
            text-align: center;
            display: flex;
            justify-content: center;
            padding-top: 30px;
        }

        .footer-logo {
            a {
                width: 100%;
                text-align: center;
                padding: 15px 0;
                display: block;
            }
        }


        nav {
            float: none;
            width: 100%;

            a {
                width: 100%;
                text-align: center;
                padding: 15px 0;
                display: block;
                margin-left: 0;
            }
        }

        .doc-link {
            font-weight: 500;
            font-size: 14px;
            color: #fff;
            border-right: none;
            padding: 3px 24px;
            width: 100% !important;
            display: block;
            padding: 5px 0;
        }

        .copyright {
            background: #2F2019;
            padding: 12px 0;
            margin-top: 50px;
            text-align: center;
        }

        .text-end {
            text-align: center !important;
        }
    }

    .page-banner {
        .title {
            font-weight: 700;
            font-size: 48px;
            text-align: center;
            color: #fff;
            position: absolute;
            left: 50%;
            top: 60%;
            transform: translate(-50%, -50%);
        }
    }

    .inner-content {
        padding: 100px 0;
        font-weight: 400;
        font-size: 18px;
        text-align: center;
        color: #5F4534;
    }

    .cat-content {
        display: block;
        margin-top: 0px;

        .content {
            width: 100%;
            padding: 50px 30px;
            display: grid;
            grid-template-columns: repeat(1, 1fr);
            gap: 20px;
        }

        .sidebar {
            width: 100%;
            background: #F6F6F6;
            padding: 0 25px 25px 25px;
        }

        .sidebar-d {
            display: none;
        }

        .sidebar-m {
            display: block;
            padding-top: 30px;

            i {
                position: absolute;
                right: 10%;
            }


        }

        .mobile-sidebar {
            display: none;
        }
    }

    .d-cat-content {
        .big-img {
            padding: 50px 10px;
        }

        .prop-group {
            display: block;
            margin: 50px 0;

            .box {
                width: 100%;
                padding: 11px;
                display: flex;
                align-items: center;
                border: 1px solid #E7E7E7;
                padding: 25px 25px;

                span {
                    font-weight: 500;
                    font-size: 16px;
                    color: #E71B1E;
                    margin-left: 10px;
                }

                &:first-of-type {
                    border-top-left-radius: 20px;
                    border-top-right-radius: 20px;
                    border-bottom-left-radius: 0;
                }

                &:last-of-type {
                    border-top-right-radius: 0px;
                    border-bottom-right-radius: 20px;
                    border-bottom-left-radius: 20px;
                }
            }
        }

    }

    .catalog-content {
        a {
            padding: 16px 24px;
            font-weight: 700;
            font-size: 14px;
            color: #FFFFFF;
            background: #E71B1E;
            margin-top: 30px;
            display: flex;
            align-items: center;
            width: fit-content;
            margin: 20px auto;
        }
    }

    .m-certificate {


        padding: 0 40px;

        .info {
            padding-bottom: 50px;
        }
    }

    .slide-sep {
        margin-top: -35px;
        position: relative;
    }

    header {
        nav {
            display: none;
            width: 100%;
            background: rgba(0, 0, 0, .92);
            position: absolute;
            height: 100vh;
            left: 0;
            bottom: 0;
            top: 0;
            padding: 40% 0;
            text-align: center;

            a {
                font-weight: 550;
                font-size: 22px;
                color: #fff !important;
                text-transform: uppercase;
                margin-left: 0px;
                width: 100%;
                transition: color .3s ease;
                display: block;
                padding: 20px 0%;
                text-align: center;
            }
        }
    }

    #hi,
    .menu {
        display: block;
    }

    .menu {
        position: absolute;
        top: 50%;
        right: 0%;
        transform: translate(-50%, -50%);
        cursor: pointer;
        transition: 0.5s ease;
        height: 50px;

        &:hover .bar {
            box-shadow: 1px 1px 7px 1px RGBa(0, 0, 0, 0.3);
        }

        .bar {
            width: 40px;
            height: 5px;
            background: #ce1416;
            border-radius: 2px;
            transition: 0.4s ease;

            &:not(:first-child) {
                margin-top: 10px;
            }
        }
    }

    #hi {
        position: absolute;
        left: -999px;
        top: -999px;
    }

    body:has(#hi:checked) nav {
        display: block;
        transition: all .5s;
    }

    #hi:checked+.menu {
        transform: translate(-50%, -50%) rotatey(180deg);



        .bar {
            transform: rotatey(180deg) rotatex(360deg);

            &:first-child {
                transform: rotate(-45deg);
                margin-top: 20px;
            }

            &:nth-child(2) {
                opacity: 0;
            }

            &:nth-child(3) {
                margin-top: -20px;
                transform: rotate(45deg);
            }
        }
    }

}