/*==================================================
            BREADCRUMB
==================================================*/

.breadcrumb-section{

    position:relative;

    overflow:hidden;

    padding:90px 0;

    background:linear-gradient(
        135deg,
        #F8FBFF 0%,
        #FFFFFF 100%
    );

}

.breadcrumb-section::before{

    content:"";

    position:absolute;

    top:-220px;

    left:-220px;

    width:500px;

    height:500px;

    border-radius:50%;

    background:radial-gradient(
        rgba(37,99,235,.08),
        transparent 70%
    );

}

.breadcrumb-section::after{

    content:"";

    position:absolute;

    bottom:-220px;

    right:-220px;

    width:500px;

    height:500px;

    border-radius:50%;

    background:radial-gradient(
        rgba(255,122,26,.08),
        transparent 70%
    );

}

/*=========================================
        WRAPPER
=========================================*/

.breadcrumb-wrapper{

    position:relative;

    z-index:2;

    display:grid;

    grid-template-columns:1.2fr .8fr;

    align-items:center;

    gap:80px;

}

/*=========================================
        NAVIGATION
=========================================*/

.breadcrumb-nav{

    display:flex;

    align-items:center;

    gap:12px;

    flex-wrap:wrap;

    margin-bottom:25px;

}

.breadcrumb-nav a{

    color:#64748B;

    text-decoration:none;

    font-weight:600;

    transition:.3s;

}

.breadcrumb-nav a:hover{

    color:#2563EB;

}

.breadcrumb-nav span{

    color:#94A3B8;

}

.breadcrumb-nav .active{

    color:#081C3A;

    font-weight:700;

}

/*=========================================
        BADGE
=========================================*/

.page-badge{

    display:inline-flex;

    align-items:center;

    gap:10px;

    padding:10px 22px;

    margin-bottom:25px;

    border-radius:50px;

    background:#EFF6FF;

    color:#2563EB;

    font-size:14px;

    font-weight:700;

}

.page-badge i{

    color:#2563EB;

}

/*=========================================
        CONTENT
=========================================*/

.breadcrumb-content h1{

    font-size:56px;

    font-weight:800;

    line-height:1.15;

    color:#081C3A;

    margin-bottom:22px;

}

.breadcrumb-content p{

    font-size:17px;

    color:#64748B;

    line-height:1.9;

    margin-bottom:35px;

}

/*=========================================
        HIGHLIGHTS
=========================================*/

.breadcrumb-highlights{

    display:flex;

    flex-wrap:wrap;

    gap:18px;

    margin-bottom:35px;

}

.highlight-item{

    display:flex;

    align-items:center;

    gap:12px;

    padding:15px 22px;

    background:#ffffff;

    border-radius:50px;

    border:1px solid rgba(15,23,42,.06);

    box-shadow:

    0 12px 35px rgba(15,23,42,.05);

    transition:.35s;

}

.highlight-item:hover{

    transform:translateY(-4px);

    box-shadow:

    0 20px 50px rgba(37,99,235,.12);

}

.highlight-item i{

    color:#2563EB;

    font-size:18px;

}

.highlight-item span{

    color:#334155;

    font-weight:600;

    font-size:15px;

}

/*=========================================
        BUTTONS
=========================================*/

.breadcrumb-buttons{

    display:flex;

    gap:18px;

    flex-wrap:wrap;

}

.secondary-btn{

    background:#ffffff;

    color:#2563EB;

    border:2px solid #2563EB;

}

.secondary-btn:hover{

    background:#2563EB;

    color:#ffffff;

}

/*=========================================
        IMAGE
=========================================*/

.breadcrumb-image{

    position:relative;

}

.image-wrapper{

    position:relative;

    overflow:hidden;

    border-radius:28px;

    background:#ffffff;

    box-shadow:

    0 35px 90px rgba(37,99,235,.15);

}

.image-wrapper img{

    width:100%;

    display:block;

}

/*=========================================
        FLOATING CARDS
=========================================*/

.floating-card{

    position:absolute;

    display:flex;

    align-items:center;

    gap:15px;

    padding:18px 22px;

    background:#ffffff;

    border-radius:20px;

    box-shadow:

    0 25px 60px rgba(15,23,42,.10);

    animation:floatCard 5s ease-in-out infinite;

}

.floating-card i{

    width:55px;

    height:55px;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:16px;

    background:linear-gradient(

        135deg,

        #2563EB,

        #3B82F6

    );

    color:#ffffff;

    font-size:24px;

}

