/* =====================================================
   RSP Global Solutions
   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');

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:'Poppins',sans-serif;
    background:#f8f9fa;
    color:#333;
    line-height:1.7;
}

/* -----------------------------
   Navbar
------------------------------ */

.navbar{
    padding:15px 0;
}

.navbar-brand{
    font-size:28px;
    font-weight:700;
}

.nav-link{
    font-weight:500;
    margin-left:15px;
}

.nav-link:hover{
    color:#0d6efd !important;
}

/* -----------------------------
   Hero Section
------------------------------ */

.hero{

    background:linear-gradient(135deg,#0d6efd,#0a58ca);

    color:#fff;

    padding:100px 0;

}

.hero h1{

    font-size:55px;

    font-weight:700;

}

.hero p{

    font-size:20px;

    margin:25px 0;

}

.hero img{

    max-width:100%;

}

/* -----------------------------
Buttons
------------------------------ */

.btn-primary{

    border-radius:50px;

    padding:12px 30px;

}

.btn-outline-dark{

    border-radius:50px;

    padding:12px 30px;

}

/* -----------------------------
Section Title
------------------------------ */

section{

    padding:70px 0;

}

h2{

    font-weight:700;

    margin-bottom:25px;

}

/* -----------------------------
Cards
------------------------------ */

.card{

    border:none;

    border-radius:15px;

    transition:.4s;

}

.card:hover{

    transform:translateY(-8px);

    box-shadow:0 12px 30px rgba(0,0,0,.15);

}

.card-body{

    padding:35px;

}

.card i{

    font-size:55px;

}

/* -----------------------------
Page Header
------------------------------ */

.page-header{

    background:linear-gradient(135deg,#0d6efd,#0a58ca);

    color:white;

    text-align:center;

    padding:80px 0;

}

/* -----------------------------
Statistics
------------------------------ */

.counter{

    text-align:center;

}

.counter h2{

    font-size:45px;

    color:#0d6efd;

    font-weight:700;

}

/* -----------------------------
Footer
------------------------------ */

footer{

    background:#212529;

    color:#fff;

}

footer h5{

    margin-bottom:20px;

}

footer a{

    color:#fff;

    text-decoration:none;

}

footer a:hover{

    color:#0d6efd;

}

footer p{

    margin-bottom:10px;

}

/* -----------------------------
Images
------------------------------ */

img{

    max-width:100%;

}

/* -----------------------------
Utilities
------------------------------ */

.shadow-box{

    box-shadow:0 10px 25px rgba(0,0,0,.15);

}

.rounded-box{

    border-radius:15px;

}

.bg-light-blue{

    background:#eef5ff;

}

.text-justify{

    text-align:justify;

}

/* -----------------------------
Responsive
------------------------------ */

@media(max-width:992px){

.hero{

padding:70px 0;

}

.hero h1{

font-size:38px;

}

.hero p{

font-size:18px;

}

}

@media(max-width:768px){

.navbar-brand{

font-size:22px;

}

.hero{

text-align:center;

}

.hero h1{

font-size:32px;

}

.hero p{

font-size:16px;

}

section{

padding:50px 0;

}

.card{

margin-bottom:20px;

}

}
/* ===============================
Reveal Animation
================================ */

.reveal{

opacity:0;

transform:translateY(40px);

transition:all .8s ease;

}

.reveal.active{

opacity:1;

transform:translateY(0);

}

/* ===============================
Back To Top Button
================================ */

#topBtn:hover{

background:#084298;

}
.sidebar{
    width:250px;
    min-height:100vh;
    background:#212529;
}

.sidebar .nav-link{
    color:#ffffff;
    padding:12px 18px;
    border-radius:8px;
    transition:.3s;
}

.sidebar .nav-link:hover{
    background:#0d6efd;
    color:#fff;
}

.sidebar img{
    background:white;
    padding:8px;
}