*
{
	margin: 0;
	padding: 0;
}

/* HEADER & MENU */
#nav-bar
{
	position: sticky;
	top: 0;
	z-index: 10;
}

.navbar-brand img
{
	height: 30px;
	padding-left: 20px;
}

.navbar-nav li
{
	padding-right: 20px; 
}

.navbar-nav li a
{
	float: right;
	text-align: left;
}

#nav-bar ul li a:hover
{
	color: #004f98!important;
}

.navbar
{
	background: #000000;
	min-height: 50px;
}

.navbar-toggler
{
	border: none!important;
	color: white;
	position: relative;
}

.nav-link
{
	color: #FFFFFF!important;
	font-weight: 700;
	font-size: 15px;
}

/* IMAGE HEADER */
#slider
{
	background: #000;
	background-image: cover;

}

.carousel-item img
{
	filter: opacity(0.5);
	background-position: center;
	width: 100%;
	height: 100%;
}

@media only screen and (min-width: 1200px) {
	.carousel-item img
	{
		filter: opacity(0.8);
		background-position: center;
		height: 100%;
		width: 100%;
	}
}


/* WORKS */
#packages
{
	margin: 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	background: #000000;
}

.work
{
	text-align: center;
	padding-top: 50px;
	background: #000000;
	padding-bottom: 20px;
	color: #FFFFFF;
	font-size: 20px;
	font-weight: 300;
}

.box
{
	position: relative;
	width: 400px;
	height: 400px;
	background: #000000;
	margin: 10px;
}

.content
{
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	display: grid;
	align-items: center;
	color: #FFFFFF;
	padding: 20px;
	text-align: center;
	text-transform: uppercase;
	font-weight: 300;
	font-size: 20px;
}

.content a
{
	display: inline-block;
	margin-top: 10px;
	padding: 10px 20px;
	border: 1px solid #008FFF;
	text-decoration: none;
	color: #FFFFFF;
	transition: 0.5s;
	border-radius: 2px;
}

.content a:hover
{
	color: #FFFFFF;
	background: #008FFF;
	text-decoration: none;
}

.box img
{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	-webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
	clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
	transition: 0.8s;
	background: #000000;
}

.box:hover img
{
	-webkit-clip-path: polygon(0 0, 100% 0, 0 0, 0% 100%);
	clip-path: polygon(0 0, 100% 0, 0 0, 0% 100%);
}

/* FOOTER */
.footer
{
	width: 100%;
	background: #154360;
	display: block;
}

.footer-bottom
{
	padding: 10px;
	background: #001a4d;
	color: #C4C4C4;
	font-size: 10px;
	text-align: center;
}

/* Media Queries: Tablet Landscape */
@media screen and (max-width: 1060px) {
    #primary { width:67%; height: 100%; }
    #secondary { width:30%; margin-left:3%; height: 100%;} 
}

/* Media Queries: Tabled Portrait */
@media screen and (max-width: 768px) {
    #primary { width:100%; height: 100%; }
    #secondary { width:100%; margin:0; border:none; height: 100%;}
}