.floating-card strong{

    display:block;

    color:#081C3A;

    font-size:17px;

    font-weight:700;

}

.floating-card span{

    color:#64748B;

    font-size:14px;

}

.floating-service{

    top:8%;

    left:-50px;

}

.floating-ads{

    top:45%;

    right:-40px;

    animation-delay:1.5s;

}

.floating-web{

    bottom:5%;

    left:-30px;

    animation-delay:3s;

}

/*=========================================
        ANIMATION
=========================================*/

@keyframes floatCard{

    0%{

        transform:translateY(0px);

    }

    50%{

        transform:translateY(-10px);

    }

    100%{

        transform:translateY(0px);

    }

}

/*=========================================
        RESPONSIVE
=========================================*/

@media(max-width:1199px){

.breadcrumb-content h1{

font-size:46px;

}

.floating-card{

display:none;

}

}

@media(max-width:991px){

.breadcrumb-section{

padding:80px 0;

}

.breadcrumb-wrapper{

grid-template-columns:1fr;

gap:60px;

text-align:center;

}

.breadcrumb-highlights{

justify-content:center;

}

.breadcrumb-buttons{

justify-content:center;

}

.image-wrapper{

max-width:600px;

margin:auto;

}

}

@media(max-width:767px){

.breadcrumb-section{

padding:60px 0;

}

.breadcrumb-content h1{

font-size:34px;

line-height:1.3;

}

.breadcrumb-content p{

font-size:15px;

}

.breadcrumb-nav{

justify-content:center;

}

.page-badge{

font-size:13px;

padding:8px 18px;

}

.breadcrumb-highlights{

flex-direction:column;

}

.highlight-item{

justify-content:center;

}

.breadcrumb-buttons{

flex-direction:column;

}

.breadcrumb-buttons .theme-btn{

width:100%;

text-align:center;

}

.image-wrapper{

border-radius:22px;

}

}/*=========================================
        HERO BUTTONS
=========================================*/

.breadcrumb-buttons{

    display:flex;

    align-items:center;

    gap:18px;

    flex-wrap:wrap;

    margin-top:40px;

}

.breadcrumb-buttons .theme-btn{

    position:relative;

    display:inline-flex;

    align-items:center;

    justify-content:center;

    gap:10px;

    min-width:220px;

    padding:16px 34px;

    border-radius:60px;

    font-size:16px;

    font-weight:700;

    text-decoration:none;

    overflow:hidden;

    transition:.35s ease;

}

.breadcrumb-buttons .theme-btn::after{

    content:"\f061";

    font-family:"Font Awesome 6 Free";

    font-weight:900;

    transition:.35s;

}

.breadcrumb-buttons .theme-btn:hover::after{

    transform:translateX(6px);

}

/*=========================================
        PRIMARY BUTTON
=========================================*/

.breadcrumb-buttons .theme-btn:first-child{

    background:linear-gradient(
        135deg,
        #2563EB,
        #3B82F6
    );

    color:#ffffff;

    border:none;

    box-shadow:

    0 18px 45px rgba(37,99,235,.28);

}

.breadcrumb-buttons .theme-btn:first-child:hover{

    transform:translateY(-4px);

    box-shadow:

    0 28px 60px rgba(37,99,235,.35);

}

/*=========================================
        SECONDARY BUTTON
=========================================*/

.breadcrumb-buttons .secondary-btn{

    background:#ffffff;

    color:#2563EB;

    border:2px solid #2563EB;

    box-shadow:

    0 15px 35px rgba(15,23,42,.06);

}

.breadcrumb-buttons .secondary-btn:hover{

    background:#2563EB;

    color:#ffffff;

    transform:translateY(-4px);

    box-shadow:

    0 28px 60px rgba(37,99,235,.22);

}

/*=========================================
        RESPONSIVE
=========================================*/

@media(max-width:767px){

.breadcrumb-buttons{

justify-content:center;

flex-direction:column;

gap:15px;

}

.breadcrumb-buttons .theme-btn{

width:100%;

min-width:100%;

}

}/*==================================================
            SERVICES HERO
==================================================*/

.services-hero-section{

    position:relative;

    overflow:hidden;

    padding:100px 0;

    background:linear-gradient(
        180deg,
        #ffffff 0%,
        #F7FAFF 100%
    );

}

