.not-1 {
    padding: 2rem 0;
    margin-bottom: 2rem
}

.not-1 .not-title {
    font-size: 40px;
    margin-bottom: 16px;
    margin-top: 16px;
    font-weight: 600;
    line-height: 120%;
    color: #555
}

.not-1 .not-desc {
    color: #555;
    font-weight: normal;
    font-size: 16px;
    line-height: 160%;
    letter-spacing: .02rem
}

.not-1 .part-box {
    display: flex;
    padding-top: 1rem;
    gap: 2rem
}

.not-1 .part-box .not-img {
    flex: 1 1 calc(20% - 2rem);
    min-width: 120px;
    padding: 1.5rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background-color: white;
    transition: all .3s ease;
    position: relative;
    overflow: hidden
}

.not-1 .part-box .not-img::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.2) 50%, rgba(255, 255, 255, 0) 100%);
    transition: all .6s ease
}

.not-1 .part-box .not-img:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 12px 20px rgba(0, 0, 0, 0.1)
}

.not-1 .part-box .not-img:hover::before {
    left: 100%
}

.not-1 .part-box .not-img:hover img {
    transform: rotate(2deg) scale(1.08)
}

.not-1 .part-box .not-img img {
    width: 10rem;
    transition: all .3s ease;
    filter: grayscale(20%)
}

.not-1 .part-box .not-img img:hover {
    filter: grayscale(0%)
}

.not-1 .part-box .not-img.aws-img img {
    width: 6rem
}

.not-1 .part-box .not-img.goole-logo img {
    width: 12rem
}

@media (max-width:768px) {
    .not-1 .part-box {
        flex-wrap: wrap
    }
}