:root {
    --color-theme: #e6ae48;
    --color-extra-light-gray: #b5b5b5;
    --color-light-gray: #a6a6a6;
    --color-gray: #808080;
    --color-dark-gray: #767676;
    --color-extra-dark-gray: #5e5e5e;
    --color-black: #1a1a1a;
}

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Nunito Sans", sans-serif;
    font-size: 1rem;
    font-weight: 400;
    line-height: 28px;
    letter-spacing: 0px;
    color: var(--color-extra-dark-gray);
}

h1, h2, h3, h4, h5, h6, p {
    margin-bottom: 15px;
}

h1 {
    font-size: 3.625rem;
    line-height: 60px;
    font-weight: 700;
    letter-spacing: 0px;
}

h2 {
    font-size: 3.5rem;
    line-height: 60px;
    font-weight: 700;
    letter-spacing: 0px;
}

h3 {
    font-size: 2.25rem;
    line-height: 42px;
    font-weight: 700;
    letter-spacing: 0px;
}

h4 {
    font-size: 1.5rem;
    line-height: 28px;
    font-weight: 400;
    letter-spacing: 0px;
}

h5 {
    font-size: 1.25rem;
    line-height: 26px;
    font-weight: 800;
    letter-spacing: 0px;
}

h6 {
    font-size: 0.875rem;
    line-height: 24px;
    font-weight: 800;
    letter-spacing: 0px;
}

.caption {
    font-size: 1rem;
    font-weight: 400;
    letter-spacing: 1px;
}

a {
    text-decoration: none;
}

li {
    list-style: none;
}

.container {
    background-color: #fff;
    width: 100%;
    max-width: 1500px;
    margin: 80px auto 0;
}

.fixed-item {
    position: sticky;
    top: 40vh;
    left: 100%;
    width: max-content;
    background-color: transparent;
    font-family: "Montserrat", sans-serif;
    z-index: 100;
}
.fixed__animate,
.fixed__link {
    width: 65px;
    height: 65px;
    color: #fff;
    line-height: 16px;
    border-radius: 3px 0 0 3px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.fixed__animate {
    background-color: #06070c;
}
.fixed__animate .big {
    font-size: 1.25rem;
    font-weight: 500;
    animation: flashing 4s ease infinite;
}
.fixed__animate .small {
    font-size: 0.75rem;
    font-weight: 400;
    animation: flashing 4s ease infinite;
}
@keyframes flashing {
    0%, 100%, 50% {
        opacity: 1;
    }
    25%, 75% {
        opacity: 0.2;
    }
}
.fixed__link {
    background-color: #80b541;
    margin-top: 6px;
    font-size: 0.75rem;
    line-height: 21px;
}
.fixed__link img {
    width: 26px;
}

.menu {
    width: 100%;
    max-width: 1500px;
    margin: 0 auto;
    background-color: #fff;
    box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 99;
}
.menu-container {
    width: 80%;
    height: 80px;
    /* max-width: 1120px; */
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0 auto;
}
.menu__logo {
    width: 136px;
    height: 27px;
}
.menu__logo img {
    width: 100%;
    height: 100%;
}
.menu__items {
    transition: all 0.8s ease;
}
.menu__items a {
    padding: 16px;
    color: var(--color-gray);
    transition: all .3s ease-in-out;
}
.menu__items a:hover {
    color: #000;
}
.menu__items a.buy-btn {
    color: var(--color-theme);
}
#menu-btn,
#close-btn {
    display: none;
    cursor: pointer;
    width: 34px;
    height: 34px;
}
#menu-btn i,
#close-btn i {
    font-size: 26px;
}
#modal {
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    transition: all 0.8s ease;
}

.hero-section {
    background: #f1f1f1;
    background: url("assets/images/home_hero_bg.jpg") no-repeat center;
    padding: 120px 0 260px;
    margin-top: -136px;
}
.hero__content {
    width: 650px;
    margin: 0 auto 76px;
    text-align: center;
}
.hero__content__title {
    color: var(--color-theme);
}
.hero__content__link a {
    color: var(--color-black);
}

.category-section {
    width: 80%;
    max-width: 1120px;
    padding: 100px 0;
    margin: 0 auto;
    text-align: center;
}
.category__title {
    font-size: 2.5rem;
    line-height: 42px;
    color: var(--color-theme);
}
.category__items {
    width: 100%;
    border-top: 1px solid #ddd;
    padding-top: 40px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.category__items__box {
    width: 32%;
    text-align: center;
}
.items__box__image {
    width: 100%;
    position: relative;
    overflow: hidden;
}
.items__box__image img {
    display: block;
    width: 100%;
    height: auto;
}
.items__box__image__hover {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(230, 174, 72, 0.8);
    opacity: 0;
    transition: all 0.3s ease-in-out;
}
.items__box__image:hover .items__box__image__hover {
    opacity: 1;
}
.items__box__image__hover img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 30%;
    height: auto;
}
.items__box__desc {
    letter-spacing: 4px;
    color: var(--color-black);
    margin-top: 20px;
}

.video-section {
    width: 100%;
    padding-top: 240px;
    padding-bottom: 200px;
    background-color: #393739;
    background: url(assets/images/video_bg.jpg) no-repeat center;
    position: relative;
    overflow: hidden;
}
.video-background {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    overflow: hidden;
    z-index: 2;
}
.video-background video {
    position: absolute;
    top: 0;
    left: 0;
    min-width: 100%;
    min-height: 100%;
}
.video-mask {
    width: 100%;
    height: 100%;
    background: url(assets/images/video_mask.png) repeat center;    
    position: absolute;
    top: 0;
    left: 0;
    z-index: 3;
}
.video-foreground {
    position: relative;
    margin: 0 auto;
    text-align: center;
    color: #fff;
    z-index: 4;
}
.video-foreground a {
    display: block;
    width: 30%;
    min-width: 170px;
    padding: 10px 20px;
    margin: 48px auto;
    color: #fff;
    background-color: var(--color-theme);
}

