/* =========================================================
   EHS COMPLIANCE PAGE CSS
   PART 1
========================================================= */


/* =========================================================
   GLOBAL
========================================================= */

*{
    box-sizing:border-box;
}


body{

    font-family:"Poppins",sans-serif;

    margin:0;

    padding:0;

    color:#1f2937;

}


.container{

    width:100%;

    max-width:1180px;

    margin:auto;

    padding-left:24px;

    padding-right:24px;

}


img{

    max-width:100%;

    display:block;

}



a{

    text-decoration:none;

}



/* =========================================================
   COMMON SECTION
========================================================= */


.section-padding{

    padding:90px 0;

}



.section-pad{

    padding:90px 0;

}



.light-bg{

    background:#f8fafc;

}



.text-center{

    text-align:center;

}



/* =========================================================
   SECTION LABEL
========================================================= */


.section-label{

    display:inline-block;

    color:#0b5ed7;

    font-size:13px;

    font-weight:600;

    letter-spacing:1.5px;

    text-transform:uppercase;

    margin-bottom:15px;

}



.section-title{

    margin:0;

    color:#062a5c;

    font-size:38px;

    line-height:1.25;

    font-weight:700;

}



.section-subtitle{

    max-width:750px;

    margin:20px auto 0;

    color:#64748b;

    font-size:16px;

    line-height:1.8;

}



.blue-divider{

    width:70px;

    height:4px;

    background:#0b5ed7;

    margin:20px 0;

    border-radius:5px;

}



.blue-divider.center{

    margin:20px auto;

}





/* =========================================================
   INTRO SECTION
========================================================= */


.two-column{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:60px;

    align-items:center;

}



.content-box h2{

    color:#062a5c;

    font-size:40px;

    line-height:1.3;

    margin:10px 0 20px;

}



.content-box p{

    color:#64748b;

    font-size:16px;

    line-height:1.8;

    margin-bottom:18px;

}



.blue-btn{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    padding:14px 32px;

    background:#0b5ed7;

    color:#fff;

    border-radius:6px;

    font-size:14px;

    font-weight:600;

    margin-top:20px;

    transition:.3s;

}



.blue-btn:hover{

    background:#084298;

    transform:translateY(-3px);

}



.image-box img{

    width:100%;

    height:430px;

    object-fit:cover;

    border-radius:15px;

    box-shadow:
    0 20px 50px rgba(0,0,0,.12);

}





/* =========================================================
   STATISTICS SECTION
========================================================= */


.stats-section{

    padding:70px 0;

    background:#062a5c;

}



.stats-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:25px;

}



.stat-card{

    text-align:center;

    padding:35px 20px;

    background:
    rgba(255,255,255,.08);

    border:1px solid rgba(255,255,255,.15);

    border-radius:15px;

    transition:.3s;

}



.stat-card:hover{

    transform:translateY(-8px);

    background:
    rgba(255,255,255,.15);

}



.stat-card i{

    font-size:38px;

    color:#65a9ff;

    margin-bottom:18px;

}



.stat-card h3{

    color:white;

    font-size:42px;

    margin:0;

    font-weight:700;

}



.stat-card p{

    color:
    rgba(255,255,255,.8);

    margin-top:8px;

    font-size:15px;

}





/* =========================================================
   SERVICE SECTION HEADING
========================================================= */


.section-heading{

    text-align:center;

    max-width:800px;

    margin:0 auto 50px;

}



.section-heading h2{

    color:#062a5c;

    font-size:38px;

    margin:10px 0;

}



.section-heading p{

    color:#64748b;

    line-height:1.8;

}





/* =========================================================
   SERVICE GRID
========================================================= */


.service-grid{

    display:grid;

    grid-template-columns:
    repeat(3,1fr);

    gap:30px;

}



.service-card{

    background:#fff;

    padding:35px 30px;

    border-radius:15px;

    border:1px solid #e5eaf1;

    transition:.35s;

    position:relative;

    overflow:hidden;

}



.service-card::before{

    content:"";

    position:absolute;

    left:0;

    top:0;

    width:100%;

    height:4px;

    background:#0b5ed7;

    transform:scaleX(0);

    transition:.35s;

}



.service-card:hover::before{

    transform:scaleX(1);

}



