@charset 'UTF-8';

@import url("//fast.fonts.net/t/1.css?apiType=css&projectid=2d0c1904-6319-4aa5-bbbd-5a40cbfae6ce");
    @font-face{
        font-family:"Swiss721";
        src:url("/fonts/8bce9cb8-d4f7-4bcd-b2f9-48863565492f.woff2") format("woff2"),url("/fonts/26a8f5d8-621d-4416-937e-e4a1cfda93ff.woff") format("woff");
        font-weight: 300;
    }
    @font-face{
        font-family:"Swiss721";
        src:url("/fonts/60a6c625-19b1-4df2-8635-49ba40161273.woff2") format("woff2"),url("/fonts/921ee353-9901-4b98-9554-c2412566e2c7.woff") format("woff");
        font-weight: 700;
    }

:root {
    --white: #fff;
    --black: #111;
    --grey: #929497;
    --light-grey: #f9f9f9;
    --primary: #da272d;
    --text: #1e242b;

    --section-padding-y: 10rem 0;

    font-size: 10px;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 10rem;
}

/* --- BODY --- */

html, body {
	font-size: 1.6rem;
	line-height: 1.5;
	color: var(--grey);
	background: var(--white);
	font-family: "Swiss721", Arial, Helvetica, sans-serif;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
    font-weight: 300;
	height: 100%;
	position: relative;
}

/* --- UNIVERSAL --- */

body, h1, h2, h3, h4, h5, h6, ol, ul, li, p, a, img, fieldset, form, table, tr, td {
	margin: 0;
	padding: 0;
	border: 0 none;
	-webkit-appearance: none;
}

h1, h2, h3 {
    font-weight: 300;
}

h2, h3 {
    color: var(--primary);
    font-size: 4rem;
    line-height: 1;
}

h3 {
    margin-bottom: 3rem;
}

strong, b {
	font-weight: 700;
}

input, textarea {
	font-size: 22px;
}

a>img {
	border: none;
}

hr {
	border-top: 1px solid #8B8369;
	margin: 30px 0;
}

p {
	margin-bottom: 30px;
}

