/*Variables */


/*Base Static Folder*/
@base: "https://www.subscribervoice.com/static/";

//Colors
@white: #ffffff;
@black: #000000;
@bgBlue: #6f90ab;
@bgBlue2: #334254;
@bgDark: rgba(42,56,74,0.85);
@blue1: #439dd7;
@blue2: #5e9ab7;
@darkBlue: rgb(42,119,220);
@darkBlue2: rgba(42,119,220,0.85);
@darkBlue3: rgba(42,119,220,0.45);
@blueDark: #2971ab;
@blueLight: #4e8eba;
@blueGrey1: #ccdde4;
@blueGrey2: #dadde3;
@blueGrey3: #ebedf0;
@blueGrey4: #8b95a8;
@blueGrey5: #7b8598;
@lightBg1: #8ba6bb;
@blueGreen: #4192b6;
@blueGreen0: rgba(65,146,182,0.9);
@blueGreen2: #659aa8;
@grey1: #fbfbfb;
@grey2: #f6f6f6;
@grey3: #e3e3e3;
@grey4: #dbe0e2;
@grey5: #a3a3a3;
@grey6: #636363;
@grey7: #4e4e40;
@darkGrey: #303030;
@headerGrey: #e3e7e9;
@lightGreen: #74b3c1;
@green: #378eab;
@green1: #4292b7;
@green2: #5e7c5e;
@green3: #96d34f;
@green4: #38a038;
@greenGrey1: #eaeff4;
@greenGrey2: #e1e8ed;
@greenGrey3: #dde5eb;
@greenGrey4: #c7dadf;
@greenGrey5: #f5f8fa;
@darkGreen: #3f7a92;
@lightGreen1: #a4cfe7;
@lightGreen2: rgba(164, 207, 231, 0.8);
@lightGreen3: rgba(164, 207, 231, 0.5);
@lightBlue1: #7eb5f2;
@lightBlue2: #44abf2;
@lightBlue3: #4089f1;
@lightBlue4: rgb(237, 243, 247);
@buttonBlue: rgb(54,142,174);
@buttonGreen: #58cc80;
@buttonGreen2: #84ab91;
@red: #ed4f32;
@red1: #db524b;
@newBlue: #0183b3;
@newBlueLight: #4ba6e9;
@brightGreen: #bed900;
@brightGreen2: #bedae7;
@bgBright: #7ebed5;
@bgDark: #aac8d9;
@bgDarker: #42646c;
@yellow: #FFF922;
@goodGreen: #38A038;
@badRed: #AD0B0B;
@footer: #414a56;
@darkGreen: #659aa8;
@newBG: rgb(241,242,243);
@newGreen: #7dbed4;
@greyButton: #b5b5b5;
@brightBlueNew: #24bce8;
@greenDarkNew: #3a83a4;

/* New React Styles */
@OBGrey1: #636363;
@OBLGrey1: #f2f4f6;
@OBLGrey2: #dbdcde;
@OBLGrey3: #eff0ee;
@OBLGrey4: #c3c3c3;
@OBLGrey5: #a3a3a3;
@OBDGrey: #162036;
@OBGreen: #4192b6;
@OBBlue: rgb(91,204,244);
@OBGreen1: #3882a8;
@OBBGreen: #58cc80;
@OBLGreen1: #c3d8e6;
@OBLGreen2: #79a9bc;
@OBRed: #db524b;


/* New Landing Page Colors */
@LPButton: #00c9ed;
@LPGrey1: #f8fafc;
@LPGrey2: #eeeeee;
@LPGrey3: #d8dadc;
@LPGrey5: #919aa2;
@LPText1: #202123;
@LPText2: #5e6065;

