/*==================================================
 THIRD PARTY INSPECTION SERVICES
 Global Stylesheet
 Version 1.0
==================================================*/

/*==============================
 GOOGLE FONT
==============================*/
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

/*==============================
 ROOT VARIABLES
==============================*/
:root{

    --primary:#0d6efd;
    --primary-dark:#0a58ca;
    --secondary:#ffc107;

    --dark:#1f2937;
    --light:#f8f9fa;

    --text:#495057;
    --heading:#212529;

    --white:#ffffff;

    --border:#e9ecef;

    --shadow:0 10px 30px rgba(0,0,0,.08);

    --radius:15px;

    --transition:.35s ease;

}

/*==============================
 RESET
==============================*/

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
    width:100%;
    overflow-x:hidden;
}

body{

    width:100%;
    overflow-x:hidden;

    font-family:'Poppins',sans-serif;

    font-size:16px;

    line-height:1.8;

    color:var(--text);

    background:#fff;

    overflow-x:hidden;

}

img{

    max-width:100%;

    height:auto;

}

a{

    text-decoration:none;

    transition:var(--transition);

}

ul{

    list-style:none;

    padding:0;

    margin:0;

}

section{

    padding:80px 0;

}

.container{

    max-width:1200px;

}

::selection{

    background:var(--primary);

    color:#fff;

}

/*==============================
 TYPOGRAPHY
==============================*/

h1,h2,h3,h4,h5,h6{

    color:var(--heading);

    font-weight:700;

}

.section-title{

    font-size:42px;

    font-weight:700;

    margin-bottom:20px;

}

.section-subtitle{

    color:var(--primary);

    font-weight:600;

    letter-spacing:1px;

    text-transform:uppercase;

    margin-bottom:15px;

}

/*==============================
 BUTTONS
==============================*/

.btn{

    border-radius:50px;

    padding:14px 34px;

    font-weight:600;

    transition:var(--transition);

}

.btn-primary{

    background:var(--primary);

    border:none;

}

.btn-primary:hover{

    background:var(--primary-dark);

    transform:translateY(-3px);

}

.btn-warning{

    color:#000;

}

.btn-warning:hover{

    transform:translateY(-3px);

}

.btn-outline-light:hover{

    color:#000;

}

/*==============================
 NAVBAR
==============================*/
@media (max-width:768px){

/* Desktop */
.logo{
    width:60px;
    height:60px;
    object-fit:contain;
}

/* Tablet */
@media (max-width:991px){
    .logo{
        width:50px;
        height:50px;
    }
}

/* Mobile */
@media (max-width:576px){
    .logo{
        width:42px;
        height:42px;
    }
}
}

.navbar{

    padding:8px 0;

}

.logo{

    width:60px;

    height:60px;

    object-fit:contain;

}

.company-name{

    color:#0d6efd;

    font-size:28px;

    font-weight:700;

    white-space:nowrap;

}

.navbar small{

    color:#666;

    font-size:15px;

}

.nav-link{

    padding:12px 15px;

    font-weight:500;

    white-space:nowrap;

}

.phone-number{

    color:#0d6efd;

    font-weight:700;

    text-decoration:none;

    margin-right:20px;

    white-space:nowrap;

}

.btn-primary{

    border-radius:30px;

    padding:12px 30px;

}

