⁄™html,
body,
.container,
.content-wrap {
	overflow: hidden;
	width: 100%;
	height: 100%;
	font-family: "Museo Sans", Sans-Serif;
	font-weight: 100;
	background: #fff;
}

*, *:after, *:before { -webkit-box-sizing: border-box; box-sizing: border-box; }
.clearfix:before, .clearfix:after { content: ''; display: table; }
.clearfix:after { clear: both;
}

h1, h2, h3, h4, h5, h6 {
	color: #ff5c59;
	font-weight: 100;
	text-align: center;
	margin: 0;
	font-size: 1.5em;
}

a {
	color: #4e4a46;
	text-decoration: none;
	outline: none;
}

a:hover, a:focus {
	color: #c94e50;
	outline: none;
}

img{
	max-width: 100%;
}

button:focus {
	outline: none;
}

.button{
	border: none;
	background-color: #ff5c59;
	border-radius: 10px;
	padding: 12px 24px;
	color: #fff;
}

.small{
	font-size: 0.8em;
	opacity: 0.8;
}
.container {
	background: #373a47;
	position: absolute;
}

.menu-container{
	background: #343434;
}

.menu-wrap a {
	color: rgb(132, 132, 132);
}

.menu-wrap a:hover,
.menu-wrap a:focus{
	color: lightgray;
}

.menu-wrap a.active {
	color: white;
	border-left: 4px solid #ff5c59;
	padding-left: 0.4em;
}

.content-wrap {
	overflow-y: scroll;
	-webkit-overflow-scrolling: touch;
	padding-left: 0px;
}

.header--content {
	position: relative;
	color: #fff;
	text-align: center;
	width: 90%;
	margin: auto;
        padding-top: 20vh;
        padding-bottom: 10vh;
        min-height: 95vh;
}

.header--content h1{
	margin-bottom: 0;
}
.subheader{
	font-family: "Museo Sans", Sans-Serif;
	font-weight: 100;
	font-size: 1.5em;
	margin-top: 11px;
}

.pw-good-header .header--content {
    padding-bottom: 0;
    padding-top: 100px;
    height: 100px;
}

.content::before {
	position: absolute;
	top: 0;
	left: 0;
	z-index: 10;
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,0.3);
	content: '';
	opacity: 0;
	-webkit-transform: translate3d(100%,0,0);
	transform: translate3d(100%,0,0);
	-webkit-transition: opacity 0.4s, -webkit-transform 0s 0.4s;
	transition: opacity 0.4s, transform 0s 0.4s;
	-webkit-transition-timing-function: cubic-bezier(0.7,0,0.3,1);
	transition-timing-function: cubic-bezier(0.7,0,0.3,1);
}



footer {
	box-sizing: border-box;
	background-color: #2d2d37;
	overflow: hidden;
	width: 100%;
	min-height: 500px;
	padding: 6%;
	color: #f2f2f2;
}
footer a{
	color: #fff;
}
footer li{
	list-style: none;
}

footer .links-title{
	border-bottom: 2px solid #ff5c59;
	padding-bottom: 12px;
}

/* Menu Button */
.menu-button {
	position: fixed;
	z-index: 1000;
	padding: 10px;
	width: 100%;
	height: 80px;
	border: none;
	text-indent: 2.5em;
	font-size: 3.5em;
	color: transparent;
	background: rgba(45, 45, 55, 0.9);
}

.menu-button::before {
	position: absolute;
	top: 35px;
	right: 0.5em;
	bottom: 0.5em;
	left: 0.5em;
	height: 20px;
	width: 20px;
	background: url(../img/menu.svg) 0 0 no-repeat;
	content: '';
	-webkit-transition: all .9s ease-out;
	-moz-transition: all .9s ease-out;
	-ms-transition: all .9s ease-out;
	-o-transition: all .9s ease-out;
	transition: all .9s ease-out;
}

.menu-button:hover {

}

/* Close Button */
.close-button {
	width: 1em;
	height: 1em;
	position: absolute;
	right: 1em;
	top: 31px;
	overflow: hidden;
	text-indent: 1em;
	font-size: 1.2em;
	border: none;
	background: transparent;
	color: transparent;
}