//Gradients
.bounceGradient {
	background: #3b9ce2; /* Old browsers */
	background: -moz-radial-gradient(center, ellipse cover, #3b9ce2 0%, #62a3c5 96%); /* FF3.6-15 */
	background: -webkit-radial-gradient(center, ellipse cover, #3b9ce2 0%,#62a3c5 96%); /* Chrome10-25,Safari5.1-6 */
	background: radial-gradient(ellipse at center, #3b9ce2 0%,#62a3c5 96%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
}
//Fonts

@font-face {
    font-family: 'museo_sans500';
    src: url('@{base}font/MuseoSans_500-webfont.eot');
    src: url('@{base}font/MuseoSans_500-webfont.eot?#iefix') format('embedded-opentype'),
         url('@{base}font/MuseoSans_500-webfont.woff') format('woff'),
         url('@{base}font/MuseoSans_500-webfont.ttf') format('truetype'),
         url('@{base}font/MuseoSans_500-webfont.svg#museo_sans500') format('svg');
    font-weight: normal;
    font-style: normal;
}


@font1: "Montserrat", sans-serif;
@font2: 'Droid Sans', sans-serif;
@font3: 'museo_sans500', sans-serif;
@font4: "PT Sans Narrow", sans-serif;
@font5: 'Open Sans','Lucida Grande','Segoe UI',Arial,Verdana,'Lucida Sans Unicode',Tahoma,'Sans Serif';
@font6: 'Muli', sans-serif;


/* Mixins */


//Border Radius

.radius (@radius: 5px) {
	border-radius: @radius;
	-moz-border-radius: @radius;
	-webkit-border-radius: @radius;
}

.bottomRadius (@radius: 5px) {
	border-radius: 0 0 @radius @radius;
	-moz-border-radius: 0 0 @radius @radius;
	-webkit-border-radius: 0 0 @radius @radius;
}

.topRadius (@radius: 5px) {
	border-radius: @radius @radius 0 0;
	-moz-border-radius: @radius @radius 0 0;
	-webkit-border-radius: @radius @radius 0 0;
}

.leftRadius (@radius: 5px) {
	border-radius: @radius 0 0 @radius;
	-moz-border-radius: @radius 0 0 @radius;
	-webkit-border-radius: @radius 0 0 @radius;
}

.topLeftRadius (@radius: 5px) {
	border-radius: @radius 0 0 0;
	-moz-border-radius: @radius 0 0 0;
	-webkit-border-radius: @radius 0 0 0;
}

.topRightRadius (@radius: 5px) {
	border-radius: 0 @radius 0 0;
	-moz-border-radius: 0 @radius 0 0;
	-webkit-border-radius: 0 @radius 0 0;
}

.bottomLeftRadius (@radius: 5px) {
	border-radius: 0 0 0 @radius;
	-moz-border-radius: 0 0 0 @radius;
	-webkit-border-radius: 0 0 0 @radius;
}

.bottomRightRadius (@radius: 5px) {
	border-radius: 0 0 @radius 0;
	-moz-border-radius: 0 0 @radius 0;
	-webkit-border-radius: 0 0 @radius 0;
}

.rightRadius (@radius: 5px) {
	border-radius: 0 @radius @radius 0;
	-moz-border-radius: 0 @radius @radius 0;
	-webkit-border-radius: 0 @radius @radius 0;
}

//Box Shadow

.boxShadow (@x: 0; @y: 0; @blur: 1px; @color: #000) {
	  box-shadow: @arguments;
	  -moz-box-shadow: @arguments;
	  -webkit-box-shadow: @arguments;
}

.boxShadow (@x: 0; @y: 0; @blur: 1px; @spread: 1px; @color: #000) {
	  box-shadow: @arguments;
	  -moz-box-shadow: @arguments;
	  -webkit-box-shadow: @arguments;
}

.noBoxShadow {
	box-shadow: none;
	-webkit-box-shadow: none;
	-moz-box-shadow: none;
}

.insetShadow (@x: 0; @y: 0; @blur: 1px; @color: #000) {
	  box-shadow: inset @arguments;
	  -moz-box-shadow: inset @arguments;
	  -webkit-box-shadow: inset @arguments;
}

.insetShadow (@x: 0; @y: 0; @blur: 1px; @spread: 1px; @color: #000) {
	  box-shadow: inset @arguments;
	  -moz-box-shadow: inset @arguments;
	  -webkit-box-shadow: inset @arguments;
}

.insetShadows (@x: 0; @y: 0; @blur: 1px; @spread: 1px; @color: #000; @x2: 0; @y2: 0; @blur2: 1px; @spread2: 1px; @color2: #000) {
	  box-shadow: inset @x @y @blur @spread @color, inset @x2 @y2 @blur2 @spread2 @color2;
	  -moz-box-shadow: inset @x @y @blur @spread @color, inset @x2 @y2 @blur2 @spread2 @color2;
	  -webkit-box-shadow: inset @x @y @blur @spread @color, inset @x2 @y2 @blur2 @spread2 @color2;
}

.insetDrop (@x: 0; @y: 0; @blur: 1px; @color: #fff; @x2: 0; @y2: 0; @blur2: 1px; @color2: #555555) {
	  box-shadow: inset @x @y @blur @color, @x2 @y2 @blur2 @color2;
	  -moz-box-shadow: inset @x @y @blur @color, @x2 @y2 @blur2 @color2;
	  -webkit-box-shadow: inset @x @y @blur @color, @x2 @y2 @blur2 @color2;
}
.insetDrop (@x: 0; @y: 0; @blur: 1px; @spread: 1px; @color: #fff; @x2: 0; @y2: 0; @blur2: 1px; @spread2: 1px;@color2: #555555) {
	  box-shadow: inset @x @y @blur @spread @color, @x2 @y2 @blur2 @spread2  @color2;
	  -moz-box-shadow: inset @x @y @blur @spread  @color, @x2 @y2 @blur2 @spread2  @color2;
	  -webkit-box-shadow: inset @x @y @blur @spread  @color, @x2 @y2 @blur2 @spread2  @color2;
}

.textShadow (@x: 0; @y: 0; @blur: 1px; @color: #000) {
	  text-shadow: @arguments;
	  -moz-text-shadow: @arguments;
	  -webkit-text-shadow: @arguments;
}

.noTextShadow {
	text-shadow: none;
	-webkit-text-shadow: none;
	-moz-text-shadow: none;
}

//Animations

.slide {
	-webkit-transition:all 1.5s ease-in-out;
  	-moz-transition:all 1.5s ease-in-out;
  	-o-transition:all 1.5s ease-in-out;
  	transition:all 1.5s ease-in-out;
}

.slideMed {
	-webkit-transition:all 0.5s ease-in-out;
  	-moz-transition:all 0.5s ease-in-out;
  	-o-transition:all 0.5s ease-in-out;
  	transition:all 0.5s ease-in-out;
}

.slideFast {
	-webkit-transition:all .25s ease-in-out;
  	-moz-transition:all .25s ease-in-out;
  	-o-transition:all .25s ease-in-out;
  	transition:all .25s ease-in-out;
}

.noSlide {
	-webkit-transition: none;
  	-moz-transition: none;
  	-o-transition: none;
  	transition: none;
}

.bgColorFast {
    -moz-transition: background .25s ease-in-out, color .25s ease-in-out, box-shadow .25s ease-in-out, border-color .25s ease-in-out;
    -o-transition: background .25s ease-in-out, color .25s ease-in-out, box-shadow .25s ease-in-out, border-color .25s ease-in-out;
    -webkit-transition: background .25s ease-in-out, color .25s ease-in-out, box-shadow .25s ease-in-out, border-color .25s ease-in-out;
    transition: background .25s ease-in-out, color .25s ease-in-out, box-shadow .25s ease-in-out, border-color .25s ease-in-out;
}

.fade {
	-o-transition: all 1s ease-in-out;
	transition: all 1s ease-in-out;
   -moz-transition: all 1s ease-in-out;
   -webkit-transition: all 1s ease-in-out;
}

.colorFade {
    -moz-transition: color .5s ease-in-out;
    -o-transition: color .5s ease-in-out;
    -webkit-transition: color .5s ease-in-out;
    transition: color .5s ease-in-out;
}

.backgroundFade {
    -moz-transition: background .5s ease-in-out;
    -o-transition: background .5s ease-in-out;
    -webkit-transition: background .5s ease-in-out;
    transition: background .5s ease-in-out;
}

body {
	font-family: @font5;
	h1,h2,h3,h4,h5 {
		font-family: @font5;
		text-align: center;
		line-height: 1.5em;
		color: @LPText1;
	}
	h2 {
		font-weight: 500;
		font-size: 36px;
	}
	h3 {
		font-size: 28px;
	}
	p {
		color: @LPText2;
		line-height: 24px;
		font-size: 16px;
	}
}

ul {
	padding: 0;
	li {
		list-style: none;
	}
}
label {
	text-transform: uppercase;
	font-weight: 400;
	font-size: 17px;
}

body.sv-landing-page {
	a.btn {
		.fade;
		color: @white;
		background: @LPButton;
		.radius(50px);
		font-size: 14px;
		text-transform: uppercase;
		padding: 8px 24px;
	}
	a.btn:hover {
		background: lighten(@LPButton, 10%);
	}
	div.divider {
		height: 1px;
		width: 50px;
		border-bottom: 3px solid @LPGrey5;
		margin: 30px auto;
	}
	div.left {
		float: left;
	}
	div.right {
		float: right;
	}
	div.left, div.right {
		width: 50%;
		h3,h4,h5 {
			text-align: left;
		}
		h3 {
			padding-right: 100px;
		}
		ul.values {
			width: 100%;
			padding-top: 10px;
			padding-bottom: 30px;
			li {
				width: 100%;
				height: 100px;
				img {
					margin-top: 5px;
					float: left;
					width: 7%;
				}
				div.text {
					float: left;
					margin-left: 5%;
					width: 77%;
					label {
						margin-bottom: 10px;
					}
				}
			}
		}
		div.divider {
			margin: 30px 0;
		}
	}
	div.testimonial {
		padding-top: 25px;
		border-top: 1px solid @LPGrey2;
		img {
			margin-top: 5px;
			float: left;
			width: 10%;
			max-width: 59px;
		}
		div.text {
			float: left;
			margin-left: 5%;
			width: 75%;
			p {
				font-size: 14px;
			}
			p.quote {
				margin-bottom: 2px;
			}
			p.quote-by {
				font-style: italic;
			}
		}
	}
	header.landingPage {
		z-index: 1000;
		width: 100%;
		position: fixed;
		top: 0;
		.fade;
		height: 80px;
		nav.container {
			height: 100%;
			padding-top: 15px;
			padding-bottom: 15px;
			position: relative;
			a.logo{
				.fade;
				float: left;
				position: absolute;
				left: 15px;
				top: 16px;
				height: 45px;
				img {
					height: 100%;
				}
			}
			a.logo.notScrolled {
				opacity: 1;
			}
			a.logo.scrolled {
				opacity: 0;
			}
			ul.navItems {
				margin-top: 8px;
				float: right;
				li {
					float: left;
					a {
						text-transform: uppercase;
						font-size: 12px;
						color: @white;
					}
					a.login {
						.fade;
						position: relative;
						top: 7px;
						margin: 0 30px;
					}
					a:hover {
						text-decoration: none;
					}
				}
			}
			div.mobile-toggle {
				display: none;
			}
		}
	}
	nav.mobile {
		z-index: -1;
		opacity: 0;
		visibility: hidden;
	}
	header.landingPage.scrolled {
		background: @white;
		.boxShadow(0;1px;2px;rgba(0,0,0,0.3));
		nav.container {
			a.logo.notScrolled {
				opacity: 0;
			}
			a.logo.scrolled {
				opacity: 1;
			}
			ul.navItems {
				li {
					a.login {
						color: @LPButton;
					}
				}
			}
		}
	}
	div.content-section {
		padding: 25px 0;
		padding-bottom: 35px;
	}
	div.content-section.grey {
		background: @LPGrey1;
		border: solid @LPGrey2;
		border-width: 1px 0;
	}
	div.main-section {
		margin-top: -52px;
		height: 670px;
		background: url('@{base}images/main-section-bg.png');
		background-position: center; 
		background-size: cover;
		background-repeat: no-repeat;
		div.main-wrapper {
			height: 670px;
			background: rgba(75,75,75,0.75);
			div.container {
				position: relative;
				top: 32%;
				text-align: center;
				h2 {
					font-size: 44px;
					color: @white;
					width: 80%;
					margin: 0 10%;
					font-weight: 600;
				}
				h3 {
					color: @white;
					width: 50%;
					margin: 40px 25%;
					font-size: 17px;
					line-height: 32px;
				}
				a.btn {
					margin-top: 5px;
					padding: 12px 50px;
					font-size: 18px;
				}
			}
		}
	}
	div.our-brands {
		width: 100%;
		height: 130px;
		background: @LPGrey1;
		border-bottom: 1px solid @LPGrey2;
		ul.brands {
			width: 100%;
			margin-top: 24px;
			height: 84px;
			li {
				float: left;
				width: 20%;
				img {
					display: block;
					width: 100%;
					max-width: 190px;
					margin: auto;
				}
			}
		}
	}
	div.sx-section {
		padding-bottom: 55px;
		ul.sx-values {
			width: 100%;
			height: 160px;
			margin-top: 60px;
			li {
				width: 25%;
				float: left;
				text-align: center;
				img {
					width: 16%;
					margin: 0 42%;
				}
				label {
					margin: 20px 0;
				}
				p {
					width: 94%;
					margin: 0 3%;
				}
			}
		}
	}
	div.trust-seal-section {
		div.left {
			padding-left: 2%;
			img {
				max-width: 80%;
				max-height: 625px;
				display: block;
				margin: 1% auto;
				position: relative;
				left: -5px;
				top: 9px;
			}
		}
		div.right {
			ul.values {
				padding-top: 20px;
				padding-bottom: 15px;
			}
		}
	}
	div.understand-section {
		ul.understand-values {
			height: 200px;
			width: 70%;
			margin: 50px 15%;
			margin-bottom: 25px;
			li {
				width: 20%;
				float: left;
				div.img-wrapper {
					width: 100px;
					height: 100px;
					padding: 28px;
					border: 2px solid @LPButton;
					.radius(100px);
					margin: auto;
					img {
						width: 40px;
						height: 40px;
					}
				}
				p {
					width: 124%;
					margin: 0 -12%;
					margin-top: 30px;
					text-align: center;
					color: @LPText1;
				}
			}
			li.divider {
				img {
					display: block;
					height: 60px;
					margin: 20px auto;
				}
			}
		}
		div.statement {
			width: 56%;
			margin: 0 22%;
			p {
				text-align: center;
			}
		}
	}
	div.sv-dashboard {
		overflow: hidden;
		padding-bottom: 94px;
		div.left {
			ul.values {
				li {
					margin-top: 30px;
					div.text {
						width: 79%;
					}
				}
			}
		}
		div.right {
			position: relative;
			width: 48%;
			img {
				width: auto;
				position: absolute;
				left: 0;
			}
		}
	}
	div.esp-section {
		p {
			text-align: center;
		}
		ul.esps {
			width: 100%;
			height: 400px;
			li {
				float: left;
				width: 31.3%;
				margin: 1%;
				background: @LPText2;
				padding: 35px 0;
				img {
					display: block;
					margin: auto;
					max-height: 130px;
					max-width: 80%;
				}
			}
		}
	}
	div.get-started-section {
		overflow: hidden;
		div.left {
			position: relative;
			width: 48%;
			img {
				width: auto;
				position: absolute;
				right: 100px;
			}
		}
		div.right {
			ul.values {
				li {
					margin-top: 30px;
				}
			}
		}
	}
	div.testimonial-section {
		overflow: hidden;
		ul.testimonials {
			position: relative;
			height: 200px;
			i.fa-quote-left, i.fa-quote-right {
				width: 100%;
				text-align: center;
				position: absolute;
				color: darken(@LPGrey2, 12%);
				font-size: 16px;
			}
			i.fa-quote-left {
				top: 4px;
			}
			i.fa-quote-right {
				bottom: 0;
			}
			li {
				.fade;
				position: absolute;
				opacity: 0;
				height: 200px;
				width: 74%;
				margin: 0 13%;
				div.center {
					height: 100%;
		    		display: -webkit-box; /* OLD - iOS 6-, Safari 3.1-6 */
					display: -moz-box; /* OLD - Firefox 19- (buggy but mostly works) */
					display: -ms-flexbox; /* TWEENER - IE 10 */
					display: -webkit-flex;
					display: flex;
					-webkit-box-align: center;
					-webkit-flex-align: center;
					-ms-flex-align: center;
					-webkit-align-items: center;
					align-items: center;
					flex-direction: column;
					justify-content: center;
					overflow: auto;
					p {
						font-size: 22px;
						line-height: 34px;
						text-align: center;
						margin: 0;
						padding: 20px;
						color: @LPText2;
					}
				}
			}
			li.active {
				opacity: 1;
			}
		}
		ul.circle-nav {
			width: 16%;
			margin: 25px 42%;
			li {
				float: left;
				width: 16.6%;
				text-align: center;
				i {
					.fade;
					color: darken(@LPGrey2, 10%);
				}
			}
			li.active {
				i {
					color: @LPButton;
				}
			}
		}
	}
	div.get-started-banner {
		height: 190px;
		background: url('@{base}images/sv-cta-bg.png');
		background-position: center; 
		background-size: cover;
		background-repeat: no-repeat;
		div.get-started-wrapper {
			height: 190px;
			background: rgba(0,201,237,0.6);
			div.text {
				top: 60px;
				position: relative;
				width: 60%;
				float: left;
				h3 {
					text-align: left;
					margin-top: 0;
					color: @white;
					font-size: 30px;
					margin-top: 10px;
					margin-bottom: 5px;
				}
			}
			a.btn {
				.fade;
				float: right;
				padding: 10px 30px;
				font-size: 18px;
				color: darken(@LPButton,10%);
				background: @white;
				margin-top: 73px;
				opacity: 0.9;
			}
			a.btn:hover {
				color: @LPButton;
				opacity: 1;
			}
		}
	}
	div.main-about-section {
		margin-top: -50px;
		height: 360px;
		background: url('@{base}images/main-about-section-bg.png');
		background-position: center; 
		background-size: cover;
		background-repeat: no-repeat;
		div.main-wrapper {
			height: 360px;
			background: rgba(75,75,75,0.75);
			div.container {
				position: relative;
				top: 41%;
				h2 {
					color: @white;
					width: 80%;
					margin: 0 10%;
					font-weight: 600;
				}
			}
		}
	}
	div.about-section {
		div.about-us {
			width: 60%;
			margin: 20px 20%;
			p {
				font-size: 17px;
				line-height: 28px;
				margin: 15px 0;
				text-align: center;
			}
		}
	}
	div.values-section {
		ul.trust-values {
			width: 96%;
			margin: 0 2%;
			margin-top: 50px;
			height: 600px;
			li {
				float: left;
				position: relative;
			    width: 24%;
			    margin: 0.5%;
			    height: 0;
			    padding-bottom: 24%;
			    div.text {
			    	width: 100%;
			    	height: 100%;
			    	position: absolute;
			    	top: 0;
		    		display: -webkit-box; /* OLD - iOS 6-, Safari 3.1-6 */
					display: -moz-box; /* OLD - Firefox 19- (buggy but mostly works) */
					display: -ms-flexbox; /* TWEENER - IE 10 */
					display: -webkit-flex;
					display: flex;
					-webkit-box-align: center;
					-webkit-flex-align: center;
					-ms-flex-align: center;
					-webkit-align-items: center;
					align-items: center;
					flex-direction: column;
					justify-content: center;
					overflow: auto;
			    	.fade;
					label {
						margin: 0;
						width: 100%;
						text-align: center;
						color: @white;
						text-transform: none;
						font-size: 20px;
						line-height: 36px;
					}
					label.frac {
						span {
							display: inline-block;
							padding: 0 5px;
							clear: both;
						}
						span.top {
							padding-top: 1px;
							border-bottom: 2px solid @white;
						}
						span.bottom {
							padding-bottom: 1px;
						}
					}
			    }
			    div.text.front {
			    	opacity: 1;
			    	background: @blueGreen;
				}
			    div.text.back {
			    	opacity: 0;
			    	background: @LPText2;
			    	label {
						padding: 0 23%;
						font-size: 17px;
						line-height: 22px;
			    	}
			    }
			}
			li.flip {
				div.text.front {
					opacity: 0;
				}
				div.text.back {
					opacity: 1;
				}
			}
		}
	}
	div.form-section {
		div.container {
			form {
				width: 46%;
				margin: 0 27%;
				margin-top: 50px;
				input, textarea {
					border: 1px solid @LPGrey3;
					.insetShadow(0;1px;1px;rgba(0,0,0,0.1));
					margin: 1.5% 0;
					width: 100%;
					padding: 12px 20px;
					.radius;
					font-size: 18px;
					color: @LPText2;
					resize: none;
				}
				input:focus, textarea:focus {
					outline: none;
				}
				div.textarea-wrapper {
					position: relative;
					div#commentCounter {
						bottom: -25px;
						right: 10px;
						position: absolute;
						p {
							color: @white;
						}
					}
				}
				.btn {
					margin-top: 20px;
					width: 100%;
					color: @white;
					background: @LPButton;
					text-transform: uppercase;
					padding: 14px 0;
					font-size: 18px;
					.fade;
					border: none;
				}
				.btn:hover {
					background: lighten(@LPButton,10%);
				}
				.btn.btn-disabled {
					opacity: 0.8;
					background: desaturate(@LPButton, 60%);
				}
				.btn:focus {
					outline: none;
				}
			}

		}
	}
	div.contact-us-section {
		height: 750px;
		background: url('@{base}images/contact-us-section-bg.png');
		background-position: center; 
		background-size: cover;
		background-repeat: no-repeat;
		div.container {
			h3 {
				color: @white;
			}
			div.divider {
				border-color: @white;
			}
			form {
				input, textarea {
					border: none;
					.noBoxShadow;
				}
				h2.thank-you {
					padding-top: 24%;
					color: @white;
				}
				p.thank-you {
					font-size: 16px;
					text-align: center;
					color: @white;
				}
			}
		}
	}
	footer {
		background: @white;
		height: 85px;
		padding-top: 20px;
		#footerLogo {
			float: left;
			width: 35%;
			a.logo {
				img {
					width: 210px;
				}
			}
			p.copyright {
				margin-top: -7px;
				font-size: 8px;
				margin-left: 40px;
				line-height: 16px;
			}
		}
		#footerNav {
			float: right;
			width: 55%;
			ul {
				margin-top: 16px;
				width: 100%;
				li {
					float: right;
					margin: 0 2.5%;
					a {
						font-size: 12px;
						text-transform: uppercase;
						color: @LPText2;
					}
				}
				li:first-child {
					margin-right: 4px;
				}
				li.social {
					position: relative;
					float: right;
					top: -5px;
					padding: 5px;
					height: 30px;
					width: 30px;
					.radius(15px);
					border: 1px solid @LPButton;
					margin: 0;
					margin-left: 4%;
					a {
						display: block;
						width: 100%;
						text-align: center;
						i {
							font-size: 16px;
							color: @LPButton;
						}
					}
				}
			}
		}
	}
	img.desktop {
		display: block;
	}
	img.mobile {
		display: none;
	}
}

