header {
    position: fixed;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    flex-direction: row;
    padding-left: 40px;
    padding-right: 40px;
    width: 100%;
    height: 75px;
    background-color: #00000000;
    z-index: 1000;
    transition: 300ms linear all;
}

header .option {
    border:none;
    outline:none;
    text-decoration:none;
    color: white;
    -webkit-tap-highlight-color: white;
}

header .option-link {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    border:none;
    outline:none;
    text-decoration:none;
    color:inherit;
    -webkit-tap-highlight-color: white;
}

header .option-link::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    width: 0%;
    height: 2px;
    background-color: white;
    border-radius: 100px;
    transform: translate(-50%, 0);
    transition: 0.1s all;
}

header .option-link:hover::after {
    width: 100%;
}

.logo {
    width:55px;
    height:55px;
    object-fit:cover;
    filter: brightness(0) saturate(100%) invert(52%) sepia(3%) saturate(1793%) hue-rotate(134deg) brightness(87%) contrast(89%);
}

.options {
    display: flex;
    flex-grow: 1;
    margin-left: 60px;
    gap: 50px;
}

.option {
    display: flex;
    align-items: center;
    align-items: center;
    gap: 15px;
    height: 100%;
    color: #FFFFFF;
    font-size: 17px;
    font-weight: bold;
    cursor: pointer;
}

.arrow {
    margin-top: 5px;
}

.close-menu {
    display: none;
}

.open-menu {
    display: none;
}