 
/* -------------------------------- 

General Setup

-------------------------------- */
 
@import url("https://fonts.googleapis.com/css?family=Open+Sans:600,500,400,300");
@import url("https://fonts.googleapis.com/css?family=Raleway:400,500,300");

body {
  overflow-x: hidden;
	font-family: 'Open Sans', sans-serif;
	font-weight: 400;
}

.text-muted {
    color: #777;
}

.text-primary {
    color: #fed136;
}

p {
    font-size: 14px;
    line-height: 1.75;
}

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

a,
a:hover,
a:focus,
a:active,
a.active {
    outline: 0;
}

a {
    color: #1A91FF;
}

a:hover,
a:focus,
a:active,
a.active {
    color: #1A91FF;
    text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: 'Open Sans', sans-serif;
	font-weight: 400;
}

.pointer {
	cursor: pointer;
}


/* -------------------------------- 
	
Fonts

-------------------------------- */

.white-text {
	color: #ffffff !important;
}

.opacity-text {
	color: rgba(255, 255, 255, 0.75) !important;
}

.gray-text {
	color: #bdbdbd !important;
}

.blue-text {
	color: #1A91FF !important;
}

.hours-fonts-light {
	margin-top: 40px;
	font-family: "Open Sans", sans-serif;
	font-weight: 300;
	font-size: 33px;
}

.hours-fonts-normal {
	margin-top: 40px;
	font-family: "Open Sans", sans-serif;
	font-weight: 400;
	font-size: 33px;	
}

.hours-fonts-semi-bold {
	margin-top: 40px;
	font-family: "Open Sans", sans-serif;
	font-weight: 600;
	font-size: 33px;	
}

#download .section-main-text {
	margin-top: 20px;
}

.discount-text {
	font-family: "Open Sans", sans-serif;
	font-weight: 400;
	font-size: 21px;
	line-height: 1.5;
	color: #1A91FF;
}

.underline {
	text-decoration: underline !important;
}

.bold {
	font-weight: 600;
}





/****** 1st Form *****/

input[type=email]:focus, textarea:focus {
  outline: none;
}

.input-group {
  display: none !important;
}

form {
  width: 100%;
}

.first-field {
  float: left;
  width: 100%;
  color: #3C414A;
  border-radius: 6px;
  -moz-border-radius: 6px;
  -webkit-border-radius: 6px;
  background-clip: padding-box;
  background-color: rgba(255,255,255,1.0);
  padding: 15px 15px;
  box-sizing: border-box;
  font-size: 20px;
  font-family: 'Open Sans', sans-serif;
  font-weight: 400;
  border: 1px solid #d3d3d3;
/*  box-shadow: 0 0 14px rgba(0,0,0,0.1); */
  outline: none;
}


.first-field::-webkit-input-placeholder {
  font-size: 20px;
  font-family: 'Open Sans', sans-serif;
  font-weight: 400;
  color: #778491;
}

.first-field:-moz-placeholder { /* Firefox 18- */
  font-size: 20px;
  font-family: 'Open Sans', sans-serif;
  font-weight: 400;
  color: #778491;

}

.first-field::-moz-placeholder {  /* Firefox 19+ */
  font-size: 20px;
  font-family: 'Open Sans', sans-serif;
  font-weight: 400;
  color: #778491;
  
}

.first-field:-ms-input-placeholder {  
  font-size: 20px;
  font-family: 'Open Sans', sans-serif;
  font-weight: 400;
  color: #778491;
}


/* -------------------------------- 
	
Buttons

-------------------------------- */

.sign-in-button {
	padding: 10px 25px !important;
    border: 2px solid #1A91FF;
    border-radius: 6px;
    font-size: 14px;
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
    background-color: transparent !important;
    color: #1A91FF;
    margin-top: 11px !important;
    margin-left: 20px;
    -moz-transition: all 0.2s ease-in-out;
	-webkit-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out;
}

.sign-in-button:hover {
	background-color: #1A91FF !important;
    color: #ffffff !important;
}

.sign-up-button {
	padding: 16px 40px;
	margin-top: 20px;
	margin-bottom: 45px;
	width: 100%;
	border: none;
	border-radius: 6px;
	font-size: 20px;
	font-family: 'Open Sans', sans-serif;
	font-weight: 400;
	background-color: #1A91FF;
	color: #fff;
	float: left;
	-moz-transition: all 0.2s ease-in-out;
	-webkit-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out;
}

.sign-up-button:hover {
	text-decoration: none; 
	background-color: #806DAF;
    color: #ffffff;
}

