html {
    overflow-x: hidden;
}

body {
	font-family: 'Avenir', sans-serif;                                                
	font-style: normal;
    font-weight: 400;
    
    background-color: #9d1416;
    
    /*overflow-x: hidden;*/
}

main {
	position: relative;
	background-color: #fff;
	overflow-x: hidden;
}

main.home-hero-margin {
	margin-top: calc(100vh - 131px);
}

@media (max-width: 767px) {
	
	main.home-hero-margin {
		margin-top: calc(100vh - 99px);
	}

}

a, a:hover {
	color: #000;
	text-decoration: none;
}

.bg-white {
	background-color: #ffffff;
}

.bg-red {
	background-color: #9d1416;
}

.bg-light-grey {
	background-color: #e5e5e5 !important;
}

.bg-grey {
	background-color: #bfbfbf;
}

.bg-dark-grey {
	background-color: #1e1e1e;
}

.text-red {
	color: #9d1416;
}

.text-light-grey {
	color: #e5e5e5;
}

.text-grey {
	color: #bfbfbf;
}

h1.big-style {
	font-size: 5rem;
	line-height: 4rem;
}

@media (max-width: 991px) {
	h1.big-style {
		font-size: 4rem;
		line-height: 3rem;
	}
}

@media (max-width: 767px) {
	h1.big-style {
		font-size: 3rem;
		line-height: 2.4rem;
	}
}

.plus-style {
	position: absolute;
	top: -40px;
	left: -26px;
	left: -40px;
	font-size: 4rem;
	font-weight: 100;
}

.spin {
	animation-name: spin;
	animation-duration: 5000ms;
	animation-iteration-count: infinite;
	animation-timing-function: linear; 
}

@keyframes spin {
    from {
        transform:rotate(0deg);
    }
    to {
        transform:rotate(360deg);
    }
}

.button-cta {
	padding: 10px 30px;
	border: none;
}

.corners {
	padding: 40px;	
}

@media (max-width: 991px) {
	.corners {
		padding: 0;
	}
}

.corner {
	position: absolute;
	width: 80px;
	height: 80px;
}

@media (max-width: 991px) {
	.corner {
		display: none;
	}
}

.corner.top {
	top: 0;
	border-top: 2px solid #9d1416;
}

.corner.bottom {
	bottom: 0;
	border-bottom: 2px solid #9d1416;
}

.corner.left {
	left: 0;
	border-left: 2px solid #9d1416;
}

.corner.right {
	right: 0;
	border-right: 2px solid #9d1416;
}