.services-hero-section::before{

    content:"";

    position:absolute;

    top:-250px;

    left:-250px;

    width:500px;

    height:500px;

    border-radius:50%;

    background:radial-gradient(
        rgba(37,99,235,.08),
        transparent 70%
    );

}

.services-hero-section::after{

    content:"";

    position:absolute;

    bottom:-250px;

    right:-250px;

    width:500px;

    height:500px;

    border-radius:50%;

    background:radial-gradient(
        rgba(255,122,26,.08),
        transparent 70%
    );

}

/*=========================================
        CONTENT
=========================================*/

.hero-content{

    position:relative;

    z-index:2;

    max-width:900px;

    margin:auto;

    text-align:center;

}

.hero-badge{

    display:inline-flex;

    align-items:center;

    gap:10px;

    padding:10px 24px;

    border-radius:50px;

    background:#EFF6FF;

    color:#2563EB;

    font-weight:700;

    margin-bottom:25px;

}

.hero-badge i{

    color:#2563EB;

}

.hero-content h2{

    font-size:58px;

    font-weight:800;

    line-height:1.15;

    color:#081C3A;

    margin-bottom:22px;

}

.hero-content p{

    max-width:850px;

    margin:auto;

    font-size:18px;

    line-height:1.9;

    color:#64748B;

}

/*=========================================
        SEARCH BOX
=========================================*/

.service-search-box{

    position:relative;

    max-width:900px;

    margin:60px auto 0;

    z-index:5;

}

.search-input-wrapper{

    position:relative;

}

.search-input-wrapper input{

    width:100%;

    height:78px;

    padding:0 70px;

    border:none;

    outline:none;

    border-radius:70px;

    background:#ffffff;

    box-shadow:

        0 20px 60px rgba(37,99,235,.10);

    font-size:17px;

    transition:.35s;

}

.search-input-wrapper input:focus{

    box-shadow:

        0 25px 70px rgba(37,99,235,.18);

}

.search-input-wrapper input::placeholder{

    color:#94A3B8;

}

.search-icon{

    position:absolute;

    left:28px;

    top:50%;

    transform:translateY(-50%);

    font-size:20px;

    color:#2563EB;

}

#clearSearch{

    position:absolute;

    right:18px;

    top:50%;

    transform:translateY(-50%);

    width:46px;

    height:46px;

    border:none;

    border-radius:50%;

    background:#F1F5F9;

    cursor:pointer;

    transition:.3s;

}

#clearSearch:hover{

    background:#2563EB;

    color:#ffffff;

}

/*=========================================
        LIVE RESULT
=========================================*/

.live-search-result{

    display:none;

    position:absolute;

    top:88px;

    left:0;

    width:100%;

    max-height:450px;

    overflow-y:auto;

    background:#ffffff;

    border-radius:25px;

    box-shadow:

        0 35px 90px rgba(15,23,42,.15);

    z-index:999;

}

.live-search-result.active{

    display:block;

}

.live-search-result::-webkit-scrollbar{

    width:8px;

}

.live-search-result::-webkit-scrollbar-thumb{

    background:#2563EB;

    border-radius:20px;

}

/*=========================================
        SEARCH ITEM
=========================================*/

.search-result-item{

    display:flex;

    justify-content:space-between;

    align-items:center;

    gap:20px;

    padding:20px 25px;

    border-bottom:1px solid rgba(15,23,42,.06);

    transition:.3s;

    cursor:pointer;

}

.search-result-item:last-child{

    border:none;

}

.search-result-item:hover{

    background:#F8FBFF;

}

.search-result-item h4{

    font-size:18px;

    margin-bottom:8px;

    color:#081C3A;

}

.search-result-item p{

    margin:0;

    color:#64748B;

    font-size:14px;

}

.search-type{

    padding:8px 16px;

    border-radius:40px;

    background:#EFF6FF;

    color:#2563EB;

    font-size:13px;

    font-weight:700;

}

/*=========================================
        POPULAR SEARCHES
=========================================*/

.popular-searches{

    display:flex;

    flex-wrap:wrap;

    justify-content:center;

    align-items:center;

    gap:15px;

    margin-top:35px;

}

.popular-searches span{

    font-weight:700;

    color:#081C3A;

}

.search-tag{

    padding:10px 20px;

    border:none;

    border-radius:50px;

    background:#ffffff;

    color:#334155;

    cursor:pointer;

    font-weight:600;

    transition:.35s;

    box-shadow:

        0 10px 25px rgba(15,23,42,.05);

}