.sign-up-button2 {
	padding: 16px 40px;
	margin-top: 20px;
	width: 60%;
	border: none;
	border-radius: 6px;
	font-size: 20px;
	font-family: 'Open Sans', sans-serif;
	font-weight: 400;
	background-color: #1A91FF;
	color: #fff;
	margin: 0 auto;
	margin-bottom: 25px;
	display: block;
	-moz-transition: all 0.2s ease-in-out;
	-webkit-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out;
}

.sign-up-button2:hover {
	text-decoration: none; 
	background-color: #806DAF;
    color: #ffffff;
}

#status-button {
	padding: 15px 40px;
    border: 2px solid #1A91FF;
    border-radius: 40px;
    font-size: 20px;
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
    color: #1A91FF;
    background-color: #ffffff;
    display: block;
    margin: 0 auto;
    margin-top: 30px;
    -moz-transition: all 0.2s ease-in-out;
	-webkit-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out;
}

#status-button:hover {
	text-decoration: none; 
	background-color: rgba(82, 161, 235, 1.0);
    color: #ffffff;
}

.play-button {
	padding: 10px 45px !important;
    border: 2px solid #1A91FF;
    border-radius: 40px;
    font-size: 18px;
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;	
    background-color: transparent !important;
    color: #1A91FF;
    margin-top: 11px !important;
    margin: 0 auto;
    display: block;
    text-align: center;
    -moz-transition: all 0.2s ease-in-out;
	-webkit-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out;
}

.play-button:hover {
	background-color: rgba(25, 144, 255, 0.10) !important;
    color: #1A91FF !important;
}

.play-button-image {
	width: 30px;
	height: auto;
	margin-right: 10px;
}

.nav-links:hover {
	color: #1a7dd8 !important;
}



/* -------------------------------- 
  
Top Container

-------------------------------- */

.nav-logo {
  width: 140px;
  padding-top: 0px;
}

.top-container {
  height: 100vh;
  margin-bottom: 80px;
}

.main-text {
  font-family: 'Open Sans', sans-serif;
    font-weight: 400;
    font-size: 36px;
    color: #3C414A;
    text-align: left;
}

.main-subtext {
  margin-top: 0px;
    margin-bottom: 25px;
  font-family: 'Open Sans', sans-serif;
  font-weight: 300;
    font-size: 22px;
    text-align: left;
    line-height: inherit;
    color: #778491;
}

.team-link {
    margin-top: 20px;
    margin-bottom: 25px;
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
    font-size: 15px;
    text-align: center;
    text-decoration: underline;
    line-height: inherit;
    color: #778491;
}

.team-link:hover {
  color: #1A91FF;
}

.top-link {
    margin-top: 20px;
    margin-bottom: 25px;
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
    font-size: 15px;
    text-align: center;
    text-decoration: underline;
    line-height: inherit;
    color: #ffffff;
}

.top-link:hover {
  color: #1A91FF;
}


.main-illustration {
/*
  width: 112%;
    height: auto;
    margin: 0 auto;
    margin-top: -20px;
    margin-left: -200px;
    margin-bottom: 20px;
*/

    width: 155%;
    height: auto;
    margin: 0 auto;
    margin-top: 100px;
    margin-left: -620px;
    margin-bottom: 20px;

}

.sign-up-div {
  margin-top: 150px;
}




/****** 2nd Form *****/

input[type=email]:focus, textarea:focus {
 	outline: none;
}

.input-group {
	display: none !important;
}

form {
  width: 100%;
}

.second-field {
	width: 60%;
	color: #3C414A;
	border-radius: 6px;
	-moz-border-radius: 6px;
	-webkit-border-radius: 6px;
	background-clip: padding-box;
	background-color: rgba(255,255,255,1.0);
	padding: 15px 15px;
	box-sizing: border-box;
	margin: 0 auto;
	margin-top: 30px;
	margin-bottom: 20px;
	display: block;
	font-size: 20px;
	font-family: 'Open Sans', sans-serif;
	font-weight: 400;
	border: none;
/* 	box-shadow: 0 0 14px rgba(0,0,0,0.1); */
	outline: none;
}


.second-field::-webkit-input-placeholder {
	font-size: 20px;
	font-family: 'Open Sans', sans-serif;
	font-weight: 400;
	color: #778491;
}

.second-field:-moz-placeholder { /* Firefox 18- */
	font-size: 20px;
	font-family: 'Open Sans', sans-serif;
	font-weight: 400;
	color: #778491;

}