.team-section {
    width: 100%;
    max-width: 1120px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 140px 0px 100px;
    margin: 0 auto;
}
.team__photo {
    width: 50%;
}
.team__photo img {
    width: 100%;
    height: auto;
}
.team__description {
    width: 50%;
    padding: 54px 0 0 76px;
}
.team__description__title {
    color: var(--color-black);
}
.team__description__body {
    font-size: 0.875rem;
    line-height: 24px;
}
.team__description__link {
    display: block;
    width: fit-content;
    padding: 10px 20px;
    color: #fff;
    background-color: var(--color-theme);
    margin-top: 25px;
}

.footer {
    width: 100%;
    color: var(--color-dark-gray);
    background-color: #f1f1f1;
}
.footer__top {
    width: 80%;
    max-width: 1120px;
    margin: 0 auto;
    padding: 120px 0 110px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}
.footer__top__location {
    padding-right: 28px;
}
.footer__top__location h5 {
    color: var(--color-black);
}
.footer__top__location i {
    color: var(--color-extra-light-gray);
}
.footer__top__location div {
    display: flex;
    gap: 24px;
}
.footer__top__links {
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.footer__top__links__box {
    display: flex;
    align-items: center;
    gap: 12px;
}
.footer__top__links__box i {
    color: var(--color-theme);
}
.footer__top__links__box a {
    color: var(--color-black);
}
.footer__top__links__box a:hover {
    color: var(--color-theme);
    text-decoration: underline;
}

.footer__bottom {
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}
.footer__bottom__container {
    width: 80%;
    max-width: 1120px;
    margin: 0 auto;
    padding: 60px 0 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.footer__bottom__copyright {
    display: flex;
    align-items: center;
}
.footer__bottom__copyright a {
    color: var(--color-black);
}
.footer__bottom__copyright a:hover {
    color: var(--color-theme);
    text-decoration: underline;
}
.footer__bottom__goTop {
    color: inherit;
}

@media(max-width:1200px) {
    .container {
        transition: padding 0.8s ease;
    }
    #menu-btn {
        display: flex;
        justify-content: center;
        align-items: center;
    }
    #close-btn {
        width: 100%;
        height: 48px;
        display: flex;
        direction: rtl;
        align-items: center;
        position: relative;
        right: 16px;
        top: 8px;
        color: var(--color-light-gray);
    }
    #close-btn::after {
        content: "";
        width: 100%;
        position: absolute;
        top: 100%;
        right: -14px;
        border-bottom: 1px solid rgba(255, 255, 255, .03);
    }
    #close-btn:hover {
        color: #fff;
    }

    .menu__items {
        width: 250px;
        height: 100vh;
        background-color: var(--color-black);
        position: fixed;
        top: 0;
        right: -100%;
        display: flex;
        flex-direction: column;
        z-index: 100;
    }
    .menu__items.active {
        right: 0;
    }
    .menu__items a {
        display: block;
        width: 100%;
        color: var(--color-light-gray);
        padding: 10px 0 10px 20px;
        border-bottom: 1px solid rgba(255, 255, 255, .03);
    }
    .menu__items a:hover {
        color: #fff;
    }
    .menu__items a.buy-btn {
        color: var(--color-theme);
    }
    .menu__items .go-home {
        padding-top: 20px;
    }
}

@media(max-width:960px) {
    body {
        font-size: 0.875rem;
        line-height: 20px;
    }
    h3 {
        font-size: 1.875rem;
        line-height: 36px;
    }
    h6 {
        font-size: 0.75rem;
        line-height: 20px;
    }
    .team__description {
        width: 50%;
        padding: 42px 0 0 58px;
    }
    .team__description__body {
        font-size: 0.75rem;
        line-height: 20px;
    }
    .footer__top {
        width: 85%;
    }
    .footer__top__location p {
        width: 135px;
    }
}

@media(max-width:768px) {
    body {
        font-size: 0.75rem;
    }
    h2 {
        font-size: 2.625rem;
        line-height: 45px;
    }
    h3 {
        font-size: 1.5rem;
        line-height: 30px;
    }
    .fixed-item {
        display: none;
    }

    .menu-container {
        width: 90%;
    }

    .hero-section {
        margin-top: 0px;
    }
    .hero__content {
        width: 100%;
        margin-bottom: 20px;
        padding: 0 32px;
    }

    .category-section {
        width: 90%;
    }
    .category__items {
        padding-top: 24px;
        gap: 16px;
    }
    .category__items__box {
        width: 100%;
    }
    .items__box__image__hover img {
        width: 25%;
    }
    
    .team__photo {
        width: 90%;
        margin: 0 auto;
    }
    .team__description {
        width: 90%;
        margin: 0 auto;
    }
    
    .footer__top {
        width: 100%;
        padding: 80px 32px 70px;
        margin: auto;
        flex-direction: column;
        gap: 36px;
    }
    .footer__top__location p {
        width: fit-content;
    }
    .footer__bottom__container {
        flex-direction: column-reverse;
        gap: 16px;
    }
}

@media(max-width:480px) {
    body {
        font-size: 0.75rem;
    }
    h2 {
        font-size: 2.25rem;
        line-height: 38px;
    }
    h3 {
        font-size: 1.25rem;
        line-height: 26px;
    }
}