.search-tag:hover{

    background:#2563EB;

    color:#ffffff;

    transform:translateY(-3px);

}

/*=========================================
        STATS
=========================================*/

.hero-stats{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:25px;

    max-width:1100px;

    margin:70px auto 0;

}

.hero-stat{

    padding:35px;

    text-align:center;

    background:#ffffff;

    border-radius:24px;

    border:1px solid rgba(15,23,42,.05);

    box-shadow:

        0 20px 50px rgba(15,23,42,.05);

    transition:.35s;

}

.hero-stat:hover{

    transform:translateY(-8px);

    box-shadow:

        0 35px 70px rgba(37,99,235,.12);

}

.hero-stat h3{

    font-size:46px;

    font-weight:800;

    color:#2563EB;

    margin-bottom:10px;

}

.hero-stat span{

    color:#64748B;

    font-weight:600;

}

/*=========================================
        RESPONSIVE
=========================================*/

@media(max-width:991px){

.services-hero-section{

padding:80px 0;

}

.hero-content h2{

font-size:42px;

}

.hero-stats{

grid-template-columns:repeat(2,1fr);

}

.search-input-wrapper input{

height:70px;

}

}

@media(max-width:767px){

.services-hero-section{

padding:60px 0;

}

.hero-content h2{

font-size:32px;

line-height:1.3;

}

.hero-content p{

font-size:15px;

}

.search-input-wrapper input{

height:62px;

padding:0 55px;

font-size:15px;

}

.search-icon{

left:20px;

font-size:18px;

}

#clearSearch{

width:40px;

height:40px;

right:12px;

}

.popular-searches{

justify-content:flex-start;

}

.hero-stats{

grid-template-columns:1fr;

gap:20px;

margin-top:50px;

}

.hero-stat{

padding:25px;

}

.hero-stat h3{

font-size:36px;

}

.live-search-result{

top:72px;

}

}.search-result-item{

display:flex;

justify-content:space-between;

align-items:center;

gap:20px;

padding:18px 25px;

text-decoration:none;

border-bottom:1px solid rgba(0,0,0,.06);

transition:.3s;

}

.search-result-item:hover{

background:#F8FBFF;

}

.search-left{

display:flex;

align-items:center;

gap:18px;

}

.search-result-icon{

width:55px;

height:55px;

border-radius:16px;

display:flex;

align-items:center;

justify-content:center;

background:#EFF6FF;

color:#2563EB;

font-size:22px;

flex-shrink:0;

}

.search-result-item h4{

margin:0 0 5px;

font-size:18px;

font-weight:700;

color:#081C3A;

}

.search-result-item p{

margin:0;

font-size:14px;

color:#64748B;

line-height:1.6;

}

.search-type{

padding:8px 16px;

border-radius:50px;

background:#2563EB;

color:#fff;

font-size:12px;

font-weight:700;

white-space:nowrap;

}

.search-result-empty{

padding:60px 30px;

text-align:center;

}

.search-result-empty i{

font-size:50px;

color:#2563EB;

margin-bottom:20px;

}

.search-result-empty h4{

font-size:24px;

margin-bottom:10px;

}

.search-result-empty p{

margin:0;

color:#64748B;

}
/*==================================================
            SERVICE CATEGORIES
==================================================*/

.service-category-section{

    position:relative;

    overflow:hidden;

    padding:10px 0;

    background:linear-gradient(
        180deg,
        #ffffff 0%,
        #F8FBFF 100%
    );

}

.service-category-section::before{

    content:"";

    position:absolute;

    top:-220px;

    left:-220px;

    width:480px;

    height:480px;

    border-radius:50%;

    background:radial-gradient(
        rgba(37,99,235,.07),
        transparent 70%
    );

}

.service-category-section::after{

    content:"";

    position:absolute;

    bottom:-220px;

    right:-220px;

    width:480px;

    height:480px;

    border-radius:50%;

    background:radial-gradient(
        rgba(255,122,26,.07),
        transparent 70%
    );

}

/*=========================================
        SECTION TITLE
=========================================*/

.service-category-section .section-title{

    max-width:850px;

    margin:0 auto 70px;

}

.service-category-section .section-title h2{

    font-size:48px;

    font-weight:800;

    color:#081C3A;

    margin-bottom:20px;

}