.second-field::-moz-placeholder {  /* Firefox 19+ */
	font-size: 20px;
	font-family: 'Open Sans', sans-serif;
	font-weight: 400;
	color: #778491;
  
}

.second-field:-ms-input-placeholder {  
	font-size: 20px;
	font-family: 'Open Sans', sans-serif;
	font-weight: 400;
	color: #778491;
}

.arrow {
	position: absolute;
	bottom: -110px;
	right: 0;
	left: 0;
	margin: 0 auto;
	width: 60px;
	height: 60px;
	border-radius: 50%;
	background-color: #1A91FF;
	box-shadow: 0 15px 50px rgba(0, 0, 0, .2)
}

.glyphicon-chevron-down {
	font-size: 24px;
	color: #ffffff;
	margin-top: 18px;
	margin-right: 2px;
}



/* -------------------------------- 
	
Vimeo

-------------------------------- */

@-webkit-keyframes close-before {
  0% {
    margin-top: 0;
  }
  100% {
    margin-top: -10px;
  }
}

@keyframes close-before {
  0% {
    margin-top: 0;
  }
  100% {
    margin-top: -10px;
  }
}
@-webkit-keyframes close-after {
  0% {
    margin-top: -10px;
  }
  100% {
    margin-top: 0px;
  }
}
@keyframes close-after {
  0% {
    margin-top: -10px;
  }
  100% {
    margin-top: 0px;
  }
}

.main-video {
	background: rgba(0, 0, 0, 0.4);
	border: none;
	border-radius: 50%;
	height: 160px;
	width: 160px;
	color: #ffffff;
	display: block;
	margin: 0 auto;
	padding: 30px;
	position: absolute;
	text-transform: uppercase;
	top: 42%;
	left: 5%;
	
	-moz-transition: all 0.2s ease-in-out;
	-webkit-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out;
}

.main-video:hover {
	background: rgba(0, 0, 0, 0.6);
}

.main-video .fa-play {
	font-size: 50px;
	margin-left: 10px;
}

#vimeo-pop-container {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 9999999;
  background: rgba(0, 0, 0, 0.75);
}
#vimeo-pop-container div {
  height: 450px;
  width: 800px;
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
#vimeo-pop-container .vimeo-close {
  background-color: transparent;
  border: 3px solid white;
  cursor: pointer;
  margin-bottom: 10px;
  height: 40px;
  width: 40px;
  border-radius: 50%;
  position: absolute;
  bottom: 100%;
  right: 0;
  -webkit-transition: 200ms background-color;
  transition: 200ms background-color;
}
#vimeo-pop-container .vimeo-close:before, #vimeo-pop-container .vimeo-close:after {
  content: '';
  background: white;
  border-radius: 3px;
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  -webkit-transition: 500ms all;
  transition: 500ms all;
}
#vimeo-pop-container .vimeo-close:before {
  height: 20px;
  width: 2px;
  margin-left: -1px;
  margin-top: -10px;
}
#vimeo-pop-container .vimeo-close:after {
  height: 2px;
  width: 20px;
  margin-left: -10px;
  margin-top: -1px;
}
#vimeo-pop-container .vimeo-close:hover {
  background-color: rgba(0, 0, 0, 0.25);
}
#vimeo-pop-container .vimeo-close.closing:before {
  -webkit-transform: rotate(450deg);
          transform: rotate(450deg);
  margin-left: -2px;
  margin-top: 0;
  -webkit-animation: close-before 500ms ease 500ms 1 forwards;
          animation: close-before 500ms ease 500ms 1 forwards;
}
#vimeo-pop-container .vimeo-close.closing:after {
  -webkit-transform: rotate(540deg);
          transform: rotate(540deg);
  margin-left: -11px;
  margin-top: -10px;
  -webkit-animation: close-after 500ms ease 500ms 1 forwards;
          animation: close-after 500ms ease 500ms 1 forwards;
}
#vimeo-pop-container iframe {
  border: 6px solid white;
  height: 100%;
  width: 100%;
}




/* -------------------------------- 
	
Rotating Words

-------------------------------- */

.hours-filter {
  margin: 0 auto;
  text-align: center;
}

.hours-filter li {
  position: relative;
  display: inline-block;
  margin: 0;
}

.hours-words-wrapper {
  display: inline-block;
  position: relative;
  text-align: left;
  width: 530px;
}

.hours-words-wrapper h1 {
  display: inline-block;
  position: absolute;
  white-space: nowrap;
  left: 0;
  top: 0;
}

