/*
 Theme Name:   X Child Theme
 Description:  A child theme of the X WordPress theme
 Author:       Carl Widdowson
 Template:     x
 Version:      1.0.0
*/

@import "css/styles.css";
/* pulls in all of the SCSS files */
.home-hero .slick-arrow {
	display: none !important;
}
header.masthead {
	-webkit-transition: all 0.5s ease;
	-moz-transition: position 10s;
	-ms-transition: position 10s;
	-o-transition: position 10s;
	transition: all 0.5s ease;
	width: 100% !important;
}
header.sticky {
    background: #ffffff;
	transition: background-color 300ms ease-in-out;
    position: fixed;
    top:0;
    left:0;
    animation: smoothScroll 1s forwards;
	z-index:999999
}


@keyframes smoothScroll {
	0% {
		transform: translateY(-40px);
	}
	100% {
		transform: translateY(0px);
	}
}