.service-card:hover{

    transform:translateY(-10px);

    box-shadow:
    0 20px 40px rgba(0,0,0,.08);

}



.service-icon{

    width:65px;

    height:65px;

    display:flex;

    align-items:center;

    justify-content:center;

    background:#eaf3ff;

    color:#0b5ed7;

    border-radius:12px;

    margin-bottom:22px;

}



.service-icon i{

    font-size:28px;

}



.service-card h3{

    color:#062a5c;

    font-size:21px;

    margin:0 0 15px;

}



.service-card p{

    color:#64748b;

    font-size:14px;

    line-height:1.8;

    margin:0;

}





/* =========================================================
   SECOND SERVICE BOX SECTION
========================================================= */


.ehs-intro{

    background:#fff;

}



.grid-3{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;

}



.service-box{

    padding:35px 30px;

    background:#fff;

    border-radius:15px;

    border:1px solid #e5eaf1;

    text-align:center;

    transition:.3s;

}



.service-box:hover{

    transform:translateY(-8px);

    box-shadow:
    0 15px 35px rgba(0,0,0,.08);

}



.service-box .service-icon{

    margin:0 auto 20px;

}



.service-box h3{

    color:#062a5c;

    font-size:21px;

    margin-bottom:15px;

}



.service-box p{

    color:#64748b;

    font-size:14px;

    line-height:1.8;

}
/* =========================================================
   WHY CHOOSE US SECTION
========================================================= */


.why-section{

    padding:90px 0;

    background:#f8fafc;

}



.why-grid{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:60px;

    align-items:center;

}



.why-content h2{

    margin:10px 0 20px;

}



.why-content p{

    color:#64748b;

    font-size:16px;

    line-height:1.8;

    margin-bottom:25px;

}



.why-list{

    margin-top:25px;

}



.why-item{

    display:flex;

    align-items:center;

    gap:15px;

    margin-bottom:18px;

    font-size:15px;

    color:#334155;

}



.why-item i{

    color:#0b5ed7;

    font-size:20px;

}





/* =========================================================
   WHY IMAGE
========================================================= */


.why-image{

    position:relative;

}



.why-image img{

    width:100%;

    height:500px;

    object-fit:cover;

    border-radius:18px;

    box-shadow:
    0 20px 50px rgba(0,0,0,.15);

}



.experience-card{

    position:absolute;

    left:-30px;

    bottom:35px;

    background:#0b5ed7;

    color:white;

    width:170px;

    padding:25px;

    border-radius:15px;

    text-align:center;

    z-index:2;

    box-shadow:
    0 15px 30px rgba(0,0,0,.2);

}



.experience-card h2{

    margin:0;

    font-size:45px;

    color:white;

}



.experience-card p{

    margin:5px 0 0;

    font-size:14px;

}





/* =========================================================
   COMPLIANCE SECTION
========================================================= */


.compliance-section{

    background:#fff;

}



.grid-4{

    display:grid;

    grid-template-columns:
    repeat(4,1fr);

    gap:25px;

    margin-top:50px;

}



.compliance-card{

    padding:35px 25px;

    background:#f8fafc;

    border-radius:15px;

    text-align:center;

    border:1px solid #e5eaf1;

    transition:.35s;

}



.compliance-card:hover{

    background:white;

    transform:translateY(-8px);

    box-shadow:
    0 15px 35px rgba(0,0,0,.08);

}



.compliance-card i{

    font-size:35px;

    color:#0b5ed7;

    margin-bottom:20px;

}



.compliance-card h4{

    color:#062a5c;

    font-size:20px;

    margin:10px 0;

}



.compliance-card p{

    color:#64748b;

    font-size:14px;

    line-height:1.7;

}





/* =========================================================
   TRUSTED CLIENT SECTION
========================================================= */


.clients-section{

    padding:90px 0;

    background:#062a5c;

    overflow:hidden;

}



.clients-section .section-label{

    color:#65a9ff;

}



.clients-section .section-title{

    color:white;

}



.clients-section .section-subtitle{

    color:rgba(255,255,255,.75);

}



.clients-track-wrap{

    overflow:hidden;

    margin-top:50px;

}



.clients-track{

    display:flex;

    gap:25px;

    width:max-content;

    animation:
    clientScroll 25s linear infinite;

}



