header {
    display: flex;
    justify-content: space-between;
}

.header_navigation {
    gap: 35px;
    display: flex;
}

.header-wrapper {
    padding-top: 30px;
}

.start_puppy_container {
    display: flex;
    align-items: flex-start;
    margin-top: 90px;
    gap: 42px;
}

.start_content {
    gap: 42px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    max-width: 460px;
    margin-top: 163px;
}

.logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
}

.title {
    margin: 0px;
}

.subtitle {
    margin-top: 10px;
    margin-left: 4px;
}

.nav-item-active::after {
    content: "";
    display: block;
    width: 114px;
    height: 3px;
    background-color: var(--color-primary);
}

.nav-item-active-pets::after {
    content: "";
    display: block;
    width: 58px;
    height: 3px;
    background-color: var(--color-primary);
}

.burger-menu-rotate {
    transform: rotate(90deg);
}

.burger-menu-nav {
    position: fixed;
    gap: 40px;
    height: 924px;
    width: 320px;
    right: -2000px;
    display: none;
    top: 0;
    z-index: 1;
    flex-direction: column;
    align-items: center;
    transition: 2s;
    background-color: rgba(41, 41, 41);
    padding-inline-start: 0;
    box-sizing: border-box;
    justify-content: center;
    align-items: center;
}

.burger-menu-nav-bg {
    width: 150%;
    height: 150%;
    background-color: rgba(41, 41, 41, 0.6);
    z-index: -1;
    display: none;
    position: fixed;
}

.burger-menu-nav-bg-active {
    z-index: 0;
    display: block;
    top: -30px;
    left: -30px;
}

.burger-menu-nav-active {
    right: 0;
    transition: 1s;
}

.no-scroll {
    overflow: hidden;
}