body.get-started {
	background-color: @LPGrey1;
	display: flex;
	min-height: 100vh;
	flex-direction: column;
	div.get-started-form {
		padding-top: 40px;
		flex: 1;
		div.container {
			a.get-started-logo {
				display: block;
				margin: 0 auto;
				margin-bottom: 45px;
				width: 300px;
				img {
					width: 100%;
				}
			}
			form {
				width: 50%;
				margin: 0 25%;
				background: @white;
				padding: 15px 50px;
				.radius(3px);
				border: 1px solid @LPGrey3;
				.boxShadow(2px;2px;4px;rgba(0,0,0,0.1));
				min-height: 433px;
				h2, h3 {
					text-align: left;
					color: @LPText2;
				}
				h2 {
					font-size: 28px;
					margin: 8px 0;
				}
				h3 {
					font-size: 18px;
					margin: 10px 0;
				}
				h2.thank-you {
					padding-top: 135px;
					text-align: center;
				}
				p.thank-you {
					font-size: 16px;
					text-align: center;
				}
				p.agree {
					font-size: 12px !important;
					margin-top: 10px;
				}
			}
			div.login-prompt {
				width: 60%;
				margin: 3px 20%;
				p {
					font-size: 10px;
				}
			}
		}
	}
}

#alphaOverlay {
	.fade;
	opacity: 0;
	z-index: 1001;
	position: fixed;
	top: 0px;
	height: 100%;
	width: 100%;
	.bounceGradient;
}