.parallaxxxxjs {
    height: 100%;

    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.parallax {
  height: 100%;
  min-height: 400px;
  
  background-attachment: fixed;
  background-attachment: scroll;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}


@media (hover: none) {
	.parallax {
		background-attachment: initial;
	}
}

/* iPhone compatible parallax */
.e-with-fixed-bg {
	width: 100%;
	height: 100%;

	min-height: 400px;

	/* Important */
	position: relative;
}

.bg-wrap {
	clip: rect(0, auto, auto, 0);
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.bg {
	position: fixed;
	display: block;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-size: cover;
	background-position: center center;
	transform: translateZ(0);
	will-change: transform;
}
/* Don't think this bit needed
.e-container {
	z-index: 1;
	color: white;
	background: transparent;
}
*/
/* iPhone compatible parallax END */


@media (max-width: 1399px) {
	.container.full-width-early {
		max-width: 100%;
		margin-left: 0;
		margin-right: 0;
	}
}

.image-link-zoom-container {
    position: relative;
    overflow: hidden;
}

/*
.image-link-zoom {
    text-decoration: none;
}

.image-link-zoom:hover {
    text-decoration: none;
}
*/

.image-link-zoom {
    display: block;
    overflow: hidden;
    max-height: 100%;
}

.image-link-zoom img {
    display: block;
    -webkit-transition: .5s ease;
    transition: .5s ease;
    height: auto;max-height: 100%;
}

.image-link-zoom:hover img {
    -webkit-transform: scale(1.05);
    transform: scale(1.05)
}

.image-link-zoom-caption {
    position: absolute;
    bottom: 0;
    right: 0;
    
    min-width: 200px;
}

.scroll-left-right {
    position: relative;
    overflow: hidden;
    height: auto;
}

.scroll-left-right img {
    position: relative;
    width: 100%;
}

@media (max-width: 991px) {

	.scroll-left-right {
		height: 374px;
	}
	
	.scroll-left-right img {
		position: absolute;
		top: 0;
		left: 0;
		width: auto;
		height: 374px;
	}
	
	.scroll-left-right img {
		animation: linear infinite;
		animation-name: scrollLeftRight;
		animation-duration: 10s;
	}
	
	@keyframes scrollLeftRight {
		0% {
			left: calc(1200px -50%);
		}
		50% { 
			left: calc(-1200px + 100%);
		}
		100% {
			left: calc(1200px -50%);
		}
	}

}

.slider-tile {
	background-color: #fff;
	border-radius: 10px;
	overflow: hidden;
}

.slider-tile-bottom {
	height: 30px;
}

.slider-tile-bottom a {
	display: block;
	line-height: 30px;
	color: #fff;
}

.slider-tile i,
.header-stats i {
	vertical-align: middle;
	font-size: 24px;
	margin-right: 6px;
	padding-bottom: 5px;
}

.slider-tile i.fa-arrows-up-down-left-right,
.header-stats i.fa-arrows-up-down-left-right {
	transform: rotate(45deg);
}

.slider-tile-link:hover .slider-tile {
	background-color: #e5e5e5;
}

.slider-tile-link:hover .slider-tile-bottom {
	background-color: #9d1416;
}

.slider-tile-link:hover .slider-tile i {
	color: #9d1416;
}

.header-stats .col-12 {
	border-right: 2px solid #9d1416;
}

.header-stats .col-12:last-child {
	border-right: none;
}

@media (max-width: 991px) {
	.header-stats .col-12:nth-child(even) {
		border-right: none;
	}
}

@media (max-width: 767px) {
	.header-stats .col-12 {
		border-right: none;
	}
}


.filmed-at-wlfs-slider img {
	min-height: 400px;
	object-fit: cover;
}

@media (max-width: 575px) {
	.filmed-at-wlfs-slider img {
		min-height: 300px;
	}
}


.gallery-image {
	object-fit: cover;
	width: 100%;
	visibility: hidden;
	border-radius: 10px;
}	

.testimonials-slider .owl-item.active  {
	
}

.testimonials-slider .owl-item.active .testimonial-slide {
	
}

.testimonial-slide {
	height: 100%;
	background-color: #dadada;
	border-radius: 5px;
	border: #fff solid 3px;
	
	margin: 100px 0 20px 0;
}

.testimonial-image {
	object-fit: cover;
	width: 200px !important;
	height: 200px;
	border-radius: 50%;
	border: #9d1416 solid 5px;
	margin: -100px auto 20px auto;
}

.testimonial-text {
	position: relative;
	padding: 80px 40px 20px 80px;
	width: 100%;
	max-width: 500px;
	margin: 0 auto;
	font-size: 16px;
}

@media (max-width: 991px) {
	.testimonial-text {
		padding: 60px 20px 40px 20px;
	}
}

@media (max-width: 500px) {
	.testimonial-text {
		font-size: 14px;
	}
}

.large-quote-icon {
	font-size: 3rem !important;
}

.large-quote-icon.fa-quote-left {
	position: absolute;
	top: 0;
	left: 20px;
}

.large-quote-icon.fa-quote-right {
	position: absolute;
	bottom: 0;
	right: 20px;
}


/* Navigation Customisations */

.navbar {
	margin-top: 30px;
	padding: 0.5rem 5rem;
}

@media (max-width: 991px) {
	
	.navbar {
		padding: 0.5rem 1rem;
	}

}

.navbar-brand img {
	width: 140px;
}

@media (max-width: 767px) {
	.navbar-brand img {
		width: 80px;
	}
}

.navbar-dark .navbar-nav .nav-link {
    color: rgba(255,255,255);
    margin-left: 35px;
    font-size: 1.1rem;
}

@media (max-width: 991px) {
	
	.navbar-dark .navbar-nav .nav-link {
		margin-left: 0.5rem;
	}

}

.navbar-dark .navbar-nav .nav-link:hover {
    color: rgba(255,255,255);
}
.navbar-dark .navbar-nav .nav-link span {
  display: inline-block;
}
.navbar-dark .navbar-nav .nav-link span:after {
  content: '';
  width: 0px;
  height: 2px;
  display: block;
  background: #ffffff;
  transition: 300ms;
}
.navbar-dark .navbar-nav .nav-link span:hover:after {
	width: 100%;
}

.navbar-dark .navbar-toggler {
    color: rgba(255,255,255);
    border-color: transparent;
}

.navbar-dark .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255, 255, 255, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.navbar-dark button:focus{
	outline: none;
}
/* Navigation Customisations END */








/* Header */

header#hero.page {
	
	min-height: 500px;
	
}

header#hero .hero-image {
	position: fixed;
	left: 0;
	top: 0;
	min-width: 100%; 
	min-height: 100%;
	min-height: 631px;
	min-height: 856px;
	//min-height: 1056px;
	width:auto;
	height:auto;
	
	z-index:-1;
	
	background-attachment: fixed;
	background-attachment: scroll;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}

header#hero video {
	position: fixed;
	right: 0;
	bottom: 0;
	min-width: 100%; 
	min-height: 100%;
	width:auto;
	height:auto;
	
	z-index:-1;
	
	background-image: url('../images/video-placeholder.jpg');
	background-repeat: no-repeat;
	background-size: cover;
	
	background-position: bottom;
}

@media (max-width: 991px) {
	header#hero video {
		//display: none;
	}
}

header#hero .hero-overlay {
	position: absolute;
	top: 0;
	height: 120%;
	width: 100%;
	background-color: rgba(0, 0, 0, 0.3);
	
	display: flex;
	justify-content: center;
	align-items: center;
}

header#hero.page .hero-overlay{
	
	max-height: 631px;
	max-height: 856px;
	//max-height: 1056px;
	
}

header#hero .hero-text {
	text-align: center;
	padding: 30px;
}

header#hero.page .hero-text{
	
	text-align: left;
	padding: 30px;
	width: 100%;
	margin-top: -101px;
	//margin-top: -301px;
	
}

header#hero .hero-text h2 {
	color: #fff;
	font-size: 3rem;
}

header#hero .hero-text h3 {
	color: #9d1416;
	font-size: 2rem;
}

header#hero .hero-text p {
	color: #fff;
}

@media (max-width: 767px) {
	header#hero .hero-text h2 {
		color: #fff;
		font-size: 2.2rem;
	}

	header#hero .hero-text h3 {
		color: #9d1416;
		font-size: 1.8rem;
	}
}
/* Header END */

/* Section */
section {
	
}
/* Section END */

/* Footer */
footer {
	color: #fff;
}

footer a i {
	font-size: 2rem;
	color: #fff;
	margin: 0 5px;
}

footer input {
	height: 40px;
	padding-left: 15px;
	padding-right: 15px;
	border: none;
	border-radius: 0;
	
}

footer input:focus, footer button:focus{
	outline: none;
}
/* Footer END */