.close-button::before,
.close-button::after {
	content: '';
	position: absolute;
	width: 2px;
	height: 100%;
	top: 0;
	left: 50%;
	background: #fff;
}

.close-button::before {
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}

.close-button::after {
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
}

/* Menu */
.menu-wrap {
	position: absolute;
	z-index: 1002;
	width: 100%;
	height: 100%;
	background: #2D2D37;
	padding: 3.5em 1.5em 0;
	font-size: 1.15em;
	-webkit-transform: translate3d(-100%,0,0);
	transform: translate3d(-100%,0,0);
	-webkit-transition: -webkit-transform 0.4s;
	transition: transform 0.4s;
	-webkit-transition-timing-function: cubic-bezier(0.7,0,0.3,1);
	transition-timing-function: cubic-bezier(0.7,0,0.3,1);
}

.menu,
.menu-wrap .menu ul {
	height: 100%;
	padding-left: 0;
}

.menu-wrap .menu ul {
	-webkit-transform: translate3d(0,100%,0);
	transform: translate3d(0,100%,0);
}

.menu-wrap .menu ul li{
	list-style: none;
}

.menu-wrap .menu ul li {
	display: block;
	padding: 0.7em 0.3em;
	-webkit-transform: translate3d(0,500px,0);
	transform: translate3d(0,500px,0);
}

.menu-wrap .menu ul,
.menu-wrap .menu ul li {
	-webkit-transition: -webkit-transform 0s 0.4s;
	transition: transform 0s 0.4s;
	-webkit-transition-timing-function: cubic-bezier(0.7,0,0.3,1);
	transition-timing-function: cubic-bezier(0.7,0,0.3,1);
}

.menu-wrap .menu ul li:nth-child(2) {
	-webkit-transform: translate3d(0,1000px,0);
	transform: translate3d(0,1000px,0);
}

.menu-wrap .menu ul li:nth-child(3) {
	-webkit-transform: translate3d(0,1500px,0);
	transform: translate3d(0,1500px,0);
}

.menu-wrap .menu ul li:nth-child(4) {
	-webkit-transform: translate3d(0,2000px,0);
	transform: translate3d(0,2000px,0);
}

.menu-wrap .menu ul li:nth-child(5) {
	-webkit-transform: translate3d(0,2500px,0);
	transform: translate3d(0,2500px,0);
}

.menu-wrap .menu ul li:nth-child(6) {
	-webkit-transform: translate3d(0,3000px,0);
	transform: translate3d(0,3000px,0);
}

.menu-wrap .menu ul li span {

}

/* Shown menu */
.show-menu .menu-wrap {
	z-index: 3000;
	-webkit-transform: translate3d(0,0,0);
	transform: translate3d(0,0,0);
	-webkit-transition: -webkit-transform 0.8s;
	transition: transform 0.8s;
	-webkit-transition-timing-function: cubic-bezier(0.7,0,0.3,1);
	transition-timing-function: cubic-bezier(0.7,0,0.3,1);
}

.show-menu .menu-wrap .menu ul,
.show-menu .menu-wrap .menu ul li {
	-webkit-transform: translate3d(0,0,0);
	transform: translate3d(0,0,0);
	-webkit-transition: -webkit-transform 0.8s;
	transition: transform 0.8s;
	-webkit-transition-timing-function: cubic-bezier(0.7,0,0.3,1);
	transition-timing-function: cubic-bezier(0.7,0,0.3,1);
}

.show-menu .menu-wrap .menu ul li {
	-webkit-transition-duration: 0.9s;
	transition-duration: 0.9s;
}

.show-menu .content::before {
	opacity: 1;
	-webkit-transition: opacity 0.8s;
	transition: opacity 0.8s;
	-webkit-transition-timing-function: cubic-bezier(0.7,0,0.3,1);
	transition-timing-function: cubic-bezier(0.7,0,0.3,1);
	-webkit-transform: translate3d(0,0,0);
	transform: translate3d(0,0,0);
}


