@charset "UTF-8";
/* snippet-row-cards-static START */

#snippet-row-cards-static {
    position: relative;
    z-index: 101;
  
    .icon svg {
      position: relative;
      animation: flicker 4s infinite;
    }
    .icon-1 svg {
        animation-delay: 0s!important;
    }
    .icon-2 svg {
        animation-delay: 1s!important;
    }
    .icon-3 svg {
        animation-delay: 2s!important;
    }
    .icon-4 svg {
        animation-delay: 3s!important;
    }
    .content {
        padding: 30px;
        background: var(--bs-primary);
        border-radius: 4px;
        color: var(--bs-body-bg);
    }
    .content h3 {
        font-weight:var(--md-font-weight-bold);
        font-size: 34px;
        margin-bottom: 30px;
    }
    .content p {
        margin-bottom: 30px;
    }
    .content .more-btn {
        display: inline-block;
        background: rgba(255, 255, 255, 0.2);
        padding: 6px 30px 8px 30px;
        color: var(--bs-body-bg);
        border-radius: 50px;
        transition: all ease-in-out 0.4s;
    }
    .content .more-btn i {
        font-size: 14px;
    }
    .content .more-btn:hover {
        color: var(--bs-primary);
        background: var(--bs-body-bg);
    }
    .icon-box {
        text-align: center;
        border-radius: 10px;
        background: var(--bs-body-bg);
        box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
        padding: 40px 30px;
        width: 100%;
        /*transition: 0.5s ease-in-out;*/
    }
    icon-box p, .icon-box h3, .icon-box svg {
        transition: 0.5s ease-in-out;
    }
    .icon-box i {
        font-size: 40px;
        color: var(--bs-primary);
        margin-bottom: 30px;
    }
    .icon-box h4 {
        font-size: 20px;
        font-weight:var(--md-font-weight-bold);
        margin: 0 0 30px 0;
    }
    .icon-box p {
        font-size: 15px;
        color: var(--bs-body-color);
    }
    .icon-box:hover {
        background: var(--bs-gray-800);
    }
    .icon-box:hover p, .icon-box:hover h3, .icon-box:hover svg {
        color: #fff;
    }
}
@media (max-width: 992px) and (orientation: landscape) {
    #snippet-row-cards-carousel {
        margin-top: -60px;
    }
}
@keyframes flicker {
    0% {left:0;}
    2.5% {left:-5px;}
    5% {left:5px;}
    7.5% {left:-5px;}
    10% {left:5px;}
    12.5% {left:0;}
    25% {left:0;}
    100% {left:0;}
}


[data-bs-theme=dark] #snippet-row-cards-static .icon-box {
    box-shadow: 0px 2px 15px rgba(255, 255, 255, 0.1);
}

@media (max-width: 768px) {
    #snippet-row-cards-static {
        margin-top: -20px;
    }
}
@media (min-width: 768px) {
    #snippet-row-cards-static {
        margin-top: -150px;
    }
}
/* snippet-row-cards-static END */