/*!*******************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[13].oneOf[10].use[2]!./node_modules/next/dist/build/webpack/loaders/postcss-loader/src/index.js??ruleSet[1].rules[13].oneOf[10].use[3]!./src/styles/header.css ***!
  \*******************************************************************************************************************************************************************************************************************************************************************/
/* Header.css */
.nav {
    min-height: 9vh;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.logo img {
    width: 100%;
}

@media (max-width: 768px) {
    .logo img {
        width: 40vw;
    }
}

.menu {
    list-style: none;
    display: flex;
    align-items: center;
    text-decoration: none;
}

.menu li {
    margin: 0px 20px;
}

@media (max-width: 992px) {
    .menu {
        display: none;
    }
}

.nav-icon {
    background: none;
    cursor: pointer;
    border: none;
    outline: none;
}

@media (min-width: 992px) {
    .nav-icon {
        display: none;
    }
}

.line {
    display: block;
    border-radius: 50px;
    width: 25px;
    height: 3px;
    margin: 5px;
    background-color: #000;
    transition: width 0.4s ease-in-out;
}

.line:nth-child(2) {
    width: 70%;
}

.line.open:nth-child(2) {
    width: 40%;
}

.overlay {
    position: absolute;
    left: 0;
    height: 0;
    width: 100vw;
    z-index: 5;
    background: linear-gradient(#7f5dc6cc, #823e51);
    transition: height 0.4s ease-in-out;
}

.overlay.open {
    height: 91vh;
}

@media (min-width: 992px) {
    .overlay {
        display: none;
    }
}

.overlay-menu {
    list-style: none;
    text-align: center;
    position: absolute;
    left: 50%;
    top: 45%;
    transform: translate(-50%, -50%);
    padding-left: 0px;
}

.overlay-menu li {
    opacity: 0;
    font-size: 25px;
    margin: 50px 0px;
    transition: opacity 0.4s ease-in-out;
}

.overlay-menu.open li {
    opacity: 1;
}

.overlay-menu li a {
    color: #fff;
}
