/* ==========================================
   SUCCESS METRICS SECTION
========================================== */

.sm-section {
    position: relative;
    width: 100%;
    min-height: 760px;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    padding:120px;
    isolation: isolate;
    background: #0d1320;
}

.sm-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -3;
}
.sm-pagination {
    display: none;
}

.sm-overlay {
    position: absolute;
    inset: 0;
    z-index: -2;
    background:
        linear-gradient(to top,
            rgba(8, 12, 20, .85) 0%,
            rgba(8, 12, 20, .55) 30%,
            rgba(8, 12, 20, .15) 70%,
            rgba(8, 12, 20, .05) 100%);
}

.sm-section .container {
    width: 100%;
    position: relative;
}

.sm-heading {
    margin-bottom: 360px;
}

.sm-heading h2 {
    margin: 0;
    color: #fff;
    font-size: 48px;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -.5px;
}

.sm-heading h2 span {
    color: #2454d3;
}

/*==========================
      Cards
===========================*/

.sm-cards {
    display: flex;
    gap: 35px;
    align-items: stretch;
    justify-content: center;
    width: 100%;
    position: relative;
    z-index: 5;
}

.sm-card {
    flex: 1;
    min-height: 165px;
    padding: 26px;
    display: flex;
    align-items: flex-start;
    gap: 18px;
    transition: .35s ease;
    position: relative;
}

.sm-card:hover {
    transform: translateY(-10px);
}

/*==========================
      Card Colors
===========================*/

.sm-card.dark {
    background: rgba(26, 39, 55, .92);
}

.sm-card.blue {
    /* background: rgba(36, 53, 119, .92); */
        background: rgb(33 44 89 / 92%);
}

.sm-card.brown {
    background: rgba(67, 50, 45, .92);
}

/*==========================
      Number
===========================*/

.sm-number {
    color: #ff9332;
    font-size: 42px;
    font-weight: 700;
    line-height: 1;
    white-space: nowrap;
}

/*==========================
      Content
===========================*/

.sm-content {
    flex: 1;
}

.sm-content h3 {
    margin: 0 0 10px;
    color: #fff;
    font-size: 22px;
    font-weight: 600;
    line-height: 1.3;
}

.sm-content p {
    margin: 0;
    color: rgba(255,255,255,.75);
    font-size: 15px;
    line-height: 1.7;
}

/*==========================
      Glass Effect
===========================*/

.sm-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            135deg,
            rgba(255,255,255,.10),
            rgba(255,255,255,0)
        );
    pointer-events: none;
}

.sm-card::after {
    content: "";
    position: absolute;
    inset: 0;
    border: 1px solid rgba(255,255,255,.06);
    pointer-events: none;
}
/*=========================================
        LARGE DESKTOP (1600px)
=========================================*/

@media (max-width:1600px){

    .sm-section{
        min-height:700px;
    }

    .sm-heading{
        margin-bottom:320px;
    }

    .sm-heading h2{
        font-size:44px;
    }

    .sm-number{
        font-size:38px;
    }

}

/*=========================================
        LAPTOP
=========================================*/

@media (max-width:1200px){

    .sm-section{
        min-height:640px;
        padding:110px 0 35px;
    }

    .sm-heading{
        margin-bottom:260px;
    }

    .sm-heading h2{
        font-size:40px;
    }

    .sm-card{
        padding:22px;
        min-height:150px;
        gap:16px;
    }

    .sm-number{
        font-size:34px;
    }

    .sm-content h3{
        font-size:20px;
    }

    .sm-content p{
        font-size:14px;
        line-height:1.6;
    }

}

/*=========================================
        TABLET
=========================================*/

@media (max-width:992px){

    .sm-section{
        min-height:auto;
        padding:90px 0 45px;
        align-items:flex-end;
    }

    .sm-heading{
        margin-bottom:230px;
    }

    .sm-heading h2{
        font-size:36px;
    }

    .sm-cards{
        display:grid;
        grid-template-columns:1fr;
        gap:18px;
    }

    .sm-card{
        width:100%;
        border-radius:8px;
    }

}

/*=========================================
        MOBILE
=========================================*/

@media (max-width: 768px) {

    .sm-section {
        min-height: 560px;

        padding: 0;

        display: block;
    }

    .sm-overlay {
        background: linear-gradient(
            to top,
            rgba(8, 12, 20, .85) 0%,
            rgba(8, 12, 20, .35) 40%,
            rgba(8, 12, 20, .08) 70%,
            rgba(8, 12, 20, .35) 100%
        );
    }

    .sm-section .container {
        display: flex;
        flex-direction: column;

        min-height: 560px;

        padding: 24px 0 26px;
    }


    /* HEADING */

    .sm-heading {
        margin: 0;
        padding: 0 20px;
    }

    .sm-heading h2 {
        font-size: 22px;
        line-height: 1.25;
    }


    /* CARDS */

       .sm-cards {
        display: flex;
        grid-template-columns: none;

        justify-content: flex-start;
        align-items: stretch;

        gap: 12px;

        margin-top: auto;
        padding: 0 20px;

        overflow-x: auto;
        scroll-snap-type: x mandatory;
        scroll-padding-left: 20px;
        scrollbar-width: none;
        -webkit-overflow-scrolling: touch;
    }

    .sm-cards::-webkit-scrollbar {
        display: none;
    }

    .sm-card {
        flex: 0 0 92%;

        width: auto;
        min-height: auto;

        flex-direction: column;
        align-items: flex-start;
        gap: 4px;

        padding: 20px 22px 22px;

        border-radius: 0;

        scroll-snap-align: start;
    }

    .sm-card:hover {
        transform: none;
        box-shadow: none;
    }

    .sm-number {
        font-size: 30px;
    }

    .sm-content h3 {
        margin: 0 0 8px;
        font-size: 17px;
    }

    .sm-content p {
        font-size: 13px;
        line-height: 1.6;
    }


    /* PROGRESS BARS */

    .sm-pagination {
        display: flex;
        justify-content: center;
        gap: 6px;

        margin-top: 16px;
    }

    .sm-page {
        width: 20px;
        height: 2px;

        background: rgba(255, 255, 255, .35);
        cursor: pointer;
    }

    .sm-page.active {
        width: 28px;
        background: #ff9332;
    }

}


@media (max-width: 576px) {

    .sm-section,
    .sm-section .container {
        min-height: 500px;
    }

    .sm-heading {
        padding: 0 18px;
    }

    .sm-heading h2 {
        font-size: 28px;
    }

    .sm-cards {
        padding: 0 18px;
    }

    .sm-card {
        flex: 0 0 90%;
        padding: 18px 20px;
    }

    .sm-number {
        font-size: 28px;
    }

    .sm-content h3 {
        font-size: 20px;
    }

    .sm-content p {
        font-size: 16px;
    }

}
/*=========================================
        PREMIUM HOVER
=========================================*/

.sm-card{
    overflow:hidden;
}

.sm-card::before{
    transition:.45s ease;
}

.sm-card:hover::before{
    opacity:1;
    background:
        linear-gradient(
            135deg,
            rgba(255,255,255,.18),
            rgba(255,255,255,0)
        );
}

.sm-card:hover{

    box-shadow:
        0 18px 45px rgba(0,0,0,.35);

}

.sm-card img,
.sm-card video{

    transition:transform .8s ease;

}

.sm-card:hover img,
.sm-card:hover video{

    transform:scale(1.05);

}