.equipment-in-action-sec {
    background-color: var(--whitesmoke);

    .intro-sec {
        & [class*="heading-"] {
            margin-bottom: 5px;
        }
    }

    .action-callbtn {
        & .call-icon {
            background: transparent;
            border: 1px solid var(--white);

            & img {
                filter: brightness(0) invert(1);
            }
        }

        .call-info {
            & p {
                color: var(--white);

                & span {
                    color: var(--white);
                }
            }
        }
    }
}

.machine-video-wrap {
    border: 4px solid var(--themegreen);
    background: var(--white);
    border-radius: 10px;
    padding: 40px 20px;
    display: flex;
    justify-content: center;
    position: relative;

    & .img-wrap {
        height: 100%;
    }

    & a:before {
        content: "";
        position: absolute;
        background: url(../images/vdo-play-icon.png) no-repeat 0 0;
        width: 65px;
        height: 65px;
        top: 30px;
        right: 30px;
        z-index: 2;
    }

    & span.contentvideoimg {
        position: absolute;
        width: 65px;
        height: 65px;
        top: 30px;
        right: 30px;
        z-index: 1;
    }

    .pulse {
        animation: pulseanimation 2s infinite;
    }

    @keyframes pulseanimation {
        0% {
            box-shadow: 0 0 0 0px rgba(0, 0, 0, 0.2);
        }

        100% {
            box-shadow: 0 0 0 20px rgba(0, 0, 0, 0);
        }
    }

}


@media (max-width: 1599.98px) {}

@media (max-width: 1439.98px) {
    .machine-video-wrap {
        padding: 30px 20px;

        & a:before {
            top: 20px;
            right: 20px;
            width: 55px;
            height: 55px;
            background-size: contain;
        }

        & span.contentvideoimg {
            width: 55px;
            height: 55px;
            top: 20px;
            right: 20px;
        }
    }
}

@media (max-width: 1199.98px) {
    #verticalTab .resp-tabs-list li {
        column-gap: 10px;

        &:not(:last-child) {
            padding: 0px 0px 15px 0px;
        }
    }

    .resp-img-wrap {
        max-width: 55px;
    }

    .vertical-tab-content {
        margin-top: 8px;
        margin-left: 65px;

        p {
            font-size: 16px;
        }
    }

    .machine-video-wrap {
        padding: 20px 20px;
    }

    #verticalTab ul.resp-tabs-list {
        width: 500px;
    }

    #verticalTab .resp-tabs-container {
        width: calc(100% - 500px);
        max-width: 340px;
    }
}

@media (max-width: 991.98px) {
    #verticalTab ul.resp-tabs-list {
        width: 100%;
    }

    #verticalTab .resp-tabs-container {
        width: 100%;
        max-width: 100%;
    }

    .machine-video-wrap {
        padding: 15px;
    }
}