.form-error {font-weight: 700; color: #DA272D; line-height: 50px; text-align: right;}
.form-success {font-weight: 700; color: #AEB521; line-height: 50px; text-align: right;}

@media screen and (max-width: 991px) {
  .form-error {line-height: 25px;}
}
@media screen and (max-width: 767px) {
  .form-error, .form-success {text-align: left; margin: 30px 0 0 0;}
}

::-webkit-input-placeholder {
	/* WebKit browsers */
	color: #58595B;
}

:-moz-placeholder {
	/* Mozilla Firefox 4 to 18 */
	color: #58595B;
}

::-moz-placeholder {
	/* Mozilla Firefox 19+ */
	color: #58595B;
}

:-ms-input-placeholder {
	/* Internet Explorer 10+ */
	color: #58595B;
}

strong {
	font-weight: 700;
}

a[href^="tel"] {
	color: var(--white);
	text-decoration: none;
}

.text-right {
	text-align: right;
}

.img-responsive {
  width: 100%;
  height: auto;
  display: block;
}
.img-border {border: 1px solid #b4b4b4;}

/* --- BUTTONS --- */

.btn {
  font-weight: 700;
  height: 50px;
  line-height: 46px;
	width: 270px;
  transition: 0.3s all;
  text-transform: uppercase;
  padding: 0;
  display: inline-block;
  text-align: center;
}
.btn:hover, .btn:focus {
  color: white;
  text-decoration: none;
}

.btn-primary {
	background-color: var(--primary);
	color: var(--white);
	border: 2px solid var(--primary);
}
.btn-primary:hover {
	background-color: #b01e23;
	color: var(--white);
	border: 2px solid #b01e23;
}



@media screen and (max-width:767px) {
	.btn-primary {
		width: 100%;
		margin-top: 30px;
	}
}

a.icon-link {
	font-size: 24px;
	color: #BBBBBB;
	text-transform: uppercase;
	display: inline-block;
	line-height: 30px;
	-webkit-transition: all 0.2s ease;
	-moz-transition: all 0.2s ease;
	transition: all 0.2s ease;
}

a.icon-link:hover {
	color: #ED342F;
	text-decoration: none;
}

a.icon-link:hover:before {
	color: #ED342F;
	border-color: #ED342F;
	text-decoration: none;
}

.section-btn div {
	background-color: #1e242b;
	color: var(--white);
	width: 370px;
	height: 90px;
	display: block;
	line-height: 90px;
	margin: -45px auto 0 auto;
	text-align: center;
}

.section-btn div span {
	display: block;
	width: 100%;
	height: 100%;
	line-height: 90px;
	font-size: 24px;
	text-transform: uppercase;
    font-weight: 700;
}

.section-btn a:before, .section-btn a, .section-btn a:hover, .section-btn a:focus, .section-btn a:hover:before {
	color: var(--white);
	text-decoration: none;
}

.section-btn a:before {
	line-height: 90px;
}

.section-btn h2 {
	margin-top: 15px;
}

@media screen and (max-width: 767px) {
	.section-btn div {
		width: 100%;
	}
}

/* --- HEADER --- */

#header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 25px 0;
    z-index: 10;
    transition: 0.2s ease all;
}

#header.scrolled {
    background-color: var(--black);
}

.header-contact {
    text-align: right;
}

.header-contact__phone {
    color: var(--white);
    font-size: 3rem;
    line-height: 1;
    margin-bottom: 1rem;
}

.header-contact__email {
    color: var(--primary);
    font-size: 2rem;
    transition: 0.2s ease all;
}

.header-contact__email:hover {
    color: var(--white);
    text-decoration: none;
}

@media screen and (max-width: 767px) {
    .header-contact__email {
        font-size: 1.5rem;
    }
}

.flex-row {
    display: flex;
    flex-wrap: wrap;
    gap: 30px 0;
}

.flex-row--items-center {
    align-items: center;
}

.text-section {
    background-color: var(--white);
    line-height: 3rem;
    padding: var(--section-padding-y);
    color: var(--text);
}

.text-section--grey-bg {
    background-color: var(--light-grey);
}

.text-section--zig-zag .row + .row {
    margin-top: 60px;
}

.text-section--zig-zag > .container > .row:nth-child(odd) {
    flex-direction: row-reverse;
}

.text-section p {
    margin-bottom: 2rem;
}

.text-section p:last-child {
    margin-bottom: 0;
}

.text-section h2 {
    color: var(--primary);
    margin-bottom: 3rem;
}

.text-section__image-caption {
    display: block;
    margin-top: 1.5rem;
    font-size: 2rem;
    line-height: 1.5;
    text-align: center;
}

.image-list {
    list-style-type: none;
    padding-left: 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 15px;
}

.image-list li {
    text-align: center;
}

.image-list--justify-between {
    justify-content: space-between;
}

@media screen and (max-width: 991px) {
    .image-list--justify-between li {
        width: calc(33.33333% - 2rem);
    }

    .text-section__image {
        max-width: 30rem;
        margin: 3rem auto 0;
    }
}

@media screen and (max-width: 767px) {
    .image-list {
        justify-content: center;
    }
}

@media screen and (max-width: 469px) {
    .image-list--justify-between li {
        width: calc(50% - 1rem);
    }
}

.hero {
    background-image: linear-gradient(to right, rgba(0,0,0,0.95), rgba(0,0,0,0.4)), url('/images/layouts/hero.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    font-size: 2rem;
    line-height: 1.5;
}

.hero > .container {
    margin: auto auto 0;
}

.hero--404 > .container {
    margin: auto;
}

.hero-bottom {
    margin: auto auto 0;
    padding-bottom: 4.5rem;
    text-align: center;
}

.hero__title {
    color: var(--white);
    font-size: 7rem;
    line-height: 1;
    margin-bottom: 3rem;
}

@media screen and (max-width: 767px) {
    .hero__title {
        font-size: 3.5rem;
        line-height: 1.25;
        margin-bottom: 2rem;
    }

    .hero-bottom {
        padding-bottom: 2.5rem;
    }
}

.thumbnails {
    padding: 60px 0;
}

.thumbnails .row, .bg-gradient-section .row {
    display: flex;
    flex-wrap: wrap;
    gap: 30px 0;
}

.thumbnail {
    color: var(--grey);
    transition: 0.2s ease all;
}

.thumbnail:hover {
    color: var(--primary);
    text-decoration: none;
}

.thumbnail__title {
    font-size: 3rem;
    line-height: 4rem;
    padding: 3rem 0;
    border-bottom: 1px solid var(--grey);
    transition: 0.2s ease all;
}

.thumbnail:hover .thumbnail__title {
    border-bottom: 1px solid var(--primary);
}

.bg-gradient-section {
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    color: var(--white);
    padding: 14rem 0;
    font-size: 2rem;
    line-height: 1.5;
}

.bg-gradient-section h2 {
    color: var(--white);
}

.bg-gradient-section p:last-child {
    margin-bottom: 0;
}

#objectives {
    background-image: linear-gradient(to right, rgba(0,0,0,0.4), rgba(0,0,0,0.95)), url('/images/layouts/objectives.jpg');
}

#services {
    padding: var(--section-padding-y);
}