@media(max-width:991px){

.logo{

    width:45px;

    height:45px;

}

.company-name{

    font-size:20px;

}

.navbar small{

    
}

.phone-number{

    display:none;

}

.btn-primary{

    width:100%;

    margin-top:15px;

}

}
/*==============================
 HERO
==============================*/
.heros{background:#0d6efd;color:#fff;padding:70px 0}
.heros h1{

    color:#fff;
}

.hero{

    background:linear-gradient(135deg,#0d6efd,#1554d1);

    color:#fff;

    min-height:520px;

    display:flex;

    align-items:center;

    padding:60px 0;

}


.hero h1{

    color:#fff;

}

.hero-title{

    font-size:3rem;

    line-height:1.2;

    font-weight:700;

}

.hero-text{

    font-size:20px;

    opacity:.95;

}

.hero-badge{

    font-size:15px;

    border-radius:8px;

}

.hero-buttons{

    display:flex;

    gap:20px;

    flex-wrap:wrap;

    margin-top:30px;

}

.hero-btn{

    min-width:220px;

}

.hero-slider{

    overflow:hidden;

    border-radius:20px;

    box-shadow:var(--shadow);

}

.hero-slide-img{

    width:100%;

    height:380px;

    object-fit:cover;

}

.carousel-control-prev,

.carousel-control-next{

    width:45px;

    height:45px;

    background:rgba(255,255,255,.25);

    border-radius:50%;

    top:50%;

    transform:translateY(-50%);

}

.carousel-control-prev{

    left:15px;

}

.carousel-control-next{

    right:15px;

}

/*==============================
 CARDS
==============================*/

.card{

    border:none;

    border-radius:var(--radius);

    box-shadow:var(--shadow);

    transition:var(--transition);

}

.card:hover{

    transform:translateY(-8px);

}

/*==============================
 UTILITIES
==============================*/

.bg-light{

    background:#f8fafc !important;

}

.text-primary{

    color:var(--primary)!important;

}

.rounded-4{

    border-radius:20px!important;

}

.shadow-lg{

    box-shadow:0 20px 45px rgba(0,0,0,.12)!important;

}

/*==============================
 RESPONSIVE
==============================*/

@media(max-width:991px){

.logo{

    width:45px;

    height:45px;

}

.company-name{

    font-size:20px;

}

.hero{

    text-align:center;

    padding:50px 0;

}

.hero-title{

    font-size:2.3rem;

}

.hero-buttons{

    justify-content:center;

}

.hero-slide-img{

    height:300px;

}

}

@media(max-width:768px){

section{

    padding:60px 0;

}

.hero{

    min-height:auto;

    padding:40px 0;

}

.hero-title{

    font-size:2rem;

}

.hero-text{

    font-size:17px;

}

.hero-buttons{

    flex-direction:column;

}

.hero-btn{

    width:100%;

}

.hero-slide-img{

    height:220px;

}

.section-title{

    font-size:30px;

}

}

/*==================================================
 PART 2
 SERVICES
 INDUSTRIES
 COUNTERS
 CORE VALUES
 CTA
==================================================*/

/*==============================
SECTION HEADING
==============================*/

.section-header{
    text-align:center;
    margin-bottom:60px;
}

.section-header h2{
    font-size:42px;
    font-weight:700;
    color:var(--heading);
    margin-bottom:15px;
}

.section-header p{
    max-width:720px;
    margin:auto;
    color:#6c757d;
}

.section-badge{
    display:inline-block;
    background:var(--primary);
    color:#fff;
    padding:8px 18px;
    border-radius:30px;
    font-size:14px;
    font-weight:600;
    letter-spacing:.5px;
    margin-bottom:18px;
}

/*==============================
SERVICES
==============================*/

#services{
    background:#f8fafc;
}

.service-card{

    background:#fff;

    border:1px solid #e9ecef;

    border-radius:18px;

    padding:35px;

    height:100%;

    transition:.35s;

    overflow:hidden;

    position:relative;

}

.service-card:hover{

    transform:translateY(-12px);

    border-color:var(--primary);

    box-shadow:0 25px 45px rgba(0,0,0,.12);

}

.service-icon{

    width:75px;

    height:75px;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    background:linear-gradient(135deg,#0d6efd,#00b4ff);

    color:#fff;

    font-size:32px;

    margin-bottom:25px;

    transition:.35s;

}

.service-card:hover .service-icon{

    transform:rotate(8deg) scale(1.1);

}

.service-card h4{

    font-size:24px;

    margin-bottom:18px;

    color:var(--heading);

}

.service-card p{

    color:#6c757d;

    line-height:1.8;

}

.service-btn{

    display:inline-flex;

    align-items:center;

    gap:8px;

    color:var(--primary);

    font-weight:600;

    margin-top:20px;

}

.service-btn:hover{

    gap:12px;

    color:#084298;

}

/*==============================
FEATURE BOX
==============================*/

.feature-box{

    background:#fff;

    border-radius:15px;

    padding:30px;

    box-shadow:var(--shadow);

    text-align:center;

    transition:.35s;

}

.feature-box:hover{

    transform:translateY(-8px);

}

.feature-box i{

    font-size:55px;

    color:var(--primary);

    margin-bottom:20px;

}

.feature-box h5{

    margin-bottom:15px;

}

/*==============================
INDUSTRIES
==============================*/

#industries{

    background:#fff;

}

.industry-card{

    background:#fff;

    border:1px solid #e5e7eb;

    border-radius:16px;

    text-align:center;

    padding:35px 25px;

    transition:.35s;

    height:100%;

}

.industry-card:hover{

    background:linear-gradient(135deg,#0d6efd,#1554d1);

    transform:translateY(-10px);

    color:#fff;

    box-shadow:0 25px 45px rgba(13,110,253,.25);

}

.industry-card i{

    font-size:56px;

    color:var(--primary);

    margin-bottom:20px;

    transition:.35s;

}

.industry-card:hover i{

    color:#fff;

    transform:scale(1.15);

}

.industry-card h5{

    font-size:22px;

    margin-bottom:15px;

}

.industry-card p{

    color:#6c757d;

    margin-bottom:0;

}

.industry-card:hover p{

    color:#f8f9fa;

}

/*==============================
COUNTERS
==============================*/

.counter-box{

    background:#fff;

    border-radius:15px;

    padding:35px 20px;

    text-align:center;

    box-shadow:var(--shadow);

    transition:.35s;

    height:100%;

}

.counter-box:hover{

    transform:translateY(-8px);

}

.counter-box i{

    font-size:50px;

    color:var(--primary);

    margin-bottom:15px;

}

.counter-box h2{

    color:var(--primary);

    font-size:42px;

    font-weight:700;

    margin-bottom:10px;

}

.counter-box p{

    color:#6c757d;

    margin-bottom:0;

}

/*==============================
CORE VALUES
==============================*/

#core-values{

    background:#f8fafc;

}

.value-card{

    background:#fff;

    border-radius:16px;

    padding:35px;

    text-align:center;

    box-shadow:var(--shadow);

    transition:.35s;

    height:100%;

}

.value-card:hover{

    transform:translateY(-10px);

}

.value-card i{

    font-size:55px;

    color:var(--primary);

    margin-bottom:20px;

}

.value-card h4{

    margin-bottom:18px;

}

/*==============================
CHECK LIST
==============================*/

.check-list{

    list-style:none;

    padding:0;

}

.check-list li{

    margin-bottom:15px;

    display:flex;

    align-items:center;

}

.check-list i{

    color:#198754;

    margin-right:12px;

    font-size:20px;

}

/*==============================
CALL TO ACTION
==============================*/

.cta-section{

    background:linear-gradient(135deg,#0d6efd,#0047b3);

    color:#fff;

}

.cta-box{

    text-align:center;

    padding:70px 40px;

}

.cta-icon{

    width:90px;

    height:90px;

    margin:auto auto 30px;

    border-radius:50%;

    background:rgba(255,255,255,.15);

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:42px;

    animation:pulse 2s infinite;

}

.cta-box h2{

    color:#fff;

    font-size:42px;

    margin-bottom:20px;

}

.cta-box p{

    color:rgba(255,255,255,.85);

    max-width:700px;

    margin:0 auto 35px;

}

.cta-box .btn{

    min-width:220px;

}

@keyframes pulse{

0%{

transform:scale(1);

box-shadow:0 0 0 0 rgba(255,255,255,.5);

}

70%{

transform:scale(1.08);

box-shadow:0 0 0 18px rgba(255,255,255,0);

}

100%{

transform:scale(1);

box-shadow:0 0 0 0 rgba(255,255,255,0);

}

}

/*==============================
RESPONSIVE
==============================*/

@media(max-width:991px){

.service-card,
.industry-card,
.counter-box,
.value-card{

padding:30px;

}

.section-header h2{

font-size:34px;

}

.cta-box{

padding:55px 25px;

}

}

@media(max-width:768px){

.section-header{

margin-bottom:40px;

}

.section-header h2{

font-size:28px;

}

.service-card,
.industry-card,
.counter-box,
.value-card{

padding:25px;

}

.service-icon{

width:65px;
height:65px;
font-size:28px;

}

.industry-card i,
.value-card i{

font-size:46px;

}

.cta-box h2{

font-size:30px;

}

.cta-box .btn{

width:100%;

margin-bottom:15px;

}

}

/*==================================================
 PART 3
 ABOUT
 WHY CHOOSE US
 PROJECTS
 GALLERY
 CONTACT
 PRIVACY POLICY
 TERMS & CONDITIONS
==================================================*/

/*==============================
ABOUT SECTION
==============================*/

.about-section{
    background:#ffffff;
}

.about-image img{
    width:100%;
    border-radius:20px;
    box-shadow:0 15px 40px rgba(0,0,0,.12);
}

.about-content h2{
    font-size:42px;
    font-weight:700;
    color:var(--heading);
    margin-bottom:20px;
}

.about-content p{
    color:#6c757d;
    line-height:1.9;
}

.about-list{
    margin-top:30px;
}

.about-list li{
    display:flex;
    align-items:center;
    margin-bottom:15px;
}

.about-list i{
    color:#198754;
    font-size:20px;
    margin-right:12px;
}

/*==============================
MISSION
==============================*/

.mission-card{
    background:#fff;
    border-radius:20px;
    padding:40px;
    box-shadow:var(--shadow);
    transition:.35s;
    height:100%;
}

.mission-card:hover{
    transform:translateY(-8px);
}

.mission-card i{
    font-size:55px;
    color:var(--primary);
    margin-bottom:20px;
}

.mission-card h3{
    margin-bottom:20px;
}

/*==============================
WHY CHOOSE US
==============================*/

.why-card{

    background:#fff;

    padding:35px;

    border-radius:18px;

    box-shadow:var(--shadow);

    transition:.35s;

    height:100%;

}

.why-card:hover{

    transform:translateY(-10px);

}

.why-card i{

    font-size:48px;

    color:var(--primary);

    margin-bottom:20px;

}

.why-card h4{

    margin-bottom:15px;

}

.why-card p{

    color:#6c757d;

}

/*==============================
PROJECTS
==============================*/

.project-card{

    background:#fff;

    overflow:hidden;

    border-radius:18px;

    box-shadow:var(--shadow);

    transition:.35s;

}

.project-card:hover{

    transform:translateY(-10px);

}

.project-card img{

    width:100%;

    height:250px;

    object-fit:cover;

    transition:.35s;

}

.project-card:hover img{

    transform:scale(1.08);

}

.project-content{

    padding:25px;

}

.project-content h4{

    margin-bottom:15px;

}

.project-content span{

    color:var(--primary);

    font-weight:600;

}

/*==============================
GALLERY
==============================*/

.gallery-item{

    overflow:hidden;

    border-radius:18px;

    position:relative;

}

.gallery-item img{

    width:100%;

    height:260px;

    object-fit:cover;

    transition:.4s;

}

.gallery-item:hover img{

    transform:scale(1.12);

}

.gallery-overlay{

    position:absolute;

    inset:0;

    background:rgba(13,110,253,.7);

    display:flex;

    justify-content:center;

    align-items:center;

    opacity:0;

    transition:.35s;

}

.gallery-item:hover .gallery-overlay{

    opacity:1;

}

.gallery-overlay i{

    font-size:50px;

    color:#fff;

}

/*==============================
TESTIMONIAL
==============================*/

.testimonial-card{

    background:#fff;

    padding:35px;

    border-radius:20px;

    text-align:center;

    box-shadow:var(--shadow);

}

.testimonial-card img{

    width:90px;

    height:90px;

    border-radius:50%;

    object-fit:cover;

    margin-bottom:20px;

}

.testimonial-card h5{

    margin-top:20px;

    margin-bottom:5px;

}

.testimonial-card span{

    color:#6c757d;

}

.rating{

    color:#ffc107;

    margin-bottom:20px;

}

/*==============================
CONTACT
==============================*/

.contact-info{

    background:#fff;

    padding:35px;

    border-radius:18px;

    box-shadow:var(--shadow);

    height:100%;

}

.contact-info li{

    display:flex;

    align-items:flex-start;

    margin-bottom:25px;

}

.contact-info i{

    width:55px;

    height:55px;

    background:var(--primary);

    color:#fff;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    margin-right:18px;

    font-size:22px;

}

.contact-form{

    background:#fff;

    padding:40px;

    border-radius:20px;

    box-shadow:var(--shadow);

}

.contact-form .form-control{

    height:55px;

    border-radius:12px;

    border:1px solid #dee2e6;

    margin-bottom:20px;

}

.contact-form textarea{

    min-height:180px;

    resize:none;

}

/*==============================
GOOGLE MAP
==============================*/

.map{

    border-radius:20px;

    overflow:hidden;

    box-shadow:var(--shadow);

}

.map iframe{

    width:100%;

    height:450px;

    border:0;

}

/*==============================
LEGAL PAGES
==============================*/

.page-banner{

    background:linear-gradient(135deg,#0d6efd,#1554d1);

    color:#fff;

    padding:90px 0;

    text-align:center;

}

.page-banner h1{

    color:#fff;

    font-size:48px;

    font-weight:700;

}

.page-banner p{

    font-size:20px;

    opacity:.9;

}

.legal-content{

    background:#fff;

    border-radius:20px;

    padding:50px;

    box-shadow:var(--shadow);

}

.legal-content h2{

    color:var(--primary);

    font-size:30px;

    margin-top:40px;

    margin-bottom:20px;

}

.legal-content p{

    color:#6c757d;

    line-height:1.9;

}

.legal-content ul{

    padding-left:20px;

}

.legal-content li{

    margin-bottom:12px;

    color:#6c757d;

}

/*==============================
RESPONSIVE
==============================*/

@media(max-width:991px){

.about-content{

margin-top:40px;

}

.page-banner{

padding:70px 0;

}

.page-banner h1{

font-size:38px;

}

.contact-form{

margin-top:30px;

}

}

@media(max-width:768px){

.about-content h2,

.section-title{

font-size:30px;

}

.page-banner{

padding:60px 0;

}

.page-banner h1{

font-size:30px;

}

.page-banner p{

font-size:17px;

}

.legal-content{

padding:30px;

}

.legal-content h2{

font-size:24px;

}

.contact-form,

.contact-info,

.mission-card,

.why-card{

padding:25px;

}

.map iframe{

height:300px;

}

}

/*==================================================
 PART 4
 FOOTER
 FORMS
 TABLES
 PAGINATION
 BREADCRUMBS
 SCROLL TO TOP
 UTILITIES
 ANIMATIONS
==================================================*/

/*==============================
FOOTER
==============================*/

.footer{
    background:#1f2937;
    color:#ced4da;
    padding:60px 0 20px;
}

.footer h4{
    color:#fff;
    font-size:30px;
    font-weight:700;
    margin-bottom:20px;
}

.footer h5{
    color:#fff;
    font-size:22px;
    font-weight:600;
    margin-bottom:20px;
}

.footer p{
    color:#adb5bd;
    line-height:1.9;
}

.footer-links{
    list-style:none;
    padding:0;
}

.footer-links li{
    margin-bottom:12px;
}

.footer-links a{
    color:#dee2e6;
    text-decoration:none;
    transition:.3s;
}

.footer-links a:hover{
    color:#ffc107;
    padding-left:8px;
}

.footer-contact{
    list-style:none;
    padding:0;
}

.footer-contact li{
    display:flex;
    align-items:flex-start;
    gap:12px;
    margin-bottom:18px;
}

.footer-contact i{
    color:#0d6efd;
    font-size:20px;
    min-width:20px;
}

.footer-social{
    display:flex;
    gap:12px;
    margin-top:20px;
}

.footer-social a{
    width:45px;
    height:45px;
    border-radius:50%;
    background:#0d6efd;
    color:#fff;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:20px;
    transition:.35s;
}

.footer-social a:hover{
    background:#ffc107;
    color:#000;
    transform:translateY(-5px);
}

.footer hr{
    border-color:rgba(255,255,255,.08);
    margin:35px 0 20px;
}

.footer-bottom{
    font-size:15px;
}

.footer-bottom a{
    color:#fff;
}

.footer-bottom a:hover{
    color:#ffc107;
}

/*==============================
FORMS
==============================*/

.form-control,
.form-select{

    border-radius:12px;

    border:1px solid #dee2e6;

    padding:12px 16px;

    box-shadow:none;

}

.form-control:focus,
.form-select:focus{

    border-color:#0d6efd;

    box-shadow:0 0 0 .2rem rgba(13,110,253,.15);

}

textarea.form-control{

    min-height:180px;

}

/*==============================
TABLES
==============================*/

.table{

    border-radius:15px;

    overflow:hidden;

}

.table thead{

    background:#0d6efd;

    color:#fff;

}

.table th{

    border:none;

}

.table td{

    vertical-align:middle;

}

/*==============================
BREADCRUMB
==============================*/

.breadcrumb{

    background:none;

    margin:0;

}

.breadcrumb-item a{

    color:#fff;

}

.breadcrumb-item.active{

    color:#ffc107;

}

/*==============================
PAGINATION
==============================*/

.pagination .page-link{

    border:none;

    color:#0d6efd;

    margin:0 5px;

    border-radius:10px;

}

.pagination .active .page-link{

    background:#0d6efd;

    color:#fff;

}

/*==============================
ACCORDION
==============================*/

.accordion-item{

    border:none;

    margin-bottom:15px;

    border-radius:12px!important;

    overflow:hidden;

    box-shadow:var(--shadow);

}

.accordion-button{

    font-weight:600;

}

.accordion-button:not(.collapsed){

    background:#0d6efd;

    color:#fff;

}

/*==============================
MODAL
==============================*/

.modal-content{

    border:none;

    border-radius:20px;

}

/*==============================
BADGES
==============================*/

.badge{

    padding:8px 15px;

    border-radius:30px;

}

/*==============================
BACK TO TOP
==============================*/

.back-to-top{

    position:fixed;

    right:25px;

    bottom:25px;

    width:50px;

    height:50px;

    border-radius:50%;

    background:#0d6efd;

    color:#fff;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:22px;

    visibility:hidden;

    opacity:0;

    transition:.35s;

    z-index:999;

}

.back-to-top.show{

    visibility:visible;

    opacity:1;

}

.back-to-top:hover{

    background:#ffc107;

    color:#000;

}

/*==============================
LOADER
==============================*/

.preloader{

    position:fixed;

    inset:0;

    background:#fff;

    display:flex;

    justify-content:center;

    align-items:center;

    z-index:9999;

}

.spinner{

    width:60px;

    height:60px;

    border:6px solid #ddd;

    border-top:6px solid #0d6efd;

    border-radius:50%;

    animation:spin 1s linear infinite;

}

@keyframes spin{

    100%{

        transform:rotate(360deg);

    }

}

/*==============================
ANIMATIONS
==============================*/

.fade-up{

    animation:fadeUp .8s ease;

}

@keyframes fadeUp{

    from{

        opacity:0;

        transform:translateY(40px);

    }

    to{

        opacity:1;

        transform:translateY(0);

    }

}

.zoom-in{

    animation:zoomIn .7s ease;

}

@keyframes zoomIn{

    from{

        transform:scale(.9);

        opacity:0;

    }

    to{

        transform:scale(1);

        opacity:1;

    }

}

.float{

    animation:float 3s ease-in-out infinite;

}

@keyframes float{

    0%,100%{

        transform:translateY(0);

    }

    50%{

        transform:translateY(-10px);

    }

}

/*==============================
UTILITIES
==============================*/

.rounded-10{

    border-radius:10px;

}

.rounded-15{

    border-radius:15px;

}

.rounded-20{

    border-radius:20px;

}

.shadow-custom{

    box-shadow:0 15px 35px rgba(0,0,0,.08);

}

.bg-primary-gradient{

    background:linear-gradient(135deg,#0d6efd,#1554d1);

}

.text-justify{

    text-align:justify;

}

.object-cover{

    object-fit:cover;

}

.transition{

    transition:.35s;

}

/*==============================
RESPONSIVE
==============================*/

@media(max-width:991px){

.footer{

text-align:center;

}

.footer-contact li{

justify-content:center;

}

.footer-social{

justify-content:center;

}

.footer-bottom{

text-align:center;

}

}

@media(max-width:768px){

.footer{

padding:45px 0 20px;

}

.footer h4{

font-size:26px;

}

.footer h5{

font-size:20px;

}

.footer-social a{

width:42px;

height:42px;

font-size:18px;

}

.back-to-top{

width:45px;

height:45px;

right:15px;

bottom:15px;

}

}


/* Mobile overflow fixes */
.navbar .d-flex.align-items-center{
    min-width:0;
    flex:1;
}

.container,
.container-fluid{
    overflow-x:hidden;
}

.row{
    margin-left:0;
    margin-right:0;
}

@media(max-width:768px){

.company-name{
    font-size:18px;
    white-space:normal;
}

.navbar small{
    font-size:13px;
    white-space:normal;
}

.logo{
    width:42px;
    height:42px;
}

}

@media(max-width:576px){

body{

font-size:15px;

}

section{

padding:50px 0;

}

.btn{

width:100%;

}

.table-responsive{

border-radius:15px;

overflow:hidden;

}

}