.client-item{

    min-width:240px;

    padding:22px 30px;

    background:
    rgba(255,255,255,.08);

    border:1px solid rgba(255,255,255,.15);

    border-radius:50px;

    color:white;

    text-align:center;

    font-size:15px;

    font-weight:500;

}



@keyframes clientScroll{


    from{

        transform:translateX(0);

    }


    to{

        transform:translateX(-50%);

    }

}





/* =========================================================
   ANIMATION CLASS
========================================================= */


.fade-up{

    opacity:0;

    transform:translateY(30px);

    transition:.8s;

}



.fade-up.show{

    opacity:1;

    transform:translateY(0);

}





/* =========================================================
   TABLET RESPONSIVE
========================================================= */


@media(max-width:1000px){


    .why-grid{

        grid-template-columns:1fr;

        gap:40px;

    }



    .why-image img{

        height:430px;

    }



    .experience-card{

        left:20px;

        bottom:20px;

    }



    .grid-4{

        grid-template-columns:
        repeat(2,1fr);

    }



}





/* =========================================================
   MOBILE RESPONSIVE
========================================================= */


@media(max-width:650px){



    .why-section{

        padding:60px 0;

    }



    .why-grid{

        gap:30px;

    }



    .why-content h2{

        font-size:30px;

    }



    .why-image img{

        height:350px;

    }



    .experience-card{

        width:140px;

        padding:18px;

        left:15px;

        bottom:15px;

    }



    .experience-card h2{

        font-size:35px;

    }



    .grid-4{

        grid-template-columns:1fr;

        gap:20px;

    }



    .client-item{

        min-width:200px;

        padding:18px;

        font-size:13px;

    }



}
/* =========================================================
   TESTIMONIAL SECTION
========================================================= */


.testimonial-section{

    background:#f8fafc;

}



.testimonial-card{

    background:white;

    padding:35px 30px;

    border-radius:15px;

    border:1px solid #e5eaf1;

    transition:.35s;

}



.testimonial-card:hover{

    transform:translateY(-8px);

    box-shadow:
    0 20px 40px rgba(0,0,0,.08);

}



.stars{

    color:#f59e0b;

    font-size:22px;

    letter-spacing:3px;

    margin-bottom:20px;

}



.testimonial-card p{

    color:#64748b;

    font-size:15px;

    line-height:1.8;

    font-style:italic;

    margin-bottom:25px;

}



.testimonial-card h4{

    color:#062a5c;

    margin:0;

    font-size:18px;

}



.testimonial-card span{

    color:#94a3b8;

    font-size:13px;

}





/* =========================================================
   RELATED SERVICES SECTION
========================================================= */


.related-section{

    background:white;

}



.related-card{

    display:block;

    padding:30px 25px;

    background:#f8fafc;

    border-radius:15px;

    border:1px solid #e5eaf1;

    transition:.35s;

}



.related-card:hover{

    transform:translateY(-8px);

    background:white;

    box-shadow:
    0 15px 35px rgba(0,0,0,.08);

}



.related-card i{

    font-size:35px;

    color:#0b5ed7;

    margin-bottom:18px;

}



.related-card h4{

    color:#062a5c;

    font-size:19px;

    margin:10px 0;

}



.related-card p{

    color:#64748b;

    font-size:14px;

    line-height:1.7;

}





/* =========================================================
   FINAL CTA SECTION
========================================================= */


.final-cta{

    padding:90px 0;

    background:

    linear-gradient(
        120deg,
        #062a5c,
        #0b5ed7
    );

    text-align:center;

}



.final-cta .section-label{

    color:#b8dcff;

}



.final-cta h2{

    color:white;

    font-size:45px;

    line-height:1.3;

    margin:15px 0;

}



.final-cta h2 span{

    color:#65a9ff;

}



.final-cta .blue-divider{

    background:white;

}



.final-cta p{

    max-width:750px;

    margin:25px auto;

    color:rgba(255,255,255,.85);

    font-size:16px;

    line-height:1.8;

}



.cta-buttons{

    display:flex;

    justify-content:center;

    gap:20px;

    margin-top:35px;

}



.final-cta .btn-primary{

    display:inline-flex;

    align-items:center;

    gap:10px;

    padding:16px 35px;

    background:white;

    color:#0b5ed7;

    border-radius:6px;

    font-weight:600;

    transition:.3s;

}