.service-category-section .section-title p{

    font-size:17px;

    line-height:1.9;

    color:#64748B;

    margin:0;

}

/*=========================================
        FILTER TABS
=========================================*/

.service-tabs{

    display:flex;

    justify-content:center;

    flex-wrap:wrap;

    gap:20px;

    margin-bottom:70px;

}

.service-tab{

    position:relative;

    display:flex;

    align-items:center;

    gap:12px;

    padding:18px 28px;

    background:#ffffff;

    border:1px solid rgba(15,23,42,.08);

    border-radius:60px;

    cursor:pointer;

    transition:.35s;

    font-weight:700;

    color:#334155;

    box-shadow:

        0 15px 35px rgba(15,23,42,.05);

}

.service-tab i{

    font-size:18px;

    color:#2563EB;

}

.service-tab span{

    font-size:16px;

}

.service-tab small{

    min-width:30px;

    height:30px;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:50%;

    background:#EFF6FF;

    color:#2563EB;

    font-size:13px;

    font-weight:700;

}

.service-tab:hover{

    transform:translateY(-5px);

    box-shadow:

        0 25px 60px rgba(37,99,235,.12);

}

.service-tab.active{

    background:linear-gradient(
        135deg,
        #2563EB,
        #3B82F6
    );

    color:#ffffff;

}

.service-tab.active i,

.service-tab.active small{

    background:rgba(255,255,255,.15);

    color:#ffffff;

}

/*=========================================
        CATEGORY GRID
=========================================*/

.category-info{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;

}

/*=========================================
        CATEGORY CARD
=========================================*/

.category-card{

    position:relative;

    overflow:hidden;

    height:100%;

    padding:40px 35px;

    border-radius:28px;

    background:#ffffff;

    border:1px solid rgba(15,23,42,.06);

    transition:.35s;

    box-shadow:

        0 20px 55px rgba(15,23,42,.05);

}

.category-card::before{

    content:"";

    position:absolute;

    left:0;

    top:0;

    width:100%;

    height:5px;

    background:linear-gradient(
        90deg,
        #2563EB,
        #3B82F6,
        #FF7A1A
    );

    transform:scaleX(0);

    transition:.4s;

    transform-origin:left;

}

.category-card:hover{

    transform:translateY(-10px);

    box-shadow:

        0 35px 80px rgba(37,99,235,.12);

}

.category-card:hover::before{

    transform:scaleX(1);

}

/*=========================================
        ICON
=========================================*/

.category-icon{

    width:85px;

    height:85px;

    display:flex;

    align-items:center;

    justify-content:center;

    margin-bottom:25px;

    border-radius:24px;

    background:linear-gradient(
        135deg,
        #2563EB,
        #3B82F6
    );

    color:#ffffff;

    font-size:34px;

    transition:.35s;

    box-shadow:

        0 18px 45px rgba(37,99,235,.18);

}

.category-card:hover .category-icon{

    transform:rotate(-8deg) scale(1.08);

    background:linear-gradient(
        135deg,
        #FF7A1A,
        #FFA34A
    );

}

/*=========================================
        CONTENT
=========================================*/

.category-card h3{

    font-size:26px;

    font-weight:800;

    color:#081C3A;

    margin-bottom:18px;

    line-height:1.4;

}

.category-card p{

    margin:0;

    color:#64748B;

    line-height:1.9;

    font-size:15px;

}

/*=========================================
        RESPONSIVE
=========================================*/

@media(max-width:1199px){

.service-category-section .section-title h2{

font-size:42px;

}

}

@media(max-width:991px){

.service-category-section{

padding:80px 0;

}

.category-info{

grid-template-columns:repeat(2,1fr);

}

.service-tabs{

gap:15px;

margin-bottom:50px;

}

.service-tab{

padding:15px 22px;

}

}

@media(max-width:767px){

.service-category-section{

padding:60px 0;

}

.service-category-section .section-title{

margin-bottom:45px;

}

.service-category-section .section-title h2{

font-size:30px;

line-height:1.3;

}

.service-category-section .section-title p{

font-size:15px;

}

.service-tabs{

flex-direction:column;

}

.service-tab{

width:100%;

justify-content:center;

}

.category-info{

grid-template-columns:1fr;

gap:20px;

}

.category-card{

padding:30px 25px;

text-align:center;

}

.category-icon{

margin:0 auto 20px;

width:70px;

height:70px;

font-size:28px;

}

.category-card h3{

font-size:22px;

}

.category-card p{

font-size:14px;

}

}/*==================================================
            FEATURED SERVICES
==================================================*/

