/**
 * ==========================================
 * VoIP Hero
 * ==========================================
 */

.tr-voip-hero{

    padding:110px 0;

    background:
        radial-gradient(
            circle at top right,
            rgba(0,180,255,.18),
            transparent 40%
        ),
        linear-gradient(
            135deg,
            #081b33 0%,
            #0A2E73 45%,
            #174EA6 100%
        );

    color:#ffffff;

    overflow:hidden;

}

/* ==========================================
   Container
========================================== */

.tr-voip-hero .tr-container{

    max-width:1200px;

    margin:0 auto;

    padding:0 20px;

}

/* ==========================================
   Breadcrumb
========================================== */

.tr-voip-hero .tr-breadcrumb{

    margin-bottom:35px;

    font-size:14px;

}

.tr-voip-hero .tr-breadcrumb a{

    color:#dbeafe;

    text-decoration:none;

    transition:color .3s ease;

}

.tr-voip-hero .tr-breadcrumb a:hover{

    color:#ffffff;

}

.tr-voip-hero .tr-breadcrumb span{

    margin:0 8px;

    color:#dbeafe;

}

/* ==========================================
   Grid
========================================== */

.tr-voip-hero-grid{

    display:grid;

    grid-template-columns:1.1fr .9fr;

    gap:70px;

    align-items:center;

}

/* ==========================================
   Content
========================================== */

.tr-voip-hero-content{

    max-width:700px;

}

/* ==========================================
   Badge
========================================== */

.tr-voip-hero .tr-section-badge{

    display:inline-flex;

    align-items:center;

    padding:12px 22px;

    border-radius:999px;

    background:rgba(255,255,255,.12);

    border:1px solid rgba(255,255,255,.20);

    color:#ffffff;

    font-size:13px;

    font-weight:700;

    text-transform:uppercase;

    letter-spacing:.08em;

}

/* ==========================================
   Heading
========================================== */

.tr-hero-title{

    font-family:"Inter", Arial, Helvetica, sans-serif;

    margin:24px 0;

    font-size:56px;

    font-weight:800;

    line-height:1.12;

    letter-spacing:-1px;

    color:#ffffff;

}

/* ==========================================
   Description
========================================== */

.tr-hero-description{

    margin-bottom:35px;

    font-size:18px;

    line-height:1.9;

    color:rgba(255,255,255,.90);

}

/* ==========================================
   Features
========================================== */

.tr-hero-features{

    list-style:none;

    margin:35px 0;

    padding:0;

    display:grid;

    grid-template-columns:repeat(2,minmax(220px,1fr));

    gap:16px;

}

.tr-hero-features li{

    position:relative;

    padding-left:28px;

    color:#ffffff;

    font-size:16px;

    line-height:1.7;

}

.tr-hero-features li::before{

    content:"✓";

    position:absolute;

    left:0;

    top:0;

    color:#7dd3fc;

    font-weight:700;

}

/* ==========================================
   Buttons
========================================== */

.tr-hero-buttons{

    display:flex;

    gap:18px;

    flex-wrap:wrap;

}

/* ==========================================
   Image
========================================== */

.tr-voip-hero-image{
    overflow:hidden;
    border-radius:20px;
}

.tr-voip-hero-image img{

    width:100%;

    height:auto;

    display:block;

    border-radius:22px;

    transition:transform .45s ease;

}

.tr-voip-hero:hover .tr-voip-hero-image img{

    transform:scale(1.03);

}

/* ==========================================
   Tablet
========================================== */

@media (max-width:991px){

    .tr-voip-hero{

        padding:90px 0;

    }

    .tr-voip-hero-grid{

        grid-template-columns:1fr;

        gap:50px;

        text-align:center;

    }

    .tr-voip-hero-content{

        max-width:100%;

    }

    .tr-voip-hero-image{

        order:2;

    }

    .tr-hero-title{

        font-size:42px;

    }

    .tr-hero-features{

        grid-template-columns:1fr;

        text-align:left;

    }

    .tr-hero-buttons{

        justify-content:center;

    }

}

/* ==========================================
   Mobile
========================================== */

@media (max-width:576px){

    .tr-voip-hero{

        padding:70px 0;

    }

    .tr-hero-title{

        font-size:34px;

    }

    .tr-hero-description{

        font-size:16px;

    }

    .tr-hero-buttons{

        flex-direction:column;

        align-items:center;

    }

    .tr-hero-buttons .tr-btn{

        width:100%;

        max-width:320px;

        justify-content:center;

    }

}