.hours-words-wrapper h1.is-visible {
  position: relative;
}

.hours-headline {
	height: 80px;
    margin-top: -20px;
}


/* slide */
.hours-headline.slide span {
  display: inline-block;
  padding: .2em 0 .3em;
}
.hours-headline.slide .hours-words-wrapper {
  overflow: hidden;
  vertical-align: top;
}
.hours-headline.slide h1 {
  opacity: 0;
  top: .2em;
}
.hours-headline.slide h1.is-visible {
  top: 0;
  opacity: 1;
  animation: slide-in 0.6s;
}
.hours-headline.slide h1.is-hidden {
  animation: slide-out 0.6s;
}

@keyframes slide-in {
  0% {
    opacity: 0;
    transform: translateY(-100%);
  }
  60% {
    opacity: 1;
    transform: translateY(20%);
  }
  100% {
    opacity: 1;
    transform: translateY(0%);
  }
}
@keyframes slide-out {
  0% {
    opacity: 1;
    transform: translateY(0%);
  }
  60% {
    opacity: 0;
    transform: translateY(120%);
  }
  100% {
    opacity: 0;
    transform: translateY(100%);
  }
}


.price-box {
	width: 90%;
	height: 440px;
	border: 1px solid transparent;
	background-color: #ffffff;
	margin: 0 auto;
	box-shadow: 0 15px 50px rgba(0, 0, 0, .1);
    border-radius: 8px;
    
    -moz-transition: all 0.2s ease-in-out;
	-webkit-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out;
}

.price-box:hover {
	box-shadow: 0 15px 50px rgba(0, 0, 0, .2);
}

.price-main-text {
    font-family: 'Open Sans', sans-serif;
    font-weight: 500;
    font-size: 28px;
    color: #3C414A;
    text-align: center;
    margin-top: 40px;
}

#pro-basic-top {
	margin-top: 40px;
}

.price-subtext {
    font-family: 'Open Sans', sans-serif;
    font-weight: 500;
    font-size: 18px;
    color: #778491;
    text-align: center;
    margin: 0 auto;
    margin-top: 30px;
    line-height: 1.5;
    width: 82%;
}

.price-total {
    font-family: 'Open Sans', sans-serif;
    font-weight: 500;
    font-size: 30px;
    color: #1A91FF;
    text-align: center;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 50px;
    margin-left: auto;
    margin-right: auto;
}

.pro-badge {
	width: 100px;
    height: auto;
    margin: 0 auto;
    display: block;
    margin-top: 40px;
}

.pro-teams-badge {
	width: 100px;
    height: auto;
    margin: 0 auto;
    margin-left: 10px;
    margin-top: -3px;
}




/* -------------------------------- 
	
Sections

-------------------------------- */

#section1 {
	background-image: url("/images/large-iphone2@2x.png");
	background-repeat: no-repeat;
	background-position: left -180px top 80px;
	background-size: 800px;
	height: 850px;
	margin-bottom: 80px;
}

.section1-mobile-image {
	display: none;
}

#section2 {
	background-image: url("/images/large-imac@2x.png");
	background-repeat: no-repeat;
	background-position: right -100px top 120px;
	background-size: 615px;
    height: 660px;
    margin-bottom: 80px;
}

#section2 .section-main-text {
	margin-top: 40px;
}

#section3 {
	background-image: url("/images/large-timeline.gif"), url("/images/large-macbook@2x.png");
    background-repeat: no-repeat;
    background-position: left 37px top 252px, left -130px top 180px;
    background-size: 431px, 770px;
    height: 700px;
    margin-bottom: 80px;
}

#section3 .section-main-text {
	margin-top: 80px;
}

#section4 {
	background-image: url("/images/all-devices@2x.png");
	background-repeat: no-repeat;
	background-position: center 150px;
	background-size: 100%;
	height: 1060px;
}

#section5{
	background-image: linear-gradient(
      rgba(0, 0, 0, 0.65), 
      rgba(0, 0, 0, 0.65)
    ), url("/images/signup-bg.jpg");
	background-repeat: no-repeat;
	background-size: cover;
	height: 830px;
}

#section5 .section-main-text {
	margin-top: 60px;
}

#section6 {
	padding-bottom: 200px;
	background-color: #FBFBFB;
}

#section6 .section-main-text {
	margin-top: 60px;
	margin-bottom: 60px;
}

.section7 {
	background-image: url("/images/large-teams-mac@2x.png") !important;
}

