.nav__menu {
    list-style-type: none;
    gap: 17px;
    font-size: 0.9rem;
    
    a {
        color: white;
        text-decoration: none;
        display: flex;
        align-items: center;
        transition: all 500ms;

        &:hover {
            color: #0481d4;
        }
    }
}



.social__links {
    list-style-type: none;
    gap: 22px;
    align-items: center;
}

.nav-part  {
    gap: 20px;
}

.social-wrapper {
    gap: 30px;
}

.social-wrapper {

    --max-width: 1024px;

    p {
        font-size: 0.7rem;
        color: white;
        max-inline-size: 16ch;

        @media (width < var(--max-width)) {
            color: red;
        }
    }
}

.footer__top__part {
    border-bottom: 1px solid #FFFFFF66;
    padding: 60px 0px 45px;
}

.footer__bottom__part {
    padding: 30px 0px;
}

.left-part {
    flex:1;
    flex-basis: 50%;
}

.right-part {
    flex: 1;
    flex-basis: 50%;
}

.right-part-images {
    gap: 33px;
}

.footer-section {
    color: white;
}


.trapezoid {
    width: 0;
    height: 0;
    border-left: 50px solid transparent;
    border-right: 50px solid transparent;
    border-bottom: 100px solid red;
}


.menu {
    gap: 33px;

    li {
        border-top: 1px solid white;
        padding-top: 5px;
        display: flex;
        /* align-items: center; */
    }

    li::after {
        content: url("../images/triangle.svg");
        margin-left: 10px;
    }



}

.logo__wrapper {
    align-items: center;
    padding-bottom: 24px;
}