html,body {
	height:100%;
}


body {
	font-family: 'FuturaBT-Light', sans-serif;
	font-weight: normal;
	font-style: normal;
	margin-top: 71px;
}

body.home {
	margin-top: 0;
}

p, ul {
	font-size: 1.1rem;
	line-height: 1.6rem;
}

a {
	color: #000;
	text-decoration: underline;
}

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

h1 {
	margin-bottom: 15px;
	font-size: 36px;
}

h2 {
	font-size: 36px;
}

h3 {
	font-size: 20px;
}

h4 {
	font-size: 18px;
}

h5 {
	font-size: 13px;
	text-transform: uppercase;
}


/* @group Misc */

.success {
	
}


/* @end */




/* @group Home */

.welcome {
	min-height: 95vh !important;
	display: flex;
	background: url(../images/home-welly-01.jpg) #FFF;
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
}

.tag {
	padding-top: 160px;
	padding-bottom: 160px;
}

.booking-enquiry-alert {
	display: none;
}

/* @end */





/* @group Footer */

a.puggy {
	width: 100px;
	height: 55px;
	margin-top: 60px;
	margin-bottom: 60px;
	display: block;
	background: url(../images/rm-puggy.svg);
	background-repeat: no-repeat;
	background-position: top;
	background-size: 70px;
	
	transition: all 0.3s;
	font-size: 10px;
	text-align: center;
	color: white;
	text-transform: uppercase;
	font-weight: bold;
	padding-top: 37px;
	text-decoration: none;
}

a.puggy:hover {
	transition: all 0.3s;
	color: black;
}

/* @end */







/* @group Navigation */

.rm-header {
	padding: 26px 20px 20px;
	background-color: #FFF;
}

.menu .rm-header {
	background-color: transparent
}

a.logo {
	width: 180px;
	height: 21px;
	background: url(../images/rm-logo-b.svg);
	background-repeat: no-repeat;
	background-position: center;
	display: block;
}

a.pug {
	background: url(../images/rm-puggy.svg);
	background-repeat: no-repeat;
	background-position: center;
	width: 44px;
	height: 21px;
}


a.hamburger {
	width: 24px;
	height: 18px;
	background: url(../images/hamburger-icon.svg);
	background-repeat: no-repeat;
	background-position: top;
	display: block;
	margin-right: 20px;
}

a.close {
	width: 30px;
	height: 22px;
	background: url(../images/close-icon.svg);
	background-repeat: no-repeat;
	background-position: top;
	display: block;
	opacity: 1;
}

a.hamburger:hover, a.pug:hover, a.logo:hover, a.close:hover {
	opacity: 0.5;
	transition: all 0.3s;
}
  

.arrow-down {
	width: 2rem;
	margin-bottom: 2rem;
}




.menu {
	background-color: rgba(246,246,246,1);
	position: fixed;
	top: 0;
	right: 0;
	height: 100%;
	width: 100%;
	transform: translateX(-100%);
	transition: transform 0.7s ease-in-out;
	text-align: center;
	z-index: 200;
}

.open {
	transform: translateX(0);
}

nav {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	transition: 0.5s ease;
	padding-top: 30px;
	width: 100%;
}

nav a {
	font-size: 38px;
	font-family: 'FuturaBT-Bold', sans-serif;
	display: block;
	margin-bottom: 10px;
	text-decoration: none;
	color: #000;
	text-transform: uppercase;
	transition: 0.3s ease;
	letter-spacing: 1px;
}

nav a:hover {
	color: silver;
	text-decoration: none;
}



/* @end */









/* @group Works */

.works {
	padding-bottom: 75%;
	float: left;
	overflow: hidden;
	position: relative;
	text-align: center;
	cursor: default;
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
}

.works .overlay {
	width: 100%;
	height: 100%;
	position: absolute;
	overflow: hidden;
	top: 0;
	left: 0;
	opacity: 0;
	background-color: rgba(0,0,0,0.5);
	transition: all .6s ease-in-out;
	align-items: center;
	color: #FFF;
	padding: 30px;
	z-index: 50000;
}

.works:hover .overlay {
	opacity: 1;
	filter: alpha(opacity=100);
}

.works p {
	font-size: 16px;
}

.carousel-inner .carousel-item {
	transition: all 1.2s ease;
	position: absolute;
	height: 100%;
	width: 100%;
}