.show-menu .menu-button::before {
	opacity: 0;
}
.brand {
	position: fixed;
	width: 99px;
	height: 30px;
	top: 28px;
	left: 50%;
    transform: translate(-50%, 0);
	ms-transform: translate(-50%, 0); /* IE 9 */
    -webkit-transform: translate(-50%, 0); /* Safari */
	z-index: 4000;
	-webkit-transition: all .7s ease-out;
	-moz-transition: all .7s ease-out;
	-ms-transition: all .7s ease-out;
	-o-transition: all .7s ease-out;
	transition: all .7s ease-out;
    fill:white;
}


.show-menu .brand{
	left: 31px;
    fill: white;
	transform: translate(0, 0);
	ms-transform: translate(0, 0); /* IE 9 */
    -webkit-transform: translate(0, 0); /* Safari */
}

svg path{
    -webkit-transition: all .2s ease-out;
    -moz-transition: all .2s ease-out;
    -ms-transition: all .2s ease-out;
    -o-transition: all .2s ease-out;
    transition: all .2s ease-out;
    fill: inherit;
}

.show-menu .brand path {
    fill:white;
}


.CTA {
	position: fixed;
	top: 15px;
	right: 16px;
	z-index: 2000;
}
.CTA a {
	color: #ffffff;
	border-radius: 43px;
	border: 2px solid #fff;
	letter-spacing: 2px;
	text-transform: uppercase;
	display: block;
	background-size: 22px;
	padding: 15px 25px;
	background: #ff5c59 url('');
	text-indent: 0;
	font-size: .9rem;
	font-weight: 500;
}
.CTA .mobbu-number {
        display: none;
}
.CTA .mobbu-cta-short {
        display: none;
}

/* PAGE SPECIFIC */

/* HOME */

.home-passwear{
	background: url(../img/passWear-bkg.jpg)center center no-repeat;
	height: 100vh;
	margin-top: -21px;
	background-size: cover;
}
.home-fieldops{
	background: url(../img/fieldOps-bkg.jpg)center center no-repeat;
	height: 100vh;
	margin-top: -21px;
	background-size: cover;
}

.home-links{
	display: block;
	position: relative;
	top: 50%;
	transform: translateY(-50%);
	text-align: center;
	width: 90%;
	margin: auto;
	color: #fff;
	padding: 32px;
	-webkit-transition: all .4s ease-out;
	-moz-transition: all .4s ease-out;
	-ms-transition: all .4s ease-out;
	-o-transition: all .4s ease-out;
	transition: all .4s ease-out;
	border-radius: 9px;
	background-color: rgba(0,0,0,0.6);
}
.home-fieldops .home-links{
	margin-top: 2px;
}
.home-passwear .home-links p{
	margin-top: 28px;
}
.home-links h1 {
        margin-bottom: 1em;
}
/* fieldops */

.fieldops-header{
	background: url(../img/fieldOps-bkg.jpg)center center no-repeat;
	height: 100vh;
	margin-top: -21px;
	background-size: cover;
}
.fieldops .intro ul{
	margin-top: 5%;
	padding: 5% 10%;
	border-top: 1px solid #ccc;
	text-align: left;
}
.fieldops .intro li {
	list-style: none;
}
.fieldops .intro p{
    margin-top: 7%;
    margin-bottom: 7%;
}

.fieldops .intro a{
	background: #ff5c59;
	color: #fff;
	padding: 24px;
	display: block;
	margin: 0 10%;
}


.fieldops .intro li h3{
	text-align: left;
	color: #343434;
	margin-bottom: 1rem;
}
/* PASSWEAR */

.passwear {
    background: #FE938C;
}

.passwear-header{
	background: url(../img/passWear-bkg.jpg)center center no-repeat;
	height: 100vh;
	margin-top: -21px;
	background-size: cover;
}

.intro {

}

.intro h2{

}