.final-cta .btn-primary:hover{

    transform:translateY(-3px);

}



.final-cta .btn-outline{

    display:inline-flex;

    align-items:center;

    padding:16px 35px;

    border:1px solid rgba(255,255,255,.4);

    color:white;

    border-radius:6px;

    transition:.3s;

}



.final-cta .btn-outline:hover{

    background:white;

    color:#0b5ed7;

}





/* =========================================================
   BLOG / KNOWLEDGE HUB
========================================================= */


.blog-card{

    background:white;

    border-radius:15px;

    overflow:hidden;

    border:1px solid #e5eaf1;

    transition:.35s;

}



.blog-card:hover{

    transform:translateY(-8px);

    box-shadow:
    0 20px 40px rgba(0,0,0,.08);

}



.blog-img{

    width:100%;

    height:230px;

    object-fit:cover;

}



.blog-body{

    padding:25px;

}



.blog-tag{

    display:inline-block;

    padding:6px 14px;

    background:#eaf3ff;

    color:#0b5ed7;

    border-radius:30px;

    font-size:12px;

    font-weight:600;

}



.blog-body h4{

    color:#062a5c;

    font-size:21px;

    margin:15px 0;

}



.blog-body p{

    color:#64748b;

    font-size:14px;

    line-height:1.7;

}



.blog-body a{

    color:#0b5ed7;

    font-size:14px;

    font-weight:600;

}





/* =========================================================
   GRID SPACING
========================================================= */


.testimonial-section .grid-3,
.related-section .grid-4,
.section-pad .grid-3{

    margin-top:45px;

}





/* =========================================================
   TABLET RESPONSIVE
========================================================= */


@media(max-width:1000px){


    .final-cta h2{

        font-size:38px;

    }


    .grid-3{

        grid-template-columns:
        repeat(2,1fr);

    }


}





/* =========================================================
   MOBILE RESPONSIVE
========================================================= */


@media(max-width:650px){


    .testimonial-card{

        padding:25px 20px;

    }



    .grid-3{

        grid-template-columns:1fr;

    }



    .final-cta{

        padding:60px 0;

    }



    .final-cta h2{

        font-size:30px;

    }



    .final-cta p{

        font-size:14px;

    }



    .cta-buttons{

        flex-direction:column;

        align-items:stretch;

    }



    .final-cta .btn-primary,
    .final-cta .btn-outline{

        justify-content:center;

        width:100%;

    }



    .blog-img{

        height:200px;

    }



}
/* =========================================================
   CONSULTATION POPUP
========================================================= */


.consultation-popup{

    position:fixed;

    inset:0;

    display:none;

    align-items:center;

    justify-content:center;

    background:
    rgba(0,0,0,.65);

    backdrop-filter:blur(5px);

    z-index:9999;

    padding:20px;

}



.consultation-box{

    width:100%;

    max-width:520px;

    background:white;

    padding:40px;

    border-radius:20px;

    position:relative;

    animation:
    popupShow .4s ease;

}



@keyframes popupShow{


    from{

        opacity:0;

        transform:scale(.8);

    }


    to{

        opacity:1;

        transform:scale(1);

    }

}



.close-consultation{

    position:absolute;

    right:20px;

    top:15px;

    font-size:32px;

    color:#64748b;

    cursor:pointer;

}



.consultation-box h2{

    color:#062a5c;

    text-align:center;

    margin-bottom:10px;

}



.consultation-box p{

    text-align:center;

    color:#64748b;

    margin-bottom:25px;

}



.consultation-box form{

    display:flex;

    flex-direction:column;

    gap:15px;

}



.consultation-box input,
.consultation-box select,
.consultation-box textarea{


    width:100%;

    padding:14px 16px;

    border:1px solid #dbe4ef;

    border-radius:8px;

    font-family:Poppins,sans-serif;

    outline:none;

}



.consultation-box input:focus,
.consultation-box select:focus,
.consultation-box textarea:focus{

    border-color:#0b5ed7;

}



.consultation-box textarea{

    height:120px;

    resize:none;

}



.consultation-box button{

    padding:15px;

    background:#0b5ed7;

    color:white;

    border:none;

    border-radius:8px;

    font-size:16px;

    cursor:pointer;

    transition:.3s;

}



