@media screen and (min-width: 769px) {
    .aside-item:hover {
        opacity: .5;
        transition: .3s ease-in-out;
    }

    .header-top-nav ul li:hover a span::before {
        content: '';
        position: absolute;
        bottom: -10px;
        left: 0;
        right: 0;
        width: 100%;
        height: 3px;
        background-color: white;
    }

    .navigation-list li:hover {
        opacity: .5;
        transition: .3s ease-in-out;
    }

    .order-button:hover {
        background: #007cd0;
        transition: .3s ease-in-out;
    }

}

@media screen and (max-width: 1100px) {
    .content .container > .wrapper {
        padding-top: 20px;
        display: grid;
        grid-template-columns: 967px;
        justify-content: center;
    }

    .aside {
        display: none;
    }
}

@media screen and (max-width: 1023px) {
    .desk {
        display: none;
    }
    .mob {
        display: block;
    }
    .header-top {
        background-color: #ffffff;
    }

    .navigation-list {
        gap: 20px;
    }

    .header-bottom .container {
        box-shadow: 0 0 6px 0 rgba(0, 0, 0, 0.02);
        border-top: 1px solid #f0f0f0;
        border-bottom: 1px solid #f0f0f0;
    }

    .header-top-icons a:first-child,
    .header-top-actions a:last-child{
        filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.1));
    }

    .header-top-actions {
        gap: 0;
    }

    .navigation-list {
        font-family: var(--second-family);
        font-weight: 700;
        font-size: 16px;
        text-transform: capitalize;
        text-align: center;
        color: #454545;
    }

    .navigation-list li {
        padding: 0;
    }

    .navigation-list li {
        & + & {
            padding-left: 0;
            border-left: none;
        }
    }

    .content .container > .wrapper {
        grid-template-columns: 100%;
    }
}

@media screen and (max-width: 768px) {
    .header-top {
        padding: 9px 0;
    }

    .header-top .burger, .header-top .login {
        display: block;
    }

    .header-bottom .container {
        padding-top: 13px;
        padding-bottom: 13px;
        justify-content: center;
        border-top-color: #e5e5e5;
        border-bottom-color: #e5e5e5;
    }

    .forecast,
    .header-top .date,
    .header-bottom .login,
    .header-bottom .burger {
        display: none;
    }

    .navigation-list {
        gap: 20px;
    }

    h2.article-title {
        font-size: 24px;
        line-height: 167%;
    }

    h3.article-title {
        font-size: 16px;
        line-height: 187%;
    }

    .article-text {
        font-size: 15px;
        line-height: 200%;
    }

    .center {
        text-align: left;
    }

    /* form */
    .form-block {
        padding: 123px 30px 123px 30px;
        background-image: url("../img/order-bg-mob.png");
    }

    .form-block > .wrapper {
        max-width: 355px;
        margin: 0 auto;
    }

    .footer-block {
        justify-content: flex-end;
    }

    .modal-wrapper {
        max-width: 300px;
        left: calc(50% - 150px);
    }

    .buttons {
        display: flex;
    }

    .mob {
        display: block;
    }

    .desk {
        display: none;
    }

    .new-comment {
        padding: 20px;
    }

    form.commentForm {
        margin-left: 0;
    }

    .composition-block .product {
        max-width: 100px;
    }

    .composition-item img {
        max-width: 50px;
    }

    .composition-items {
        gap: 50px;
    }

    .composition-block {
        padding: 10px;
    }

    .composition-items.right {
        margin-left: -20px;
    }
    .composition-items.left {
        margin-right: -20px;
    }

    .composition-item {
        height: 90px;
        max-width: max-content;
        width: unset;
        align-items: flex-start;
        min-width: unset;
        font-size: 10px;
    }
}

@media screen and (max-width: 425px) {

}



