/* ==========================================
   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-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{
        padding:70px 0 30px;
    }

    .sm-heading{
        margin-bottom:180px;
    }

    .sm-heading h2{
        font-size:30px;
        line-height:1.2;
    }

    .sm-card{
        padding:20px;
        gap:15px;
        min-height:auto;
    }

    .sm-number{
        font-size:30px;
    }

    .sm-content h3{
        font-size:18px;
        margin-bottom:8px;
    }

    .sm-content p{
        font-size:14px;
        line-height:1.5;
    }

}

/*=========================================
        SMALL MOBILE
=========================================*/

@media (max-width:576px){

    .sm-section{
        padding:60px 0 25px;
    }

    .sm-heading{
        margin-bottom:150px;
    }

    .sm-heading h2{
        font-size:26px;
    }

    .sm-card{
        flex-direction:column;
        gap:12px;
        padding:18px;
    }

    .sm-number{
        font-size:28px;
    }

    .sm-content h3{
        font-size:17px;
    }

    .sm-content p{
        font-size:13px;
    }

}

/*=========================================
        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);

}