p {
    margin: 0;
}

.gradient-text {
    background: linear-gradient(90deg, #0E46A3 0%, #7388FD 49.04%, #0E46A3 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.custom_marquee {
    position: relative;
    overflow: hidden;
    width: 100%;
}

.custom_marquee .e-grid {
    display: flex;
    flex-wrap: nowrap;
    animation: marquee 10s ease-in-out infinite alternate;
    position: relative;
    width: max-content;
}

.custom_marquee .e-grid .elementor-widget-image {
    margin-right: 20px;
}

.custom_marquee .e-grid .elementor-widget-image img {
    max-height: 355px;
    max-width: 552px;
}

.partner_logos .e-grid {
    position: relative;
}

.partner_logos .e-grid:before {
    content: '';
    width: 100%;
    position: absolute;
    left: 0;
    top: 49%;
    border-bottom: 1px solid #ccc;
    z-index: 9;
    bottom: auto;
    height: 1px;
}

.partner_logos .e-grid .elementor-widget-image:nth-child(1):before {
    content: '';
    height: 100px;
    width: 1px;
    position: absolute;
    background: #ccc;
    right: -10px;
    top: 25px;
}

.partner_logos .e-grid .elementor-widget-image:nth-child(2):before {
    content: '';
    height: 100px;
    width: 1px;
    position: absolute;
    background: #ccc;
    right: -10px;
    top: 25px;
}

.partner_logos .e-grid .elementor-widget-image:nth-child(3):before {
    content: '';
    height: 100px;
    width: 1px;
    position: absolute;
    background: #ccc;
    right: -10px;
    top: 25px;
}

@keyframes marquee {
    0% {
        transform: translateX(1%);
    }

    100% {
        transform: translateX(-50%);
    }
}

.list_btn .elementor-inline-item {
    border: 1px solid #ccc;
    padding: 5px 20px !important;
    margin-bottom: 15px !important;
    border-radius: 20px;
}

.white_btn {
    background: #fff;
    color: #000;
    margin-right: 10px;
    padding: 8px 10px;
    border-radius: 30px;
    border: 1px solid #ccc;
    margin-top: 15px;
    display: inline-block;
}

.big_svg .elementor-button-icon svg {
    height: auto;
    width: 2.5em;
}

.big_svg span.elementor-button-content-wrapper {
    align-items: center;
}

.big_svg {
    pointer-events: none;
}

@media screen and (min-width:767px) {
    .sticky_div {
        position: sticky;
        top: 20px;
    }
}

@media screen and (max-width:767px) {

    .partner_logos .e-grid:before,
    .partner_logos .e-grid .elementor-widget-image:nth-child(1):before,
    .partner_logos .e-grid .elementor-widget-image:nth-child(2):before,
    .partner_logos .e-grid .elementor-widget-image:nth-child(3):before {
        opacity: 0;
    }

    .custom_marquee .e-grid .elementor-widget-image img {
        max-height: 355px;
        max-width: 300px;
    }

    @keyframes marquee {
        0% {
            transform: translateX(1%);
        }

        100% {
            transform: translateX(-90%);
        }
    }
}