/* colours */

:root {
	--main-bg-colour: #ededea;
	--primary-colour: #ff7800;
	--secondary-colour: #333333;
}

/* elements */

html {
	background-color: var(--secondary-colour);
}

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(--secondary-colour);
	height: 99px;
	padding-top: 15px;
	color: #fff;
}

h1, h2, h4, h5 {
	font-family: 'Titillium Web', sans-serif;
	text-transform: capitalize;
}

h1 {
	font-size: 56px;
}

h2 {
	font-size: 26px;
	color: var(--primary-colour);
}

h3 {
	font-size: 20px;
}

h4 {
	font-size: 34px;
}

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;
}

ul {
	list-style: outside none none;
	padding-left: 0;
}

ul.two-col {
	display: inline-block;
}

ul.two-col li {
	float: left;
	width: 50%;
}

/* headers */

.top-bar {
	background-color: var(--primary-colour);
}

.top-bar a {
	font-family: Arial, sans-serif;
	color: var(--secondary-colour);
}

.details {
	padding-top: 20px;
}

.home-header {
	background-image: url(../img/home-banner.jpg);
	background-position: center center;
}

.wasteremoval-header,
.groundwork-header,
.skiphire-header {
	height: auto;
	padding-top: 0;
}

.grey-bg {
	background-color: #ddddda;
}

.green-bg {
	background: #9dd53a;
	background: -moz-linear-gradient(-45deg, #9dd53a 0%, #a1d54f 50%, #80c217 51%, #7cbc0a 100%);
	background: -webkit-linear-gradient(-45deg, #9dd53a 0%, #a1d54f 50%, #80c217 51%, #7cbc0a 100%);
	background: linear-gradient(135deg, #9dd53a 0%, #a1d54f 50%, #80c217 51%, #7cbc0a 100%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#9dd53a', endColorstr='#7cbc0a', GradientType=1);
}

#map {
	height: 350px;
	width: 100%;
	top: -15px;
}

.ratio {
	display: grid;
}

.ratio > * {
	grid-area: 1/1/1/1;
}

/* custom */

.dark {
	color: #222;
}

.text-shadow {
	text-shadow: 1px 2px 5px rgba(0, 0, 0, 0.4);
}

.yellow-bar {
	border-top: 4px solid var(--primary-colour);
}

#logo {
	padding: 15px 0;
}

.empty {
	height: 0;
	padding: 0;
	margin: 0;
}

.panel {
	margin-top: 50px;
	background: none;
	padding: 15px;
	width: 500px;
	min-width: 300px;
}

.bottom {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
}

.boxed {
	border: 5px solid #4b4b4b;
	border-radius: 50%;
	width: 100%;
}

.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;
}

.pri-button {
	display: inline-block;
	padding: 5px 10px;
	background-color: var(--primary-colour);
	color: #fff !important;
	text-decoration: none;
	filter: brightness(100%);
	transition: all .2s;
	font-family: 'Titillium Web', sans-serif;
}

.pri-button:hover {
	text-decoration: none;
	filter: brightness(70%);
}

.sec-button {
	display: inline-block;
	padding: 5px 10px;
	background-color: var(--secondary-colour);
	color: #fff !important;
	text-decoration: none;
	filter: brightness(100%);
	transition: all .2s;
	font-family: 'Titillium Web', sans-serif;
}

.sec-button:hover {
	text-decoration: none;
	filter: brightness(70%);
}

/* overrides */

#override .btn-primary {
	background-color: var(--primary-colour);
	border: none;
	border-radius: 0;
}

#override .bg-dark {
	background-color: var(--secondary-colour) !important;
}

#override .nav-item {
	text-transform: uppercase;
	margin-right: 20px;
}

#override .nav-item:hover {
	background-color: var(--primary-colour);
}

#override .nav-link:hover {
	color: var(--secondary-colour);
}

/* 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%;
	}
}