/* colours */

:root {
	--main-bg-colour: #4b4b4b;
	--primary-colour: #e4af00;
	--secondary-colour: #313131;
}

/* elements */

body {
	background-color: var(--main-bg-colour);
}

header {
	background-repeat:no-repeat;
	height: 350px;
	padding-top: 15px;
}

section {
	background-color: #fff;
	padding-top: 15px;
	padding-bottom: 15px;
}

footer {
	background-color: var(--main-bg-colour);
	height: 99px;
	padding-top: 15px;
	color: #fff;
}

h1, h2, h3, h4 {
	font-family: 'Oswald', sans-serif;
}

h2 {
	font-size: 30px;
}

/* links */

a {
	color: #212529;
}

a.link {
	color: var(--primary-colour);
	font-weight: 700;
	text-decoration: none !important;
}

a.link:hover {
	color: var(--primary-colour);
	text-decoration: none !important;
}

a.dark-link {
	color: var(--secondary-colour);
	font-weight: 700;
	text-decoration: none !important;
}

a.dark-link:hover {
	color: var(--secondary-colour);
	text-decoration: none !important;
}

/* headers */

.home-header {
	background-image: url(../img/home-header.jpg);
	background-position: center right;
}

.aggregates-header {
	background-image: url(../img/aggregates-header.jpg);
	background-position: center center;
}

.haulage-header {
	background-image: url(../img/haulage-header.jpg);
	background-position: bottom center;
}

.gallery-header {
	background-image: url(../img/gallery-header.jpg);
	background-position: top center;
}

#map {
	height: 350px;
	width: 100%;
	top: -15px;
}

/* custom */

.empty {
	height: 0;
	padding: 0;
	margin: 0;
}

.panel {
	margin-top: 50px;
	background: rgba(255, 255, 255, 0.8);
	padding: 15px;
	width: 60%;
	min-width: 300px;
}

.bottom {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
}

.boxed {
	border: 5px solid #4b4b4b;
	border-radius: 50%;
	width: 100%;
	margin-top: 15px;
	margin-bottom: 15px;
}

.small {
	font-size: 12px;
}

.list {
	list-style-type: none;
}

.primary-box {
	background-color: var(--primary-colour);
	color: #fff;
	padding: 15px;
}

.secondary-box {
	background-color: var(--secondary-colour);
	color: #fff;
	padding: 15px;
}

.background-box {
	background-color: var(--main-bg-colour);
	color: #fff;
	padding: 15px;
}

/* overrides */

#override .btn-primary {
	background-color: var(--primary-colour);
	border: none;
	border-radius: 0;
}

#override .bg-dark {
	background-color: var(--main-bg-colour) !important;
}

#override .nav-item:hover {
	background-color: var(--primary-colour);
	color: #222;
}

/* effects */

.shrink {
	transition: all .2s;
	transform: scale(1);
}

.shrink:hover {
	transform: scale(0.98);
}

/* responsive */

.video-container {
	position: relative;
	padding-bottom: 56.25%;
	padding-top: 30px;
	height: 0;
	overflow: hidden;
}

.video-container iframe,
.video-container object,
.video-container embed {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

@media (max-width: 767px) {
	.navbar-brand img {
		width: 100%;
	}
}