.bg-black{
    background:#262222;
}


.form-group label{
    font-weight:500;
    color:#555 ;
}
.modal-title{
    font-weight:600;
    color:#555;
}

#imp_update{
    font-size:1.25rem;
    color:#fff900;
    font-family: 'Merienda', cursive;
    animation-name:glow;
    animation-duration:1s;
    animation-iteration-count:infinite;
    animation-direction:alternate;
}

#imp_update_apply{
    font-size:1.25rem;
    color:#fff;
    font-family: 'Merienda', cursive;
    animation-name:glow;
    animation-duration:1s;
    animation-iteration-count:infinite;
    animation-direction:alternate;
}

.waving-hand {
    animation-name: wave-animation;
    animation-duration: 2.5s;
    animation-iteration-count: infinite;
    transform-origin: 70% 70%;
    display: inline-block;
}

.ai-services-shape {
    position: relative;
    width: 230px;
    margin-left: 50px;
    z-index: 9;
    -webkit-animation: animationDroneFrames 15s infinite linear;
    animation: animationDroneFrames 15s infinite linear;
}

.ai-services-shape img {
    height: auto;
    max-width: 100%;
    border: none;
    border-radius: 0;
    box-shadow: none;
}
.olcards,
.olcards * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.olcards {
    list-style: none;
    counter-reset: cardCount;
    font-family: sans-serif;
    display: flex;
    flex-direction: column;
    --cardsGap: 1rem;
    gap: var(--cardsGap);
    padding-bottom: var(--cardsGap);
}
.olcards li {
    counter-increment: cardCount;
    display: flex;
    color: white;
    --labelOffset: 1rem;
    --arrowClipSize: 1.5rem;
    margin-top: var(--labelOffset);
}

.olcards li::before {
    content: counter(cardCount, decimal-leading-zero);
    background: white;
    color: var(--cardColor);
    font-size: 2em;
    font-weight: 700;
    transform: translateY(calc(-1 * var(--labelOffset)));
    margin-right: calc(-1 * var(--labelOffset));
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-inline: 0.5em;
}

.olcards li .content {
    background-color: var(--cardColor);
    --inlinePadding: 1em;
    --boxPadding: 0.5em;
    display: grid;
    padding: var(--boxPadding) calc(var(--inlinePadding) + var(--arrowClipSize))
        var(--boxPadding) calc(var(--inlinePadding) + var(--labelOffset));
    grid-template-areas:
        "icon title"
        "icon text";
    gap: 0.25em 1em;
    clip-path: polygon(
        0 0,
        calc(100% - var(--arrowClipSize)) 0,
        100% 50%,
        calc(100% - var(--arrowClipSize)) 100%,
        calc(100% - var(--arrowClipSize)) calc(100% + var(--cardsGap)),
        0 calc(100% + var(--cardsGap))
        );
    position: relative;
}
.olcards li .content::before {
    content: "";
    position: absolute;
    width: var(--labelOffset);
    height: var(--labelOffset);
    background: var(--cardColor);
    left: 0;
    bottom: 0;
    clip-path: polygon(0 0, 100% 0, 0 100%);
    filter: brightness(0.75);
}
.olcards li .content::after {
    content: "";
    position: absolute;
    height: var(--cardsGap);
    width: var(--cardsGap);
    background: linear-gradient(to right, rgba(0, 0, 0, 0.25), transparent 50%);
    left: 0;
    top: 100%;
}
.olcards li .icon {
    grid-area: icon;
    align-self: center;
    font-size: 2em;
}
.olcards li .content .title {
    grid-area: title;
    font-size: 1.25em;
    /* font-weight: 700; */
}
.olcards li .content .text {
    grid-area: text;
    font-family: 'Kode Mono', cursive;
    font-size:18px;
    font-weight: 700;
    letter-spacing:1px;
}


@keyframes animationDroneFrames {
    0%   {
        top: -200px;
        left: 0px;
    }
    25%  {
        top: -800px;
        left: 800px;
    }
    50%  {
        top: -500px;
        left: 1400px;
    }
    75%  {
        top: -300px;
        left: 800px;
    }
    100% {
        top: -200px;
        left: 0px;
    }
}






@keyframes wave-animation {
    0% {
        transform: rotate( 0.0deg)
    }
    15% {
        transform: rotate(14.0deg)
    }  /* The following five values can be played with to make the waving more or less extreme */
    30% {
        transform: rotate(-8.0deg)
    }
    40% {
        transform: rotate(14.0deg)
    }
    50% {
        transform: rotate(-4.0deg)
    }
    60% {
        transform: rotate(10.0deg)
    }
    70% {
        transform: rotate( 0.0deg)
    }  /* Reset for the last half to pause */
    100% {
        transform: rotate( 0.0deg)
    }
}

@keyframes glow{
    from{
        text-shadow:0px 0px 5px #fff,0px 0px 5px #614ad3;
    }
    to{
        text-shadow:0px 0px 20px #fff,0px 0px 20px #614ad3;
    }
}



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

    #socialicon{
        display:none;
        visibility:hidden;
        margin-bottom:-180px;
    }
    #imp_update,#imp_update_apply{
        font-size:1rem;
        font-family: sans-serif;
        margin-left:20px;
    }

    .modal-title{
        font-size:1.1rem;

    }

    .ai-services-shape {
        margin-left: 0;
        width: 150px;
        -webkit-animation: animationDroneFrames 25s infinite linear;
        animation: animationDroneFrames 25s infinite linear;

    }


    @keyframes animationDroneFrames {
        0%   {
            top: -2500px;
            left: 0px;
        }
        25%  {
            top: -1500px;
            left: 200px;
        }
        50%  {
            top: -500px;
            left: 0px;
        }
        75%  {
            top: -100px;
            left: 200px;
        }
        100% {
            top: -2500px;
            left: 0px;
        }
    }
}