#alphaOverlay.active {
	opacity: 1;
}

div.popup-logo {
	opacity: 0;
	.fade;
    position: fixed;
	top: 3%;
	left: 50%;
	width: 20%;
	margin: auto;
	z-index: 1002;
	-webkit-transform: translate(-50%, 10%);
	transform: translate(-50%, -10%);
	img {
		width: 100%;
	}
}
div.popup-logo.active {
	opacity: 1;
}

@media only screen and (max-height: 700px) {
	div.popup-logo {
		display: none !important;
	}
}



div.survey-popup {
	width: 90%;
	.fade;
	z-index: 1002;
    position: fixed;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    opacity: 0;
    div.page {
    	.fade;
    	opacity: 0;
    }
    div.page.active {
    	opacity: 1;
    }
    button, input {
    	outline: none !important;
    }
    p, h3 {
    	color: @white;
    	text-align: center;
    }
    p.question, p.prompt {
    	font-size: 32px;
    	margin: 0;
    	line-height: 40px;
    	font-weight: 400;
    	span {
    		font-weight: 600;
    		padding-bottom: 3px;
    	}
    }
    p.question span {
		border-bottom: 3px solid @white;
    }
    h3 {
    	margin-top: 5%;
    	font-size: 60px;
    	text-transform: uppercase;
    	font-weight: 700;
    }
    div.buttonContainer {
    	width: 80%;
    	margin: 5% 10%;
    	div.buttonWrapper {
    		float: left;
    		width: 50%;
    		height: 100%;
    		padding: 1%;
    		button {
    			height: 100%;
    			width: 100%;
    			padding: 6% 0;
    			.radius(3px);
    			color: @white;
    			span {
    				display: block;
    				width: 100%;
    				text-align: center;
    				font-size: 20px;
    			}
    			span.big {
    				font-size: 48px;
    				font-weight: 700;
    				text-transform: uppercase;
    			}
    		}
    		button#yes {
    			background: @LPButton;
    			border: 2px solid lighten(@LPButton,5%);
    		}
    		button#no {
    			opacity: 0.6;
    			background: none;
    			border: 2px solid @white;
    		}
    	}
    }
}