#services h2 {
    color: var(--primary);
    margin-bottom: 6rem;
}

#services .row + .row {
    display: flex;
    flex-wrap: wrap;
    gap: 5rem 0;
}

.services-icons img {
    display: block;
    max-width: 6rem;
    max-height: 6rem;
    margin: 0 auto 2rem;
}

.services-icons p {
    margin-bottom: 0;
    text-align: center;
    line-height: 2;
}

#value {
    background-image: linear-gradient(to right, rgba(0,0,0,0.4), rgba(0,0,0,0.95)), url('/images/layouts/values.jpg');
}

div.counter {
	font-size: 16px;
	line-height: 20px;
	color: var(--white);
	margin: 40px 0 0 0;
	text-align: right;
}

.buy-now {
	display: inline-block;
	width: 190px;
	min-height: 60px;
	max-width: 100%;
	color: #ED342F;
	border: 1px solid #ED342F;
	text-align: center;
	font-size: 16px;
	line-height: 20px;
	padding:19px;
	text-transform: uppercase;
}

.buy-now:hover, .buy-now:active, .buy-now:focus {
	color: #ED342F;
	text-decoration: none;
}

.btn-centre {
	text-align: center;
}

.m30 {
	margin-bottom: 30px;
}

.long-btn {
	width: 250px;
}

div.navbar-header {
	text-align: right;
}

div.navbar-header {
	float: right;
}

.navbar-brand {
  height: auto;
  padding: 0 15px;
}

.logo {
  max-width: 217px;
  height: 7rem;
  width: auto;
  transition: 0.2s ease all;
}

#header.scrolled .logo {
    height: 5rem;
}

.navbar-collapse {
	padding-right: 0px;
}

.navbar-default {
	background-color: transparent;
	border: none;
}

.navbar-default .navbar-nav>li>a {
	color: var(--white);
	font-size: 16px;
	line-height: 20px;
	text-transform: uppercase;
	-webkit-transition: all 0.2s ease;
	-moz-transition: all 0.2s ease;
	transition: all 0.2s ease;
}

.navbar-default .navbar-nav>li>a:hover, .navbar-default .navbar-nav>li>a:focus {
	color: #6B6C6E;
}

.navbar-default .navbar-nav>.active>a, .navbar-default .navbar-nav>.active>a:hover, .navbar-default .navbar-nav>.active>a:focus {
	background-color: transparent;
	color: #ED342F;
}

.navbar-nav li:last-child a {
	padding-right: 0;
}

.navbar-default .navbar-toggle:hover, .navbar-default .navbar-toggle:focus {
	background-color: transparent;
}

@media screen and (max-width: 767px) {
	.navbar-nav li a {
		padding-right: 0;
		padding-top: 15px;
		padding-bottom: 15px;
	}
}

.nav>li {
	position: inherit;
}

