@charset "UTF-8";
/* Variables */
/*for clearfixing*/
.cf:before,
.cf:after {
  content: "";
  display: block; }
.cf:after {
  clear: both; }
.cf {
  zoom: 1;
  /*for old ie - triger has layout - ie sucks it */ }
/* 
 * https://github.com/jtrost/Complete-CSS-Reset
*/
body * {
  line-height: 1;
  box-sizing: border-box; }
/* Displays for HTML 5 */
article, aside, audio, command, datagrid, details, dialog, embed,
figcaption, figure, footer, header, hgroup, menu, nav, section, summary,
video, wbr {
  display: block; }
bdi, figcaption, keygen, mark, meter, progress, rp, rt, ruby, time {
  display: inline; }
/* Deprecated tags */
acronym, applet, big, center, dir, font, frame, frameset, noframes, s,
strike, tt, u, xmp {
  display: none; }
/* Reset styles for all structural tags */
a, abbr, area, article, aside, audio, b, bdo, blockquote, body, button,
canvas, caption, cite, code, col, colgroup, command, datalist, dd, del,
details, dialog, dfn, div, dl, dt, em, embed, fieldset, figure, form,
h1, h2, h3, h4, h5, h6, head, header, hgroup, hr, html, i, iframe, img,
input, ins, keygen, kbd, label, legend, li, map, mark, menu, meter, nav,
noscript, object, ol, optgroup, option, output, p, param, pre, progress,
q, rp, rt, ruby, samp, section, select, small, span, strong, sub, sup,
table, tbody, td, textarea, tfoot, th, thead, time, tr, ul, var, video {
  background: transparent;
  border: 0;
  font-size: 16px;
  font: inherit;
  margin: 0;
  outline: none;
  padding: 0;
  text-align: left;
  text-decoration: none;
  vertical-align: baseline; }
/* Miscellaneous resets */
ol, ul {
  list-style: none; }
blockquote, q {
  quotes: none; }
blockquote:before, blockquote:after, q:before, q:after {
  content: '';
  content: none; 
}
table {
  border-collapse: collapse;
  border-spacing: 0; 
}
body *{
    font-family: 'Nunito', sans-serif;
}
h2, h3,
p{
    line-height: 1.3em;
}