.featured-services-section{

    position:relative;

    overflow:hidden;

    padding:10px 0;

    background:linear-gradient(
        180deg,
        #F8FBFF 0%,
        #FFFFFF 100%
    );

}

.featured-services-section::before{

    content:"";

    position:absolute;

    top:-220px;

    left:-220px;

    width:450px;

    height:450px;

    border-radius:50%;

    background:radial-gradient(
        rgba(37,99,235,.06),
        transparent 70%
    );

}

.featured-services-section::after{

    content:"";

    position:absolute;

    bottom:-220px;

    right:-220px;

    width:450px;

    height:450px;

    border-radius:50%;

    background:radial-gradient(
        rgba(255,122,26,.06),
        transparent 70%
    );

}

/*=========================================
        GRID
=========================================*/

.featured-services-grid{

    position:relative;

    z-index:2;

}

/*=========================================
        CARD
=========================================*/

.featured-service-card{

    position:relative;

    overflow:hidden;

    height:100%;

    background:#ffffff;

    border-radius:24px;

    border:1px solid rgba(15,23,42,.06);

    box-shadow:

        0 20px 50px rgba(15,23,42,.05);

    transition:.4s;

}

.featured-service-card:hover{

    transform:translateY(-10px);

    box-shadow:

        0 35px 80px rgba(37,99,235,.15);

}

.featured-service-card::before{

    content:"";

    position:absolute;

    top:0;

    left:0;

    width:100%;

    height:5px;

    background:linear-gradient(

        90deg,

        #2563EB,

        #3B82F6,

        #FF7A1A

    );

    transform:scaleX(0);

    transform-origin:left;

    transition:.4s;

}

.featured-service-card:hover::before{

    transform:scaleX(1);

}

/*=========================================
        IMAGE
=========================================*/

.featured-service-image{

    position:relative;

    overflow:hidden;

}

.featured-service-image img{

    width:100%;

    height:180px;

    object-fit:cover;

    transition:.5s;

}

.featured-service-card:hover .featured-service-image img{

    transform:scale(1.08);

}

/*=========================================
        CONTENT
=========================================*/

.featured-service-content{

    padding:28px;

}

.service-label{

    display:inline-flex;

    align-items:center;

    padding:8px 18px;

    margin-bottom:18px;

    border-radius:50px;

    background:#EFF6FF;

    color:#2563EB;

    font-size:13px;

    font-weight:700;

    text-transform:uppercase;

    letter-spacing:.5px;

}

.featured-service-content h3{

    font-size:24px;

    font-weight:800;

    line-height:1.4;

    color:#081C3A;

    margin-bottom:15px;

}

.featured-service-content p{

    color:#64748B;

    line-height:1.9;

    font-size:15px;

    margin-bottom:25px;

}

/*=========================================
        BUTTON
=========================================*/

.featured-service-content a{

    display:inline-flex;

    align-items:center;

    gap:10px;

    color:#2563EB;

    font-weight:700;

    text-decoration:none;

    transition:.3s;

}

.featured-service-content a i{

    transition:.3s;

}

.featured-service-content a:hover{

    color:#FF7A1A;

}

.featured-service-content a:hover i{

    transform:translateX(6px);

}

/*=========================================
        LOADING
=========================================*/

.spinner-border{

    width:3rem;

    height:3rem;

}

/*=========================================
        EMPTY STATE
=========================================*/

.featured-services-grid .text-center{

    padding:70px 20px;

}

.featured-services-grid h4{

    color:#081C3A;

    font-size:28px;

    font-weight:700;

}

/*=========================================
        RESPONSIVE
=========================================*/

@media(max-width:1199px){

.featured-service-content{

padding:24px;

}

.featured-service-content h3{

font-size:22px;

}

}

@media(max-width:991px){

.featured-services-section{

padding:80px 0;

}

.featured-service-image img{

height:200px;

}

}

@media(max-width:767px){

.featured-services-section{

padding:60px 0;

}

.featured-service-card{

border-radius:20px;

}

.featured-service-image img{

height:200px;

}

.featured-service-content{

padding:22px;

}

.featured-service-content h3{

font-size:20px;

}

.featured-service-content p{

font-size:14px;

}

.service-label{

font-size:12px;

padding:7px 14px;

}

}