     .common_section {
        background: var(--light);

        h2 {
            color: var(--black);
        }
    }

    body {
        background: #fff;
    }

    @property --angle {
        syntax: "<angle>";
        inherits: false;
        initial-value: 0deg;
    }

    .go_down_btn {
        z-index: 1;
    }

    .video_banner.common_banner {
        background: url(../../images/offerings/empowering_goverment/banner.jpg);
        background-size: cover;
        background-position: center;
        height: 100vh;
        margin-top: -85px;
        top: 0px;

        .banner-content {
            text-align: center;
            top: 36%;

            h1 {
                line-height: 70px;
                margin: 0 0px 20px;
            }

            p {
                font-family: "Geist-Regular" !important;
                font-size: 18px;
                line-height: 30px;

            }
        }

        &::before {
            content: "";
            left: 0px;
            top: 0px;
            position: absolute;
            /* background: linear-gradient(90deg, rgb(84 15 167 / 65%) 7.45%, rgb(32 136 188 / 47%) 86.57%); */
            width: 100%;
            height: 100%;
            --angle: 0deg;
            background: linear-gradient(var(--angle), rgb(60 0 255 / 40%) 7.45%, rgb(33 180 254 / 50%) 86.57%);
            animation: gradientAnimation 10s linear infinite;
        }
    }

    .client_section {
        width: 100%;

        p {

            position: relative;
            z-index: 1;
        }

        & .logo_container {
            .slide_track {
                animation: 140s moveLeft infinite linear;
            }

            & .slide {
                margin-right: 55px;

                img {
                    height: 44px;
                }
            }

            overflow:visible;

            &::after {
                background-image: none;
            }

            &::before {
                content: "";
                left: 0px;
                bottom: -25px;
                width: 100%;
                height: 300px;
                position: absolute;
                background: linear-gradient(180deg, rgba(0, 0, 0, 0.00) 0.0%, rgb(0 0 0) 100%);
            }
        }
    }

    @keyframes moveLeft {
        0% {
            transform: translateX(0%);
        }

        100% {
            transform: translateX(-12000px);
        }
    }

    .hightlight {
        background: linear-gradient(97deg, #00F, #C519FF);
        background-clip: text;
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }

    @keyframes gradientAnimation {
        from {
            --angle: 0deg;
        }

        to {
            --angle: 360deg;
        }
    }

    .empowering_gov_contact {
        background: #fff;
        display: flex;
        align-items: center;

        .empowering_gov_contact_inner {
            border-radius: 20px;
            background: linear-gradient(345deg, #55C2FF 3.94%, #5B4ADF 92.58%);
            box-shadow: 0px 12px 16px 2px #C6C5F3;
            padding: 30px;
            height: 350px;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        h2 {
            color: var(--light);
        }

        a {
            font-family: "Geist-Regular";
            color: #040404;
            border-radius: 100px;
            background: #FFF;
            height: 60px;
            padding: 10px 35px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            text-decoration: underline;
            font-size: 18px;
            min-width: 375px;
            margin: 50px 10px 0px;

            &:hover {
                color: #5a4de0;
            }
        }

        p {
            color: var(--light);
            line-height: 43px;
            font-size: 20px;


        }

        .btn_sec {
            margin-top: 32px;
            text-align: center;

            .get_started_btn {
                display: inline-block;
                line-height: 50px;
                text-align: center !important;
                border-radius: 30px !important;
                background: transparent !important;
                font-family: "Geist-SemiBold";
                border: 2px solid var(--black) !important;

                &:hover {
                    background: transparent !important;
                    border: 2px solid var(--black) !important;
                }
            }
        }
    }
    
    .offering_sec {

        h2 {
            margin-bottom: 70px;
            color: var(--black);
            text-align: left;
        }

        .offering_box {
            color: var(--black);
            margin-top: 70px;

            .offering_box_inner {
                display: flex;
            }

            .content_sec {
                padding-right: 50px;

                h4 {
                    color: var(--black);
                    font-size: 36px;
                    font-family: "Geist-Regular";
                    margin-bottom: 30px;
                }

                p {
                    color: var(--black);
                    font-size: 16px;
                    position: relative;
                    margin-bottom: 10px;
                    padding-left: 20px;

                    &::before {
                        content: "";
                        position: absolute;
                        left: 0px;
                        top: 8px;
                        width: 5px;
                        height: 5px;
                        background: var(--black);
                        border-radius: 50%;
                    }

                }
            }

        }

        .nav-pills {
            border-radius: 100px;
            border: 1px solid #CCC;
            display: inline-flex;
            padding: 4px 10px;

            .nav-link {
                width: 180px;
                border-radius: 100px;
                background: #f3f3f3;
                color: var(--black);
                font-family: "Geist-Regular";
                margin-right: 10px;

                &.active,
                &:hover {
                    color: var(--light);
                    background: linear-gradient(90deg, #32CDF6 0%, #55C2FF 38.94%, #5B4ADF 100%);
                }
            }

            .nav-item:last-child {
                .nav-link {
                    margin-right: 0px;
                }
            }
        }
    }
    @media only screen and (max-width:767px) {
        .video_banner.common_banner {
            .banner-content {
                margin-top: 85px;
                position: relative;

                h1 {
                    line-height: 32px !important;
                    font-size: 26px !important;
                }

                p {
                    font-size: 16px;
                    line-height: 20px;
                }
            }
        }

        .client_section {
            & .logo_container {
                &::before {
                    height: 165px;
                }
            }
        }

        .common_section {
            padding: 3rem 0rem;
        }
                .empowering_gov_contact {
            p {
                font-size: 20px;
            }

            a {
                height: 40px;
                padding: 10px 20px;
                font-size: 16px;
                margin: 30px 10px 0px;
                min-width: auto;
            }
        }

    }
    @media only screen and (min-width:767px) and (max-width:992px)
  {
    .video_banner.common_banner {
        height: 560px !important;
        top: 22% !important;
      }
}

    @media only screen and (min-width:768px) and (max-width: 1439px) {
        .client_section {
            & .logo_container {
                &::before {
                    height: 150px;
                }
            }
        }
    }
    @media only screen and (max-width:1919px) and (min-width:1440px) {
        .client_section {
            & .logo_container {
                &::before {

                    height: 185px;
                }
            }
        }
    }