/* Jumbotron Styles */
.jumbotron {
    background-image: url('../images/FPBLogo.png');
    background-size:contain;
    background-position: center;
    height: 75vh;
	  background-repeat: no-repeat;
   /* position: relative;*/
	background-color: #0d1138;
}

.jumbotron-content {
    position: relative;
    top: 30%;
    transform: translateY(-30%);
}

/* Navbar Styles */
.navbar-dark .navbar-nav .nav-link {
    color: #fff;
    font-weight: bold;
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
	 
}

/* Section Styles */
section {
    padding: 60px 0;
}


 /* Topbar styles */
    .navbar {
        /*transition: background-color 0.3s;*/
		/*background-color:#B10205;red*/
		background-color:rgb(33,37,41);
    }
    .navbar-light {
        background: rgba(25, 25, 25);
        /*background: rgba(255, 255, 255, 0.6);*/
    }
    .navbar.scrolled {
        /*background-color: #007bff !important;*/
        transition: background-color 0.3s;
    }
    .navbar .nav-link {
        color: #fff;
        transition: color 0.3s;
    }
    .navbar.scrolled .nav-link {
        color: #000;
    }