.header-text{
	font-size: 1rem;
	max-width: 600px;
	margin: auto;
}
.latest{
	text-align: center;
	max-width: 800px;
        min-height: 420px;
        max-height: 420px;
	margin:0rem auto 0rem;
	background: #f5f5f5;
	border-radius: 6px;
	padding: 0rem 0.5rem 2rem 0.5rem;
        box-shadow:0 0 2px 1px rgba(0,0,0,.2);
        -webkit-box-shadow:0 0 2px 1px rgba(0,0,0,.2);
}
.latest h1{
  display: inline-block;
  color: #2797fc;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 2rem;
  border-bottom: 1px solid #ccc;
  margin-top: 2rem;
  margin-bottom: 2rem;
}
.latest h2 {
  font-size: 1.2rem;
}
.latest ul{
	padding: 2rem 0.5rem 1rem 0.5rem;
	text-align: left;
	border-bottom: 1px solid #ccc;
	border-top: 1px solid #ccc;
}
.latest li{
	margin:0 0 1rem 1rem;
}
.latest a {
        color: #c94e50;
        text-decoration: underline;
}
.latest .where:before {
        content: "Where: "
}
.latest .when:before {
        content: "When: "
}
.latest .where {
    font-weight: bold;
    padding: 1rem;
    padding-bottom: 0rem;
}
.latest .when {
    font-weight: bold;
    padding: 1rem;
}
.latest .no-mobile {
    display: none;
}
.latest .mobile {
    display: block;
}

.stayInTouch{
	margin-top: 1rem;
}
.stayInTouch a{
	color: #ffffff;
	border-radius: 43px;
	border: 2px solid #fff;
	letter-spacing: 2px;
	text-transform: uppercase;
	display: inline-block;
	background-size: 22px;
	padding: 10px 25px;
	background: #ff5c59;
	background-size: 6rem;
	text-indent: 0;
	font-size: .5rem;
	font-weight: 500;
}
.stayInTouch a:before {
	content: ../img/icons/icon-mail.svg
}
.stayInTouch small{
	display: block;
	margin-top: 1rem;
	padding: 0 4rem;
}
.content{
	width: 95%;
	text-align: center;
	margin: auto;
	padding: 10% 0;
	max-width: 900px;
}
.intro--content p{
	padding: 0 20%;
}

.witf {
    overflow: hidden;
}

.witf h2{
	margin-bottom: 20%;
}
.witf--block{
	float: left;
	width: 100%;
	padding: 6rem 8px 60px;
}

.witf--block h3{
	font-weight: 100;
	padding: 24px 0;
	border-bottom: 1px solid #cccccc;
	margin-bottom: 24px;
}

.witf--block p{
	text-align: left;
}
.witf1{
	background: url(../img/icons/icon-government.png) center 0 no-repeat;
	background-size: 6rem;
}
.witf2{
	background: url(../img/icons/icon-FTSE.png) center 0 no-repeat;
	background-size: 6rem;
}
.witf3{
	background: url(../img/icons/icon-banks.png) center 0 no-repeat;
	background-size: 6rem;
	clear: both;
}
.witf4{
	background: url(../img/icons/icon-oil.png) center 0 no-repeat;
	background-size: 6rem;
}

.pw-details{
	clear: both;
	padding-bottom: 60px;
	overflow: hidden;
}

.pw-details-text {
    padding-bottom: 44px;
}

.pw-details--block {
	width: 100%;
	margin-right: 1px;
}
.pw-details--block img{
	width: 100%;
}
.pw-details--block h3 {
	text-align: left;
	padding: 24px 24px 10px 24px;
        border-bottom: 1px solid #cccccc;
        margin-bottom: 14px;
}
.pw-details--block .subtitle{
	font-size: 1.3em;
	margin-top: 0;
	padding-top: 0;

}

.pw-details--block p {
	text-align: left;
	padding: 0 24px 0 24px!important;
	max-width: 650px;
}

.good{
	clear: both;
	background: #ff5c59;
	text-align: center;
	padding-bottom: 160px;
}
.pw4good-logo{
	margin: -7% 0 20px;
        width: 90%;
        max-width: 700px;
}
.gooLogo{
	margin: 24px 0;
}

.good h2{
	color: #fff;
	margin-bottom: 24px;
}

.good p{
	width: 80%;
	margin: auto auto;
	color: #fff;
	text-align: center;
}

.getStarted{
	background: #fff;
	border-radius: 25px;
	padding: 16px 25px;
	margin-top: 42px;
	display: block;
	text-align: center;
}