.carousel-inner.logos {
	background: url(../work/images/logos/rain-bg.jpg);
	background-position: center;
	background-size: cover;
}

.logo-overlay {
	width: 100%;
	height: 100%;
	position: absolute;
	overflow: hidden;
	top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
	transition: all .3s ease-in-out;
}

.w-35 {
	width: 35%;
}

.w-60 {
	width: 60%;
}

/* @end */





/* @group Instagram */

.insta {
	margin-bottom: 20px;
}

.insta .over {
	width: 100%;
	height: 100%;
	position: absolute;
	overflow: hidden;
	top: 0;
	left: 0;
	opacity: 0;
	transition: all .4s ease-in-out;
}

.insta .over:hover {
	opacity: 1;
}



/* @end */







/* @group About */

.banner {
	position: relative;
}

.sliding-background h2 {
    position: absolute;
    top: 15%;
    left: 0;
    width: 100%;
	z-index: 20;
	margin: 0;
}


.sliding-background {
	background: url(../images/about-xs.jpg) repeat-x 0 0;
	background-size: cover;
	width: 100%;
	height: 500px;
	box-sizing: border-box;
	-webkit-animation: slide 28s linear infinite;
}

@-webkit-keyframes slide {
    from { background-position: 0 0; }
    to { background-position: -1343px 0; }
}


.divider {
	border-bottom: 1px solid silver;
	width: 100px;
	margin: 40px auto;
}



/* @end */







/* @group Headroom – Hide/Show */

.headroom {
	-webkit-transition: all 0.3s;
	-moz-transition: all 0.3s;
	-ms-transition: all 0.3s;
	-o-transition: all 0.3s;
	transition: all 0.6s;
	z-index: 100;
}

.headroom--pinned {
	opacity: 1;
	
}

.headroom--unpinned {
	opacity: 0;
	top: -150px;
	position: absolute;
}

.headroom--not-top {
	box-shadow: 0px -5px 10px #CCC;
}

.headroom--not-top.rm-header {
	padding: 20px;
}

.headroom--top {
	transition: all 0.2s;
	background: none;
}






/* Home – Logo White - comment out for black logo  */
.home .headroom--top a.logo {
	background: url(../images/rm-logo-w.svg);
	background-repeat: no-repeat;
}

.home .headroom--top a.pug {
	background: url(../images/rm-puggy-w.svg);
	background-repeat: no-repeat;
	background-position: center;
}

.home .headroom--top a.hamburger {
	background: url(../images/hamburger-icon-w.svg);
	background-repeat: no-repeat;
}

/* End Home – Logo White  */


/* @end */












/* Extra small devices (portrait phones, less than 576px)*/
@media (max-width: 575px) {
	
h1 {
	font-size: 24px;
}

h4 {
	font-size: 24px;
	line-height: 30px;
}

.works {
	height: 60vh;
}



}



/* Small devices (landscape phones, 576px and up)*/
@media (min-width: 576px) {
	
.rm-header {
	padding: 20px;
}

.col-sm-6.works {
	padding-bottom: 50%;
}

}



/* Medium devices (tablets, 768px and up)*/
@media (min-width: 768px) { 

body {
	margin-top: 145px;
}

.rm-header {
	padding: 50px;
}

a.logo {
	width: 330px;
	height: 40px;
}

a.hamburger {
	width: 32px;
	height: 22px;
	margin-right: 28px;
}

a.close {
	width: 32px;
	height: 26px;
	margin-top: 3px;
}

a.pug {
	width: 55px;
	height: 25px;
}

.arrow-down {
	margin-bottom: 5rem;
	width: 3rem;
}



.works {
	padding-bottom: 63%;
}

.works .overlay {
	padding: 15%;
}



.headroom--not-top.rm-header {
	padding: 20px 35px;
}

.headroom--not-top a.logo {
	width: 240px;
	height: 28px;
}

.headroom--not-top a.hamburger {
	width: 29px;
	height: 19px;
}

.headroom--not-top a.pug {
	width: 48px;
	height: 22px;
}


nav a {
	font-size: 60px;
	margin-bottom: 50px;
}

.tag {
	padding-top: 200px;
	padding-bottom: 200px;
}


.tag h4 {
	font-size: 28px;
}







}

/* Large devices (desktops, 992px and up)*/
@media (min-width: 992px) {


body {
	margin-top: 165px;
}

.welcome {
	min-height: 100vh !important;
}

.rm-header {
	padding: 60px 70px;
}





}




















