/* Start header */
header {
    background-color: rgb(238, 236, 236);
    width: 100%;
    position: fixed;
    z-index: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    border-bottom-left-radius: 50px;
    border-bottom-right-radius: 50px;
    box-shadow: 0 8px 25px rgba(1 1 1 / 35%);
}

.navigation {
    display: flex;
    margin-left: 28%;
}

.navigation a {
    position: relative;
    display: inline-block;
    transform: 0.5s;
    cursor: pointer;
    letter-spacing: 0.10em;
    padding: 15px 20px;
    color: rgb(6, 54, 143);
    font-size: 16px;
    font-weight: 850;
    text-decoration: none;
    margin-right: 15px;
}

.navigation a::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 3px;
    top: 100%;
    left: 0;
    transition: transform 0.9s;
    transform: scale(0);
    transform-origin: center;
    background-color: rgb(180, 4, 233);
}

.navigation a:hover::after {
    transform: scale(1);
    transform-origin: center;
}

.navigation a:hover {
    color: rgb(195, 0, 255);
}


.button {
    margin: 0;
    height: auto;
    background: transparent;
    padding: 0;
    border: none;
    cursor: pointer;
}

.button {
    --border-right: 7px;
    --text-stroke-color: rgba(121, 118, 118, 0.6);
    --animation-color: rgb(45, 228, 121);
    --fs-size: 2em;
    letter-spacing: 3px;
    text-decoration: none;
    font-size: var(--fs-size);
    font-weight: 550;
    font-family: "Arial";
    position: absolute;
    text-transform: uppercase;
    color: transparent;
    -webkit-text-stroke: 1px var(--text-stroke-color);
    margin-left: 100px;
    color: rgb(227, 227, 252);
    text-decoration: none;
}

.hover-text {
    position: absolute;
    box-sizing: border-box;
    content: attr(data-text);
    color: var(--animation-color);
    width: 0%;
    inset: 0;
    border-right: var(--border-right) solid var(--animation-color);
    overflow: hidden;
    transition: 0.5s;
    -webkit-text-stroke: 1px var(--animation-color);
}

.button:hover .hover-text {
    width: 100%;
    filter: drop-shadow(0 0 23px var(--animation-color))
}

#bar-show {
    display: none;
    width: 35px;
    margin-left: 87%;
}

#bar-show img {
    width: 100%;
}

/* End  header */

/* start nav-bars-icons setting */
.nav-bars-icons {
    display: none;
    width: 85%;
    position: absolute;
    top: 70px;
    left: 8%;
    background-color: rgb(238 236 236);
    flex-direction: column;
    align-items: center;
    padding: 20px 0;
    z-index: 100;
    gap: 20px;
}

.nav-bars-icons ul {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px;
    gap: 40px;
}

.nav-bars-icons ul li {
    padding: 10px 30%;
    list-style-type: none;
}

.nav-bars-icons ul li:hover {
    background-color: #7F999A;
}

.nav-bars-icons ul li:hover a {
    color: #e1e1e1;
}

.nav-bars-icons ul li a {
    color: rgb(30, 30, 255);
    text-decoration: none;
    --border-right: 7px;
    --text-stroke-color: rgba(121, 118, 118, 0.6);
    --animation-color: rgb(45, 228, 121);
    --fs-size: 1.5em;
    letter-spacing: 3px;
    text-decoration: none;
    font-size: var(--fs-size);
    font-weight: 550;
    font-family: "Arial";
    transition: all 0.4s ease-in-out;
}

.nav-bars-icons ul li.active {
    background-color: #fff;
    padding: 8px 50px;
    /* line-height: 5px; */
    border-radius: 15px;
}

.nav-bars-icons ul li.active a {
    color: #000;
}

.nav-bars-icons .btn {
    border-radius: 15px;
    color: #fff;
    padding: 10px 20px;
    background-color: #7F999A;
    margin-top: 10px;
    width: 140px;
    margin: auto;
    text-align: center;
    display: block;
    transition: all 0.2s ease-in-out;
}

.nav-bars-icons .btn:hover {
    border: 1px solid #7F999A;
    background-color: transparent;
    color: #fff;
}



/* end nav-bars-icons setting */
@media(max-width:768px) {
.nav-bars-icons ul li a {
    font-size: 1.1rem;
}
    
    header {
        position: static;
    }

    .navigation {
        display: none;
    }

    .button {
        margin: 0;
        height: auto;
        background: transparent;
        padding: 0;
        border: none;
        cursor: pointer;
    }

    .button {
        --fs-size: 1.5em;
        font-size: var(--fs-size);
    }

    .button:hover .hover-text {
        width: 100%;
        filter: drop-shadow(0 0 23px var(--animation-color))
    }

    #bar-show {
        display: block;
    }

}

@media (min-width:769px) and (max-width:1024px) {
    .navigation a {
            font-size: 12px;
            margin-right: 10px;
        }
}