.amrite-header {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding: 2vw 0;
    align-items: center;
}

.amrite-logo img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    opacity: 0;
    animation:fadeIn 1s ease-out forwards;
}

.amrite-menu {
    list-style: none;
    display: flex;
    gap: 50px;
    padding: 0;
    margin: 0;
}

.amrite-menu li a {
    color: #fff;
    font-weight: 600;
}

.amrite-menu li {
    position: relative;
    overflow: hidden;
    padding-bottom: 5px;
}

.amrite-menu li::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    height: 2px;
    width: 0;
    background-color: #fff;
    transition: width 0.3s ease;
    z-index: -1;
}

.amrite-menu li:hover::after {
    width: 100%;
}

.amrite-mobile-header {
    position: relative;
    display: none;
    justify-content: space-between;
    padding: 10px 0;
    align-items: center;
}

.mobile-menu {
    position: absolute;
    top:20px;
    right:0;
    display: none;
}

.amrite-mobile-logo {
    width: 100px;
    height:100px;
    object-fit: cover;
}

.amrite-menu-mobile {
    background: #fff;
    list-style: none;
    padding: 20px;
    z-index: 100 !important;
    position: absolute;
    top: 70px;
    right: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.mobile-menu-toggle {
    background: #fff;
    padding:10px;
    color:#000;
    width:fit-content;
    max-height: 70px;
}

.amrite-menu-mobile {
    background: #fff;
    list-style: none;
    padding: 20px;
    z-index: 100 !important;
    position: absolute;
    top: 70px;
    right: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

@media only screen and (max-width:768px) {
    .amrite-header {
        display: none;
    }

    .amrite-mobile-header {
        display:flex;
    }

    .mobile-menu {
        display: none;
    }
}