.consultation-box button:hover{

    background:#062a5c;

}





/* =========================================================
   THANK YOU POPUP
========================================================= */


.thankyou-popup{

    position:fixed;

    inset:0;

    display:none;

    align-items:center;

    justify-content:center;

    background:rgba(0,0,0,.6);

    z-index:10000;

}



.thankyou-box{

    background:white;

    width:90%;

    max-width:430px;

    padding:40px;

    border-radius:20px;

    text-align:center;

    position:relative;

}



.thankyou-close{

    position:absolute;

    right:20px;

    top:15px;

    font-size:30px;

    cursor:pointer;

}



.thankyou-box h2{

    color:#0b5ed7;

}



.thankyou-box p{

    color:#64748b;

}



.thankyou-btn{

    display:inline-block;

    margin-top:20px;

    padding:14px 25px;

    background:#25d366;

    color:white;

    border-radius:8px;

    text-decoration:none;

}





/* =========================================================
   FLOATING WHATSAPP BUTTON
========================================================= */


.floating-whatsapp,
.floating-call{


    position:fixed;

    right:25px;

    z-index:999;


}



.floating-whatsapp{

    bottom:90px;

}



.floating-call{

    bottom:25px;

}



.floating-whatsapp a,
.floating-call a{


    width:60px;

    height:60px;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:50%;

    color:white;

    font-size:28px;

    text-decoration:none;

    box-shadow:
    0 10px 25px rgba(0,0,0,.25);

    transition:.3s;

}



.floating-whatsapp a{

    background:#25d366;

}



.floating-call a{

    background:#0b5ed7;

}



.floating-whatsapp a:hover,
.floating-call a:hover{

    transform:translateY(-5px);

}





/* =========================================================
   BACK TO TOP BUTTON
========================================================= */


.back-top{


    position:fixed;

    right:25px;

    bottom:160px;

    width:45px;

    height:45px;

    border-radius:50%;

    border:none;

    background:#062a5c;

    color:white;

    font-size:22px;

    cursor:pointer;

    z-index:999;

    transition:.3s;

}



.back-top:hover{

    background:#0b5ed7;

}





/* =========================================================
   GLOBAL SECTION STYLING
========================================================= */


.section-pad{

    padding:90px 0;

}



.section-padding{

    padding:90px 0;

}



.container{

    width:100%;

    max-width:1180px;

    margin:auto;

    padding-left:24px;

    padding-right:24px;

}



.section-label{

    display:inline-block;

    color:#0b5ed7;

    font-size:13px;

    font-weight:600;

    letter-spacing:1px;

}



.section-title{

    font-size:42px;

    color:#062a5c;

    margin:15px 0;

    line-height:1.25;

}



.section-subtitle{

    max-width:750px;

    margin:auto;

    color:#64748b;

    line-height:1.8;

}



.blue-divider{

    width:70px;

    height:3px;

    background:#0b5ed7;

    margin:20px 0;

}



.blue-divider.center{

    margin:20px auto;

}



.text-center{

    text-align:center;

}





/* =========================================================
   MOBILE FINAL FIXES
========================================================= */


@media(max-width:650px){


.container{

    padding-left:18px;

    padding-right:18px;

}



.section-pad,
.section-padding{

    padding:60px 0;

}



.section-title{

    font-size:30px;

}



.consultation-box{

    padding:25px;

}



.floating-whatsapp a,
.floating-call a{

    width:52px;

    height:52px;

    font-size:22px;

}



.floating-whatsapp,
.floating-call{

    right:15px;

}



.back-top{

    right:15px;

    bottom:140px;

}



}



@media(max-width:400px){


.section-title{

    font-size:26px;

}


.consultation-box h2{

    font-size:22px;

}


}
/* =========================================================
   COMPLETE RESPONSIVE FIX
   EHS COMPLIANCE PAGE
========================================================= */


/* ===============================
   LARGE TABLET
================================ */