@media only screen and (max-height: 500px) {
	div.survey-popup {
		p.question {
			height: 28px;
		}
		h3 {
			font-size: 45px;
		}
		div.buttonContainer {
			width: 70%;
			margin: 5% 15%;
			div.buttonWrapper {
				button {
					padding: 4% 0;
				}
			}
		}
	}
}

div.survey-popup.active {
	opacity: 1;
}

div#page-2 {
	p.prompt {
		font-size: 24px;
		line-height: 28px;
	}
	h3 {
		margin: 1% 0;
		font-size: 40px;
		text-transform: none;
	}
	span.no-thanks {
		display: block;
		margin: 14px auto;
		text-align: center;
		p {
			font-size: 18px;
			display: inline;
			color: @white;
			cursor: pointer;
			opacity: 0.6;
		}
		p:hover {
			text-decoration: underline;
			opacity: 0.8;
		}
	}
}

div#page-2.yes {
	.yes {
		display: block;
	}
	.no {
		display: none;
	}
}
div#page-2.no {
	.yes {
		display: none;
	}
	.no {
		display: block;
	}
}

div#page-3 {
	h3 {
		margin-top: 2%;
	}
	p.prompt {
		margin-bottom: 10%;
	}
	div.close {
		position: absolute;
		top: 0;
		right: 14%;
		opacity: 1;
		i {
			font-size: 42px;
			color: @white;
			.noTextShadow;
		}
	}
}


form#reservationForm {
    width: 50%;
    margin: 30px 25%;
    margin-bottom: 0;
    div.inputWrapper {
      width: 100%;
      .radius;
      padding-top: 5px;
      padding-bottom: 10px;
      background: rgba(255,255,255,0.3);
      input[type="email"],input[type="text"] {
        text-align: left;
        margin: 5px 3%;
        width: 94%;
        padding: 12px 23px;
        height: 70px;
        border: none;
        font-size: 28px;
        color: @grey6;
        .radius();
        .insetShadow(0;2px;0;0;rgba(0,0,0,0.05));
      }
      button {
      	.fade;
        margin: 0 3%;
        margin-top: 5px;
        width: 94%;
        .radius();
        height: 70px;
        padding: 7px 15px;
        font-size: 28px;
        text-transform: capitalize;
        background: @LPButton;
		border: 2px solid lighten(@LPButton,5%);
        position: relative;
        color: @white;
      }
      button:hover {
        background: lighten(@LPButton,8%);
		border: 2px solid lighten(@LPButton,13%);
      }
      button.btn-disabled {
        background: darken(@LPButton,12%);
		border: 2px solid darken(@LPButton,7%);
        color: rgba(255,255,255,0.6);
      }
    }
  }


div.profile.container {
	margin-top: 120px;
	padding: 0 3%;
	border: 1px solid rgba(0, 0, 0, 0.3);
	.radius(8px);
	h2 {
		text-align: left;
		color: #2971ab;
		font-size: 16px;
		font-weight: 600;
	}
	h2.licenseTitle {
		text-align: center;
		font-size: 34px;
		color: #202123;
		font-weight: 400;
	}
}

form.login {
	position: relative;
	padding-bottom: 60px !important;
	min-height: 0px !important;
	div.error {
		padding: 5px 10px;
		background: @red1;
		.radius(4px);
		margin: 5px 0;
		p {
			margin: 0;
			color: @white;
			font-size: 12px;
			a {
				color: @white;
				font-weight: 600;
				text-decoration: underline;
			}
		}
	}
	div.remember {
		p {
			margin: 0 !important;
		}
		p.remember-me {
			width: 100%;
			float: left;
			input.remember {
				width: auto;
				position:relative;
				top: -1px;
				margin-right: 5px;
			}
		}
	}
	input.btn {
		margin-top: 15px !important;
	}
	div.login-footer {
		height: 45px;
		padding: 10px 10%;
		position: absolute;
		left: 0;
		bottom: 0;
		width: 100%;
		background: @OBLGrey1;
		.bottomRadius(3px);
		border-top: 1px solid #d8dadc;
		a {
			color: @blueGreen;
		}
		p {
			float: left;
			padding: 0 4px;
			font-size: 14px;
		}
		p.forgot {
			width: 30%;
		}
		p.need {
			width: 70%;
			text-align: right;
		}
	}
}