@media screen and (min-width: 768px) {
	.navbar-nav>li>a {
		padding-top: 20px;
		padding-bottom: 26px;
	}
}

.slogan {
	color: var(--white);
	font-size: 24px;
	line-height: 120px;
	font-family: monospace;
}
.slogan span {
	color: #8B8369;
}
@media screen and (max-width: 767px) {
	.slogan {
		font-size: 18px;
		line-height: normal;
		text-align: center;
	}
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100%;
  background-color: #1e232b;
  opacity: 0;
}

/* --- CONTENT --- */

div.video-player {
	margin-bottom: 60px;
}

/* HOME BLOCKS */

.home-blocks {
	margin-top: -123px;
	position: relative;
	z-index: 100;
}

.home-block a {
	background-color: rgba(68, 68, 68, 0.7);
	display: block;
	text-align: center;
	padding: 15px;
	-webkit-transition: all 0.2s ease;
	-moz-transition: all 0.2s ease;
	transition: all 0.2s ease;
}

.home-block a:hover {
	background-color: rgba(68, 68, 68, 1);
	text-decoration: none;
}

.home-block a span.box-icon {
	display: block;
	height: 30px;
	width: 30px;
	margin: 15px auto 0 auto;
	line-height: 30px;
}

.home-block a span.box-icon i {
	color: white;
	font-size: 30px;
}

.home-block a h3 {
	color: var(--white);
	font-size: 24px;
	line-height: 24px;
	text-transform: uppercase;
}

@media screen and (max-width: 991px) {
	.home-blocks {
		margin-top: 0;
		position: absolute;
		bottom: 15px;
		width: 100%;
	}
	.home-block {
		height: 60px;
		margin-bottom: 5px;
	}
	.home-block h3 {
		display: inline-block;
		line-height: 30px;
	}
	.home-block>a {
		text-align: left;
	}
	.home-block a span.box-icon {
		text-align: center;
		display: inline-block;
		float: right;
		margin-top: 0;
	}
}

.last-block a {
	background-color: rgba(237, 52, 47, 0.7);
}

.last-block a:hover {
	background-color: rgba(237, 52, 47, 1);
}

/* --- BOXES --- */

div.featured-box {
	margin-bottom: 0;
}

section.welcome {
  background-color: #E5E5E5;
  border-top: 1px solid #b4b4b4;
  padding: 80px 0;
  margin-top: 30px;
}
section.welcome p:last-of-type {
  margin-bottom: 0px;
}
@media screen and (max-width: 767px) {
  div.featured-box {
  	margin-bottom: 60px;
  }
	.welcome {
    padding: 60px 0 !important;
  }
}

section.featured-areas {
	padding: 60px 0 0 0;
}

@media screen and (max-width: 767px) {
  section.featured-areas {padding-top: 0px;}
  div.featured-box {margin-bottom: 6  0px;}
}

section.featured-areas h2 {
	font-size: 30px;
	line-height: 40px;
	text-transform: uppercase;
	text-align: center;
}

section.featured-areas img {
	margin: 30px 0;
	position: relative;
	width: 100%;
}

section.featured-areas a {
	position: relative;
	display: block;
}

section.featured-areas a.box-img:hover div.img-hover {
	visibility: visible;
	opacity: 1;
}

section.featured-areas div.img-hover {
	visibility: hidden;
	opacity: 0;
	transition: 0.3s all;
	text-align: center;
	position: absolute;
	background: rgba(30,36,43,0.9);
	border-top: 1px solid var(--primary);
	border-bottom: 1px solid var(--primary);
	height: calc(100%  - 40px);
	width: 100%;
	z-index: 100;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
	margin: 20px 0;
}

