/* @override
	https://couchpota.to/media/style/style.css */

* {
	padding: 0;
	margin: 0;
	-webkit-box-sizing: border-box;
	   -moz-box-sizing: border-box;
	    -ms-box-sizing: border-box;
	        box-sizing: border-box;
}

body {
	font: 16px/24px Montserrat;
	-webkit-font-smoothing: antialiased;
	color: #313131;
	overflow-y: scroll;
	overflow-x: hidden;
	background: #FFF;
}

h1, h2, h3, h4 {
	font-weight: normal;
	letter-spacing: -2px;
	padding-bottom: 30px;
}
	h2 {
		font-size: 32px;
	}

	h3, h4 {
		font-size: 24px;
		letter-spacing: -1px;
		padding-bottom: 25px;
	}

p {
	font-family: 'Open Sans';
}
	a {
		color:  #5B9BD1;
		text-decoration: underline;
		-webkit-transition: color .15s ease-in-out;
		   -moz-transition: color .15s ease-in-out;
		    -ms-transition: color .15s ease-in-out;
		        transition: color .15s ease-in-out;
	}

		a:hover {
			color: #285c87;
		}

.button {
	background: #5B9BD1;
	color: #FFF;
	padding: 15px 30px;
	vertical-align: middle;
	font-weight: bold;
	text-transform: uppercase;
	display: inline-block;
	font-size: 16px;
	text-decoration: none;
	-webkit-transition: background .15s ease-in-out;
	   -moz-transition: background .15s ease-in-out;
	    -ms-transition: background .15s ease-in-out;
	        transition: background .15s ease-in-out;
}

	.button:hover {
		color: #FFF;
		background: #285c87;
	}

header {
	position: fixed;
	width: 100%;
	height: 130px;
	color: #FFF;
	z-index: 100;
	background: #4E5969;
	overflow: hidden;
	-webkit-transition: height .4s cubic-bezier(0.9,0,0.1,1), background .6s linear;
	-moz-transition: height .4s cubic-bezier(0.9,0,0.1,1), background .6s linear;
	-ms-transition: height .4s cubic-bezier(0.9,0,0.1,1), background .6s linear;
	transition: height .4s cubic-bezier(0.9,0,0.1,1), background .6s linear;
}

	header.small {
		height: 65px;
		background: #232323;
	}

	header .logo {
		font-family: Lobster;
		float: left;
		font-size: 44px;
		line-height: 130px;
		letter-spacing: 0;
		padding: 0;
		text-shadow: 1px 1px rgba(0,0,0,.3);
		-webkit-transition: line-height .4s cubic-bezier(0.9,0,0.1,1);
		-moz-transition: line-height .4s cubic-bezier(0.9,0,0.1,1);
		-ms-transition: line-height .4s cubic-bezier(0.9,0,0.1,1);
		transition: line-height .4s cubic-bezier(0.9,0,0.1,1);
	}

		header.small .logo {
			line-height: 65px;
		}

		header .logo span {
			content: "";
			display: block;
			height: 200px;
			position: absolute;
			background: url('./couch.png') no-repeat;
			width: 300px;
			top: 0;
			z-index: -1;
			margin: 0 0 0 -50px;
			-webkit-transition: margin .4s cubic-bezier(0.9,0,0.1,1) .1s;
			-moz-transition: margin .4s cubic-bezier(0.9,0,0.1,1);
			-ms-transition: margin .4s cubic-bezier(0.9,0,0.1,1);
			transition: margin .4s cubic-bezier(0.9,0,0.1,1);
		}

			header.small .logo span {
				margin-top: 65px;
			}

	header ul {
		float: right;
	}

		header ul li {
			display: inline-block;
		}

			header li a {
				color: #FFF;
				padding: 0 20px;
				font-size: 22px;
				font-weight: 400;
				display: block;
				line-height: 130px;
				text-decoration: none;
				-webkit-transition: all .4s cubic-bezier(0.9,0,0.1,1);
				   -moz-transition: all .4s cubic-bezier(0.9,0,0.1,1);
				    -ms-transition: all .4s cubic-bezier(0.9,0,0.1,1);
				        transition: all .4s cubic-bezier(0.9,0,0.1,1);
			}
				header li a:hover {
					color: #FFF;
					-webkit-transition: none;
					   -moz-transition: none;
					    -ms-transition: none;
					        transition: none;
					text-shadow: 1px 1px rgba(0,0,0,.6);
				}

				header.small li a {
					line-height: 65px;
				}


	@media all and (max-width: 840px) {
		header li a {
			font-size: 18px;
			padding: 0 15px;
		}
	}

	@media all and (max-width: 720px) {
		header li a {
			font-size: 16px;
			padding: 0 5px;
		}
	}

	@media all and (max-width: 620px) {
		header li a {
			font-size: 12px;
		}
	}

	@media all and (max-width: 550px) {
		header .logo {
			font-size: 20px;
		}

		header li:nth-child(3) {
			display: none;
		}

		header {
			height: 65px;
		}

			header .logo {
				line-height: 65px;
			}

				header .logo span {
					margin-top: 65px;
				}

					header li a {
						line-height: 65px;
					}
	}

body > section {
	padding: 60px 0;
	clear: both;
	overflow: hidden;
}

	section .inner,
	header .inner {
		margin: 0 auto;
		padding: 0 40px;
		max-width: 1024px;
	}

	section .introduction {
		font-size: 17px;
		line-height: 180%;
		margin-bottom: 50px;
	}

	@media all and (max-width: 800px) {

		section .introduction {
			width: 100%;
		}
	}

	@media all and (max-width: 480px) {

		section .inner,
		header .inner {
			padding: 0 10px;
		}

	}

	.off {
		background: #ece9e2;
	}

ul {
	display: inline-block;
	list-style: none;
}

	li {
		display: inline-block;
		margin: 0 0 4px 0;
	}

.intro {
	padding-top: 160px;
	padding-bottom: 30px;
}

	.intro h2 {
		font-weight: bold;
		text-align: center;
		font-size: 40px;
		line-height: 40px;
		padding: 20px 0;
	}

	.intro p {
		font-style: italic;
		text-align: center;
		opacity: 0.8;
		line-height: 32px;
		padding: 0 40px 0;
	}

	.intro img {
		position: absolute;
		top: 20px;
		right: -512px;
		width: 1024px;
		height: 663px;
		z-index: -1;
	}
