.top {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f4f5f9;
    padding: 0 10px;
    box-sizing: border-box;
    border-bottom: 2px solid #f4f5f9;
    font-family: "eir-light", sans-serif;
}

.top .content {
    display: flex;
    align-items: center;
}

.top a {
    padding: 10px 30px;
    box-sizing: border-box;
    color: #493553;
}

.top a.active {
    background-color: #fff;
}

header {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 0;
    box-sizing: border-box;
    border-bottom: 1px solid #dbd7dd;
    font-family: sans-serif;
    font-weight: 900;
}

header .content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

header img {
    height: 53px;
}

header nav {
    width: 70%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

header nav a {
    display: flex;
    align-items: center;
    gap: 5px;
    color: #493553;
    text-decoration: none;
    font-weight: 800;
    font-size: 20px;
}

header nav span {
    display: none;
}

header nav a svg {
    height: 25px;
}

@media (max-width: 1140px) {
    header {
        padding: 10px 0;
    }
}

@media (max-width: 768px) {
    .top {
        height: 40px;
    }

    .top .content {
        display: none;
    }

    header img {
        height: 35px;
    }

    header nav {
        justify-content: flex-end;
        gap: 15px;
    }

    header nav a {
        display: none;
    }

    header nav span {
        width: 35px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    header nav span svg {
        height: 100%;
    }
}
