/* Body */
/* ===========================
   Global
=========================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins',sans-serif;
}

body{
    background:#f5f7fa;
    color:#333;
}

/* ===========================
   Navbar
=========================== */

.navbar{
    background:#0b132b;
    padding:12px 0;
    box-shadow:0 2px 10px rgba(0,0,0,.15);
}

.navbar-brand{
    color:#fff !important;
    font-size:28px;
    font-weight:700;
}

.navbar-brand img{
    height:55px;
    width:auto;
}

.navbar-toggler{
    background:#fff;
}

.nav-link{
    color:#fff !important;
    font-size:16px;
    margin-left:15px;
    transition:.3s;
}

.nav-link:hover{
    color:#4da3ff !important;
}

/* ===========================
   Hero Section
=========================== */

.hero{
    background:
    linear-gradient(rgba(5,25,55,.65),rgba(5,25,55,.55)),
    url("images/hero.jpg");

    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;

    min-height:100vh;

    display:flex;
    align-items:center;

    color:#fff;
    padding:0 8%;
}

.hero-content{
    max-width:650px;
}

.hero h1{
    font-size:64px;
    font-weight:700;
    line-height:1.2;
    margin-bottom:20px;
}

.hero p{
    font-size:20px;
    color:#f1f1f1;
    line-height:1.8;
    margin-bottom:35px;
}

.hero .btn{
    padding:14px 35px;
    border-radius:50px;
    font-size:17px;
    font-weight:600;
    margin-right:15px;
}

.btn-primary{
    background:#2563eb;
    border:none;
}

.btn-primary:hover{
    background:#1d4ed8;
}

.btn-outline-light:hover{
    color:#000;
}

/* ===========================
   Search Box
=========================== */

.search-box{
    margin-top:30px;
}

.search-box input{
    height:55px;
    border-radius:10px;
}

.search-box button{
    height:55px;
    border-radius:10px;
    display:flex;
    justify-content:center;
    align-items:center;
    text-align:center;
}

/* ===========================
   Section
=========================== */

section{
    padding:70px 0;
}

.section-title{
    text-align:center;
    font-size:38px;
    font-weight:700;
    margin-bottom:45px;
}

/* ===========================
   Job Cards
=========================== */

.job-card{
    border:none;
    border-radius:18px;
    overflow:hidden;
    transition:.3s;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.job-card:hover{
    transform:translateY(-10px);
    box-shadow:0 15px 35px rgba(0,0,0,.15);
}

.job-card .card-body{
    padding:25px;
}

.job-card h5{
    font-weight:700;
}

.job-card p{
    color:#666;
}

/* ===========================
   Footer
=========================== */

footer{
    background:#0b132b;
    color:#fff;
    padding:25px 0;
    text-align:center;
}

/* ===========================
   Responsive
=========================== */

@media(max-width:992px){

.hero{
    text-align:center;
    justify-content:center;
    padding:0 25px;
}

.hero-content{
    max-width:100%;
}

.hero h1{
    font-size:48px;
}

}

@media(max-width:768px){

.navbar-brand img{
    height:45px;
}

.hero{
    min-height:90vh;
}

.hero h1{
    font-size:36px;
}

.hero p{
    font-size:17px;
}

.hero .btn{
    display:block;
    width:100%;
    margin-bottom:15px;
}

.section-title{
    font-size:30px;
}

}

@media (max-width: 768px) {

.hero{
    padding: 50px 0;
}

.hero h1{
    font-size: 32px;
}

.hero p{
    font-size: 16px;
}

}