@media only screen and (max-width: 1199px) {
	body.sv-landing-page {
		div.right {
			h3 {
				padding-right: 0;
			}
		}
		div.understand-section {
			ul.understand-values {
				margin-bottom: 25px;
				li {
					p {
						width: 110%;
						margin: 0 -5%;
						margin-top: 20px;
					}
				}
			}
			div.statement {
				width: 64%;
				margin: 0 18%;
			}
		}
		div.sv-dashboard {
			div.right {
				img {
					margin-top: 1%;
				}
			}
		}
		div.get-started-section {
			div.left {
				img {
					margin-top: 1%;
				}
			}
		}
		footer {
			#footerNav {
				width: 64%;
			}
		}
	}
	body.get-started {
		div.get-started-form {
			div.container {
				form {
					width: 60%;
					margin: 0 20%;
				}
			}
		}
	}
	div.survey-popup {
		width: 100%;
		h3 {
			font-size: 54px;
		}
	}
	div#page-3 {
		div.close {
			right: 10%;
		}
	}
}

/* Smaller than standard 960 (devices and browsers) */
@media only screen and (max-width: 992px) {
	body {
		h3.center {
			width: 80%;
			margin: 20px 10% 10px 10%;
		}
	}
	body.sv-landing-page {
		div.main-section {
			div.main-wrapper {
				div.container {
					h2 {
						font-size: 38px;
						width: 90%;
						margin: 0 5%;
					}
				}
			}
		}
		div.our-brands {
			height: 105px;
			ul.brands {
				height: 65px;
			}
		}
		div.understand-section {
			ul.understand-values {
				margin-bottom: 25px;
				li {
					p {
						width: 140%;
						margin: 0 -20%;
						margin-top: 15px;
					}
				}
			}
			div.statement {
				width: 84%;
				margin: 0 8%;
			}
		}
		div.trust-seal-section {
			div.left {
				width: 35%;
				img {
					width: 100%;
					max-width: 100%;
					margin: 15% auto;
				}
			}
			div.right {
				width: 60%;
				h3 {
					padding-right: 0;
				}
				ul.values {
					li {
						div.text {
							margin-left: 4%;
							width: 89%;
						}
					}
				}
			}
		}
		div.sv-dashboard {
			div.left {
				float: none;
				width: 100%;
				h3 {
					text-align: center;
					padding-right: 0;
				}
				div.divider {
					margin: 30px auto;
				}
				ul.values {
					li {
						margin-top: 0;
						height: auto;
						img {
							float: none;
							width: 10%;
							margin: 10px 45%;
						}
						div.text {
							float: none;
							width: 70%;
							margin: 0 15%;
							p {
								text-align: center;
							}
						}
					}
				}
			}
			div.right {
				float: none;
				width: 100%;
				img {
					position: static;
					display: block;
					margin: auto;
					width: 30%;
					min-width: 420px;
				}
			}
		}
		div.get-started-section {
			div.right {
				float: none;
				width: 100%;
				h3 {
					text-align: center;
					padding-right: 0;
				}
				div.divider {
					margin: 30px auto;
				}
				ul.values {
					li {
						margin-top: 0;
						height: auto;
						img {
							float: none;
							width: 10%;
							margin: 10px 45%;
						}
						div.text {
							float: none;
							width: 70%;
							margin: 0 15%;
							p {
								text-align: center;
							}
						}
					}
				}
			}
			div.left {
				float: none;
				width: 100%;
				img {
					position: static;
					display: block;
					margin: auto;
					width: 30%;
					min-width: 420px;
				}
			}
		}
		div.testimonial-section {
			ul.testimonials {
				li {
					width: 60%;
					margin: 0 20%;
				}
			}
			ul.circle-nav {
				width: 22%;
				margin: 25px 39%;
			}
		}
		div.get-started-banner {
			height: 190px;
			div.get-started-wrapper {
				height: 190px;
				div.container {
					div.text {
						top: 66px;
						width: 70%;
						h3 {
							margin-top: 10px;
							font-size: 26px;
						}
					}
					a.btn {
						margin-top: 80px;
						padding: 8px 24px;
						font-size: 14px;
					}
				}
			}
		}
		div.about-section {
			div.about-us {
				width: 80%;
				margin: 0 10%;
				margin-top: 50px;
			}
		}
		div.values-section {
			ul.trust-values {
				li {
					width: 49%;
				}
			}
		}
		div.form-section {
			div.container {
				form {
					width: 70%;
					margin: 0 15%;
					margin-top: 50px;
				}
			}
		}
		footer {
			#footerLogo {
				width: 31%;
				a.logo {
					img {
						width: 220px;
					}
				}
				p.copyright {
					margin-top: -5px;
					margin-left: 47px;
				}
			}
			#footerNav {
				width: 66%;
				ul {
					li {
						margin: 0 2%;
						a {
							font-size: 12px;
						}
					}
					li.social {
						padding: 7px;
					}
				}
			}
		}
		img.desktop {
			display: none !important;
		}
		img.mobile {
			display: block;
		}
	}
	div.popup-logo {
		width: 24%;
	}
	div.survey-popup {
		h3 {
			font-size: 44px;
		}
	}
	div.login-footer {
		p {
			font-size: 12px;
			margin: 0 !important;
		}
	}
}

/* Tablet Portrait size to standard 960 (devices and browsers) */
@media only screen and (min-width: 768px) and (max-width: 992px) {
	body.sv-landing-page {
		div.content-section {
			padding: 30px 0;
		}
		div.sx-section {
			ul.sx-values {
				margin-top: 50px;
				li {
					img {
						width: 28%;
						margin: 0 36%;
					}
					label {
						margin: 6px 0;
						margin-top: 12px;
					}	
					div.text {
						height: 60px;
						display: flex;
						flex-direction: column;
						justify-content: center;
						p {
							width: 84%;
							margin: 0 8%;
							font-size: 12px;
							line-height: 20px;
						}
					}
				}
			}
		}
		div.trust-seal-section {
			div.right {
				h3 {
					font-size: 22px;
				}
				ul.values {
					padding: 0;
					li {
						height: 80px;
						img {
							margin-top: 8px;
							width: 9%;
						}
						div.text {
							width: 87%;
							label {
								font-size: 14px;
								margin-bottom: 5px;
							}
							p {
								font-size: 12px;
								line-height: 20px;
							}
						}
					}
				}
			}
		}
		div.understand-section {
			ul.understand-values {
				margin-bottom: 5px;
				li {
					p {
						width: 160%;
						margin: 0 -30%;
						margin-top: 15px;
					}
				}
			}
			div.statement {
				width: 86%;
				margin: 0 7%;
			}
		}
		div.sv-dashboard {
			div.left {
				ul.values {
					padding-top: 0;
					padding-bottom: 10px;
					li {
						margin-top: 0;
						img {
							margin: 0 45%;
							margin-bottom: 15px;
						}
					}
				}
			}
		}
		div.get-started-section {
			div.right {
				ul.values {
					padding-top: 0;
					padding-bottom: 10px;
					li {
						margin-top: 0;
						img {
							margin: 0 45%;
							margin-bottom: 15px;
						}
					}
				}
			}
		}
	}
}

