:root {
    --color-primary: #00373d;
    --color-text: #333;
    --color-text-hover: #00373d;
}

@font-face {
    font-family: 'inknut-antiqua';
    src: url('/assets/fonts/inknut-antiqua.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'avenir';
    src: url('/assets/fonts/avenir.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
}

html,
body,
p,
ol,
ul,
li,
dl,
dt,
dd,
blockquote,
figure,
fieldset,
legend,
textarea,
pre,
iframe,
hr,
h1,
h2,
h3,
h4,
h5,
h6 {
    padding: 0
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: normal;
}

html {
    overflow-x: hidden;
}

body {
    color: var(--color-text);
    line-height: 1.45;
    font-size: 14px;
    background: #fff;
    overflow-x: hidden;
    font-family: 'avenir', sans-serif;
}

ul {
    list-style: none
}

button,
input,
select {
    margin: 0
}

html {
    box-sizing: border-box
}

*,
*::before,
*::after {
    box-sizing: inherit
}

img,
video {
    height: auto;
    max-width: 100%
}

iframe {
    border: 0
}

table {
    border-collapse: collapse;
    border-spacing: 0
}

td,
th {
    padding: 0
}

a {
    color: var(--color-text);
    text-decoration: none;
    outline: none;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

a:hover,
a:focus {
    color: var(--color-text-hover);
    text-decoration: none;
    outline: none;
}

a:active {
    outline: none;
}

.btn-main {
    display: inline-block;
    padding: 10px 20px;
    background-color: var(--color-primary);
    border: 1px solid var(--color-primary);
    color: #fff;
    text-transform: uppercase;
    font-weight: bold;
    border-radius: 4px;
    transition: background-color 0.3s ease;

    &:hover {
        background-color: transparent;
        color: #fff;
    }

    &:focus {
        outline: none;
        box-shadow: none;
        color: #fff;
        background-color: transparent;
    }
}

/*------ HEADER ------*/
.main-header {
    position: fixed;
    z-index: 2;
    top: 0;
    left: 0;
    right: 0;
    background: transparent;
    -webkit-transition: background .25s ease, box-shadow .25s ease, opacity 700ms cubic-bezier(0.645, 0.045, 0.355, 1), transform 700ms cubic-bezier(0.645, 0.045, 0.355, 1);
    -moz-transition: background .25s ease, box-shadow .25s ease, opacity 700ms cubic-bezier(0.645, 0.045, 0.355, 1), transform 700ms cubic-bezier(0.645, 0.045, 0.355, 1);
    -o-transition: background .25s ease, box-shadow .25s ease, opacity 700ms cubic-bezier(0.645, 0.045, 0.355, 1), transform 700ms cubic-bezier(0.645, 0.045, 0.355, 1);
    transition: background .25s ease, box-shadow .25s ease, opacity 700ms cubic-bezier(0.645, 0.045, 0.355, 1), transform 700ms cubic-bezier(0.645, 0.045, 0.355, 1);

    &.animate-top {
        position: fixed;
        top: -300px;
        background-color: var(--color-primary);
    }

    &.animate-top2 {
        top: 0;
    }

    @media (max-width:767px) {
        background-color: var(--color-primary);
    }
}

.cart-header {
    a {
        position: relative;

        i {
            color: #fff;
            font-size: 20px;
        }

        span {
            position: absolute;
            top: -15px;
            right: -12px;
            font-size: 12px;
            width: 20px;
            height: 20px;
            line-height: 20px;
            background: var(--color-primary);
            border-radius: 100%;
            color: #fff;
            text-align: center;
        }
    }
}

.header-wrapper {
    max-width: 1260px;
    margin: 0 auto;
}

.nav-list {
    margin-bottom: 0;

    .nav-item {
        position: relative;

        a {
            display: inline-block;
            padding: 15px 20px;
            text-transform: uppercase;
            color: #fff;

            /*&:hover {
                color: var(--color-text-hover);
            }*/
        }

        &:hover {
            .submenu {
                opacity: 1;
                visibility: visible;
            }
        }
    }

    .submenu {
        position: absolute;
        background: var(--color-primary);
        width: 200px;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3 ease-in-out;

        li {
            a {
                display: block;
                padding: 5px 20px;
                text-transform: capitalize;
            }
        }
    }
}

.header-mobile {
    padding: 10px 0;

    .mb-logo svg {
        width: 48px;
        height: 48px;
    }

    .btn-menu {
        font-size: 24px;
        color: #fff;
        margin-left: 20px;
    }
}

body.active-menu {
    overflow: hidden;

    .site-menumb {
        opacity: 1;
        visibility: visible;
        transform: translateX(0);
    }
}

.site-menumb {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100vh;
    background: var(--color-primary);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease-in-out;
    transform: translateX(-200%);

    .menumb-head {
        text-align: right;

        .close-menumb {
            font-size: 24px;
            color: #fff;
            display: inline-block;
            padding: 8px 16px;
        }
    }
}

.menumb-wrapper {
    height: 100%;
    padding-bottom: 50px;
    overflow: hidden;
    overflow-y: auto;
}

.nav-mobile {
    li {
        position: relative;

        a {
            display: block;
            font-size: 16px;
            text-transform: uppercase;
            padding: 8px 20px;
            color: #fff;
            border-bottom: 1px dashed #fcfcfc;
        }

        .subicon {
            position: absolute;
            top: 0;
            right: 1px;
            color: #fff;
            font-size: 24px;
            display: inline-block;
            width: 60px;
            height: 40px;
            text-align: center;
            transition: all 0.3s ease-in-out;
        }

        &.active {
            .subicon {
                transform: rotate(180deg);
            }
        }
    }

    .submenu {
        display: none;

        li {
            a {
                padding-left: 30px;
                border-bottom: 0;
                text-transform: capitalize;
            }
        }
    }
}

.wrapper-content {
    min-height: 80vh;

    @media (max-width:767px) {
        padding-top: 68px;
    }
}

/*---- banner-hero ----*/
.banner-hero {
    position: relative;

    &:before {
        position: absolute;
        content: '';
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.5);
    }

    .banner-content {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        left: 0;
        right: 0;
        max-width: 900px;
        width: 100%;
        margin: 0 auto;
        text-align: center;
        padding: 0 15px;
    }

    img {
        width: 100%;
    }

    .banner-title {
        font-size: 44px;
        color: #fff;
        font-family: 'inknut-antiqua', sans-serif;

        @media(max-width:767px) {
            font-size: 30px;
        }
    }

    .banner-description {
        font-size: 26px;
        color: #fff;
        margin-top: 20px;

        @media(max-width:767px) {
            font-size: 20px;
        }
    }

    .banner-button {
        margin-top: 30px;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 20px;

        a i {
            margin-right: 5px;
        }
    }
}

.bg-section {
    background-color: var(--color-primary);
}

/*---- section-aboutus ----*/
.section-about {
    padding-bottom: 90px;

    .pd-content {
        padding: 90px 10% 90px 10%;

        @media(max-width:767px) {
            padding: 45px 30px;
        }
    }


}

.item-aboutus {
    &:last-child {
        margin-top: 30px;
    }

    &.active {
        .item-abouts__head {
            .icon-plus {
                &:after {
                    transform: translateX(-50%) rotate(90deg);
                }
            }
        }
    }

    &:not(:first-child) {
        .item-abouts__content {
            display: none;
        }
    }

    .item-abouts__head {
        position: relative;
        padding-left: 30px;
        cursor: pointer;

        .title-aboutus {
            font-size: 17px;
            color: #fff;
        }

        .icon-plus {
            display: inline-block;
            width: 14px;
            height: 14px;
            position: absolute;
            left: 0;
            top: 50%;
            transform: translateY(-50%);

            &:before {
                content: '';
                position: absolute;
                left: 0;
                top: 50%;
                transform: translateY(-50%);
                width: 100%;
                height: 1px;
                background-color: #fff;
                transition: all 0.3s ease-in-out;
            }

            &:after {
                content: '';
                position: absolute;
                left: 50%;
                top: 0;
                transform: translateX(-50%);
                width: 1px;
                height: 100%;
                background-color: #fff;
                transition: all 0.3s ease-in-out;
            }
        }
    }

    .item-abouts__content {
        font-size: 15px;
        color: #fff;
        padding: 20px 20px 20px 0;
        line-height: 1.7;
    }
}

.pd-image {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    background-attachment: scroll;
    width: 100%;
    height: 100%;

    @media (max-width:767px) {
        padding-bottom: 56.55%;
    }
}

/*---- section-menu ----*/
.section-menu {
    padding: 90px 0;
    background-image: url('/assets/image/bg-image2.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    background-attachment: fixed;
    width: 100%;
    height: 100%;
    position: relative;
    transition: all 0.3s ease-in-out;

    &:before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-color: rgba(0, 0, 0, 0.4);
    }
}

.section-head {
    text-align: center;
    margin-bottom: 30px;

    .section-title {
        font-size: 32px;
        color: #fff;
        font-family: 'inknut-antiqua', sans-serif;
    }

    .section-description {
        font-size: 16px;
        color: #fff;
        margin-top: 10px;
    }
}

.style-tabs {
    text-align: center;
    max-width: 1000px;
    width: 100%;
    margin: 0 auto;
    white-space: nowrap;
    overflow: hidden;
    overflow-x: auto;
    padding-bottom: 8px;

    &::-webkit-scrollbar-track {
        -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
        border-radius: 10px;
        background-color: #F5F5F5;
    }

    &::-webkit-scrollbar {
        width: 12px;
        height: 6px;
    }

    &::-webkit-scrollbar-thumb {
        border-radius: 10px;
        -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, .3);
        background-color: #555;
    }

    .menu-tab {
        display: inline-block;

        &:not(:last-child) {
            margin-right: 15px;
        }

        a {
            display: inline-block;
            padding: 15px 10px;
            background: transparent;
            font-size: 16px;
            font-weight: 600;
            color: #fff;
            border: 1px solid transparent;
            border-radius: 4px;
            text-transform: uppercase;
            transition: all 0.3s ease-in-out;

            &.active,
            &:hover {
                background-color: var(--color-primary);
                border-color: var(--color-primary);
                color: #fff;
            }
        }
    }
}

.menu-tabContent {
    margin-top: 50px;
    max-width: 1200px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
}

.menu-tabline {
    &:not(.active) {
        display: none;
    }

    @media(min-width:768px) {
        li:nth-child(1) .menu-bd {
            border-top: 0;
        }

        li:nth-child(2) .menu-bd {
            border-top: 0;
        }
    }

    .menu-bd {
        padding: 15px 0;
        border-top: 1px dashed #fff;
    }

    .menu-title__head {
        display: flex;
        justify-content: space-between;

        h4 {
            font-size: 16px;
            font-weight: 600;
            color: #fff;
        }

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

    .menu-des {
        font-size: 14px;
        color: #fff;
        margin-top: 10px;
    }
}

/*--- section-service----*/
.row-50 {
    @media (min-width:768px) {
        margin-left: -25px;
        margin-right: -25px;
    }
}

.plr-50 {
    @media (min-width:768px) {
        padding-left: 25px;
        padding-right: 25px;
    }
}

.section-service {
    padding: 90px 0;
}

.service-item {
    margin-bottom: 30px;

    .service-item__title {
        font-size: 26px;
        color: #fff;
        margin-bottom: 30px;
    }

    .service-item__des {
        margin-top: 30px;

        p {
            font-size: 14px;
            color: #fff;
            line-height: 1.5;
        }
    }
}

/*----- FOOTER---------*/
.main-footer {
    padding: 40px 0;
    border-top: 1px dashed #fcfcfc;
}

.footer-col {
    margin-bottom: 30px;
}

.shop-info {
    margin-bottom: 30px;

    h4 {
        font-family: 'inknut-antiqua', sans-serif;
        font-size: 36px;
        color: #fff;
    }

    p {
        font-size: 16px;
        color: #fff;
        letter-spacing: 0.7px;
        margin-top: 8px;
    }
}

.list-contact {
    li {
        font-size: 14px;
        color: #fff;
        margin-bottom: 8px;

        a {
            color: #fff;
        }
    }
}

.list-social {
    display: flex;
    gap: 0 74px;

    @media (max-width: 767px) {
        gap: 0 20px;
    }

    li {
        a {
            color: #fff;
            font-size: 16px;
        }
    }
}

.page-title {
    font-size: 50px;
    font-family: 'inknut-antiqua', sans-serif;
    text-align: center;
    margin-bottom: 30px;
    color: #fff;

    @media (max-width: 767px) {
        font-size: 36px;
    }
}