* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
   font-family: "Nunito", sans-serif;
    background-color: #ffffff;
}
/* h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Zodiak", sans-serif;
} */
a:hover {
    color: #d2a74a;
}
header {
    background-color: #000;
}
.header-container {
    /*max-width: 1200px;*/
    margin: 0 auto;
    padding: 10px;
    font-size: 16px;
    background-color: #000;
}

.header-nav-lists {
    display: none;
    margin: 0;
}

.header-nav-list {
    padding: 0 24px;
    list-style-type: none;
}

.header-nav-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 8vh;
}

.header-nav-link {
    text-decoration: none;
    color: #ffffff;
    font-size: 16px;
}

.header-active {
    color: #d2a74a;
}

.header-nav-logo {
    /*width: 120px;*/
    margin-left: 10px;
    position: relative;
    z-index: 11;
}

/**Hamburger ICON **/
.header-hamburger-icon {
    width: 100px;
    height: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;
    cursor: pointer;
}

.header-hamburger-line-1,
.header-hamburger-line-2,
.header-hamburger-line-3 {
    background-color: #d2a74a;
    width: 1.78rem;
    height: 0.2rem;
    transition: all 0.2s ease-in-out;
    position: relative;
    z-index: 10;
}

.header-hamburger-line-1,
.header-hamburger-line-2 {
    margin-bottom: 6px;
}

/* Show class to  change the state of hambuger icon cross*/
.show .header-hamburger-line-1 {
    transform: translateY(10px) rotate(135deg);
}

.show .header-hamburger-line-2 {
    opacity: 0;
}

.show .header-hamburger-line-3 {
    transform: translateY(-8.6px) rotate(-135deg);
}

/*Show */

header ul.show {
    position: fixed;
    background-color: #000000;
    top: 8vh;
    left: 0;
    height: 100%;
    width: 100%;
    /* margin-top: -8vh; */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    /* z-index: 10; */
    z-index: 11;
    margin-top: 2vh;
}

header ul.show li {
    margin: 1rem 0;
}

.header-btn {
    text-decoration: none;
}

.header-btn-custom {
    text-align: center;
    padding: 5px 30px;
    width: 133px;
    /*height: 48px;*/
    border-radius: 4px;
    background-color: #d2a74a;
    color: #fff;
}

.header-btn-custom:hover,
.header-btn-custom:active {
    background-color: #ffffff;
    color: #000000;
}

@media (min-width: 1000px) {
    .header-nav-lists {
        display: flex;
    }

    .header-hamburger-icon {
        display: none;
    }
}

@media (min-width: 1200px) {
    * {
        font-size: 20px;
    }
}

@media only screen and (max-width: 600px) {
    .header-nav-bar {
        display: flex;
        justify-content: space-between;
        align-items: center;
        height: 8vh;
    }
}
@media only screen and (max-width: 320px) {
    .header-nav-bar {
        display: flex;
        justify-content: space-between;
        align-items: center;
        height: 8vh;
    }
}

/* Small devices (portrait tablets and large phones, 600px and up) */
@media only screen and (min-width: 600px) and (max-width: 700px) {
    .header-nav-bar {
        display: flex;
        justify-content: space-between;
        align-items: center;
        height: 8vh;
    }
}
