.navigation > * + * {
    border-top: 1px solid #ddd;
    margin-top: 0.75rem;
    padding-top: 0.75rem;
}
.navigation section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3em;
}
.navigation section div {
    display: flex;
    align-items: center;
    gap: 10px;
}
.navigation section div img {
    width: auto;
    height: 40px;
}
.navigation section div img {
    border-radius: 5px;
}
.navigation section div p {
    font-family: 'content-font';
    font-size: 14px;
    color: #000;
}
.navigation section .start {
    background-color: #111;
    border-radius: 50px;
}
.navigation section .start:hover {
    background-color: var(--color__2);
    transition: .3s ease-in-out;
}
.navigation section .start a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}
.navigation section .start a {
    box-sizing: border-box;
    padding: 8px 25px;
}
.navigation section .start a svg {
    width: 15px;
    height: auto;
}
.navigation section .start a p {
    font-size: 14px;
}
.navigation section .start a p,
.navigation section .start a svg {
    color: #fff;
}