*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins',sans-serif;
}

body{
    overflow-x:hidden;
}

.navbar{
    background:#0B1F3A;
}

.navbar-brand{
    color:#FFD54F!important;
    font-size:30px;
}

.hero{

    height:100vh;

    background:url("../img/banner.jpg") center center/cover no-repeat;

    position:relative;

    display:flex;

    align-items:center;

    color:white;

}

.overlay{

    position:absolute;

    width:100%;

    height:100%;

    background:rgba(0,0,0,.55);

}

.hero .container{

    position:relative;

    z-index:2;

}

.hero h1{

    font-size:60px;

    font-weight:700;

}

.hero p{

    font-size:22px;

    margin:30px 0;

}

.btn-warning{

    background:#FFD54F;

    border:none;

    color:#222;

    font-weight:bold;

}

section{

    padding:90px 0;

}

.card{

    border:none;

    transition:.3s;

}

.card:hover{

    transform:translateY(-10px);

}

footer{

    background:#0B1F3A;

    color:white;

    text-align:center;

    padding:25px;

}