header {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  height: 100px;
  padding: 1rem;
  width: 100%; }
  @media only screen and (min-width: 768px) {
    header {
      height: 200px; } }
  header .container {
    max-width: 1400px;
    margin: 0 auto; }
    header .container h1 {
      width: 100px;
      height: 100px; }
      @media only screen and (min-width: 768px) {
        header .container h1 {
          width: 200px;
          height: 155px; } }
      header .container h1 a img {
        width: 100%;
        height: auto; }
  header.dark {
    position: relative;
    background-color: black;
    height: auto; }
    header.dark .container {
      text-align: center; }
      @media only screen and (min-width: 768px) {
        header.dark .container {
          display: flex;
          align-items: center;
          padding: 2rem 0; } }
      header.dark .container h1 {
        display: inline-block; }
      @media only screen and (min-width: 768px) {
        header.dark .container .the-content {
          width: calc(100% - 200px); } }
      header.dark .container p:first-of-type {
        color: white;
        font-size: 1.75rem;
        font-weight: bold;
        text-align: center;
        margin-bottom: .25em; }
        @media only screen and (min-width: 768px) {
          header.dark .container p:first-of-type {
            font-size: 2.5rem; } }
        header.dark .container p:first-of-type span {
          color: #FFCF01; }
      header.dark .container p {
        color: white;
        font-size: 1.25rem;
        text-align: center; }
        @media only screen and (min-width: 768px) {
          header.dark .container p {
            font-size: 1.75rem; } }
      @media only screen and (min-width: 768px) {
        header.dark .container h1 {
          float: left; } }

.hero{
    background-image: url(../img/hero.png);
    background-size: cover;
    background-position: 50% 50%;
    min-height: 400px;
    height: 80vh;
    padding: 3rem 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}
.hero p{
    color: white;
    text-align: center;
    margin-bottom: .5rem;
    font-size: 1.5rem;
    max-width: 500px;
    font-weight: 700;
}
.hero p span{
    line-height: 1em;
    color: #ffcf01;
    display: block;
    text-transform: uppercase;
    font-size: 2em;
    text-align: center;
    font-style: italic;
}
.hero .btn{
    background-color: #ffcf01;
    color: black;
    display: block;
    padding: .5rem 0;
    text-align: center;
    width: 100%;
    max-width: 300px;
    font-weight: 700;
    border-radius: 5px;
    margin: 0 auto;
    margin-bottom: .5rem;
}
.colleges .college{
    background-size: cover;
    background-position: 50% 50%;
    padding: 2.5rem 1rem;
    text-align: center;
	width:100%;
	display:block;
}
.colleges .college div{
	display:flex;
	align-items:center;
	justify-content:center;
}
.colleges .college img{
    max-width: 100%;
}
section.interested .intro{
    background-color: black;
    padding: 3rem 1rem;
    text-align: center;
}
section.interested .intro h2,
section.interested .intro p{
    color: white;
    text-align: center;
}
section.interested .intro h2{
    margin-bottom: 1rem;
    font-weight: 400;
    font-size: 1.5rem;
}
section.interested .intro h2 span{
    font-weight: 700;
    color: #ffcf01;
    display: block;
    text-align: center;
    font-size: 1.1em;
    text-transform: uppercase;
}
section.interested .intro p{
    max-width: 500px;
    margin: 0 auto;
}
section.interested .cta{
    background-color: #008d96;
    padding: 3rem 1rem;
    text-align: center;
}
section.interested .cta p:first-of-type{
    margin-bottom: 1rem;
}
section.interested .cta p strong{
    color: #ffcf01;
    text-transform: uppercase;
    font-size: 2rem;
}
section.interested .cta p{
    color: black;
    text-align: center;
    margin-bottom: 2rem;
}
section.interested .cta form{
    width: 100%;
    overflow: hidden;
}




.form-wrap{
	max-width:960px;
    margin: 0 auto;
}
.form-wrap form{
    max-width:600px;
    margin:0 auto;
}
.form-wrap form input{
    border:none;
    box-shadow:none;
}
.form-wrap form #collegeofinterest select{
    background-color:#a1a1a1;
    border:none;
    box-shadow:none;
    color:white;
}
@media only screen and (min-width:768px){
    .form-wrap form{
        max-width:100%;
    }
    .form-wrap form .form-group{
        width:calc(50% - 1rem);
        float:left;
    }
    .form-wrap form #email, #collegeofinterest{
        float:right;
    }
}


.for-students{
    background-color: #ebebeb;
    padding-top: 1rem;
}
.for-students .timeline{
    padding: 2rem 1rem;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}
.for-students .timeline .fifty-50{
    padding-top: 1rem;
    padding-bottom: 2rem;
    width:50%;
    float: left;
    border-bottom: 2px solid #008d96;
    overflow-wrap: break-word;
}
.for-students .timeline .fifty-50:nth-child(odd) h2,
.for-students .timeline .fifty-50:nth-child(odd) h3,
.for-students .timeline .fifty-50:nth-child(odd) p,
.for-students .timeline .fifty-50:nth-child(odd) a{
    text-align: right;
}

.for-students .timeline .fifty-50:nth-child(odd){
    border-right:3px solid #008d96;
    padding-right: 1rem;
}
.for-students .timeline .fifty-50:nth-child(even){
    position: relative;
    top: 2.5rem;
    padding-left: 1rem;
}
.for-students .timeline .fifty-50 h2{
    font-size: 1.3rem;
    color:#ffcf01;
    text-transform: uppercase;
    font-weight: 700;
    line-height: 1em;
    font-style: italic;
}