section.featured-areas div.img-hover p {
	color: var(--primary);
	font-size: 24px;
	line-height: 24px;
	text-transform: uppercase;
	font-weight: normal;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

section.featured-areas .featured-box a:hover {
	text-decoration: none;
}

section.featured-areas .featured-box a:hover~a {
	color: #ED342F;
}

section.featured-areas .featured-box a:hover~a:before {
	color: #ED342F;
}

@media screen and (max-width: 991px) {
	section.featured-areas .featured-box:last-child {
		margin-top: 30px;
	}
}

@media screen and (max-width: 767px) {
	section.featured-areas .featured-box:last-child {
		margin-bottom: 30px;
	}
}

div.intro-text {
	text-align: center;
  font-size: 18px;
  color: #1e242b;
}

div.intro-text h2 {
	font-size: 40px;
	line-height: 40px;
  margin-bottom: 30px;
	color: var(--primary);
}
@media screen and (max-width: 767px) {
  section.services div.intro-text h2 {margin-top: 40px;}
}

div.intro-text h3 {
	color:#333333;
	font-size: 24px;
	line-height: 24px;
	margin-bottom: 30px;
	text-transform: uppercase;
}

div.intro-text strong span {
	color: #ED342F;
}

div.intro-text ul {
	list-style: none;
	font-size: 18px;
	line-height: 24px;
}

div.intro-text ul li + li {
	margin-top: 15px;
}

section.tab-content {
	padding-top: 60px;
}

ul.nav-pills {
	margin-bottom: 30px;
}
ul.nav-pills li {
	width: 25%;
	border-top: 1px solid #BBBBBB;
	border-bottom: 1px solid #BBBBBB;
	border-left: 1px solid #BBBBBB;
}

ul.nav-pills li:last-of-type {
	border-right: 1px solid #BBBBBB;
}

ul.nav-pills li a {
	display: block;
	border-radius:0;
	text-align: center;
	padding: 13px;
	min-height: 50px;
	text-transform: uppercase;
	color: #333333;
}

.nav-pills>li.active>a, .nav-pills>li.active>a:hover, .nav-pills>li.active>a:focus {
	background-color: #ED342F;
}

ul.nav-pills li + li {
	margin:0;
}

@media screen and (max-width:767px) {
	ul.nav-pills li {
		width: 100%;
		border-right: 1px solid #BBBBBB;
		border-top: 1px solid #BBBBBB;
		border-left: 1px solid #BBBBBB;
		border-bottom: none;
	}
	ul.nav-pills li:last-of-type {
		border-bottom: 1px solid #BBBBBB;
	}
}

div.tab-pane {
	font-size: 18px;
	line-height: 24px;
}

div.tab-pane span {
	color: #ED342F;
}

div.tab-pane a {
	color: #ED342F;
}

div.tab-pane ul {
	list-style: none;
	margin-bottom: 30px;
}

div.tab-pane ol {
	margin-bottom: 30px;
}

div.tab-pane ul li + li, div.tab-pane ol li + li {
	margin-top: 15px;
}

div.tab-pane img {
	margin:0 auto 30px auto;
}

div.tab-pane img.signature {
	margin:0 0 30px 0;
}

div.tab-pane ul.list-styled {
	padding-left: 20px;
	list-style: disc;
	color: #ED342F;
}

div.tab-pane ol.list-styled {
	padding-left: 20px;
	color: #ED342F;
}

div.tab-pane ul.list-styled span, div.tab-pane ol.list-styled span {
	color: #6b6c6e;
}

div.tab-pane h3 {
	color: #6b6c6e;
	margin-bottom: 15px;
	font-size: 18px;
	line-height: 24px;
}

/* --- HOMEPAGE - FEATURED --- */

section.featured {
	text-align: center;
	margin-bottom: 60px;
}

.twitter-feature {
	display: block;
	height:200px;
	background: url('/images/layouts/twitter-feature.jpg') no-repeat center center;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
}

.twitter-feature a {
	color: var(--white);
	display: block;
	font-size: 40px;
	line-height: 40px;
	padding-top: 60px;
}

@media screen and (max-width: 767px) {
	.twitter-feature {
		height:150px;
	}
	.twitter-feature a {
		font-size: 32px;
		line-height: 32px;
		padding-top: 45px;
	}
}

.twitter-feature a:hover, .twitter-feature a:active, .twitter-feature a:focus {
	text-decoration: none;
}

.twitter-feature p {
	margin: 0;
}

.twitter-feature p span {
	color: #ED342F;
}

.twitter-feature h3 {
	color: var(--white);
}

/* --- HOMEPAGE - EQUIPMENT HIRE --- */

section.featured-quote {
	height: 400px;
	text-align: center;
	margin-bottom: 30px;
	background: linear-gradient(0deg, rgba(30,36,43,0.3), rgba(30,36,43,0.3)), url('../images/layouts/quote-bg.jpg');
	background-size: cover;
	background-attachment: fixed;
	background-position: center;
}

section.featured-quote .container {
	height: 100%;
	position: relative;
}

section.featured-quote .container .row {
	position: absolute;
	top: 50%;
	left: 0;
	transform: translate(0, -50%);
	width: 100%;
}

section.featured-quote .col-xs-12 {
	margin-left: 15px;
}

section.featured-quote h3 {
	font-size: 60px;
	line-height: 60px;
	color: var(--white);
  text-transform: uppercase;
	-webkit-text-shadow: 0px 0px 8px black;
	-moz-text-shadow: 0px 0px 8px black;
	text-shadow: 0px 0px 8px black;
}

section.featured-quote span {
	color: var(--white);
	font-size: 22px;
}

@media screen and (max-width: 767px) {
	section.featured-quote h3 {
		font-size: 36px;
		line-height: 36px;
		/*padding: 80px 0;*/
	}
  section.featured-quote {
    margin-top: 0;
  }
}

section.services {
  padding-top: 60px;
}
@media screen and (max-width: 767px) {
	section.services {
    padding-top: 0px;
  }
}

.box {
  background-color: #E5E5E5;
  border: 1px solid #B4B4B4;
  padding: 30px;
  min-height: 228px;
}

.box p {
  color: #1e242b;
  margin: 0;
}

.box p strong {
  font-weight: 700;
}

.box ul {list-style-position: outside; padding-left: 15px;}
.box ul li {color: #1e242b;}

@media screen and (max-width: 1200px) {
  .box {min-height: 280px;}
}
@media screen and (max-width: 991px) {
  .box {min-height: auto; margin-bottom: 20px;}
}

section.contact-us {
	background-color: var(--black);
    padding: 5rem 0 6rem;
}

section.contact-us form label {
	color: var(--grey);
    font-weight: 300;
	margin-bottom: 1rem;
}
section.contact-us form input, section.contact-us form select {
	height: 45px;
	margin-bottom: 30px;
	border-radius: 0;
	font-size: 18px;
}
section.contact-us form textarea {
	height: 255px;
	font-size: 18px;
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  border-radius: 0px;
}
section.contact-us .col-xs-6 {
	margin-left: 15px;
	width: 50%;
}
section.contact-us .col-xs-6:last-of-type {
	margin-left: -15px;
}
section.contact-us .security {
	/*border: 1px solid #ccc;*/
	background-color: #333333;
	color: var(--white);
	font-weight: bold;
	line-height: 45px;
	text-align: center;
}

@media screen and (max-width: 1200px) {
  section.contact-us button {width: 100%;}
}
@media screen and (max-width: 767px) {
  section.contact-us h2 {margin-top: 40px;}
}

.styled-select select {
   background: transparent;
   height: 45px;
	 width: 100%;
   -webkit-appearance: none;
	 -moz-appearance: none;
	 appearance: none;
	 border-radius: 0;
   }

	 .styled-select select::-ms-expand {
			display: none;
	}

.styled-select {
  overflow: hidden;
  background:var(--white) url('/images/layouts/arrow.png') no-repeat right ;
  border: 0;
	border-radius: 0;
	height: 45px;
	width: 100%;
}

@media screen and (max-width: 767px) {
	.player {
		background: url('/images/layouts/player.jpg') no-repeat center center;
		-webkit-background-size: cover;
		-moz-background-size: cover;
		-o-background-size: cover;
		background-size: cover;
	}
}

#map {
	height: 400px;
}

.footer {
	background-color: var(--black);
    color: var(--white);
	position: relative;
	padding: 5rem 0 4rem;
}

.footer__address {
    line-height: 3rem;
    text-align: right;
}

@media screen and (max-width: 767px) {
	.footer__address {
        text-align: left;
    }
}

.footer h4 {
	font-size: 16px;
	line-height: 20px;
	font-weight: 700;
	color: var(--primary);
	border-bottom: 1px solid var(--primary);
	padding-bottom: 15px;
	margin-bottom: 15px;
	text-transform: uppercase;
}

.footer p {
	margin-bottom: 0;
	color: var(--white);
	font-weight: bold;
	font-size: 16px;
}
@media screen and (max-width:767px) {
	.footer p {
		margin-top: 15px;
	}
}

.footer .address {text-align: right;}

@media screen and (max-width: 767px) {
  .footer .address {text-align: left;}
}

.footer p.tel {
	color: var(--white);
	font-size: 60px;
	line-height: 50px;
	margin-bottom: 10px;
}

.footer p.email {
	margin-bottom: 0;
}

.footer p.email a {
	font-weight: 300;
	font-size: 20px;
	line-height: 20px;
	color: var(--primary);
	-webkit-transition: all 0.2s ease;
	-moz-transition: all 0.2s ease;
	transition: all 0.2s ease;
}

.footer p.email a:hover {
	color: var(--white);
	text-decoration: none;
}

.footer img {
	margin-top: 20px;
}

.footer .social-icons {
	text-align: right;
	margin-top: 15px;
}
@media screen and (max-width:767px) {
	.footer .social-icons {
		text-align: left;
	}
}
.footer .social-icons .fa {
	display: inline-block;
	color: var(--white);
	background-color: #8B8369;
	font-size: 30px;
	border-radius: 25px;
	padding: 10px;
	transition: 0.3s all;
}
.footer .social-icons .fa:hover {
	color: #8B8369;
	background-color: var(--white);
}

div.copyright {
	background-color: var(--primary);
	padding: 13px 0;
    text-align: center;
}

div.copyright p {
	color: var(--white);
	margin: 0;
}

div.copyright p a {
	color: var(--white);
	-webkit-transition: all 0.2s ease;
	-moz-transition: all 0.2s ease;
	transition: all 0.2s ease;
}

div.copyright p a:hover {
	color: #1e242b;
	text-decoration: none;
}

@media screen and (max-width: 991px) {
	.footer p.tel {
		font-size: 45px;
		line-height: 45px;
	}
	.footer img {
		width: 200px;
		height: auto;
	}
}

/* --- 404 --- */

section.error404 {
  /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#c5c5c5+0,ffffff+50,c5c5c5+100 */
  background: rgb(197,197,197); /* Old browsers */
  background: -moz-linear-gradient(left,  rgba(197,197,197,1) 0%, rgba(255,255,255,1) 50%, rgba(197,197,197,1) 100%); /* FF3.6-15 */
  background: -webkit-linear-gradient(left,  rgba(197,197,197,1) 0%,rgba(255,255,255,1) 50%,rgba(197,197,197,1) 100%); /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to right,  rgba(197,197,197,1) 0%,rgba(255,255,255,1) 50%,rgba(197,197,197,1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#c5c5c5', endColorstr='#c5c5c5',GradientType=1 ); /* IE6-9 */
	width: 100%;
	height: 100%;
	text-align: center;
}

section.error404 > div.container {
	display: table;
	height: 100%;
}

section.error404 > div.container > div {
	display: table-cell;
	vertical-align: middle;
}

section.error404 h2 {
	font-size: 40px;
	line-height: 40px;
	color: #1e242b;
	text-transform: uppercase;
	margin-bottom: 30px;
}

section.error404 img {
	margin: 0 auto 30px auto;
}

/* SQUARE TO ROUND */
.square-to-round {
  margin: 60px 0 100px 0;
}
.square-to-round h3 {
  color: var(--primary);
  font-size: 24px;
  line-height: 24px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.square-to-round p {color: #1e242b;}

@media screen and (max-width: 991px) {
  .square-to-round img {margin-bottom: 30px;}
}

/* MAP */
section.map {
  border-bottom: 1px solid var(--primary);
  border-top: 1px solid var(--primary);
}
