/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section, main {
	display: block;
}
body {
	line-height: 1;
}
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;
}
p.disclaimer{font-size:1em !important; font-style:italic; line-height:1;}
strong{font-weight:900;}
/* -------------------------------- 

Primary style

-------------------------------- */
*, *::after, *::before {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

html, body {
  height: 100% !important;
}

html {
  font-size: 62.5%;
}

body {
  font-size: 1.3rem;
  font-family: 'Nunito Sans', sans-serif;
	color:#fff;
  background-color: #f2e6cd;
}
@media only screen and (min-width: 1048px) {
  body {
    /* hide horizontal scroll bar in IE */
    overflow-x: hidden;
  }
}

a {
  color: #93a748;
  text-decoration: none;
}

@font-face {
    font-family: 'keylock_fighterregular';
    src: url('https://www.coloradomesa.edu/fonts/keylock-fighter/keylock_fighter-webfont.woff2') format('woff2'),
         url('https://www.coloradomesa.edu/fonts/keylock-fighter/keylock_fighter-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}

.keylock-fighter{
	font-family: 'keylock_fighterregular', 'Nunito Sans', sans-serif;
}
.nunito{
	font-family: 'Nunito Sans', sans-serif;
}

h3.sub-title{
	text-transform: uppercase;
    font-weight: 900;
    font-size: 1.8rem;
	margin-top:15px;
	display:inline-block;
	position:relative;
}
h3.sub-title:before, h3.sub-title:after{
	    content: '';
    height: 18px;
    width: 66px;
    background-image: url(https://www.coloradomesa.edu/landing-images/2324/double-line.png);
    display: block;
    position: absolute;
    left: -80px;
    background-repeat: no-repeat;
    top: 6px;
}
h3.sub-title:after{right:-80px; left:auto;}
.logo{margin-top:15px;}



.sticky-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: #262e2f;
  height: 80px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
	transform: translateY(-100%); /* Start hidden above the viewport */
  transition: transform 0.5s; /* Add transition for the paintbrush effect */
  
  z-index: 999;
}
.sticky-nav button, .sticky-nav a{font-size:1.1rem;}
.sticky-nav.is-visible {
  transform: translateY(0); /* Move the nav into the viewport when visible */
}
@media only screen and (min-width: 350px) {
.sticky-nav img{
	width: 131px;
    height: auto;
}
}

 #topSection {
      opacity: 0;
      visibility: hidden;
      transition: opacity 0.5s ease;
    }

/* Add the CSS class for the visible top section */
    #topSection.is-visible {
      opacity: 1;
      visibility: visible;
    }

.icon-group {margin-top:30px;}
.icon-group svg{
	    display: block;
    margin: 0 auto;
    fill: #fff;
    margin-bottom: 10px;
    height: 80px;
    width: 80px;
}
.icon-group strong{
	font-size:1.7rem;
	margin-bottom:20px;
	display:block;
}
/* -------------------------------- 

Main Components 


.cd-header {
  position: relative;
  height: 100%;
  background-color: #93a748;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  z-index: 1;
}
.cd-header h1 {
  width: 90%;
  color: #f2e6cd;
  text-align: center;
  font-size: 2.2rem;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: absolute;
  left: 50%;
  top: 50%;
  bottom: auto;
  right: auto;
  -webkit-transform: translateX(-50%) translateY(-50%);
  -moz-transform: translateX(-50%) translateY(-50%);
  -ms-transform: translateX(-50%) translateY(-50%);
  -o-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
}
@media only screen and (min-width: 992px) {
  .cd-header h1 {
    font-size: 3.6rem;
    font-weight: 300;
  }
}
-------------------------------- */
.cd-fixed-background {
  position: relative;
  padding: 3em 5% 0;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}
.cd-fixed-background h2, .cd-fixed-background p {
  color: #fff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.cd-fixed-background h1 {
  font-size: 2.8rem;
  /*margin-bottom: 1em;*/
}
.cd-fixed-background h2 {
  font-size: 2.4rem;
  margin-bottom: .4em;
}
.cd-fixed-background h2 .nunito{font-weight:900;}
.cd-fixed-background p {
  line-height: 1.3;
  font-family: 'Nunito Sans', sans-serif;
	font-weight:400;
}
.cd-fixed-background .light-background h2, .cd-fixed-background .light-background p {
  color: #262e2f;
}
.cd-fixed-background .cd-content::after {
  /* phone image on small devices */
  content: '';
  display: block;
  width: 100%;
  padding: 51% 0;
  margin: 2em auto 0;
}

.cd-fixed-background .cd-content::after{background-size: 100% auto;}


.cd-content{text-align:center;}


.success-heart .undermark{    
		font-size: .5em;
    	/*padding-bottom: 10px;*/
    	vertical-align: super;
		background-image: url("https://www.coloradomesa.edu/landing-images/2324/underline.png");
		background-repeat:no-repeat;
		background-position:bottom center;
		background-size:contain;
	}

@media only screen and (min-width: 992px) {
	
  .cd-fixed-background {
    min-height: 100%;
    padding: 0;
  }
 .cd-fixed-background h1 {
    font-size: 5.8rem;
    font-weight: 300;
  }
  .cd-fixed-background h2 {
    font-size: 3.6rem;
    font-weight: 300;
  }
  .cd-fixed-background p {
    font-size: 1.8rem;
    line-height: 1.3;
  }
  .cd-fixed-background .cd-content {
    width: 50%;
    position: absolute;
    right: 5%;
    top: 50%;
    bottom: auto;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
  }
  .cd-fixed-background .cd-content::after {
    display: none !important;
  }
	
	

	
	
	.success-heart .bottom-line{font-size:1.6em;}
	
	
	section.main-section .cd-content{
		right: 0;
		top: 0;
		bottom: 0;
		transform: none;
		background: rgba(134, 0, 55, .90);
		padding-right: 5%;
		padding-left: 5%;
		width: 41%;
		text-align: center;
		/*position:fixed;*/
	}
	section.main-section .cd-content:before{
		content:'';
		width:9%;
		height:100%;
		background-image:url('https://www.coloradomesa.edu/landing-images/2324/paint-stripe.png');
		background-size:cover;
		background-position:left;
		top:0;
		bottom:0;
			left:-9%;
		position:absolute;
	}
	section.main-section .cd-content .center{
		position:absolute;
		top:50%;
		 -webkit-transform: translateY(-50%);
		-moz-transform: translateY(-50%);
		-ms-transform: translateY(-50%);
		-o-transform: translateY(-50%);
		transform: translateY(-50%);
		left:13%;
		right:13%;
	}
	
}




@media only screen and (max-width: 1649px) { /*Set height fixes overflow issues for sections that have tall content that goes beyond the height of the screen.*/
	.cd-fixed-background.set-height {overflow:hidden;} /*fix the float overflow*/
	.cd-fixed-background.set-height .cd-content {
		position: relative;
		transform: none;
		right: 8%;
		float: right;
		margin-top:50px;
		margin-bottom:50px;
	  }
	
	.cd-fixed-background h1{font-size: 3rem; /*margin-bottom: 0.3em;*/}
}


@media only screen and (min-width: 1048px) {
  .cd-fixed-background {
    background-attachment: fixed;
  }
  .cd-fixed-background .cd-content {
    width: 42%;
    right: 10%;
  }
}

.cd-vertical-nav {
  position: fixed;
  z-index: 2;
  right: 3%;
  /*top: 50%;
  bottom: auto;*/
	bottom:3%;

  display: none;
}
.cd-vertical-nav a {
  display: block;
  height: 40px;
  width: 40px;
  /* image replace */
  overflow: hidden;
  text-indent: 100%;
  white-space: nowrap;
  background: transparent url('https://www.coloradomesa.edu/landing-images/2324/cd-icon-arrow.svg') no-repeat center center;
  -webkit-transition: opacity 0.2s 0s, visibility 0.2s 0s;
  -moz-transition: opacity 0.2s 0s, visibility 0.2s 0s;
  transition: opacity 0.2s 0s, visibility 0.2s 0s;
}
.cd-vertical-nav a.cd-prev {
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  transform: rotate(180deg);
  margin-bottom: 10px;
}
.cd-vertical-nav a.inactive {
  visibility: hidden;
  opacity: 0;
  -webkit-transition: opacity 0.2s 0s, visibility 0s 0.2s;
  -moz-transition: opacity 0.2s 0s, visibility 0s 0.2s;
  transition: opacity 0.2s 0s, visibility 0s 0.2s;
}
@media only screen and (min-width: 1650px) {
  .cd-vertical-nav {
    display: block;
  }
}

.no-js .cd-vertical-nav {
  display: none;
}



/*Slate form custom styles*/
.slate-form-wrapper{
	    max-width: 450px;
    margin: 0 auto;
	/*height:353px; /*Fix for scrolling on submit?*/
}
.slate-form-wrapper #form_description{display:none; font-size:1.5rem;}
.slate-form-wrapper .form_container{
	margin-top:20px;
}
.slate-form-wrapper .form_container .form_question {
	clear:none !important;
	float:left;
	width:48%;
	text-align:left;
	margin:0 .5% 10px .5%;
	padding:2px;
}
.slate-form-wrapper .form_container .form_question label, .slate-form-wrapper .form_label{
	margin-bottom:3px;
}

.slate-form-wrapper .form_container .form_question[data-datatype="email"], .slate-form-wrapper .form_container .form_question[data-export="sys:field:entry_term"], .slate-form-wrapper .form_container .form_question[data-type="birthdate"], .slate-form-wrapper .form_container .form_question[data-type="p"]{
    width: 99% !important;
    clear: both !important;
    float: none !important;
}
.slate-form-wrapper .form_container .form_question[data-type="p"]{text-align:center; }
.slate-form-wrapper .form_container .form_question[data-export="sys:field:entry_term"] select{width:100%;}
.slate-form-wrapper .form_container .form_question[data-datatype="birthdate"] fieldset{width:100%;}
.slate-form-wrapper .form_container .form_question[data-type="birthdate"] select{
	width:calc(33.33% - 4px);
}
.slate-form-wrapper input[type=email]{width:100%;}
.slate-form-wrapper .action{
    width: 100%;
    background: none;
    right: inherit;
    top: inherit;
    position: relative;
    transform: none;
    transition: none;
    z-index: 1 !important;
    visibility: visible;
}
.slate-form-wrapper button.form_button_submit{
	    border: none;
    background: #fdd200;
    text-transform: uppercase;
    font-weight: 900;
    font-size: 1.7rem;
    padding: 15px;
    width: 100%;
    border-radius: 4px;
    margin-top: 10px;
	    color: #262e2f;
}
.slate-form-wrapper input, .slate-form-wrapper select{
	height:30px;
}
.slate-form-wrapper div.form_question.selected, div.form_question.required {
    background-color: #ffdc85;
}
.slate-form-wrapper div.form_question.required {
    background-color: #f01b1b;
}
@media only screen and (max-width: 1649px) {
	.logo img{height:30px;}
	.slate-form-wrapper .form_container .form_question{margin:0;}
	.cd-fixed-background h1{margin-bottom:15px;}
	.slate-form-wrapper .form_container .form_question[data-type="p"]{font-size:.85em;}
	.slate-form-wrapper input, .slate-form-wrapper select{height:25px;}
}
@media only screen and (max-width: 991px) {
	.slate-form-wrapper div.form_page input[type=text]{width:100%;}
	section.cd-fixed-background.main-section{
		background-color:#860037;
		padding-top: 30vh;
    	padding-bottom: 50px;
		overflow:hidden;
	}
	section.cd-fixed-background.main-section .cd-content:before{
		content: '';
		height: 74px;
		width: 114%;
		background-image: url(https://www.coloradomesa.edu/landing-images/2324/paint-stipe-mobile.png);
		background-size: cover;
		background-position: top center;
		display: block;
		margin: -40px -7% 0 -7%;
		z-index: 11111;
		position: relative;
	}
	section.cd-fixed-background.main-section .cd-content:after{
		position: absolute;
		top: 0;
		left: 0;
		margin: 0;
		height: 30vh;
		bottom: inherit;
		padding: 0;
		background-size: cover;
		background-position: left center;
	}
	.success-heart br{display:none;}
	
	.cd-fixed-background.set-height .cd-content{
		    right: auto;
    float: none;
    margin: 0;
	}
}




@media only screen and (max-width: 360px) {
	.cd-fixed-background h1{font-size:2rem;}

}



/* -------------------------------- 

Pricing Components 

-------------------------------- */

.cd-pricing-container {
  width: 100%;
  max-width: 1170px;
  margin: 4em auto;
}
.cd-pricing-switcher .fieldset {
  display: inline-block;
  position: relative;
  padding: 2px;
  border-radius: 50em;
  border: 1px solid #000;
	width:100%;
	background:rgba(0,0,0,.2);
}
@media only screen and (min-width: 992px) {
  .cd-pricing-container {
    margin: 2em auto;
  }
  .cd-pricing-container.cd-full-width {
    width: 100%;
    max-width: none;
  }
	.cd-pricing-switcher .fieldset {width:70%;}
}




.cd-pricing-switcher {
  text-align: center;
}

.cd-pricing-switcher input[type="radio"] {
  position: absolute;
  opacity: 0;
}
.cd-pricing-switcher label {
  position: relative;
  z-index: 1;
  display: inline-block;
  float: left;
  width: 50%;
  height: 40px;
  line-height: 40px;
  cursor: pointer;
  font-size: 1.4rem;
  color: #FFFFFF;
}
.cd-pricing-switcher .cd-switch {
  /* floating background */
  position: absolute;
  top: 2px;
  left: 2px;
  height: 40px;
  width: 50%;
  background-color: #0c1f28;
  border-radius: 50em;
  -webkit-transition: -webkit-transform 0.5s;
  -moz-transition: -moz-transform 0.5s;
  transition: transform 0.5s;
}
.cd-pricing-switcher input[type="radio"]:checked + label + .cd-switch,
.cd-pricing-switcher input[type="radio"]:checked + label:nth-of-type(n) + .cd-switch {
  /* use label:nth-of-type(n) to fix a bug on safari with multiple adjacent-sibling selectors*/
  -webkit-transform: translateX(calc(100% - 4px));
  -moz-transform: translateX(calc(100% - 4px));
  -ms-transform: translateX(calc(100% - 4px));
  -o-transform: translateX(calc(100% - 4px));
  transform: translateX(calc(100% - 4px));
}

.no-js .cd-pricing-switcher {
  display: none;
}

.cd-pricing-list {
  margin: 2em 0 0;
}
.cd-pricing-list > li {
  position: relative;
  margin-bottom: 1em;
}
@media only screen and (min-width: 992px) {
  .cd-pricing-list {
    margin: 3em 0 0;
  }
  .cd-pricing-list:after {
    content: "";
    display: table;
    clear: both;
  }
  .cd-pricing-list > li {
    width: 50%;
    float: left;
  }
  .cd-has-margins .cd-pricing-list > li {
    width: 49%;
    float: left;
   
  }
	.cd-has-margins .cd-pricing-list > li:first-of-type{ margin-right: 1.5%;}
  .cd-has-margins .cd-pricing-list > li:last-of-type {
    margin-right: 0;
	  width: 100%;
    float: none;
    clear: both;
  }
}

.cd-pricing-wrapper {
  /* this is the item that rotates */
  position: relative;
}
.touch .cd-pricing-wrapper {
  /* fix a bug on IOS8 - rotating elements dissapear*/
  -webkit-perspective: 2000px;
  -moz-perspective: 2000px;
  perspective: 2000px;
}
.cd-pricing-wrapper.is-switched .is-visible {
  /* totate the tables - anticlockwise rotation */
  -webkit-transform: rotateY(180deg);
  -moz-transform: rotateY(180deg);
  -ms-transform: rotateY(180deg);
  -o-transform: rotateY(180deg);
  transform: rotateY(180deg);
  -webkit-animation: cd-rotate 0.5s;
  -moz-animation: cd-rotate 0.5s;
  animation: cd-rotate 0.5s;
}
.cd-pricing-wrapper.is-switched .is-hidden {
  /* totate the tables - anticlockwise rotation */
  -webkit-transform: rotateY(0);
  -moz-transform: rotateY(0);
  -ms-transform: rotateY(0);
  -o-transform: rotateY(0);
  transform: rotateY(0);
  -webkit-animation: cd-rotate-inverse 0.5s;
  -moz-animation: cd-rotate-inverse 0.5s;
  animation: cd-rotate-inverse 0.5s;
  opacity: 0;
}
.cd-pricing-wrapper.is-switched .is-selected {
  opacity: 1;
}
.cd-pricing-wrapper.is-switched.reverse-animation .is-visible {
  /* invert rotation direction - clockwise rotation */
  -webkit-transform: rotateY(-180deg);
  -moz-transform: rotateY(-180deg);
  -ms-transform: rotateY(-180deg);
  -o-transform: rotateY(-180deg);
  transform: rotateY(-180deg);
  -webkit-animation: cd-rotate-back 0.5s;
  -moz-animation: cd-rotate-back 0.5s;
  animation: cd-rotate-back 0.5s;
}
.cd-pricing-wrapper.is-switched.reverse-animation .is-hidden {
  /* invert rotation direction - clockwise rotation */
  -webkit-transform: rotateY(0);
  -moz-transform: rotateY(0);
  -ms-transform: rotateY(0);
  -o-transform: rotateY(0);
  transform: rotateY(0);
  -webkit-animation: cd-rotate-inverse-back 0.5s;
  -moz-animation: cd-rotate-inverse-back 0.5s;
  animation: cd-rotate-inverse-back 0.5s;
  opacity: 0;
}
.cd-pricing-wrapper.is-switched.reverse-animation .is-selected {
  opacity: 1;
}
.cd-pricing-wrapper > li {
  background-color: #FFFFFF;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  /* Firefox bug - 3D CSS transform, jagged edges */
  outline: 1px solid transparent;
	height:auto;
}

.cd-pricing-wrapper .is-visible {
  /* the front item, visible by default */
  position: relative;
  z-index: 5;
}
.cd-pricing-wrapper .is-hidden {
  /* the hidden items, right behind the front one */
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 1;
  -webkit-transform: rotateY(180deg);
  -moz-transform: rotateY(180deg);
  -ms-transform: rotateY(180deg);
  -o-transform: rotateY(180deg);
  transform: rotateY(180deg);
}
.cd-pricing-wrapper .is-selected {
  /* the next item that will be visible */
  z-index: 3 !important;
}
.cd-pricing-wrapper p{
	color: #262E2F;
	font-size:1.4rem;
}
.cd-pricing-wrapper .cd-price{margin-bottom:10px;}
.cd-has-margins .cd-pricing-wrapper > li {
    border-radius: 4px;
  }
@media only screen and (min-width: 992px) {
	.cd-pricing-wrapper > li {height:150px;}
	.scholarships .cd-pricing-wrapper li{height:180px;}
  .cd-pricing-wrapper > li::before {
    /* separator between pricing tables - visible when number of tables > 3 */
    content: '';
    position: absolute;
    z-index: 6;
    left: -1px;
    top: 50%;
    bottom: auto;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    height: 50%;
    width: 1px;
    background-color: #b1d6e8;
  }
  .cd-pricing-wrapper > li::after {
    /* hide gradient layer */
    display: none;
  }
	
  .cd-popular .cd-pricing-wrapper > li {
    box-shadow: inset 0 0 0 3px #e97d68;
  }
  .cd-has-margins .cd-pricing-wrapper > li, .cd-has-margins .cd-popular .cd-pricing-wrapper > li {
    box-shadow: 0 1px 5px rgba(0, 0, 0, 0.1);
  }
  .cd-secondary-theme .cd-pricing-wrapper > li {
    background: #3aa0d1;
    background: -webkit-linear-gradient( bottom , #3aa0d1, #3ad2d1);
    background: linear-gradient(to top, #3aa0d1, #3ad2d1);
	  padding:10px;
  }
  
  .cd-secondary-theme .cd-popular .cd-pricing-wrapper > li {
    background: #e97d68;
    background: -webkit-linear-gradient( bottom , #e97d68, #e99b68);
    background: linear-gradient(to top, #e97d68, #e99b68);
    box-shadow: none;
  }
  :nth-of-type(1) > .cd-pricing-wrapper > li::before {
    /* hide table separator for the first table */
    display: none;
  }
  
  .cd-has-margins .cd-pricing-wrapper > li::before {
    display: none;
  }
}
@media only screen and (min-width: 1500px) {
  .cd-full-width .cd-pricing-wrapper > li {
    padding: 2.5em 0;
  }
}

.no-js .cd-pricing-wrapper .is-hidden {
  position: relative;
  -webkit-transform: rotateY(0);
  -moz-transform: rotateY(0);
  -ms-transform: rotateY(0);
  -o-transform: rotateY(0);
  transform: rotateY(0);
  margin-top: 1em;
}

@media only screen and (min-width: 992px) {
  .cd-popular .cd-pricing-wrapper > li::before {
    /* hide table separator for .cd-popular table */
    display: none;
  }

  .cd-popular + li .cd-pricing-wrapper > li::before {
    /* hide table separator for tables following .cd-popular table */
    display: none;
  }
}





  .cd-pricing-header {
    height: auto;
    padding: 1.9em 0.9em 1.6em;
    pointer-events: auto;
    text-align: center;
    color: #262E2F;
    background-color: transparent;
  }
	.cd-pricing-header h2.keylock-fighter{
		font-size:2.5rem;
		margin-bottom:20px;
	}
  .cd-popular .cd-pricing-header {
    color: #860037;
    background-color: transparent;
  }
 
  .cd-pricing-header h2 {
    font-size: 1.4rem;
	color:#262E2F;
  }


.cd-currency, .cd-value {
  font-size: 3rem;
  font-weight: 300;
}



.cd-duration {
  font-weight: 700;
  font-size: 1.3rem;
  color: #8dc8e4;
  text-transform: uppercase;
}
.cd-popular .cd-duration {
  color: #f3b6ab;
}
.cd-duration::before {
  content: '/';
  margin-right: 2px;
}


  .cd-value {
    font-size: 4rem;
    font-weight: 900;
  }
	.scholarships .cd-pricing-wrapper li{height:auto; background-color: rgba(0,0,0,.5);}
.scholarships .cd-price{padding:0 10px;}
.scholarships .cd-pricing-wrapper li:before {
    content: '';
    width: calc(100% - 20px);
    height: calc(100% - 20px);
    border: 2px solid rgba(255,255,255, .33);
    z-index: 1;
    display: block;
    background: transparent;
    border-radius: 4px;
    margin: 0 10px;
}
@media only screen and (max-width: 991px) {.scholarships .cd-pricing-wrapper li:before {position:absolute; top:10px;}}

	.scholarships .cd-pricing-wrapper li .cd-pricing-header, .scholarships .cd-pricing-wrapper li .cd-pricing-header h2{color:#fff;}
	.scholarships .cd-pricing-wrapper li .cd-pricing-header .cd-currency{color:rgba(255,255,255,.4)}

	.scholarships .cd-value{
	font-size:2.5rem; 
}

	.scholarships .duration, .scholarships .scholarship-title{
		display:block;
		margin-bottom:10px;
	}
	.scholarships .cd-currency{
		margin-top:4px;
	}
@media only screen and (max-width: 1310px) {
	.scholarships .cd-value{
		font-size:2rem; 
	}
	.scholarships .cd-currency{
		margin-top:0px;
	}
	
}
  .cd-currency, .cd-duration {
    color: rgba(23, 61, 80, 0.4);
  }
  .cd-popular .cd-currency, .cd-popular .cd-duration {
    color: #e97d68;
  }
  .cd-secondary-theme .cd-currency, .cd-secondary-theme .cd-duration {
    color: #2e80a7;
  }
  .cd-secondary-theme .cd-popular .cd-currency, .cd-secondary-theme .cd-popular .cd-duration {
    color: #ba6453;
  }

  .cd-currency {
    display: inline-block;
    margin-top: 10px;
    vertical-align: top;
    font-size: 2rem;
    font-weight: 700;
  }

  .cd-duration {
    font-size: 1.4rem;
  }

.cd-pricing-body {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.is-switched .cd-pricing-body {
  /* fix a bug on Chrome Android */
  overflow: hidden;
}
@media only screen and (min-width: 992px) {
  .cd-pricing-body {
    overflow-x: visible;
  }
}

.cd-pricing-features {
  width: 600px;
}
.cd-pricing-features:after {
  content: "";
  display: table;
  clear: both;
}
.cd-pricing-features li {
  width: 100px;
  float: left;
  padding: 1.6em 1em;
  font-size: 1.4rem;
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.cd-pricing-features em {
  display: block;
  margin-bottom: 5px;
  font-weight: 600;
}
@media only screen and (min-width: 992px) {
  .cd-pricing-features {
    width: auto;
  }
  .cd-pricing-features li {
    float: none;
    width: auto;
    padding: 1em;
  }
  .cd-popular .cd-pricing-features li {
    margin: 0 3px;
  }
  .cd-pricing-features li:nth-of-type(2n+1) {
    background-color: rgba(23, 61, 80, 0.06);
  }
  .cd-pricing-features em {
    display: inline-block;
    margin-bottom: 0;
  }
  .cd-has-margins .cd-popular .cd-pricing-features li, .cd-secondary-theme .cd-popular .cd-pricing-features li {
    margin: 0;
  }
  .cd-secondary-theme .cd-pricing-features li {
    color: #FFFFFF;
  }
  .cd-secondary-theme .cd-pricing-features li:nth-of-type(2n+1) {
    background-color: transparent;
  }
}

.cd-pricing-footer {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  /* on mobile it covers the .cd-pricing-header */
  height: 80px;
  width: 100%;
}
.cd-pricing-footer::after {
  /* right arrow visible on mobile */
  content: '';
  position: absolute;
  right: 1em;
  top: 50%;
  bottom: auto;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  height: 20px;
  width: 20px;
  background: url(../img/cd-icon-small-arrow.svg);
}
@media only screen and (min-width: 992px) {
  .cd-pricing-footer {
    position: relative;
    height: auto;
    padding: 1.8em 0;
    text-align: center;
  }
  .cd-pricing-footer::after {
    /* hide arrow */
    display: none;
  }
  .cd-has-margins .cd-pricing-footer {
    padding-bottom: 0;
  }
}

.cd-select {
  position: relative;
  z-index: 1;
  display: block;
  height: 100%;
  /* hide button text on mobile */
  overflow: hidden;
  text-indent: 100%;
  white-space: nowrap;
  color: transparent;
}
@media only screen and (min-width: 992px) {
  .cd-select {
    position: static;
    display: inline-block;
    height: auto;
    padding: 1.3em 3em;
    color: #FFFFFF;
    border-radius: 2px;
    background-color: #0c1f28;
    font-size: 1.4rem;
    text-indent: 0;
    text-transform: uppercase;
    letter-spacing: 2px;
  }
  .no-touch .cd-select:hover {
    background-color: #112e3c;
  }
  .cd-popular .cd-select {
    background-color: #e97d68;
  }
  .no-touch .cd-popular .cd-select:hover {
    background-color: #ec907e;
  }
  .cd-secondary-theme .cd-popular .cd-select {
    background-color: #0c1f28;
  }
  .no-touch .cd-secondary-theme .cd-popular .cd-select:hover {
    background-color: #112e3c;
  }
  .cd-has-margins .cd-select {
    display: block;
    padding: 1.7em 0;
    border-radius: 0 0 4px 4px;
  }
}

/* -------------------------------- 

xkeyframes 

-------------------------------- */
@-webkit-keyframes cd-rotate {
  0% {
    -webkit-transform: perspective(2000px) rotateY(0);
  }
  70% {
    /* this creates the bounce effect */
    -webkit-transform: perspective(2000px) rotateY(200deg);
  }
  100% {
    -webkit-transform: perspective(2000px) rotateY(180deg);
  }
}
@-moz-keyframes cd-rotate {
  0% {
    -moz-transform: perspective(2000px) rotateY(0);
  }
  70% {
    /* this creates the bounce effect */
    -moz-transform: perspective(2000px) rotateY(200deg);
  }
  100% {
    -moz-transform: perspective(2000px) rotateY(180deg);
  }
}
@keyframes cd-rotate {
  0% {
    -webkit-transform: perspective(2000px) rotateY(0);
    -moz-transform: perspective(2000px) rotateY(0);
    -ms-transform: perspective(2000px) rotateY(0);
    -o-transform: perspective(2000px) rotateY(0);
    transform: perspective(2000px) rotateY(0);
  }
  70% {
    /* this creates the bounce effect */
    -webkit-transform: perspective(2000px) rotateY(200deg);
    -moz-transform: perspective(2000px) rotateY(200deg);
    -ms-transform: perspective(2000px) rotateY(200deg);
    -o-transform: perspective(2000px) rotateY(200deg);
    transform: perspective(2000px) rotateY(200deg);
  }
  100% {
    -webkit-transform: perspective(2000px) rotateY(180deg);
    -moz-transform: perspective(2000px) rotateY(180deg);
    -ms-transform: perspective(2000px) rotateY(180deg);
    -o-transform: perspective(2000px) rotateY(180deg);
    transform: perspective(2000px) rotateY(180deg);
  }
}
@-webkit-keyframes cd-rotate-inverse {
  0% {
    -webkit-transform: perspective(2000px) rotateY(-180deg);
  }
  70% {
    /* this creates the bounce effect */
    -webkit-transform: perspective(2000px) rotateY(20deg);
  }
  100% {
    -webkit-transform: perspective(2000px) rotateY(0);
  }
}
@-moz-keyframes cd-rotate-inverse {
  0% {
    -moz-transform: perspective(2000px) rotateY(-180deg);
  }
  70% {
    /* this creates the bounce effect */
    -moz-transform: perspective(2000px) rotateY(20deg);
  }
  100% {
    -moz-transform: perspective(2000px) rotateY(0);
  }
}
@keyframes cd-rotate-inverse {
  0% {
    -webkit-transform: perspective(2000px) rotateY(-180deg);
    -moz-transform: perspective(2000px) rotateY(-180deg);
    -ms-transform: perspective(2000px) rotateY(-180deg);
    -o-transform: perspective(2000px) rotateY(-180deg);
    transform: perspective(2000px) rotateY(-180deg);
  }
  70% {
    /* this creates the bounce effect */
    -webkit-transform: perspective(2000px) rotateY(20deg);
    -moz-transform: perspective(2000px) rotateY(20deg);
    -ms-transform: perspective(2000px) rotateY(20deg);
    -o-transform: perspective(2000px) rotateY(20deg);
    transform: perspective(2000px) rotateY(20deg);
  }
  100% {
    -webkit-transform: perspective(2000px) rotateY(0);
    -moz-transform: perspective(2000px) rotateY(0);
    -ms-transform: perspective(2000px) rotateY(0);
    -o-transform: perspective(2000px) rotateY(0);
    transform: perspective(2000px) rotateY(0);
  }
}
@-webkit-keyframes cd-rotate-back {
  0% {
    -webkit-transform: perspective(2000px) rotateY(0);
  }
  70% {
    /* this creates the bounce effect */
    -webkit-transform: perspective(2000px) rotateY(-200deg);
  }
  100% {
    -webkit-transform: perspective(2000px) rotateY(-180deg);
  }
}
@-moz-keyframes cd-rotate-back {
  0% {
    -moz-transform: perspective(2000px) rotateY(0);
  }
  70% {
    /* this creates the bounce effect */
    -moz-transform: perspective(2000px) rotateY(-200deg);
  }
  100% {
    -moz-transform: perspective(2000px) rotateY(-180deg);
  }
}
@keyframes cd-rotate-back {
  0% {
    -webkit-transform: perspective(2000px) rotateY(0);
    -moz-transform: perspective(2000px) rotateY(0);
    -ms-transform: perspective(2000px) rotateY(0);
    -o-transform: perspective(2000px) rotateY(0);
    transform: perspective(2000px) rotateY(0);
  }
  70% {
    /* this creates the bounce effect */
    -webkit-transform: perspective(2000px) rotateY(-200deg);
    -moz-transform: perspective(2000px) rotateY(-200deg);
    -ms-transform: perspective(2000px) rotateY(-200deg);
    -o-transform: perspective(2000px) rotateY(-200deg);
    transform: perspective(2000px) rotateY(-200deg);
  }
  100% {
    -webkit-transform: perspective(2000px) rotateY(-180deg);
    -moz-transform: perspective(2000px) rotateY(-180deg);
    -ms-transform: perspective(2000px) rotateY(-180deg);
    -o-transform: perspective(2000px) rotateY(-180deg);
    transform: perspective(2000px) rotateY(-180deg);
  }
}
@-webkit-keyframes cd-rotate-inverse-back {
  0% {
    -webkit-transform: perspective(2000px) rotateY(180deg);
  }
  70% {
    /* this creates the bounce effect */
    -webkit-transform: perspective(2000px) rotateY(-20deg);
  }
  100% {
    -webkit-transform: perspective(2000px) rotateY(0);
  }
}
@-moz-keyframes cd-rotate-inverse-back {
  0% {
    -moz-transform: perspective(2000px) rotateY(180deg);
  }
  70% {
    /* this creates the bounce effect */
    -moz-transform: perspective(2000px) rotateY(-20deg);
  }
  100% {
    -moz-transform: perspective(2000px) rotateY(0);
  }
}
@keyframes cd-rotate-inverse-back {
  0% {
    -webkit-transform: perspective(2000px) rotateY(180deg);
    -moz-transform: perspective(2000px) rotateY(180deg);
    -ms-transform: perspective(2000px) rotateY(180deg);
    -o-transform: perspective(2000px) rotateY(180deg);
    transform: perspective(2000px) rotateY(180deg);
  }
  70% {
    /* this creates the bounce effect */
    -webkit-transform: perspective(2000px) rotateY(-20deg);
    -moz-transform: perspective(2000px) rotateY(-20deg);
    -ms-transform: perspective(2000px) rotateY(-20deg);
    -o-transform: perspective(2000px) rotateY(-20deg);
    transform: perspective(2000px) rotateY(-20deg);
  }
  100% {
    -webkit-transform: perspective(2000px) rotateY(0);
    -moz-transform: perspective(2000px) rotateY(0);
    -ms-transform: perspective(2000px) rotateY(0);
    -o-transform: perspective(2000px) rotateY(0);
    transform: perspective(2000px) rotateY(0);
  }
}


/****Bootstrap carousel styles*****/

#myCarousel{
	background: rgba(0,0,0,.6);
    border-radius: 4px;
    margin-top: 30px;
    box-shadow: 0px 0px 20px rgba(0,0,0,.2);
    padding: 30px;
    color: #fff;
}
#myCarousel:before {
    content: '';
    width: calc(100% - 20px);
    height: calc(100% - 20px);
    border: 2px solid rgba(255,255,255, .33);
    z-index: 1;
    display: block;
    background: transparent;
    border-radius: 4px;
    margin: 0 10px;
    position: absolute;
    top: 10px;
    left: 0px;
}
#myCarousel .headshot-container{
	border-radius:50%;
	background-size:cover;
	background-position:center;
	width:70px;
	height:70px;
	margin:0 auto;
	
}
#myCarousel .carousel-indicators{
	bottom:-40px;
}
#myCarousel .carousel-indicators li{
	width: 9px;
	height:9px;
	border-radius:50%;
	background-color:transparent;
	opacity:1;
	border:2px solid #860037;
	transition: background-color 0.6s ease;
}
#myCarousel .carousel-indicators li.active{
	background-color:#860037;
}
#myCarousel .carousel-control-next, #myCarousel .carousel-control-prev{
	width: 38px;
    height: 38px;
    background: #860037;
    border-radius: 50%;
    opacity: 1;
    top: 50%;
    transform: translateY(-50%);
    right: -15px;
    border: 3px solid #382d21;
}
#myCarousel .carousel-control-next span, #myCarousel .carousel-control-prev span{
	width:10px;
	height:10px;
}
#myCarousel .carousel-control-prev{
	left:-15px;
	right:auto;
}
#myCarousel .headshot-container, #myCarousel .testimonial-container, #myCarousel .testimonial-container strong{
	margin-top:15px;
}
#myCarousel .testimonial-container strong{display:block; font-size:1.8rem;}
#myCarousel .logo-container img{max-width:130px; height:auto;}