.for-students .timeline .fifty-50 h3{
    font-size: 1.2rem;
    color: #008d96;
    font-weight: 400;
    font-style: italic;
    line-height: 1em;
    text-transform: uppercase;
    margin-bottom: .25rem;
}
@media (min-width: 370px) {
	.for-students .timeline .fifty-50 h2{
		font-size: 1.6rem;
	}
	.for-students .timeline .fifty-50 h3{
		font-size: 1.5rem;
	}
}
@media (min-width: 768px) {
	.for-students .timeline .fifty-50 h2{
		font-size: 2rem;
	}
	.for-students .timeline .fifty-50 h3{
		font-size: 1.75rem;
	}
}
.for-students .timeline .fifty-50 a{
    color: black;
    text-decoration: none;
    font-weight: 700;
    display: block;
}
.for-students .timeline .fifty-50 a span {
	text-decoration: underline;
}
.for-students .timeline .fifty-50 a:after{
	font-family: 'Hiragino Mincho ProN';
    content: ' ▶';
	font-size:.9em;
    text-decoration: none;
}
.for-students .timeline .fifty-50 p{
    margin-bottom: .25rem;
}
.for-students .timeline .fifty-50 p strong{
    font-weight: bold;
}
.for-students .faq{
    padding: 0 1rem;
    padding-bottom: 2rem;
    text-align: center;
}
.for-students .faq h2{
    color: #ffcf01;
    font-size: 2rem;
    text-align: center;
    font-weight: 700;
    font-style: italic;
    margin-bottom: 1rem;
    font-size: 2.5rem;
}
.for-students .faq ul{
    margin-bottom: 1rem;
}
.for-students .faq ul ul{
    margin-top: .25rem;
}
.for-students .faq strong {
	font-weight: bold;
}
.for-students .faq ul li{
    text-align: center;
    max-width: 550px;
    margin: 0 auto;
    line-height: 1.3em;
}
.for-students .faq ul li:before{
    content: 'Q';
    font-weight: 700;
    font-size: 1.25em;
    color: #008d96;
    margin-right: .25em;
}
.for-students .faq ul ul li:before{
    content: 'A';
}
.testimonials{
    padding: 2rem 1rem;
    text-align: center;
}
.testimonials h2{
    color: #008d96;
    font-size: 2.5rem;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 1rem;
    font-weight: 700;
    line-height: .85em;
    font-style: italic;
}
.testimonials h2 span{
    display: block;
    text-align: center;
    font-size: .65em;
}
.testimonials p{
    text-align: center;
    margin-bottom: 1rem;
}
.vid-slider{
    position: relative;
    text-align: center;
    margin: 0 auto;
}
.vid-slider .slick-arrow{
    position: absolute;
    top: calc(50% - 20px);
    left: 2rem;
    width: 40px;
    color: transparent;
    height: 90px;
    display: block;
    border: none;
    box-shadow: none;
    z-index: 2;
    cursor: pointer;
    background-image: url(../img/prev.png);
    background-size: cover;
    background-position: 50% 50%;
}
.vid-slider .slick-arrow.slick-next{
    left: unset;
    background-image: url(../img/next.png);
    right: 2rem;
}
.slick-slide div{
    text-align: center;
    margin: 0 .5rem;
}
.vid-slider .item{
    max-width: 850px;
    position: relative;
    display: inline-block;
}
.vid-slider .item .vid-thumb{
    background-size: cover;
    background-position: 50% 50%;
    padding-bottom: 50%;
    height: 0;    
    width: 100%;
}
.vid-slider .item a{
    text-align: -999em;
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    text-indent: -999em;
    background-image: url('../img/play.png');
    background-repeat: no-repeat;
    background-size: 100px 100px;
    background-position: 50% 50%;
}
.slick-dots{
    display: inline-block;
    margin: 0 auto;
    text-align: center;
    margin-top: 1rem;
}
.slick-dots li{
    display: inline-block;
    background-color: rgba(0,0,0,.5);
    width: 1.5rem;
    height: 1.5rem;
    margin: 0 .25rem;
    border-radius: 50%;
    cursor: pointer;
}
.slick-dots li.slick-active{
    background-color: rgba(0,0,0,.75);
}
.slick-dots li button{
    opacity: 0;
    color: transparent;
}

    .hero .the-content a.btn:after {
      content: " ";
      display: inline-block;
      width: 12px;
      height: 22px;
      background: url(../img/button-arrow.png) center no-repeat;
      background-size: 12px auto;
      position: relative;
      top: 4px;
      margin-left: 20px;
    }

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

	
	
	
    .hero{
        background-image: url(../img/herodesk.png);
    }
    .hero p{
        font-size: 2rem;
    }
    .colleges{
        display: flex;
    }
    .colleges .college{
        width: 33.333%;
        float: left;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    section.interested .intro .container{
        max-width: 1200px;
        margin: 0 auto;
    }
    section.interested .intro h2 span,
    section.interested .intro h2,
    section.interested .intro p{
        text-align: left;
    }
    section.interested .intro h2{
        font-size: 2rem;
    }
    section.interested .intro h2 span{
        display: inline;
    }
    section.interested .intro p{
        max-width: none;
        margin: 0;
        font-size: 1.25rem;
        line-height: 1.3em;
    }
	section.interested .cta p{
		font-size:1.25rem;
	}
	.for-students{
		padding-bottom:2rem;
	}
    .for-students .timeline a,
    .for-students .timeline p,
    .for-students .faq ul li{
        font-size: 1.25rem;
    }
    .testimonials h2{
        font-size: 3rem;
    }
    .testimonials p{
        font-size: 1.25rem;
    }
}
@media only screen and (min-width:960px){
	
	.hero{
		min-height:600px;
	}
	
		.hero .the-content a.btn {
      margin: 0 .5rem 0 0;
padding: .75rem 28px .75rem 36px;
      font-weight: normal;
      font-size: .75em;
      transition: background-color .3s;
    }
     .hero .the-content a.btn:hover {
       background-color: #e6ba00;
     }
	
	
    .hero{
        justify-content: unset;
    }
    .hero .container{
        width: 100%;
        max-width: 1200px;
        margin: 0 auto;
    }
    .hero .the-content{
        max-width: 50%;
    }
    .hero .the-content span,
    .hero .the-content p{
        text-align: left;
    }
    .hero .the-content a{
        margin: 0;
        width: auto;
        padding: .5rem 1rem;
        display: inline-block;
    }
    .for-students .container{
        max-width: 1200px;
        margin: 0 auto;
        display: flex;
        align-items: center;
    }
    .for-students .timeline,
    .for-students .faq{
        width: 50%;
        float: left;
    }
    .for-students .faq{
        padding-left: 2rem;
    }
    .for-students .faq h2,
    .for-students .faq ul li{
        text-align: left;
    }
}