.subscribe-to-passwear {
        clear: both;
        width: 80%;
        margin: auto;
        margin-top: 150px;
        margin-bottom: 150px;
}

.subscribe-to-passwear .link {
        border-radius: 25px;
        padding: 16px 25px;
        display: block;
        text-align: center;
        background: #FF5C59;
        color: white;
}

/* CONTACT */

#map-canvas {
	width: 100%;
	height: 50vh;
	border:0px;
}

#map-wrapper {
	position: relative;
}

#over-map {
	font-size: 0.9em;
	overflow: hidden;
	padding: 20px;
}

#map-external-wrapper {
	float:right;
	margin-left: 20px;
	max-width: 6em;
}

#map-external-wrapper img {
	max-width:50px;
}

#map-external-wrapper a {
	float:left;
	font-size: 0.9em;
	color:#3a84df;
}

.contact-header{
	background: url(../img/contact-bkg.jpg)center center no-repeat;
	background-size: cover;
}

.contact-header .section-header {
	font-weight: 400;
	font-size: 3rem;
	color: #fff;
}
.contact-details h3{
	color: #fff;
	font-weight: 400;
	font-size: 1.7rem;
	margin: 12px 0%;
	border-bottom: 1px solid rgba(255,255,255,0.5);
	padding: 12px;
}
.contact-details p {
	margin: 4px 0;
	font-size: 1rem;
}
.contact-details p a{
	color: #fff;
}

.vb-3{
	clear:both;
}
.values h2{
	margin: 0 0 10%;
}
.values--block-container{
	overflow: hidden;
}
.values--block{
	float: left;
	margin: 16px;
}

.values--block h3{
	border-bottom: 1px solid #ccc;
	padding-bottom: 24px;
}



/* PASSWEAR FOR GOOD PAGE */

.steps li a {
        color: #ff5c59;
}


#my-slider {
    margin: -100px 0px 100px 0px !important;
}

.pw-good-header{
	background-color: #db2327;
	height: 200px;
}

.pw-good-header h1{
	color: #fff;
	font-size: 2.3rem;
}

.pw-good .intro {
        overflow: hidden;
}

.pw-good .intro h2{
	margin-bottom: 2rem;
}
.pw-good-icon{
	padding: 11rem 0 2rem;
	border-bottom: 1px solid #ccc;
}
.icon-iphone{
	background: url(../img/icons/icon-iphone.svg) center 0 no-repeat;
	background-size: 10rem;
}
.icon-pebble{
	background: url(../img/icons/icon-pebble.svg) center 0 no-repeat;
	background-size: 10rem;
}
.icon-good{
	background: url(../img/icons/icon-good.jpg) center 0 no-repeat;
	background-size: 10rem;
}
.steps {
	margin: 5%;
        margin-bottom: 2em;
}

.steps h2{
	text-align: left;
}
.steps h2 span{
	font-weight: 100;
}
.steps ul{
	margin: 0;
	padding: 0;
}
.steps li{
	margin: 20px 6px 20px 32px;
}
.section-title{
	text-align: center!important;
	margin-top: 2rem;
	border-bottom: 1px solid #ccc;
        padding-bottom: 1em;
        margin-left: 0.5em;
        margin-right: 0.5em;
        font-size: 2em;
}
.steps .button{
	margin: 1rem 0 0 2rem;
        white-space: normal;
}

.steps .disabled {
    background-color: #cccccc;
    cursor: default
}

.steps .store-icons {
    margin-top: 20px;
    overflow: hidden;
}

.steps .store-icon-holder {
    width: 40%;
    float: left;
    margin-left: 5%;
}

.steps .store-icon {
        width: 200px;
}

.steps .app-screenshot {
    margin-top: 10%;
    margin-bottom: 10%;
    width: 35%;
}

.steps .app-screenshot-plus {
    width: 15%;
}

.steps h2{
    text-align: left;
    margin-top: 1.5em;
}

.steps input {
    white-space: normal;
}

.steps .button-holder {
    text-align: center;
    max-width: 250px;
    margin: 2em auto;
}

