/* Get some structure */
html, body {
  margin: 0;
  padding: 0;
}

p.announcement {
    height: 40px;
    line-height: 40px;
    background-color: #20ace8;
    color: #fff;
    text-align: center;
    margin: 0;
}

header {
  height: 100px;
  margin-bottom: 25px;
  color: #f6f6f6;
}

  #logo {
    position: absolute;
    top: 20px;
    left: 35px;
  }

  #progress {
    display: table;
    width: 33%;
    height: 100%;
    margin: 0 auto;
  }

  #progress .progressSection {
    display: table-cell;
    vertical-align: middle;
  }
  
    #progress .progressSection:nth-of-type(1),
    #progress .progressSection:nth-of-type(3) {
      width: 25%;
    }
  
    #progressBarOutline {
      padding: 2px;
      height: 20px;
      border-radius: 10px;
      border: 2px solid #f6f6f6;
    }
    
    #progressBarFill {
      width: 100%;
      height: 100%;
      border-radius: 6px;
      background-color: #4fc357;
    }
    
    #progressDaysLeft, #progressPercent {
      font-weight: 600;
      font-size: 24px;
    }
  
  header .buttonSmall {
    height: 30px;
    line-height: 30px;
    padding: 0 15px;
    color: white;
    background-color: #2899c3;
    border-radius: 4px;
    position: absolute;
    top: 35px;
    right: 35px;
    display: block;
    text-decoration: none;
    font-weight: 600;
    font-size: 12px;
  }

div.videoWrapper {
	position: relative;
	padding-bottom: 56.25%;
	height: 0;
}

div.videoWrapper iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

div#vidcolumns {
    position: relative;
    margin-top: 20px;
}

div#vidcolumns div iframe {
    position: relative;
    width: 100%;
    height: 282px;
}

#vidcolumns div#col1 {
    float: left;
    width: 49%;
}
#vidcolumns div#col2 {
    float: right;
    width: 49%;
}

div.container {
  width: 1024px;
  margin: 0 auto;
}

section[class*='Columns']:after {
  visibility: hidden;
	display: block;
	font-size: 0;
	content: " ";
	clear: both;
	height: 0;
}

section[class*='Columns'] div.column {
  float: left;
  padding: 2%;
}

  section[class*='Columns'] div.column:nth-of-type(1) { padding-left: 0; }

.threeColumns div.column { width: 30.66%; }
.threeColumns div.column:nth-of-type(3) { padding-right: 0; }
  
.fourColumns div.column { width: 22%; }
.fourColumns div.column:nth-of-type(4) { padding-right: 0; }
  
  
/* Pretty things up */
html {
  font-family: "proxima-nova", sans-serif;
  color: #343330;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-text-size-adjust: none;
  text-align: center;
}

ul.faq {
  text-align: left;
  list-style-type: none;
  
  columns: 2;
  -webkit-columns: 2;
  -moz-columns: 2;
  
  column-gap: 50px;
  -webkit-column-gap: 50px;
  -moz-column-gap: 50px;
  
  list-style-position: inside;
  
  margin-top: 40px 0;
	padding: 0;
}

ul.faq li {
  margin-bottom: 40px;
  -webkit-column-break-inside: avoid;
}

section.social a {
  text-decoration: none;
  color: #343330;
}

.fullWidthImage {
  width: 100%;
  height: auto;
}

.midi {
  text-align: left;
}

.midi p {
  font-size: 24px;
}

a {
  font-weight: 600;
  color: #20ace8;
}

header {
  background-color: #343330;
}

h1 {
  font-size: 36px;
  font-weight: 600;
}

small {
  font-size: 11px;
}

section.blueSection {
  width: 100%;
  margin: 0 0 50px -2%;
  padding: 2%;
  background-color: #20ace8;
  color: #fff;
  font-weight: 600;
}

div.circleNumber {
  width: 80px;
  height: 80px;
  border-radius: 40px;
  background-color: #fff;
  color: #20ace8;
  font-weight: 700;
  font-size: 50px;
  line-height: 80px;
  margin: 0 auto;
}

.largeButton {
  display: inline-block;
  padding: 20px 40px;
  font-family: "proxima-nova", sans-serif;
  font-size: 30px;
  font-weight: 600;
  text-align: center;
  color: #fff;
  background-color: #20ace8;
  border-radius: 10px;
  text-decoration: none;
  margin-bottom: 30px;
}

a small {
  position: relative;
  top: -10px;
}


/* Some mobile considerations */
@media only screen 
and (max-width : 1024px) {
      div.container {
        width: 90%;
      }

    div#vidcolumns div iframe { /* hack. set the videos in columns to an OK height */
        /*height: auto !important;*/
        height: 249px;
    }
}