footer {
  background: #121212;
  text-align: center;
  color: #fff;
  padding: 20px 0;
  font-size: 12px;
  line-height: 1.5; }

footer div {
  color: #fff; }

@media screen and (min-width: 768px) {
  footer {
    padding: 30px 0;
    text-align: left; }

  footer::after {
    clear: both;
    content: "";
    display: block; } }
footer img {
  max-width: 250px;
  display: block;
  margin: 0 auto 1em; }

@media screen and (min-width: 768px) {
  footer img {
    max-width: 220px;
    margin: 0 0 1.5em;
    display: inline-block;
    float: left; } }
footer address {
  font-style: normal;
  font-weight: bold;
  margin: 0 0 1.5em; }

@media screen and (min-width: 768px) {
  footer address {
    float: left;
    clear: both;
    margin: 0 0 2.5em; } }
footer a,
footer #directedit a {
  color: #fff; }

footer a:hover,
footer #directedit a:hover {
  color: #bfbfbf; }

footer ul {
  padding: 0 0 1.5em;
  margin: 0; }

footer ul li {
  list-style: none; }

footer ul.footer-nav {
  -webkit-column-count: 3;
  column-count: 3; }

footer .container {
  max-width: 1320px;
  padding: 0 15px;
  margin: 0 auto;
  box-sizing: border-box; }

@media screen and (min-width: 768px) {
  footer ul.footer-nav {
    float: right;
    -webkit-column-count: 4;
    column-count: 4;
    -webkit-column-gap: 0;
    column-gap: 0; } }
@media screen and (min-width: 768px) {
  footer ul.sites-nav {
    clear: both;
    float: left; } }
footer ul.social-nav {
  padding: 0;
  margin: 0;
  font-size: 0; }

footer ul.social-nav li {
  list-style: none;
  padding: 0;
  margin: 0 0 0 10px;
  display: inline-block; }

footer ul.social-nav li a {
  background: #fff;
  display: inline-block;
  line-height: 40px;
  font-size: 22px;
  text-align: center;
  border-radius: 50%;
  color: #008A98;
  height: 40px;
  width: 40px;
  transition: all 0.3s ease-in-out; }

footer ul.social-nav li a:hover {
  opacity: .7; }

footer ul.social-nav {
  margin-bottom: 18px; }

@media screen and (min-width: 768px) {
  footer ul.social-nav {
    float: right;
    padding-top: 18px; } }
footer ul.social-nav li a {
  color: #000; }

@media screen and (min-width: 768px) {
  footer p {
    float: right;
    clear: right; } }

.ou-form .btn.btn-primary {
	background: #ffcf01;
	border-color: #ffcf01;
	color: #000;
	transition: all .3s;
}
.ou-form .btn.btn-primary:hover {
	background-color: #e6ba00;
	border-color: #e6ba00;
}
.ou-form form {
	text-align: right;
}
.ou-form input.form-control, .ou-form select.form-control {
    padding: 10px;
    height: 43px;
}
.ou-form .btn {
    padding: 12px 25px;
} 