/* --- UTILITIES --- */
button {
    cursor: pointer;
    border: none;
    font-family: inherit;
}

.container-wide {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 1rem;
}

.flex {
    display: flex;
}

.items-center {
    align-items: center;
}

.items-end {
    align-items: flex-end;
}

.justify-between {
    justify-content: space-between;
}

.grid {
    display: grid;
}

.gap-4 {
    gap: 1rem;
}

.gap-8 {
    gap: 2rem;
}


header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: white;
    border-bottom: 1px solid #f1f5f9;
    height: 72px;
}

.nav-logo-sub {
    font-size: 13px;
    color: #2B328F;
    letter-spacing: 3px;
    font-weight: 400;
}

.nav-links {
    gap: 2rem;
}

.search-box {
    background: #f1f5f9;
    border-radius: 8px;
    padding: 12px;
}

.search-box input {
    border: none;
    background: transparent;
    outline: none;
    font-size: 14px;
    margin-left: 8px;
}

.btn-primary {
    background: #F5865C;
    color: white;
    padding: 10px 24px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 14px;
    text-align: center;
}

@media (max-width: 1200px) {

    .nav-links,
    .search-box {
        display: none;
    }
}