.steps .shop-links-holder {
    width: 100%
    clear: both;
    overflow: hidden;
    margin: 1em;
}

.steps .shop-link {
    float:left;
    width: 40%;
    margin-left: 4%;
    margin-right: 4%;
}

.next {
    clear: both;
    font-size: 1.5em;
    cursor: pointer;
    margin-left: auto;
    margin-right: auto;
    width: 80%;
}

.next .next-text {
    color: #2797fc;
}

.steps .sub-step {
    border-bottom: 1px solid gray;
    margin-bottom: 10%;
    padding-bottom: 5%;
}

.steps .sub-step .title {
    font-weight: bold;
    color: #ff5c59;
}

/* MEDIA QUERIES */

@media only screen and (min-width: 315px) {
	.brand{
		width: 122px;
		top: 24px;
		height: 30px;
	}
}

@media only screen and (min-width: 641px) {

        /* MENU AND WRAPPER */
	.menu-button {
		width: 80px;
		height: 100%;
                background: rgba(45, 45, 55, 1);
	}
	.content-wrap {
		padding-left: 80px;
	}

        /* HOME */
        .CTA .mobbu-number {
                display: block;
        }
        .CTA .mobbu-cta-short {
                display: none;
        }
		width: 100%;
	.home-passwear{
		float: left;
	}
	.home-fieldops{
		width: 50%;
		float: left;
	}
	.container {
		padding-top: 0px;
	}
	.alt path {
    	fill: #FF5C59;
	}
	.menu-wrap {
		width: 300px;
	}
	.brand {
		left: 100px;
    	transform: translate(0, 0);
		ms-transform: translate(0, 0); /* IE 9 */
    	-webkit-transform: translate(0, 0); /* Safari */
	}

	#over-map {
		font-size: 1em;
		left:20px;
		top:20px;
		position: absolute;
		background-color: white;
		padding: 14px;
		box-shadow: 0px 0px 5px #888;
	}
	.pw-details--block {
		float:left;
		width: 49.8%;
	}
	.pw-details--block:nth-child(odd){
		clear:both;
	}
	.values--block{
		float: left;
		width: 45%;
		margin: 16px;
	}
	.steps{
		max-width: 600px;
		margin:3rem auto;
        }
        .home-links{
	    display: block;
            position: relative;
	    top: 50%;
	    transform: translateY(-50%);
	    text-align: center;
	    width: 90%;
	    margin: auto;
	    color: #fff;
	    padding: 32px;
	    -webkit-transition: all .4s ease-out;
	    -moz-transition: all .4s ease-out;
	    -ms-transition: all .4s ease-out;
	    -o-transition: all .4s ease-out;
	    transition: all .4s ease-out;
	    border-radius: 9px;
	    background-color: rgba(0,0,0,0);
        }
        .home-links:hover {
	    background-color: rgba(0,0,0,0.6);
        }

        /* PASSWEAR PAGE */
        .witf--block{
            width: 50%
        }

        .latest {
            min-height: 550px;
            max-height: none;
            overflow: hidden;
            padding-left: 1rem;
            padding-right: 1rem;
        }

        .latest h1 {
            font-size: 3rem;
        }

        .latest h2 {
            font-size: 2rem;
        }

        .latest ul {
	    padding: 2rem 2rem 1rem 2rem;
        }

        .latest .no-mobile {
            display: block;
        }
        .latest .mobile {
            display: none;
        }
        #my-slider {
            margin: -100px 0px 50px 0px !important;
        }
        .passwear-header {
            height: 80vh;
        }
        .header--content {
            padding-top: 13vh;
        }
}
@media only screen and (min-width: 700px) {
	.pw-good-icon{
		float: left;
		width: 33%;
		border-bottom: none;
	}
}
@media only screen and (min-width: 820px) {
        #my-slider {
            margin: -100px 0px 0px 0px !important;
        }
}
@media only screen and (min-width: 900px) {
	.header--content{
		width: 65%;
	}
	.subheader{
		font-size: 2.5rem;
	}
	.header-text{
		font-size: 1.5rem;
	}
	.content{
		width: 75%;
		overflow: hidden;
	}
        .contact-header .section-header {
	    font-size: 4rem;
        }
	.contact-details, .contact-details h3{

	}
	.contact-details .address, .contact-details .tel-email{
		width:50%;
		float: left;
	}
	.contact-details p {
		font-size: 1rem;
	}
	.witf--block{
		padding: 6rem 30px 60px;
	}
	.pw-details--block {
		width: 33.2%;
		padding-bottom: 48px;
	}
	.pw-details--block:nth-child(odd) {
		clear:none;
	}
	.pw-details--block:nth-child(4) {
		clear: both;
	}
	.good p{
		width: 40%;
	}
	.pw-good-header{
		height: 320px;
	}
	.pw-good-header h1{
		font-size: 3rem;
	}
        .pw-good-header .header--content {
                padding-top: 150px;
        }
        .subscribe-to-passwear {
                width: 40%;
        }
        #my-slider {
            margin: -100px 0px 50px 0px !important;
        }
}

