.toc-section .elementor-menu-anchor {
    position: relative;
    top: -140px;
    visibility: hidden;
}


.blue-bg{
    width: fit-content !important;
    max-width: fit-content !important;
    background: #B6CCFF5E;
}

.custom-accordion .e-n-accordion-item{
    border-top: 1px solid #DEDEDE !important;
}

.custom-accordion .e-n-accordion-item-title-icon{
    margin-left: auto !important;
    flex-shrink: 0;
}

.slider {
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider .splide__track {
    overflow: hidden;
}

.slider .splide__slide {
    position: relative;
    width: auto !important;
    padding: 0 11px;
    white-space: nowrap;
    flex-shrink: 0;
}

.slider .splide__slide::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    width: 1px;
    height: 20px;
    background: #E2E2E2;
}

.slider .splide__slide:first-child {
    padding-left: 0 !important;
}

.slider .splide__slide:last-child::after {
    display: none;
}

/* Industry page css start */
.hover-logo {
    padding: 60px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.hover-logo img {
    filter: grayscale(1);
    transition: all 0.3s ease;
}
.hover-logo:hover {
  
    box-shadow: 0 0 20px rgba(31, 29, 29, 0.05);
    transition: all 0.3s ease;
}

.hover-logo:hover img {
    filter: grayscale(0);
}

.custom-tab-content{
    position: relative;
}

.custom-tab-image{
    position: absolute !important;
    bottom: 10px;
    right: 25px;
    width: 25%;
    height: auto;
}


/* Floating items initial state */
/* Floating items */
.float-1,
.float-2,
.float-3,
.float-4,
.float-5,
.float-6,
.float-7,
.float-8{
    position: absolute;
    will-change: transform, left, right, top, bottom, opacity;
    opacity: 0;

    transform-origin: center center;

    transition:
        left 1.8s cubic-bezier(0.22, 1, 0.36, 1),
        right 1.8s cubic-bezier(0.22, 1, 0.36, 1),
        top 1.8s cubic-bezier(0.22, 1, 0.36, 1),
        bottom 1.8s cubic-bezier(0.22, 1, 0.36, 1),
        transform 1.8s cubic-bezier(0.22, 1, 0.36, 1),
        opacity 1s ease;

    animation: float 8s ease-in-out infinite alternate;
    animation-play-state: paused;
    text-align: start !important;
    display: max-content !important;
    z-index:1;
}

/* Different speeds */
.float-2{
    animation-duration: 9s;
}

.float-3{
    animation-duration: 6s;
}

.float-4{
    animation-duration: 7s;
}

.float-5{
    animation-duration: 10s;
}

.float-6{
    animation-duration: 8s;
}

.float-7{
    animation-duration: 11s;
}

.float-8{
    animation-duration: 9s;
}

/* Floating effect */
@keyframes float{

    0%{
        transform: translateY(0px);
    }

    50%{
        transform: translateY(-15px);
    }

    100%{
        transform: translateY(10px);
    }

}

/* Optional */
.loading-hero{
    overflow-x: hidden;
}
/* Industry page css end */


/* tools css */
.tools-gallery .gallery {
   flex-wrap: wrap !important;
    gap: 20px !important;;
}
/* tools css end */


.custom-privacy-table {
    width: 100%;
    border-collapse: collapse;
    
    font-family: Inter, sans-serif;
    
}

.custom-privacy-table th,
.custom-privacy-table td {
    border: 1px solid #EAEAEA;
    padding: 22px 24px;
    text-align: left;
    vertical-align: top;
    color: #111111;
    font-size: 14px;
    line-height: 1.2em;
}

/* service page gradient text annimation */
/* COMMON CSS */

.gradient-animation{
    position: relative;
    display: inline-block;
    overflow: hidden;
    z-index: 1;
}

.gradient-animation::before{
    content: "";
    position: absolute;
    top: 0;
    left: -30%;
    width: 100%;
    height: 100%;
    z-index: -1;

    animation: moveGlow 4s linear infinite alternate;
    transition: all 0.3s ease;
}

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

    100%{
        transform: translateX(120%);
    }
}


/* PURPLE */

.gradient-purple::before{
    background: linear-gradient(
        90deg,
        rgba(249, 182, 255, 0) 0%,
        rgba(249, 182, 255, 0.37) 48.18%,
        rgba(249, 182, 255, 0) 100%
    );
}

/* ORANGE */

.gradient-orange::before{
    background: linear-gradient(
        90deg,
        rgba(255, 182, 182, 0.37) 19.46%, 
        rgba(255, 182, 182, 0) 71.77%, 
        rgba(255, 182, 182, 0) 100%);

}

/* BLUE */

.gradient-blue::before{
    background: linear-gradient(
        90deg,
        rgba(182, 242, 255, 0) 0%,
        rgba(182, 253, 255, 0.37) 48.18%,
        rgba(182, 253, 255, 0) 100%
    );
}

/* GREEN */


.gradient-green::before{
    background: linear-gradient(
        90deg, 
        rgba(182, 255, 204, 0.37) 5.28%, 
        rgba(182, 255, 204, 0) 50.5%,
        rgba(182, 255, 204, 0) 100%
        );

}


/*  Ice Blue */


.gradient-ice-blue::before{
    background: linear-gradient(
        90deg,
        rgba(182, 205, 255, 0.37) 19.46%, 
        rgba(182, 205, 255, 0) 71.77%, 
        rgba(182, 205, 255, 0) 100%);


}


/* end */




@media screen and (max-width: 1024px) {
    .slider .splide__slide {
        margin-right: 0 !important;
    }
}


@media screen and (max-width: 768px){
    .custom-tab-image{
        width: 30%;
    }

    .float-1,
    .float-2,
    .float-3,
    .float-4,
    .float-5,
    .float-6,
    .float-7,
    .float-8{
        width: 64px;
    }

    .float-1 img,
    .float-2 img,
    .float-3 img,
    .float-4 img,
    .float-5 img,
    .float-6 img,
    .float-7 img,
    .float-8 img{
        height: 64px !important;
        width: 64px !important;
    }

}

@media screen and (max-width: 767px){
    .custom-privacy-table th,
    .custom-privacy-table td{
        padding:15px 10px;
        font-size:12px;
        
    }


}

@media screen and (max-width: 640px){
    .float-1,
    .float-2,
    .float-3,
    .float-4,
    .float-5,
    .float-6,
    .float-7,
    .float-8{
        width: 45px;
    }

    .float-1 img,
    .float-2 img,
    .float-3 img,
    .float-4 img,
    .float-5 img,
    .float-6 img,
    .float-7 img,
    .float-8 img{
        height: 45px !important;
        width: 45px !important;
    }
}

@media screen and (max-width: 480px){
    .custom-tab-image {
        width: 50%;
    }
}