/**
 * ==========================================
 * Homepage Services
 * TelecomRoute Design System
 * ==========================================
 */

.tr-services{

    padding:110px 0;

    background:linear-gradient(
        180deg,
        #ffffff 0%,
        #f8fafc 100%
    );

}

/* ==========================================
   Section Header
========================================== */

.tr-services .tr-section-header{

    max-width:760px;

    margin:0 auto 60px;

}

.tr-services .tr-section-badge{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    padding:8px 18px;

    border-radius:50px;

    background:rgba(10,46,115,.08);

    color:var(--tr-primary);

    font-size:14px;

    font-weight:700;

    text-transform:uppercase;

    letter-spacing:.5px;

}

/* ==========================================
   Cards
========================================== */

.tr-services .tr-card{

    height:100%;

    border:1px solid #e2e8f0;

    border-radius:18px;

    overflow:hidden;

    transition:all .35s ease;

    box-shadow:0 10px 30px rgba(15,23,42,.05);

}

.tr-services .tr-card:hover{

    transform:translateY(-8px);

    border-color:#0A2E73;

    box-shadow:0 22px 45px rgba(15,23,42,.12);

}

.tr-services .tr-card-body{

    padding:36px;

}

.tr-services .tr-card-icon{

    width:72px;

    height:72px;

    margin-bottom:24px;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:50%;

    background:#eaf2ff;

    transition:all .3s ease;

}

.tr-services .tr-card:hover .tr-card-icon{

    background:#0A2E73;

    transform:scale(1.05);

}

.tr-services .tr-card-icon img{

    width:32px;

    height:32px;

}

.tr-services .tr-card:hover .tr-card-icon img{

    filter:brightness(0) invert(1);

}

.tr-services .tr-card-title{

    margin-bottom:16px;

    font-size:24px;

    font-weight:700;

}

.tr-services .tr-card-text{

    margin-bottom:28px;

    line-height:1.8;

    color:#64748b;

}

/* ==========================================
   Button
========================================== */

.tr-services .tr-btn{

    min-width:160px;

}

/* ==========================================
   Responsive
========================================== */

@media(max-width:991px){

    .tr-services{

        padding:90px 0;

    }

    .tr-services .tr-section-header{

        margin-bottom:50px;

    }

}

@media(max-width:767px){

    .tr-services{

        padding:70px 0;

    }

    .tr-services .tr-card-body{

        padding:28px;

    }

}

/* ==========================================
   Equal Card Layout
========================================== */

.tr-services .tr-card-body{

    display:flex;

    flex-direction:column;

    height:100%;

}

.tr-services .tr-card-text{

    flex:1;

}

.tr-services .tr-btn{

    align-self:flex-start;

}