body {
    background-color: #fff;
}
.business-container {
    width: 100%;
    max-width: 1040px;
    margin: 0 auto;
}
img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.business-banner {
    width: 100%;
    .business-banner_wrap {
        width: 100%;
        height: 340px;

    }
}
.desc-content {
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding: 30px 10px;
    background: rgba(246, 249, 254, 1);
    &.reset {
        margin-top: -10px;
        margin-bottom: 20px;
        padding: 0;
        list-style: none;
        background: transparent;
    }
    .desc-top-content {
        display: flex;
        gap: 15px;
    }
    .desc-logo {
        display: block;
        width: 150px;
        height: 150px;
    }
    .desc-body {
        flex: 1;
        display: flex;
        flex-direction: column;
        gap: 8px;
        padding: 8px 0;
        h2:first-child {
            font-size: 20px;
            font-weight: 500;
            display: flex;
            align-items: center;
            gap: 4px;
            margin-bottom: unset;
        }
        svg {
            display: block;
            width: 17px;
            height: 17px;
        }
        p, *:not(i) {
            /*flex: 1;*/
            font-size: 14px;
            font-weight: 500;
            overflow: hidden;
            display: -webkit-box;
            -webkit-line-clamp: 4;
            -webkit-box-orient: vertical;
            background: transparent;
        }
        .desc-address {
            display: flex;
            /*align-items: center;*/
            gap: 4px;
            .desc-address-icon {
                width: 13px;
                display: block;
                color: #0D417B;
            }
            .desc-address-title {
                font-size: 15px;
                font-weight: 400;
            }
        }
    }
    .desc-contact {
        display: flex;
        flex-direction: column;
        justify-content: center;
        gap: 15px;
        padding: 8px 24px 8px 24px;
        border-left: 1px solid rgba(0, 0, 0, 0.41);
        & > div {
            display: flex;
            gap: 8px;
        }
        ul {
            padding-left: unset;
            margin-bottom: unset;
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            row-gap: 10px;
            column-gap: 20px;
            /*gap: 20px;*/
        }
        li, p, a, span {
            font-size: 15px;
            font-weight: 500;
            line-height: 100%;
            color: #000;
            background: transparent;
        }
        svg {
            display: block;
            width: 15px;
            height: 15px;
        }
        i {
            color: #0D417B;
        }
        .desc-view {
            p {
                color: rgba(118, 138, 158, 1);
                font-size: 14px;
                font-weight: 400;
            }
            a {
                flex: 1;
                text-align: right;
            }
        }
    }
    .desc-slogan {
        width: 100%;
        padding: 6px;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 6px;
        background: rgba(21, 101, 192, 1);
        border-radius: 4px;
        img {
            display: block;
            width: 18px;
            height: 18px;
        }
        .slogan-title, p, * {
            font-size: 15px;
            font-weight: 700;
            line-height: 28px;
            color: #fff;
            margin-bottom: 0;
        }
    }
    .desc-footer {
        display: flex;
        align-items: center;
        justify-content: space-between;
        .desc-footer__content {
            div {
                display: flex;
                align-items: center;
                gap: 5px;
                width: fit-content;
            }
        }
        .desc-footer__link {
            font-size: 14px;
            font-weight: 500;
            color: #000;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 5px;
            span {
                width: 16px;
                height: 16px;
            }
            img {
                display: block;
                width: 100%;
                height: 100%;
                object-fit: contain;
            }
        }
    }
}

.business-advantages {

}
.advantages-list {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    .advantages-list-item {
        font-size: 15px;
        font-weight: 500;
        position: relative;
        padding-left: 10px;
        &:before {
             content: '';
             position: absolute;
             width: 5px;
             height: 5px;
             top: 50%;
             left: 0;
             transform: translateY(-50%);
             background: rgba(5, 24, 46, 1);
             border-radius: 50%;
        }
    }
}
.business-wrapper-title {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 20px;
}
.brands-list {
    display: flex;
    flex-wrap: wrap;
    margin: 40px 0;
    gap: 30px;
    .brands-list-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 5px;
        span {
            font-size: 15px;
            font-weight: 500;
        }
        span:has(img) {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 5px;
            width: 50px;
            height: 50px;
        }
        img {
            display: block;
            width: 100%;
            height: 100%;
            object-fit: contain;
        }
    }
}

.business-gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}
.business-gallery-main {
    width: 100%;
    height: 330px;
}
.business-gallery-navs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(3, 1fr);
    gap: 10px;
    height: 330px;
    .business-gallery-navs-item {
        cursor: pointer;
        border: 1px solid #fff;
        transition: all .3s linear;
        &:hover {
             border-color: rgba(5, 24, 46, 1);
        }
    }
}

@media screen and (max-width: 992px) {
    .business-banner {
        .business-banner_wrap {
            height: 165px;
        }
    }
    .desc-content {
        margin: 15px 0 0 0;
        .desc-top-content {
            gap: 10px;
        }
        .desc-logo {
            display: block;
            width: 80px;
            height: 80px;
        }
        .desc-body {
            gap: 6px;
            padding: 0;
            h2 {
                font-size: 15px;
                font-weight: 600;
            }
            svg {
                width: 14px;
                height: 14px;
            }
            p {
                flex: 1;
                font-size: 12px;
                -webkit-line-clamp: 3;
            }
        }
    }

    .advantages-list {
        gap: 10px;
        .advantages-list-item {
            font-size: 14px;
        }
    }

    .business-wrapper-title {
        font-size: 18px;
        margin-bottom: 14px;
    }
    .brands-list {
        margin: 20px 0;
        gap: 10px;
        .brands-list-item {
            span {
                font-size: 14px;
            }
            span:has(img) {
                width: 35px;
                height: 35px;
            }
        }
    }
    .business-gallery {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
    }
    .business-gallery-main {
        height: 220px;
    }
    .business-gallery-navs {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        grid-template-rows: repeat(3, 1fr);
        gap: 10px;
        .business-gallery-navs-item {
            cursor: pointer;
            border: 1px solid #fff;
            transition: all .3s linear;
            &:hover {
                 border-color: rgba(5, 24, 46, 1);
            }
        }
    }

}