@media only screen and (min-width: 1000px) {
	.witf h2{
		margin-bottom: 10%;
	}
	.content{
		padding: 10% 0;
	}
        #my-slider {
            margin: -100px auto 50px auto !important;
        }
        .home-links{
            width: 70%;
        }
        .pw4good-logo {
	    margin: -3% 0 20px;
        }
}

/***********
 ***FOOTER***
 *********** */
footer {
  box-sizing: border-box;
  background-color: #232323;
  overflow: hidden;
  width: 100%;
  min-height: 500px;
  padding-bottom: 1%;
  padding-top: 4%;
  color: #f2f2f2;
}

.links-panel {
  width: 90%;
  float: left;
  padding-left: 3%;
}
.links-panel .links-title {
  width: 100%;
  margin-top: 3%;
}
.links-panel ul {
  list-style-type: none;
  padding: 0;
}
.links-panel a {
  text-decoration: none;
  color: #f2f2f2;
  font-size: 80%;
  display: inline-block;
}
.links-panel a .social-icon {
  font-family: entypoSocial;
  font-size: 350%;
  display: inline-block;
  vertical-align: middle;
}
.links-panel .text-link {
  padding-top: 3%;
  padding-bottom: 3%;

  padding-top: 3%;
  padding-bottom: 3%;
  line-height: 18px;
}
.links-panel .text-address {
  padding-top: 3%;
  padding-bottom: 3%;
  text-decoration: none;
  color: #f2f2f2;
  font-size: 80%;
  display: inline-block;
}

.copyright-notice {
  float: right;
  font-size: 80%;
}

.main {
  padding-top: 10vh;
}
.main aside {
  color: #2d2d37;
  padding: 0 5% 10px;
}
.main article h1 {
  font-size: 2em;
}

#mc_embed_signup #mce-success-response {
	color: #2D2D37 !important;
}

#mc_embed_signup input.button {
	background-color: #FF5C59;
	padding: 12px 24px;
	height:auto;
}

#mc_embed_signup .mc-field-group .asterisk {
	color: #FF5C59;
}

#mc_embed_signup div.mce_inline_error {
	background-color: #2D2D37 !important;
}


@media only screen and (min-width: 664px) {

  footer {
    min-height: 0;
  }

  .links-panel {
    width: 33%;
  }

}


/************************************************
 * Slider Pro : Alterations.
 * Look at slider-pro.min.css as well.
 ***********************************************/
.slider-pro {
}
.sp-button {
    background-color: white;
}
.sp-thumbnail {
    border-radius: 6px;
}

.sp-selected-thumbnail .sp-thumbnail-title {
    background-color: #ff5c59;
    color: white;
    padding-top: 0.0rem;
}

.sp-thumbnail-title {
    text-align: center;
    background-color: #f5f5f5;
    color: #2797fc;
    padding-top: 0.5rem;
}

.sp-thumbnail-description {
    background-color: #f5f5f5;
    text-align: center;
    padding: 0.5rem 1rem 1rem 1rem;
}

.sp-thumbnails {
}

.latest-container {
    padding: 10px;
}

sp-buttons {
    background-color: white;
}