/* All Mobile Sizes (devices and browser) */
@media only screen and (max-width: 767px) {
	label {
		font-size: 18px;
	}
	p {
		font-size: 16px;
		width: 90%;
		margin-left: 5%;
		margin-right: 5%;
	}
	body.sv-landing-page {
		header.landingPage {
			position: absolute;
			nav.container {
				padding: 15px;
				ul.navItems {
					display: none;
				}
				div.mobile-toggle {
					display: block;
					float: right;
					position: relative;
					top: 12px;
					right: 20px;
					button {
						.fade;
						border: none;
						background: none;
						color: @white;
						i {
							font-size: 28px;
						}
						i.fa-bars {
							display: inline;
						}
						i.fa-times {
							display: none;
						}
					}
					button:focus {
						outline: none;
					}
				}
			}
		}
		header.landingPage.scrolled {
			background: none;
			.noBoxShadow;
			nav.container {
				a.logo.notScrolled {
					opacity: 1;
				}
				a.logo.scrolled {
					opacity: 0;
				}
				ul.navItems {
					li {
						a.login {
							color: @white;
						}
					}
				}
			}
		}
		header.landingPage.mobile-nav-toggled {
			background: rgba(0,0,0,0.7);
			nav.container {
				div.mobile-toggle {
					button {
						i.fa-bars {
							display: none;
						}
						i.fa-times {
							display: inline;
						}
					}
				}
			}
		}
		nav.mobile {
			.fade;
			position: absolute;
			top: 80px;
			width: 100%;
			background: rgba(0,0,0,0.7);
			ul.menu {
				width: 100%;
				margin: 0;
				li {
					width: 100%;
					text-align: center;
					padding: 30px;
					border-bottom: 1px solid @white;
					a {
						font-size: 28px;
						color: @white;
					}
				}
				li:first-child {
					border-top: 1px solid @white;
				}
			}
		}
		nav.mobile.is-visible {
			z-index: 1000;
			opacity: 1;
			visibility: visible;
		}
		
		div.testimonial {
			padding: 0 10px;
			padding-top: 25px;
		}
		div.main-section {
			div.main-wrapper {
				div.container {
					h2 {
						font-size: 30px;
					}
					h3 {
						line-height: 30px;
					}
				}
			}
		}
		div.our-brands {
			display: none;
		}
		div.sx-section {
			ul.sx-values {
				margin-top: 20px;
				height: auto;
				li {
					float: none;
					width: 100%;
					img {
						width: 10%;
						margin: 0 45%;
						margin-top: 35px;
					}
					label {
						margin-top: 10px;
						margin-bottom: 2px;
					}
					p {
						width: 50%;
						margin: 0 25%;
					}
				}
			}
		}
		div.trust-seal-section {
			div.left {
				display: none;
			}
			div.right {
				width: 100%;
				h3 {
					text-align: center;
				}
				div.divider {
					margin: 30px auto;
				}
				ul.values  {
					height: auto;
					margin-bottom: 40px;
					li {
						margin-bottom: 25px;
						height: auto;
						img {
							float: none;
							width: 10%;
							margin: 10px 45%;
						}
						div.text {
							float: none;
							width: 100%;
							margin-left: 0;
							label {
								width: 100%;
							}
							label, p {
								text-align: center;
							}
						}
					}
				}
				div.testimonial {
					img {
						width: 20%;
					}
					div.text {
						p {
							font-size: 12px;
						}
					}
				}
			}
		}
		div.understand-section {
			ul.understand-values {
				height: auto;
				margin-top: 0;
				li {
					margin-top: 50px;
					float: none;
					width: 100%;
				}
				li.divider {
					display: none;
				}
			}
		}
		div.esp-section {
			ul.esps {
				li {
					width: 48%;
					margin: 1%;
				}
			}
		}
		div.sv-dashboard {
			padding-bottom: 0;
			div.left {
				width: 100%;
				h3 {
					text-align: center;
				}
				div.divider {
					margin: 30px auto;
				}
				ul.values  {
					height: auto;
					margin-bottom: 40px;
					li {
						margin-bottom: 25px;
						height: auto;
						img {
							float: none;
							width: 10%;
							margin: 10px 45%;
						}
						div.text {
							float: none;
							width: 100%;
							margin-left: 0;
							label {
								width: 100%;
							}
							label, p {
								text-align: center;
							}
						}
					}
				}
				div.testimonial {
					img {
						width: 20%;
					}
					div.text {
						p {
							font-size: 12px;
						}
					}
				}
			}
			div.right {
				display: none;
			}
		}
		div.get-started-section {
			div.right {
				width: 100%;
				h3 {
					text-align: center;
				}
				div.divider {
					margin: 30px auto;
				}
				ul.values  {
					height: auto;
					margin-bottom: 40px;
					li {
						margin-bottom: 25px;
						height: auto;
						img {
							float: none;
							width: 10%;
							margin: 10px 45%;
						}
						div.text {
							float: none;
							width: 100%;
							margin-left: 0;
							label {
								width: 100%;
							}
							label, p {
								text-align: center;
							}
						}
					}
				}
				div.testimonial {
					img {
						width: 20%;
					}
					div.text {
						p {
							font-size: 12px;
						}
					}
				}
			}
			div.left {
				display: none;
			}
		}
		div.testimonial-section {
			ul.testimonials {
				li {
					div.center {
						p {
							width: 100%;
							font-size: 14px;
							line-height: 26px;
						}
					}
				}
			}
		}
		div.get-started-banner {
			div.get-started-wrapper {
				div.container {
					div.text {
						float: none;
						width: 100%;
						top: 35px;
						h3 {
							text-align: center;
						}
					}
					a.btn {
						float: none;
						margin: auto;
						margin-top: 50px;
					    display: block;
					    width: 55%;
					    max-width: 260px;
					}
				}
			}
		}
		div.main-about-section {
			div.main-wrapper {
				div.container {
					h2 {
						margin: 20px 10%;
					}
				}
			}
		}
		div.about-section {
			div.about-us {
				p {
					margin-left: 5%;
					margin-right: 5%;
				}
			}
		}
		div.values-section {
			ul.trust-values {
				margin-top: 35px;
				li {
					padding-bottom: 32%;
					width: 49%;
					div.text {
						label {
							font-size: 16px;
							line-height: 22px;
						}
					}
					div.text.back {
						label {
							font-size: 14px;
							line-height: 18px;
							padding: 0 10%;
						}
					}
				}
			}
		}
		footer {
			height: auto;
			#footerLogo {
				float: none;
				width: 46%;
				max-width: 280px;
				min-width: 250px;
				margin: auto;
				a.logo {
					display: block;
					width: 100%;
					img {
						width: 100%;
					}
				}
				p.copyright {
					width: 100%;
					margin: 0;
					margin-top: -6px;
					text-align: right;
					padding-right: 10%;
				}
			}
			#footerNav {
				float: none;
				margin: auto;
				ul, ul li {
					-webkit-transform: scaleY(-1);
					   -moz-transform: scaleY(-1);
					    -ms-transform: scaleY(-1);
					     -o-transform: scaleY(-1);
					        transform: scaleY(-1);

				}
				ul {
					margin-top: 10px;
					li {
						width: 100%;
						float: none;
						margin: 5px 0;
						text-align: center;
						zoom: 1;
						display: inline-block;
						*display: inline;
					}
					li.social {
						margin: 0;
						margin-top: 10px;
						position: relative;
					}
					li.social.fb {
						float: left;
						left: 39%;
					}
					li.social.tw {
						float: right;
						right: 39%;
					}
				}
			}
		}
	}
	body.get-started {
		div.get-started-form {
			padding-top: 20px;
			div.container {
				padding: 0;
				a.get-started-logo {
					margin-bottom: 25px;
				}
				form {
					width: 100%;
					margin: 0;
					.noBoxShadow;
					padding: 20px;
					h2 {
						margin: 0;
					}
				}
				div.login-prompt {
					margin: 10px 20%;
					p {
						text-align: center;
					}
				}
			}
		}
	}
	div.profile.container {
		margin-top: 80px;
		padding: 0 3%;
		border: none;
		p {
			margin: 0 1%;
		}
	}
	div.popup-logo {
		width: 36%;
	}
	div.survey-popup {
		p.question, p.prompt {
			width: 100%;
			font-size: 22px;
			text-align: center;
		}
		h3 {
			font-size: 34px;
		}
	}
	div#page-3 {
		div.close {
			top: -20px;
			right: 2%;
		}
	}
	div.login-footer {
		padding: 12px 30px !important;
		p {
			font-size: 12px !important;
		}
	}
}

