@import url('https://fonts.googleapis.com/css2?family=SN+Pro:ital,wght@0,200..900;1,200..900&display=swap');

.container {
    max-width: 1232px;
    width: 100%;
    padding: 0 16px;
    margin: auto;
}

/* HEADER */
.vt9sm0gj60-header {
    background: #FEF4EB;
    padding: 15px 0;
}

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

.vt9sm0gj60-symbol {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: bold;
}

.vt9sm0gj60-nav {
    display: flex;
    gap: 20px;
}

.vt9sm0gj60-nav a {
    text-decoration: none;
    color: #242424;
    font-size: 14px;
    line-height: 24px;
    font-weight: 600;
    transition: .2s;
    padding: 2px;
}

.vt9sm0gj60-nav a:hover {
    color: #FF6600;
}

.vt9sm0gj60-nav a.active {
    color: #FF6600;
}

.vt9sm0gj60-burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.vt9sm0gj60-burger span {
    width: 24px;
    height: 3px;
    border-radius: 20px;
    background: #242424;
}

/* MOBILE */

@media (max-width:768px) {
    .vt9sm0gj60-nav {
        position: absolute;
        z-index: 9;
        top: 66px;
        left: 0;
        width: 100%;
        background: #ffffff;
        flex-direction: column;
        padding: 20px;
        display: none;
        box-shadow: 0px 4px 7px 0px rgba(255, 102, 0, 0.4);
    }

    .vt9sm0gj60-nav.active {
        display: flex;
    }

    .vt9sm0gj60-burger {
        display: flex;
    }
}