/* technologies work section start */
.technologies-work {
    background-color: #090909;
    display: flex;
    align-items: center;
    overflow: hidden
}

.technologies-work-outbg {
    position: absolute;
    left: 0;
    top: 0;
    z-index: 1
}

.technologies-work-outbg img {
    width: clamp(100px, 116.667vw, 2240px);
    height: clamp(100px, 58.75vw, 1128px);
    animation: shape-deform-technologies-work 40s linear infinite;
    /* opacity: 0.3; */
    mix-blend-mode: hard-light;
}

@keyframes shape-deform-technologies-work {
    0% {
        transform: translate(10%, 0px);
        scale: 1;
        rotate: -0.05turn
    }

    50% {
        transform: translate(-10%, 0%);
        scale: 1.07;
        rotate: 0.05turn
    }

    to {
        transform: translate(10%, 0px);
        scale: 1;
        rotate: -0.05turn
    }
}

.technologies-work-p1 {
    margin-bottom: clamp(16px, 3.333vw, 64px);
    position: relative;
    z-index: 2
}

.technologies-work-p1 h2 {
    color: #fffdfc;
    margin-bottom: clamp(14px, 0.833vw, 16px)
}

.technologies-work-p1 p {
    color: #fffdfc
}

.technologies-work-p2 {
    position: relative;
    z-index: 2
}

.technologies-work-p2-boxes {
    display: flex;
    flex-flow: wrap;
    gap: clamp(10px, 1.5vw, 30px)
}

.technologies-work-p2-box {
    height: clamp(10px, 15.104vw, 290px);
    gap: clamp(6px, 1.667vw, 32px);
    display: flex;
    flex-flow: column;
    border: 1px solid #fffdfc;
    width: calc(20% - clamp(10px, 1.25vw, 24px));
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.technologies-work-p2-box:hover {
    border: 1px solid #da3333;
}

.technologies-work-p2-box img {
    height: clamp(16px, 3.333vw, 64px);
    width: auto
}

.technologies-work-p2-box h3 {
    color: #fffdfc
}
@media screen and (min-height: 620px) and (max-height: 699px) { 
    .technologies-work-p1 {
        margin-bottom: 20px;
    }
    .technologies-work-p2-box {
        height: clamp(10px, 10.981vw, 150px);
    }
}
/* technologies work section end */