/* Mobile Landscape Size to Tablet Portrait (devices and browsers) */
@media only screen and (min-width: 480px) and (max-width: 767px) {
}

/* Mobile Portrait Size to Mobile Landscape Size (devices and browsers) */
@media only screen and (max-width: 479px) {
	div.profile.container {
		margin-top: 22px;
	}
	body.sv-landing-page {
		h3 {
			font-size: 24px;
		}
		label {
			font-size: 16px;
		}
		div.divider {
			margin: 15px auto;
		}
		p {
			font-size: 14px;
		}
		header.landingPage {
			nav.container {
				display: flex;
				flex-direction: column;
				justify-content: center;
				a.logo {
					width: 80%;
					max-width: 270px;
					img {
						width: 100%;
					}
				}
				div.mobile-toggle {
					top: 27px;
					right: 10px;
					position: absolute;
				}
			}
		}
		div.right {
			ul.values  {
				li {
					img {
						float: none;
						width: 20%;
						margin: 10px 40%;
					}
					div.text {
						label {
						}
						label, p {
						}
					}
				}
			}
		}
		div.main-section {
			margin-top: -14px;
			height: auto;
			div.main-wrapper {
				height: auto;
				div.container {
					top: 0;
					padding-top: 25%;
					padding-bottom: 10%;
					h2 {
						width: 100%;
						margin: 0;
						font-size: 28px;
					}
					h3 {
						margin: 20px 5%;
						width: 90%;
						font-size: 16px;
						line-height: 32px;
					}
					a.btn {
						padding: 12px 30px;
						font-size: 16px;	
					}
				}
			}
		}
		div.sx-section {
			ul.sx-values {
				li {
					img {
						width: 20%;
						margin: 0 40%;
						margin-top: 40px;
					}
					p {
						width: 90%;
						margin: 0 5%;
					}
				}
			}
		}
		div.understand-section {
			ul.understand-values {
				li {
					p {
						width: 90%;
						margin: 0 5%;
						margin-top: 15px;
					}
				}
			}
			div.statement {
				p {
					width: 98%;
					margin: 0 1%;
					font-size: 12px;
					line-height: 18px;
				}
			}
		}
		div.esp-section {
			ul.esps {
				height: auto;
				li {
					padding: 15px 0;
					width: 100%;
					margin: 2% 0;
					float: none;
					img {
						max-height: 95px;
					}
				}
			}
		}
		div.values-section {
			ul.trust-values {
				margin-top: 25px;
				height: auto;
				li {
					float: none;
					width: 100%;
					margin: 1% 0;
					div.text {
						label {
							font-size: 15px;
							line-height: 28px;
						}
					}
					div.text.back {
						label {
							font-size: 13px;
							line-height: 20px;
							padding: 0 18%;
						}
					}
				}
			}
		}
		div.testimonial-section {
			ul.testimonials {
				li {
					width: 80%;
					margin: 0 10%;
					div.center {
						p {
							font-size: 14px;
							line-height: 26px;
						}
					}
				}
			}
			ul.circle-nav {
				width: 34%;
				margin: 25px 33%;
			}
		}
		div.get-started-banner {
			div.get-started-wrapper {
				div.container {
					div.text {
						top: 13px;
						padding: 0 8%;
					}
					a.btn {
						margin-top: 30px;
						min-width: 215px;
					}
				}
			}
		}
		div.main-about-section {
			div.main-wrapper {
				div.container {
					h2 {
						font-size: 30px;
						width: 100%;
						margin: 30px 0;
					}
				}
			}
		}
		div.form-section {
			height: 630px;
			div.container {
				form {
					width: 90%;
					margin: 20px 5%;
				}
			}
		}
		footer {
			#footerLogo {
				width: 65%;
				min-width: 200px;
				p.copyright {
					font-size: 8px;
				}
			}
			#footerNav {
				ul {
					li.social.fb {
						float: left;
						left: 34%;
					}
					li.social.tw {
						float: right;
						right: 34%;
					}
				}
			}
		}
	}
	body.get-started {
		div.get-started-form {
			div.container {
				padding: 0;
				form {
					width: 100%;
					margin: 0;
				}
			}
		}
	}
	form.login {
		div.login-footer {
			padding: 11px 20px !important;
			p {
				font-size: 10px !important;
			}
			p.forgot {
				width: 40%;
			}
			p.need {
				width: 60%
			}
		}
		div.remember {
			p.remember-me {
				input.remember {
					top: 0;
				}
			}
		}
	}
}

/* Small Phone */
@media only screen and (max-width: 329px) {
	body.sv-landing-page {
		h3 {
			font-size: 20px;
		}
		label {
			font-size: 14px;
		}
		header.landingPage {
			nav.container {
				a.logo {
					margin-top: 0;
					width: 65%;
				}
			}
		}
		div.main-section {
			div.main-wrapper {
				div.container {
					padding-top: 35%;
					h2 {
						font-size: 20px;
					}
					h3 {
						font-size: 12px;
						line-height: 22px;
					}
					a.btn {
						padding: 10px 35px;
						font-size: 14px;
					}
				}
			}	
					
		}
		div.main-about-section {
			div.main-wrapper {
				div.container {
					h2 {
						font-size: 28px;
						margin: 35px 0;
					}
				}
			}
		}
		div.about-section {
			div.about-us {
				width: 100%;
				margin: 0;
			}
		}
		footer {
			#footerLogo {
				width: 75%;
			}
			#footerNav {
				ul {
					li.social.fb {
						float: left;
						left: 30%;
					}
					li.social.tw {
						float: right;
						right: 30%;
					}
				}
			}
		}
	}
	body.get-started {
		div.get-started-form {
			div.container {
				a.get-started-logo {
					width: 240px;
				}
			}
		}
	}
}