#container1 {
	margin-top: 250px;
}

#container2 {
	margin-top: 140px;
}

#container3 {
	margin-top: 150px;
}

#container4 {
	margin-top: 430px;
}

#container5 {
	margin-top: 180px;
}

#container6 {
	margin-top: 80px;
}


.section-main-text {
	font-family: 'Open Sans', sans-serif;
    font-weight: 400;
    font-size: 36px;
    color: #3C414A;
    text-align: center;
    margin-top: 40px;
}

.section-main-subtext {
    margin-bottom: 25px;
	font-family: 'Open Sans', sans-serif;
	font-weight: 300;
    font-size: 24px;
    text-align: left;
    line-height: inherit;
    color: #778491;
    text-align: center;
}

.section-illustrations {
	width: 80%;
	height: auto;
	margin: 0 auto;
	margin-top: 50px;
	margin-bottom: 20px;
	display: block;
}

.section-illustrations-large {
	width: 100%;
	height: auto;
	margin: 0 auto;
	margin-top: 12%;
	margin-bottom: 20px;
	display: block;
}

.devices-illustration {
	width: 50%;
	height: auto;
	margin: 0 auto;
	margin-top: 60px;
	display: block;
}

.status-illustration {
    width: 60%;
    height: auto;
    margin: 0 auto;
    margin-top: 40px;
    margin-bottom: 40px;
    display: block;
}








/* -------------------------------- 

Footer

-------------------------------- */

footer {
  	right: 0;
  	bottom: 0;
  	left: 0;
  	text-align: center;
	background-color: none;
	
	margin-top: 180px;
}

footer a {
	color: #ffffff;
	-moz-transition: all 0.2s ease-in-out;
	-webkit-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out;
}

footer a:hover {
	color: #1A91FF;
}

.bull {
	padding: 0 16px;
}

.footer-line {
	float: left;
	color: #ffffff;
	font-size: 14px;
	font-weight: 500;
	padding-top: 20px;
	padding-left: 50px;
	padding-right: 20px;
	padding-bottom: 20px;
	line-height: 30px !important;
}

.footer-links-line {
	float: right;
	color:rgba(0, 0, 0, 0.40);
	font-size: 14px;
	font-weight: 500;
	padding-top: 20px;
	padding-left: 20px;
	padding-right: 50px;
	padding-bottom: 20px;
	line-height: 30px !important;
}






/* -------------------------------- 

Large Screens

-------------------------------- */

@media only screen and (min-width: 1201px) {
	
	#everywhere-text{
		margin-top: 120px;
	}
}

@media only screen and (min-width: 1400px) {
	
	#everywhere-text{
		margin-top: 170px;
	}
	
	.vimeo-launch {
	  top: 45%;
	  left: -4%;
	}
	
}


/* -------------------------------- 

Mobile CSS

-------------------------------- */


@media only screen and (max-width: 1200px) {
	
	.vimeo-launch {
	  top: 63%;
	  left: 40%;
	}
	
	.sign-up-div {
		margin-top: 40px;
	}
	
	.main-illustration {
		margin-top: 380px;
		margin-left: 0px;
	    width: 100%;
	}
	
	.hours-words-wrapper {
    	text-align: center;
	}
	
	.main-text {
		margin-top: -20px;
		text-align: center;
	}	
	
	.main-subtext {
		text-align: center;
	}
	
	.first-field {
		float: none;
		width: 70%;
		margin-bottom: 20px;
	}
	
	.sign-up-button {
		float: none;
		width: 70%;
		margin: 0 auto;
	}
	
	.section-main-text {
		margin-top: 40px;
	}
	
	#section1 {
	    background-position: left -280px top 100px;
	    height: 840px;
	    margin-top: 200px;
	}
	
	#section2 {
		background-position: right -230px top 80px;
	}
	
	#section3 {
		background-position: left -108px top 252px, left -275px top 180px;
	}

	.section1-mobile {
		width: 50%;
		float: right;
		margin-left: 0px;
	}
	
	.section2-mobile {
		width: 50%;
		float: left;
		margin-left: 0px;
	}
	
	.section3-mobile {
		width: 60%;
		float: right;
		margin-left: 0px;
	}
	
	.arrow {
		display: none;
	}
	
	#section6 {
		padding-bottom: 120px;
	}
	
	.price-box {
    	margin-bottom: 40px;
	}

}

