﻿@property --num {
    syntax: '<integer>';
    initial-value: 0;
    inherits: false;
}


.gradient-title.has-animation.active {
    counter-reset: num var(--num);
    animation: var(--animation) 3s forwards ease-in-out;
}

    .gradient-title.has-animation.active::after {
        content: counter(num) '+';
    }

@keyframes counter-years {
    from {
        --num: 0;
    }

    to {
        --num: 35;
    }
}

@keyframes counter-h-share-companies {
    from {
        --num: 0;
    }

    to {
        --num: 150;
    }
    /* Adjust these values as needed */
}

@keyframes counter-companies {
    from {
        --num: 0;
    }

    to {
        --num: 250;
    }
    /* Adjust these values as needed */
}

.loader {
    width: 25px;
    aspect-ratio: 1;
    border-radius: 50%;
    border: 6px solid #FFF;
    animation: l20-1 0.8s infinite linear alternate, l20-2 1.6s infinite linear;
}

.subscription-submit-btn .loader {
    border: 6px solid #2B387D;
}

@keyframes l20-1 {
    0% {
        clip-path: polygon(50% 50%,0 0, 50% 0%, 50% 0%, 50% 0%, 50% 0%, 50% 0% )
    }

    12.5% {
        clip-path: polygon(50% 50%,0 0, 50% 0%, 100% 0%, 100% 0%, 100% 0%, 100% 0% )
    }

    25% {
        clip-path: polygon(50% 50%,0 0, 50% 0%, 100% 0%, 100% 100%, 100% 100%, 100% 100% )
    }

    50% {
        clip-path: polygon(50% 50%,0 0, 50% 0%, 100% 0%, 100% 100%, 50% 100%, 0% 100% )
    }

    62.5% {
        clip-path: polygon(50% 50%,100% 0, 100% 0%, 100% 0%, 100% 100%, 50% 100%, 0% 100% )
    }

    75% {
        clip-path: polygon(50% 50%,100% 100%, 100% 100%, 100% 100%, 100% 100%, 50% 100%, 0% 100% )
    }

    100% {
        clip-path: polygon(50% 50%,50% 100%, 50% 100%, 50% 100%, 50% 100%, 50% 100%, 0% 100% )
    }
}

@keyframes l20-2 {
    0% {
        transform: scaleY(1) rotate(0deg)
    }

    49.99% {
        transform: scaleY(1) rotate(135deg)
    }

    50% {
        transform: scaleY(-1) rotate(0deg)
    }

    100% {
        transform: scaleY(-1) rotate(-135deg)
    }
}

@media (min-width: 576px) {

    .container,
    .container-sm {
        max-width: unset;
    }
}

@media (max-width: 1200px) {
    .desktop {
        display: none;
    }

    .mobile {
        display: block;
    }

    .container,
    .container-lg,
    .container-md,
    .container-sm,
    .container-xl {
        --bs-gutter-x: 2.5rem;
    }
}

@media (min-width: 1200px) {

    .container-xl {
        max-width: 1240px;
    }

    .container-lg {
        max-width: 1180px;
    }

    .container {
        max-width: 1050px;
    }
}

@media (min-width: 1700px) {


    .container-xl {
        max-width: 1700px;
    }

    .container-lg {
        max-width: 1680px;
    }

    .container {
        max-width: 1480px;
    }
}