@media(max-width:1100px){


.container{

    max-width:100%;

    padding-left:30px;

    padding-right:30px;

}


/* Hero */

.service-hero{

    min-height:auto;

}



.service-hero .hero-content h1{

    font-size:52px;

}



.hero-stats{

    grid-template-columns:
    repeat(2,1fr)!important;

    gap:30px!important;

}



.hero-stat{

    border-right:none!important;

    padding:0!important;

}



/* grids */


.grid-4{

    grid-template-columns:
    repeat(2,1fr);

}



.grid-3{

    grid-template-columns:
    repeat(2,1fr);

}



.two-column{

    grid-template-columns:1fr;

}



}





/* ===============================
   TABLET
================================ */


@media(max-width:768px){


.container{

    padding-left:20px;

    padding-right:20px;

}



/* ===============================
 HERO
================================ */


.service-hero{

    padding-top:120px;

    padding-bottom:60px;

}



.service-hero .hero-content{

    max-width:100%;

}



.service-hero .hero-badge{

    font-size:11px;

}



.service-hero .hero-content h1{

    font-size:40px;

    line-height:1.15;

}



.service-hero .hero-desc{

    font-size:15px;

}



.service-hero .flex-gap{

    flex-direction:column;

    align-items:stretch;

}



.service-hero .btn-primary,
.service-hero .btn-outline{

    width:100%;

    min-width:auto;

}





/* HERO STATS */


.service-hero .hero-stats{

    grid-template-columns:
    repeat(2,1fr)!important;

}



.service-hero .hero-stat-num{

    font-size:30px;

}





/* ===============================
 GENERAL SECTIONS
================================ */


.section-title{

    font-size:32px;

}



.section-subtitle{

    font-size:14px;

}



.section-padding,
.section-pad{

    padding:60px 0;

}





/* ===============================
 GRIDS
================================ */


.grid-4,
.grid-3{

    grid-template-columns:1fr;

}





/* ===============================
 ABOUT SECTION
================================ */


.two-column{

    display:flex;

    flex-direction:column;

}



.image-box img{

    width:100%;

}





/* ===============================
 SERVICE CARDS
================================ */


.service-card,
.service-box,
.compliance-card,
.related-card,
.testimonial-card{

    padding:25px 20px;

}





/* ===============================
 CTA
================================ */


.final-cta h2{

    font-size:32px;

}



.cta-buttons{

    flex-direction:column;

}



.cta-buttons a{

    width:100%;

    justify-content:center;

}





/* ===============================
 BLOG
================================ */


.blog-img{

    height:210px;

}





/* ===============================
 POPUP
================================ */


.consultation-box{

    width:95%;

    max-height:90vh;

    overflow-y:auto;

}





}





/* ===============================
 MOBILE
================================ */


@media(max-width:480px){



.container{

    padding-left:16px;

    padding-right:16px;

}



/* HERO */


.service-hero{

    padding-top:100px;

}



.service-hero .hero-content h1{

    font-size:34px;

}



.service-hero .hero-desc{

    font-size:14px;

    line-height:1.7;

}



.service-hero .hero-badge{

    padding:8px 12px;

    border-radius:20px;

}





.service-hero .hero-stats{

    grid-template-columns:1fr!important;

    gap:25px!important;

}



.service-hero .hero-stat{

    text-align:center;

}





/* HEADINGS */


.section-title{

    font-size:27px;

}



.section-label{

    font-size:11px;

}





/* CARDS */


.service-card h3,
.service-box h3{

    font-size:18px;

}



.service-card p,
.service-box p,
.related-card p{

    font-size:13px;

}





/* ICON */


.service-icon i,
.related-card i{

    font-size:28px;

}





/* CTA */


.final-cta{

    padding:50px 0;

}



.final-cta h2{

    font-size:27px;

}



.final-cta p{

    font-size:14px;

}





/* FLOAT BUTTONS */


.floating-whatsapp a,
.floating-call a{

    width:48px;

    height:48px;

    font-size:20px;

}



.floating-whatsapp{

    bottom:75px;

}



.floating-call{

    bottom:15px;

}



.back-top{

    width:40px;

    height:40px;

    bottom:130px;

}





/* POPUP */


.consultation-box{

    padding:20px;

}



.consultation-box h2{

    font-size:21px;

}



}





/* ===============================
 EXTRA SMALL DEVICES
================================ */


@media(max-width:360px){


.service-hero .hero-content h1{

    font-size:30px;

}


.section-title{

    font-size:24px;

}


.btn-primary,
.btn-outline{

    font-size:13px;

}



}