

.container {
    display: flex;
    height: 100vh;
}

.sidebar {
    width: 200px;
}

.sidebar ul {
    list-style: none;
}

.sidebar ul li a {
    text-decoration: none;
    color: black;
    display: block;
    transition: all 0.3s ease;
    width: 174%;
    padding: 5px;
    text-align: center;
    border-radius: 7px;
    padding-top: 22px;
    padding-bottom: 21px;
    line-height: 0px;
}


.main-container-pp {
    padding-top: 9%;
}

.content {
    padding: 20px;
    background-color: white;
    width: 65%;
    margin: -40px auto;
    margin-left: 200px !important;
}

.content {
    width: 70%;
    margin: -40px auto;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

.active-side {
    background-color: rgba(234, 251, 255, 1) /* Фон активного элемента */
}


/* Mobile version start */
@media screen and (max-width: 700px) {
    .sidebar {
        width: 69%;
    }
    .tab-list {
        display: flex;
        gap: 20px;
        overflow: scroll;
        width: 149%;
    }
    .sidebar ul li a {
        line-height: normal;
        width: 150px;

    }
    .main-container-pp {
        display: block !important;
    }
    .sidebar ul {
        padding: 0;
    }
    .content {
        width: 100%;
    }
    .content {
        margin-left: -22px !important;
        margin-top: 20px;
    }

}
/* Mobile version end */

/* FOOTER START */


@media (max-width: 991px) {
    .footer {
        padding: 0 20px;
    }
}

.footer-top {
    align-items: center;
    display: flex;
    width: 100%;
    gap: 20px;
    justify-content: space-between;
}

@media (max-width: 991px) {
    .footer-top {
        max-width: 100%;
        flex-wrap: wrap;
    }
}

.logo-container {
    align-self: stretch;
    display: flex;
    gap: 10px;
}

.logo-icon {
    width: 56px;
    aspect-ratio: 1;
    object-fit: contain;
}

.logo-text {
    width: 122px;
    max-width: 100%;
    margin: auto 0;
    aspect-ratio: 5.56;
    object-fit: contain;
}


@media (max-width: 991px) {
    .footer-nav {
        flex-wrap: wrap;
        white-space: initial;
    }
}

.nav-link {
    font-family: Poppins, sans-serif;
    justify-content: center;
}

.nav-link-about {
    font-weight: 600;
}

@media (max-width: 991px) {
    .nav-link {
        white-space: initial;
    }
}

.social-container {
    align-self: stretch;
    display: flex;
    gap: 20px;
    margin: auto 0;
}

.social-text {
    color: black;
    flex-grow: 1;
    margin: auto 0;
    font: 500 14px/120% Poppins, sans-serif;
}

.social-icons {
    display: flex;
    gap: 7px;
}

.social-icon-wrapper {
    align-items: center;
    display: flex;
    justify-content: center;
    flex: 1;
}

.social-icon {
    width: 28px;
    height: 28px;
    aspect-ratio: 1;
    object-fit: contain;
    background-color: #fff;
    border-radius: 50%;
}

.footer-bottom {
    display: flex;
    margin-top: 40px;
    gap: 20px;
    font-size: 14px;
    color: #292d32;
    font-weight: 500;
    line-height: 120%;
}

@media (max-width: 991px) {
    .footer-bottom {
        max-width: 100%;
        flex-wrap: wrap;
    }
}

.copyright {
    font-family: Poppins, sans-serif;
    flex-grow: 1;
    flex-basis: auto;
    text-align: center;
}

.privacy-policy {
    font-family: Poppins, sans-serif;
    flex-grow: 1;
    flex-basis: auto;
    display: flex;
    justify-content: end;
}

/* FOOTER END */