@media only screen and (max-width: 994px) {
	
	#vimeo-pop-container iframe {
	    height: 90%;
	    width: 85%;
	    margin: 0 auto;
	    display: block;
	}
	
	#vimeo-pop-container .vimeo-close {
		right: 60px;
	}
	
	#everywhere-text {
    	margin-top: 0px;
	}
	
	#section1 {
	    background-position: left -320px top 100px;
	    height: 840px;
	    margin-top: 200px;
	}
	
	#section3 {
		background-position: left -198px top 202px, left -365px top 130px;
	    height: 620px;
	    margin-top: 200px;
	}
	
		
	#section3 .section-main-text {
   		margin-top: 20px;
	}
	
	
	#section5 {
		height: 900px;
	}
}

@media only screen and (max-width: 845px) {
	
	#everywhere-text {
    	margin-top: 200px;
	}

}

@media only screen and (max-width: 767px) {
	
	.vimeo-launch {
	  top: 7%;
	  left: 0;
	  right: 0;
	  margin: 0 auto;
	}
	
	#vimeo-pop-container iframe {
	    height: 80%;
	    width: 75%;
	    margin: 0 auto;
	    display: block;
	}
	
	#vimeo-pop-container .vimeo-close {
		right: 80px;
	}
	
	.sign-up-div {
		margin-top: 20px;
	}
	
	.navbar-default .navbar-toggle {
/* 		display: none; */
	}
	
	.sign-in-button {
		margin-top: 22px !important;
		margin-left: 0px;
		width: 80%;
		margin: 0 auto;
	}
	
	.navbar-default .nav li a {
		text-align: center;
	}
	
	.navbar-collapse {
		margin-bottom: 30px;
	}
	
	.nav-logo {
		margin-left: 40px;
	}
	
	.navbar-default .navbar-brand {
	    margin: 0 auto;
	    display: block;
	    text-align: center;
	    float: none;
	}
	
	.main-illustration {
		margin-top: 0px;
		margin-bottom: 50px;
	    width: 100%;
	}
	
	.main-text {
    	margin-top:-30px;
		text-align: center;
		font-size: 26px;
		width: 100%;
	}
	
	.hours-words-wrapper {
		width: 100%;
	}
	
	.hours-headline.slide h1 {
    	font-size: 26px;
	}
	
	.section-main-text {
    	margin-top: 440px;
	}
	
	.first-field {
		width: 100%;
	}
	
	.sign-up-button {
		width: 100%;
	}
	
	.second-field {
		width: 100%;
	}
	
	.sign-up-button2 {
		width: 100%;
	}
	
	#container1 {
		margin-top: 0px;
	}

	#section1 {
		height: 1100px;
		margin-top: -130px;
		
		background-position: left -220px top 100px;
	}
	
	#section1 .section-main-text{
		margin-top: 880px;
	}
	
	#section2 {
		height: 930px;
		margin-top: 230px;
	}
	
	#section2 .section-main-text {
    	margin-top: 480px;
	}
	
	#section3 {
		height: 850px;
		margin-top: 100px;
	}
	
	#section3 .section-main-text {
		margin-top: 440px;
	}
	
	#section4 {
		height: 670px;
		margin-top: 100px;
	}
	
	#section5 {
		height: 900px;
		margin-top: 100px;
	}
	
	#everywhere-text {
    	margin-top: 100px;
	}
	
	.section1-mobile {
		width: 100%;
		float: none;
		margin: 0 auto;
		text-align: center;
	}
	
	.section2-mobile {
		width: 100%;
		float: none;
		margin: 0 auto;
		text-align: center;
	}
	
	.section3-mobile {
		width: 100%;
		float: none;
		margin: 0 auto;
		text-align: center;
	}

	
	footer {
		margin-top: 80px;
	}
	
	.footer-links-line {
		float: none;
		padding: 0;
	}
	
	.footer-line {
		float: none;
		padding: 0;
	}

}

@media only screen and (max-width: 620px) {
	
	#vimeo-pop-container iframe {
	    height: 60%;
	    width: 45%;
	    margin: 0 auto;
	    display: block;
	}
	
	#vimeo-pop-container .vimeo-close {
		right: 200px;
	}
}


@media only screen and (max-width: 400px) {
	
	.main-illustration {
		margin-top: 80px;
	    width: 90%;
	}
	
	.main-text {
		text-align: center;
	}
	
	.vimeo-launch {
	    top: 28%;
	    left: 0;
	    right: 0;
	    margin: 0 auto;
	}
	
	#section1 {
		margin-top: 10px;
	}
	
	#section5 {
		height: 1100px;
		margin-top: 100px;
	}
}
