/* what we do industries section css Start */


    .headingAlignset {
        display: inline-block;
    }

    /* initial hidden state */
    .headingAlignset p {
        text-align: end;
        font-weight: 600;
        font-size: 28px;
        line-height: 120%;
        letter-spacing: 0;
        text-decoration: underline;
        margin-top: 10px;
        color: #1E4683;

        opacity: 0;
        /* start hidden */
        transform: translateY(-20px);
        /* start slightly above */
        animation: fadeDown 1s ease forwards;
        /* run animation */
        animation-delay: 0.5s;
        /* optional delay after page load */
    }

    /* keyframes for fade down */
    @keyframes fadeDown {
        to {
            opacity: 1;
            transform: translateY(0);
            /* move to original position */
        }
    }

    .productContentbox {
        background: #E3EEFF;
        padding: 45px 40px;
        position: relative;
        /* bottom: 30px; */
        width: 100%;
        max-width: 997px;
        margin: 270px 0px 40px;
    }

    .productAlign {
        display: flex;
        align-items: flex-end;

    }

    .productContentbox span {
        font-weight: 600;
        font-size: 24px;
        line-height: 120%;
        letter-spacing: 0;
        color: #fff;
        background: #E1171F;
        padding: 7px 16px;
        position: absolute;
        top: -20px;
    }

    .productBannerHeading {
        font-weight: 600;
        font-size: 26px;
        line-height: 120%;
        letter-spacing: 0;
        padding: 14px 10px;
        color: #fff;
        background: linear-gradient(118.04deg, #1E4683 3.55%, #1A2A38 95.74%);
        display: inline-flex;

    }

    .alignText {
        display: flex;
        align-items: flex-start;
        margin-top: 15px;
        gap: 10px;
    }

    .alignText p {
        font-weight: 400;
        font-size: 18px;
        line-height: 140%;
        letter-spacing: 0;
        color: #525252;
    }

    @media screen and (max-width:1750px) {
        .productContentbox {
            max-width: 850px;
        }
    }
    @media screen and (max-width: 1450px) {
        .productContentbox {
            max-width: 797px;
        }
    }
    @media screen and (max-width:1250px) {
        .productContentbox {
            max-width: 697px;
        }

        .productContentbox span {
            font-size: 20px;
        }

        .productBannerHeading {
            font-size: 22px;
        }

        .productContentbox {
            padding: 45px 30px;
        }

        .alignText {
            margin-top: 25px;
        }
    }
    @media screen and (max-width:767px) {
        .productContentbox {
            padding: 40px 20px;
            max-width: 100%;
            margin: 270px 0px 0px;
        }
    }

    @media screen and (max-width:500px) {
        .productBannerHeading {
            font-size: 18px;
        }

        .productContentbox {
            padding: 40px 10px;
        }

        .alignText p {
            font-size: 14px;
        }

        .alignText img {
            width: 15%;
        }

        .alignText {
            margin-top: 20px;
        }

        .productContentbox {
            padding: 40px 10px 30px;
        }
    }