/* style.css
// This style sheet can be used for any custom styles that the user wishes
// to add on top of the template styles in ksr-master.css. */

* {
	font-family: source-sans-pro, sans-serif;
}
/***********************************************BLOCKQUOTE*/
blockquote{
	display: block;
    -webkit-margin-before: 1em;
    -webkit-margin-after: 1em;
    -webkit-margin-start: 40px;
    -webkit-margin-end: 40px;
	padding: 10px 20px;
    margin: 0 0 20px;
	border-left: 3px solid #EAAB00;
}

/********************************************** BOOTSTRAP CLASS OVERRIDES */

.padding-0 {
    padding-right:0 !important;
    padding-left:0 !important;
	padding-bottom:0 !important;
	padding-top:0 !important;
	width: 100%;
}

.btn-primary1 {
  background-color: #035642;
	border-color: #A57809;
	color: white;
	display:inline-block;
}

.btn-primary2 {
	background-color: #035642;
	border-color: #A57809;
	color: white;
	display:inline-block;
}

#applicationButtons{
    text-align: center;
}

#icon_image {
	width:65px;
    height: auto;
	display: block;
 	margin-left: auto;
  	margin-right: auto;
}

.btn-primary-2 {
	background-color: #185642;
	border-color: #A57809;
}

.btn-primary-2:hover {
	background-color: #A57809;
	border-color: #8C6607;
}

.column_img {
  float: center;
  width: 33.3%;
  padding: 5px;
}

.row_img {
  display: flex;
}

.apply{
	text-align: center;
}

.apply .btn-primary {
	background-color: #D99F0B;
	border-color: #A57809;
	height: 75px;
	width: 125px;
	font-size: 35px;
}

.apply .btn-primary-2 {
	background-color: #185642;
	border-color: #A57809;
	height: 75px;
	width: 125px;
	font-size: 35px;
}

/**/
.btn-primary-apply {
	background-color: #185642;
	height: auto;
	font-size: 20px;
	font-weight: bolder;
	color: #FFFFFF;
	text-align: center;
	padding: 10px 70px;
	/*box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.15), 0 6px 20px 0 rgba(0, 0, 0, 0.14);*/
}

.entering-text {
	font-size: 40px;
	color: white;
	font-weight: bold;
}
.btn-primary-apply:hover {
	background-color: #124233;
	color: #FFFFFF;
	text-align: center;
}

.btn-accordion {
	height: 50px !important;
	width: auto;
}

.btn-primary:not(:disabled):not(.disabled):active:focus, .btn-primary:not(:disabled):not(.disabled).active:focus,
.show > .btn-primary.dropdown-toggle:focus {
  background-color: #035642;
}

.btn-danger {
	font-size: 1.2em;
	padding: 8px 40px;
}

.btn-tablink {
  font-weight: 400;
  color: #ffffff;
  background-color: transparent;
}

.btn-tablink:hover {
  color: #ffffff;
  text-decoration: none;
  background-color: transparent;
  border-color: transparent;
}

.btn-tablink:focus, .btn-link.focus {
  text-decoration: none;
  border-color: transparent;
  box-shadow: none;
}


.no-margin {
	margin: 0px;
}

hr {
	margin-top: 1rem;
    margin-bottom: 4rem;
}
.class-box {
	margin:15px 10px;
	background-color: #fff;
}
span.class-heading {
	color: #035642;
	font-size: 1.2em;
}
.extra-margin {
	margin: 20px 0px;
}

/********************************************** END BOOTSTRAP CLASS OVERRIDES */

/********************************************** CUSTOM CLASSES */

/* The container */
.checkboxContainer {
  display: block;
  position: relative;
  padding-left: 35px;
  padding-bottom: 15px;
  cursor: pointer;
  font-size: 18px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  /* overflow: hidden; */
}

/* Hide the browser's default checkbox */
.checkboxContainer input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

/* Create a custom checkbox */
.checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 25px;
  width: 25px;
  background-color: #d3d3d3;
  overflow:visible;
}

/* On mouse-over, add a grey background color */
.checkboxContainer:hover input ~ .checkmark {
  background-color: grey;
}

/* When the checkbox is checked, add a green background */
.checkboxContainer input:checked ~ .checkmark {
  /*background-color: #185642;*/
	background-color: #185642;
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the checkmark when checked */
.checkboxContainer input:checked ~ .checkmark:after {
  display: block;
}

/* Style the checkmark/indicator */
.checkboxContainer .checkmark:after {
  left: 9px;
  top: 5px;
  width: 5px;
  height: 10px;
  /*border: solid white;*/
  border: solid white;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(25deg);
  -ms-transform: rotate(25deg);
  transform: rotate(45deg);
}

#pageIntroMobile {
  position: relative;
  width: 100%;
  z-index: 1000;
  background-color: #eeeded;
  height: auto;
  padding-bottom: 10%;
  padding-left: 0%;
}

#pageIntroMobile:before,
#pageIntroMobile:after {
  position: absolute;
  content: "";
  top: -50px;
  width: calc(50% + 10px);
  height: 50px;
  background-color: #eeeded;
}
#pageIntroMobile:before {
  left: 0;
  transform: skew(45deg);
  transform-origin: right bottom;
  border-top-right-radius: 0px;
}
#pageIntroMobile:after {
  right: 0;
  transform: skew(-45deg);
  transform-origin: left bottom;
  border-top-left-radius: 0px;
}

.class_box, .class_box_3col, .class_box_8col {
	padding:6px 20px 6px 20px;
	background-color: #EFF0F0;
}

.mobileH3 {
	font-size: 20px;
}

.image-header img {
  float: left;
  width: 75px;
  height: 75px;
}
.image-header2 img {
  float: left;
  width: 150px;
  height: 150px;
}
.image-header h1 {
  position: relative;
  top: 24px;
  left: 15px;
}

.la-img {
	height: 350px;
	object-fit: cover;
}

.inst-img {
	height: 250px;
	object-fit: cover;
}
.outline {
	border-width: .5px;
	border-style: solid;
	border-color: #000;
	padding:0;
}

.container-mobile {
  width: 100%;
  padding-right: 0px;
  padding-left: 0px;
  margin-right: auto;
  margin-left: auto;
}

/********************* TABS FOR TABLE */
/* Style the tab */
.tab, .tab2 {
    float: left;
    background-color: #3D6A5A;
    width: 22%;
    height: 800px;
	display:block;
	margin-right: 100px;
	transition: 0.3s;
}

/* Style the buttons inside the tab */
.tab button, .tab2 button {
    display: block;
    background-color: inherit;
    padding: 22px 16px;
    width: 100%;
    border: none;
    outline: none;
    text-align: left;
    cursor: pointer;
    transition: 0.3s;
	float:left;
	color: white;
	font-size:20px;
	letter-spacing: 1px;
	font-weight: bolder;
}

/* Change background color of buttons on hover */
.tab button:hover, .tab2 button:hover {
    background-color: #27604F;
	box-shadow: 2px 3px 3px #000000;
	z-index:100;
}

/* Create an active/current "tab button" class */
.tab button.active, .tab2 button:hover {
    background-color: #005643;
	z-index: 100;
}

/* Style the tab content */
.tabcontent, .tabcontent2 {
	z-index:-1;
    padding: 50px 50px 50px 50px;
    border: 1px solid #ccc;
    width: 900px;
    border-left: none;
    height: 800px;
	background-color:#ffffff;
}
.tabcontent > h2, .tabcontent2 > h2 {
	margin: 0px;
}

/********************* TABS FOR ACCORDIAN- ALL PROGRAMS */
/* Style the tab */
.long-tab {
    float: left;
    background-color: #3D6A5A;
    width: 100%;
	display:block;
	margin-right: 100px;
	transition: 0.3s;
}

/* Style the buttons inside the tab */
.long-tab button {
    display: block;
    background-color:#3D6A5A;
    padding: 22px 16px;
    width: 100%;
	height: 20%;
    border: none;
    outline: none;
    text-align: left;
    cursor: pointer;
    transition: 0.3s;
	float:left;
	color: white;
	font-size:1em;
	letter-spacing: 1px;
	font-weight: bolder;
}

/* Change background color of buttons on hover */
.long-tab button:hover {
    background-color: #27604F;
	box-shadow: 2px 3px 3px #000000;
	z-index:100;
}

/* Create an active/current "tab button" class */
.long-tab button.active {
    background-color: #005643;
	z-index: 100;
}

/* Style the tab content */
.long-tabcontent {
	z-index:-1;
    padding: 25px 25px;
    border: 1px solid #ccc;
    width: 100%;
    border-left: none;
    height: auto;
	background-color:#ffffff;
}
.long-tabcontent > h2 {
	margin: 0px;
}
.display-until-mobile, .display-until-mobile-caption {
	display:inherit;
}

.display-until-mobile-no-inherit {
	display: contents;
}
.display-mobile, .display-mobile-caption, .display-small-mobile, .display-mobile-no-inherit
{
	display:none;
}

@media screen and (max-width: 991px){
	.display-mobile-caption {
		display:inherit;
	}
	.display-until-mobile-caption {
		display:none;
	}
}
@media screen and (max-width: 768px){
	.display-mobile {
		display:inherit;
	}
	.display-until-mobile {
		display:none;
	}
	
	.display-until-mobile-no-inherit {
		display: none;
	}
	.display-mobile-no-inherit {
		display: contents;
	}
}
@media screen and (max-width: 524px){
	.long-tab button {
		font-size:.7em;
	}
	.display-small-mobile {
		display:inherit;
	}
	.display-until-small-mobile {
	
	}
}

/***************** TABS FOR GRAPHIC TABLE */

/*
    .tabs {
    max-width: 90%;
    float: none;
    list-style: none;
    padding: 0;
    margin: 75px auto;
    border-bottom: 4px solid #ccc;
}
.tabs:after {
    content: '';
    display: table;
    clear: both;
}
.tabs input[type=radio] {
    display:none;
}
.tabs label {
    display: block;
    float: left;
    width: 33.3333%;
    color: #ccc;
    font-size: 30px;
    font-weight: normal;
    text-decoration: none;
    text-align: center;
    line-height: 2;
    cursor: pointer;
    box-shadow: inset 0 4px #ccc;
    border-bottom: 4px solid #ccc;
    -webkit-transition: all 0.5s; 
    transition: all 0.5s;
}
.tabs label span {
    display: none;
}
.tabs label i {
    padding: 5px;
    margin-right: 0;
}
.tabs label:hover {
    color: #3498db;
    box-shadow: inset 0 4px #3498db;
    border-bottom: 4px solid #3498db;
}
.tab-content {
    display: none;
    width: 100%;
    float: left;
    padding: 15px;
    box-sizing: border-box;
    background-color:#ffffff;
}

.tab-content * {
    -webkit-animation: scale 0.7s ease-in-out;
    -moz-animation: scale 0.7s ease-in-out;
    animation: scale 0.7s ease-in-out;
}
@keyframes scale {
  0% {
    transform: scale(0.9);
    opacity: 0;
    }
  50% {
    transform: scale(1.01);
    opacity: 0.5;
    }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.tabs [id^="tab"]:checked + label {
    background: #FFF;
    box-shadow: inset 0 4px #3498db;
    border-bottom: 4px solid #3498db;
    color: #3498db;
}
#tab1:checked ~ #tab-content1,
#tab2:checked ~ #tab-content2,
#tab3:checked ~ #tab-content3 {
    display: block;
}

@media (min-width: 768px) {
    .tabs i {
        padding: 5px;
        margin-right: 10px;
    }
    .tabs label span {
        display: inline-block;
    }
    .tabs {
    max-width: 750px;
    margin: 50px auto;
    }
}
*/



/********************************************** END CUSTOM CLASSES */

/*initial body*/
/*
body {
  right: 0;
  margin: 0;
  position: relative;
}
*/

.noscroll {
	overflow: hidden;
}


/*make screen dim*/
#overlay {
	position: fixed;
	display: none;
	width: 100%;
	height: 100%;
	top: 0;
	left:  0;
	right: 0;
	bottom: 0;
	background-color: rgba(0,0,0,0.7);
	z-index: 1;
	cursor: pointer;

}
/*******************************END*/

/**********************PAGINATION*/


.pagination a {
    float: left;
    padding: 8px 16px;
    text-decoration: none;
    transition: background-color .3s;
    border: 1px solid #ddd;
	color: black;
}

.pagination li.active a{
	background-color: #29551a;
	color: white;
}

.pagination a:hover:not(.active){
	background-color: #DFDFDF;
}

.center{
	text-align: center;
}

/********************** SELECT PICKER ************/
select.selectpicker {
      display: block;
      margin: 0 auto;
      padding-left: 20px;
}
.btn-new {
      background-color: #2A3F54;
}

/************************ card in feature program page*/
.card-img{
	height: 276px;
}


.box_navbar_icon{
	visibility: hidden;
	height: 60px;
	width: 60px;
	z-index: 300;
	background-color: #DAD7C1;
	top: 0px;
	right: 0px;
	background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(0, 0, 0, 0.5)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 8h24M4 16h24M4 24h24'/%3E%3C/svg%3E");
	background-repeat:no-repeat;
	background-size: 30px;
	background-position: center;
}

.box_navbar_icon:hover{
	width: 70px;
	background-color: #EAAB00;
	transition: 0.5s;
	-webkit-transition: 0.5s;
}

 .box_fixed{
	position: fixed;
	visibility: visible;
}


@media screen and (max-width: 991px){
	.fixed {visibility: hidden;}
}



/********* front page ***/

/************************************************ New Grad/GRADUATE-CERTIFICATE*/

.green_app {
	background: #185642; color: #FFFFFF;
}

.white_app {
	background: #FFFFFF; color: #3a3a3a;
}

.apply_outer_container {
	margin-right: 10%; margin-top: 5%;
	background-color: color: #FFFFFF;

}

.apply_inner_container {
	margin-left: 15%;
	margin-right: 5%;
	padding-bottom: 1%;
	padding-top: 1%;
}

.apply_text {
    font-style: italic;
    margin-top: 10%;
    background-color: clear;
    color: white;
    z-index: 1000;
    position: absolute;
    bottom: 20%;
    left: 15%;
    font-weight: 1000;
    font-family: "avenir heavy";
    font-size: 1em;
	line-height:1.0;
	text-shadow: #000 2px 2px 6px;
}

@media screen and (max-width: 768px) {
	.apply_text {
		left: 5%;
	}
}

.apply_text_home {
    font-style: italic;
    background-color: clear;
    color: white;
    z-index: 1000;
    position: absolute;
    bottom: 18%;
    left: 10%;
    font-weight: 1000;
    font-family: "avenir heavy";
    font-size: calc(30px + (50 - 30) * ((100vw - 300px) / (1600 - 300)));
	line-height:1.0;
}

.title_text1 {
    font-style: normal;
    background-color: clear;
    color: white;
    font-weight: 100;
    font-family: "avenir";
	letter-spacing:1px;
}

@media (max-width: 756px) {
	.apply_text_home, .apply_text {
		margin:0 auto;
	}
}

.new_grad-text {
	text-align: left;
	margin-left: auto;
}
.new_grad-title {
  padding-top: 0px;
  font-size: 2rem;
  color: #245c2d;
  font-weight: bold;
}

.new_grad-body {
  padding-top: 0px;
  font-size: 2rem;
  color: #245c2d;
  font-weight: bold;
}

.ng_row {
	padding: 1%;
}

/************************************************ New Grad/FPE-SCIENCE */
.neg-margin-left {
	margin-left:-700px;
}

.step_text {
    color: white;
    font-weight: 1000;
    font-family: "avenir heavy";
	font-size: 18px;
	line-height:2;
}

@media (min-width: 1000px) {
    .stair_text1 {
		text-align: right;
	}
}

@media (max-width: 1000px) {
    .neg-margin-left {
		margin-left:-200px;
		margin-right:-200px;
	}
	.stair_text1 {
		width:1000px;
	}
	.stair_side_text1 {
		text-align:left;
		margin-left:200px;
		padding-top:1.5%;
	}
}

/*************************************homepage */
/* homepage icon link styles */
p.homepage-icon-text {
	font-size: 1.3em;
	line-height:1.5;
	color: #195743; 
}
.homepage-icon-link a:hover {
	text-decoration: underline;
	text-decoration-color: white;
}
.homepage-icon-link {
	text-align:center;
	width:100%;
	border-radius:15px;
	padding:2.5%;
}
.homepage-icon-link:hover {
	cursor:pointer;
	-webkit-transition: all 0.3s;
}
.homepage-icon-link .fas {
	font-size:5em;
	color: white; 
	position:absolute;
	top:75px;
	bottom:0;
	left:0;
	right:0;
}
.circle-brown, .circle-green, .circle-mixed {
    width: 180px;
    padding-top: 180px;
    border-radius: 50%;
    margin: 0 auto;
}
.circle-brown {
	background-color: #82786F;
}
			
.homepage-icon-link:hover .circle-brown {
	background-color: #aaa38b;
	-webkit-transition: all 0.3s;
}
			
.circle-green {
	background-color: #195743;
}
			
.homepage-icon-link:hover .circle-green {
	background-color: #9db28f;
	-webkit-transition: all 0.3s;
}
			
.circle-mixed {
	background-color: #82786F;
}
			
.homepage-icon-link:hover .circle-mixed {
	background-color: #9db28f;
	-webkit-transition: all 0.3s;
}

@media (max-width: 991px) {
	.homepage-icon-link .fas {
		top:14%;
		font-size:5vw;
	}
	.homepage-icon-link {
		padding:2%;
	}
	.circle-brown, .circle-green, .circle-mixed, .circle-lightgreen {
		width: 100%;
		padding-top: 100%;
	}
	p.homepage-icon-text {
		font-size: 1.1em;
	}
}
@media (max-width: 767px) {
	.homepage-icon-link .fas {
		top:75px;
		font-size:6em;
	}
	.circle-brown, .circle-green, .circle-mixed, .circle-lightgreen {
		width: 200px;
		padding-top: 200px;
	}
	.homepage-icon-link  {
		padding:5%;
	}
}

.btn-mobile {
	border-width: 1px;
	border-style: solid;
	border-color: #000000;
	padding: 15px;
	color: #000000;
	margin: 20px;
	background-color: rgba(0,0,0,.1);
}

.btn-mobile:hover {
	border-width: 1px;
	border-style: solid;
	border-color: #000000;
	padding: 15px;
	color: #ffffff;
	background-color: rgba(0,0,0,.4);
	margin: 20px;
	cursor:pointer;
	text-decoration:none;
}
@media (max-width: 991px) {
	.caption {
		width:100%;
	}
	.padding2 {
	  padding: 30% 20%;
	}
}

/************************************************ New Grad/PROFESSIONAL-CERTIFICATE*/

/*
.certificate_program {
	border-radius: 10px;
	border: 1px solid black;
}
*/

.certificate_program:hover {
	/* box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.15), 0 6px 20px 0 rgba(0, 0, 0, 0.14); */
}

.certificate_program_img {
	border-radius: 10px 10px 0px 0px;
}

.certificate_program_text {
	color: "#185642";
	font-weight: 900;
	border-radius: 0px 0px 10px 10px;
	text-align: center;
}

.custom-card-link:hover {
	text-decoration:none;
	cursor:pointer;
}

/***************MASTER'S PROGRAMS******* */
ul {
	line-height:2;
}

/***************BUISNESS ANALYTICS*************/

.btn-questions {
	width: 290px;
	margin-right: 2%;
	text-align: center;
	padding-right: 5%;
	margin-bottom: 4%;
}

.btn-apply {
	width: 190px;
	text-align: center;
	margin-bottom: 4%;
}

.green_left {
	background-color: #185642;
	color: #FFFFFF;
}

#workforce_table {
	width: 80%;
	margin-bottom: 8%;    
}

.table_divide {
	border-bottom: 1px solid #ffffff;
}

.pad {
	padding: 2%;
}

/***************POLICIES GUIDELINES*************/

/****** colors *****/
.darkgreen {
	background-color: #195743;
}
.lightgreen {
	background-color: #678375;
}
.lightgrey {
	background-color: #adaeb1;
}
.lightestgreen {
	background-color: #9db28f;
}

.pol_guid_tb_one {
	width:2000px;
	margin-left: -1700px;
}

.pol_guid_tb_two {
	width:2000px;
	margin-left: -1550px;
}

.pol_guid_tb_three {
	width:2000px;
	margin-left: -1400px;
}

.pol_guid_tb_four {
	width:2000px;
	margin-left: -1250px;
}

/* same width */
.pol_guid_tb_five {
	width:2000px;
	margin-left: -1000px;
}

/* for big step sections */
.pol_guid_tb_steps {
	width:2000px;
	margin-left: -1000px;
}

.mt_alt_odd {
	background-color: #e4e3e3;
}

.mt_alt_even {
	background-color: #FFFFFF;
}

@media (max-width: 1201px) {
    .pol_guid_tb_one, .pol_guid_tb_two, .pol_guid_tb_three, .pol_guid_tb_four, .pol_guid_tb_five, .pol_guid_tb_six, .pol_guid_tb_seven  {
		width: 1300px;
		margin-left: -500px;
	}
}

/******CONTINUOUS ENROLLMENT ***********/

.row.display-flex {
  display: flex;
  flex-wrap: wrap;
}
.row.display-flex > [class*='col-'] {
  display: flex;
  flex-direction: column;
}

span.icon > img {
  height: 32px;
}

/*************** SMALL VERSIOM *********/
@media (max-width: 1001px) {
    span.myicon {display:none}
    span.mytext {display:inline-block;padding-left: 10%;height: 70;}
}

/*************** BIG VERSIOM *********/
@media (min-width: 1000px) {
    span.myicon {
		display:inline-block;
		height: 70px;
		float: right;
	}
    span.mytext {display:none;}
}

/*************** BIG VERSIOM *********/
.stair_text {
	text-align:right; 
	
}
.stair_text_long {
	text-align:left; 
	margin-left:1000px;
}
.stair_side_text {
	font-style: italic;
    color: white;
    font-weight: 1000;
    font-family: "avenir heavy";
	font-size: 30px;
}
.stair_info {
	padding: 1% 0% 1% 3%;
}
.two_lines {
	width:200px;
}

@media (min-width: 1200px) {
    .stair_padding {
		padding: 2% 5%;
	}
	.stair {
		height: 210px;
	}
}

/*************** SMALL VERSIOM *********/
@media (max-width: 1200px) {
    .stair_padding {
		padding: 2% 5%;
	}
	.stair {
		height: 110px;
	}
	.stair_text_long {
		text-align:left;
		float:left;
		margin-left:500px;
	}
	.stair_text {
		text-align:left;
		
	}
}
@media (max-width: 900px) {
	.stair_text_long {
		width: 700px;
	}
	.two_lines {
		width:auto;
	}
}
@media (max-width: 768px) {
	.stair_side_text {
		font-size: 25px;
	}
	.stair_text_long {
		width: 500px;
	}
}


/**************fixes works taht take up two lines, switches to one line when smalled screen************/
/*************** BIG VERSIOM *********/

@media (min-width: 1000px) {
	.one_line_text {
		display:none;
	}
	.two_line_text {
			display:inline-block;
	}
}
/*************** SMALL VERSIOM *********/
@media (max-width: 1001px) {
    .one_line_text {
		display:inline-block;
	}
	
	.two_line_text {
		display:none;
	}
	.stair_info {
		margin-top:30px;
	}
}

.tablinks {
	z-index: 10;
	height: 20%;
	width: 100%;
}

.reg_tab {
	width: 100%;
	height: 40%;
	padding-left: 0%;
}


/*************policies guidelines****************/

/*************** SMALL VERSIOM *********/


/**SMALL VERSION******************/
@media (max-width: 1001px) {
	.col_left {
	}

	.col_right {
	}
	.col-left-text {
		
	}
	.col-left-text {
		padding: 4% 9% ;
		color: #FFFFFF;
	}
	.col-right-text {
		padding: 4% 10% ;
		color: #FFFFFF;
	}

}
	/****BIG VERSION*******************************/
@media (min-width: 1000px) {
	.col_left {
		margin-right: -15px;
	}

	.col_right {
		margin-left: -15px;
		margin-right: -30px;
	}
	.col-left-text {
		padding: 30px 20px 30px 100px;
		color: #FFFFFF;
	}
	.col-right-text {
		padding: 30px 100px 30px 20px;
		color: #FFFFFF;
	}
}


.col-left {
	margin-right: -15px;
}

.col-right {
	margin: 0% -15px;
}


.grad_steps {
	padding: 3% 4% 3% 8%;
}

.round_col {
	margin: 5px;
	padding: 10px;
	color: #FFF;
	border-radius: 5px;
}

.card_dec {
	padding: 3%;
	text-align: left;
}

.new_grad-subtitle {
	padding-top: 0px;
  	font-size: 2rem;
	color: #245c2d;
	font-weight: 500;
}

.btn-primary-apply_lightgreen {
	background-color: #9fb38e;
	height: auto;
	font-size: 20px;
	font-weight: bolder;
	color: #FFFFFF;
	text-align: center;
	padding: 10px 70px;
}

.btn-primary-apply_lightgreen:hover {
	background-color: #9fb38e;
	color: #FFFFFF;
	text-align: center;
	box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.15), 0 6px 20px 0 rgba(0, 0, 0, 0.14);
}

.photo_border {
	margin: 5% 5% 0% 2%;
	border-radius: 5px;
	height: 300px;
}

.large_numbers {
	font-size: 100px;
}
/**SMALL VERSION******************/
@media (max-width: 801px) {
	.text_two {
		padding: 0% 20% 0% 20%;
	}

}
	/****BIG VERSION*******************************/
@media (min-width: 800px) {
	.text_two {
		padding: 10% 20% 0% 20%;
	}
}
.circle_border {
	border-radius: 50%;
	height: 300px;
	width: 300px;
}

.large_text {
	font-size: 30px;
}

.medium_white_text {
	color: white;
    font-weight: 1000;
    font-family: "avenir heavy";
	font-size: 25px;
	padding: 10px;
}
a.medium_white_text:hover {
    color: white;
    font-weight: 1000;
    font-family: "avenir heavy";
	font-size: 25px;
	padding: 10px;
}

/************************************************ New Students & Scholars*/

/**General**/
.breadcrumbs li {
	
}

.subtitle {
	color: #4D4F53;
}


.subtitle a{
	color: #4D4F53;
}
@media screen and (max-width: 768px) {
	.subtitle {
		font-size: 30px;
	}
}
.green-italic-header {
	color: #035642;
	font-size: 28px;
    font-weight: 1000;
    font-family: "avenir heavy";
	
}

.answerBlock {
	margin: 10px 0px;
	padding: 10px 20px;
	background-color:#E0E0E0;
}

.readMoreBlock {
	margin: 10px 0px;
	padding: 10px 20px;
}
.accordianLink {
	color: rgb(3, 86, 66);
	cursor:pointer;
	font-weight:bold;
	margin:0px;
	font-size:1.1em;
	line-height:1.5;
}

.bold-section {
	font-weight: bold;
}
.push-right {
	text-align: left;
	margin-left: auto;
}

@media screen and (max-width: 768px) {
	.push-right {
		margin-left: -10%;
	}
}

/*used to darken the bottom part of the header image */
.gradient-bg {
	background: linear-gradient(to bottom, rgba(0,0,0,0) 85%,rgba(0, 0, 0, 0.5) 100%);
	display:block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 1s ease-in-out;
    z-index: 0 !important;
}

/**Homepage**/
.text_quote {
	font-family: "avenir heavy";
    font-size: 3em;
    color: white;
    padding: 20vw;
}

.quote_image {
	background-image: url(../images/header/the_p_header.jpg);
	background-size: cover;
	width: 100%;
	filter: blur(3px);
}

.bg-beige {
	background-color: rgb(217, 215, 203);
}

.card_text {
	position: relative;
	top: 40%;
	padding-left: 30px;
	padding-right: 30px;
}

.card_img_top {

	border-top-left-radius: 10px;
	border-top-right-radius: 10px;

}

.card_title {
	color: #245c2d;
	font-size: 1.7rem;
}

.card {
	border-radius: 10px;
	-moz-box-shadow:    3px 3px 5px 6px #ccc;
  	-webkit-box-shadow: 3px 3px 5px 6px #ccc;
  	box-shadow:         3px 3px 5px 6px #ccc;
}

.card:hover {
	-webkit-transition: all 0.2s;
	transition: all 0.2;
	/* box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.15), 0 6px 20px 0 rgba(0, 0, 0, 0.14); */
}

/*ORIENTATION*/
.orientation-img-circle{
	width: 100px; 
	height: 100px; 
	background-color: #035642;
	margin: auto;
	margin-top: 10%;
}
.orientation-circle{
	width: 35px; 
	height: 35px; 
	background-color: #9EB28F;
	margin: auto;
	margin-top: 10%;
	vertical-align: middle;
}
.orientation-row{
	min-height: 210px;
	margin: 1%;
}
h4.subtitle{
	text-decoration: underline;
}
h3.subtitle{
	text-decoration: none;
}
strong { font-weight: bold; }

/*SOCIETY AND CULTURE*/
.sc-para{
	color: white; 
	text-align: center; 
	margin-top: -20%; 
	font-weight: 250; 
	font-size: 16px;
/*	margin-bottom: 5%;/*/
}

.sc-card{
	background: #035642; 
	border-radius: 20px; 
	margin-right: 5%;
	
}

/*
.banking-card {
	background: #FFFFFF; 
	text-align: center; 
	border: 1px #808080 solid; 
	border-radius: 6px; 
	color: #035642; 
	font-weight: bold;
	margin-right: 2%;
	vertical-align: middle;
	
}
*/

/*
.banking-card:hover{
	background: #035642;
	color: white;
	opacity: 0.75;
}
*/

ul.nav-right {
	list-style-type: none;
	/* border-left: 2px solid #035642; */
	border-right: .125em solid #dddbd9;
	font-weight: 300;
	padding-inline-start: 0px;
}

.nav-right li {
	margin: 0px 0px 0px 0px;

	width: 100%;
}
.nav-right .nav-right {
	border: none;
}
.nav-right li a.active:hover,
.nav-right li a.active {
	color: #035642;
}

ul.nav-right li a {
	color: black;
	font-weight: normal;
}
/** Navs for mobile becomes buttons **/
@media screen and (max-width: 768px) {
	

	ul.nav-right {
		border-left: none;
		margin: auto;
		text-align: center;
		padding-left: 0px;
		
	}
	
	ul.nav-right .nav-right {
		padding-left: 0px;
		margin: 0px auto;
		text-align: center;
	}
	
	ul.nav-right li {
		margin: 0px 0px 10px 0px;
	}
	
	ul.nav-right ul.inside-ul li {
		width: 70%;
	}
	.nav-right li {
		background-color: #035642;
		border-radius: 10px;
		border: 1px solid #035642;
		width: 80%;
		text-align: center;
		height: 100%;
		padding:8px;
		display: inline-block;
	}
	
	ul.nav-right li a {
		color: white;
	}
	
	ul.nav-right li:hover {
		cursor: pointer;
	}
}
/** Prospective **/
.section {
	/* width: 80%; */
	margin-top: 3em;
	
}

.section1 {
	/* width: 80%; */
}

.button-text{
	font-weight: 1000;
    font-family: "avenir heavy";
	font-size: 20px;
	line-height: 1.2;
	font-style: italic;
	height:auto;

}

.button-link {
	height: 600px;
    width: 200px;
	font-weight: 1000;
	font-size: 20px;
	line-height: 1.2;
}

.a-table {
	font-size:1.1em;
}

/**Buttons**/

.answerBlock a.button,
.bold-section a.button,
.bubble-section a.button,
.section a.button,
a.button
 {
	display: flex;
	align-content: center;
	justify-content: center;
	border-radius: 10px;
	background-color: #0E5541;
	width: 100%;
	height: 50px;
	padding-top: 13px;
	margin: 10px 10px 10px 0;
	font-size: 1rem;
	color: white;
	font-weight: normal;
}

.answerBlock a.button {
	padding-top: 10px;
}

.section div.not-button {
	display: flex;
	align-content: center;
	justify-content: center;
	border-radius: 10px;
	background-color: #0E5541;
	width: 100%;
	height: auto;
	padding-top: -5px;
	margin: 10px 10px 10px 0;
	font-size: 1rem;
	color: white;
	font-weight: normal;
}


div.not-button.light {
	background-color: #4A8979;
}

div.button a {
	color: white;
	font-weight: normal;
}

a.button.half-width {
	width: 50%;
	min-width: 400px;
}

a.button.short {
	height: 50px;
}

div.not-button.large,
a.button.large {
	height: 70px;
}

a.button.quarter-width {
	width: 25%;
}

a.button.third-width {
	width: 33%;
	min-width: 300px;
}

a.button.not-button:hover {
	pointer-events: none;
	cursor: default;
}
@media screen and (max-width: 768px) {
	a.button.quarter-width {
		width: 100%;
		min-width: 100px;
	}
	
	a.larger_on_mobile {
		height: 40%;
	}
	
	a.largest_on_mobile {
		height: 100%;
		padding-top: 0px;
	}

	a.button.half-width {
		width: 100%;
		min-width: 100px;
	}
	
	a.button.third-width {
		width: 100%;
	}
	
/*
	a.button {
		padding: 10px 15px;
	}
	
*/
/*
	.section a.button,
	.bubble-section a.button{
		height: 100%;
	}
*/

	.section a.button.short,
	.bubble-section a.button.short {
		height: 100%;
	}
	
	div.section button.shorter,
	div.bubble-section button.shorter {
		height: 100%;
	}
	
	div.section {
		width: 100%;
	}
}

a.button:hover {
	-webkit-transition: all 0.2s;
	transition: all 0.2;
	box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.15), 0 6px 20px 0 rgba(0, 0, 0, 0.14);
	cursor: pointer;
}

div.button a {
	margin: auto;
}
a.button:hover {
	text-decoration: none;
}
.answerBlock button,
.bold-section button,
.bubble-section button,
.section button {
	border-radius: 10px;
	color: white;
	background-color: #0E5541;
	width: 100%;
	height: 7vh;
	border: none;
	margin: 10px 10px 10px 0;
	font-size: 1rem;

}
.section1 button {
	border-radius: 10px;
	color: white;
	background-color: #0E5541;
	width: 200px;
	height: 200px;
	border: none;
	margin: 10px 10px 10px 0;
	font-size: 1rem;
}
.quarter-width,
button.quarter-width {
	width: 25%;
	min-width: 200px;
}
.half-width,
button.half-width,
li.half-width {
	width: 50%;
}
.three-quarter-width,
button.three-quarter-width {
	width: 75%;
}
.section button.short,
.bubble-section button.short {
	height: 5vh;
}
@media screen and (max-width: 768px) {
	button.quarter-width {
		width: 100%;
	}
	
	button.half-width {
		width: 100%;
	}
	
	button {
		padding: 10px 15px;
	}
	
	.section button,
	.bubble-section button{
		height: 100%;
	}
	.section button.short,
	.bubble-section button.short {
		height: 100%;
	}
	
	div.section button.shorter,
	div.bubble-section button.shorter {
		height: 100%;
	}
}
.txt-poly-green,
button.txt-poly-green {
	color:#0E5541;
}

.border-poly-green,
button.border-poly-green {
	border: 1px solid #0E5541;
}
.bg-white,
button.bg-white {
	background-color: white;
}
.section button.shorter,
.bubble-section button.shorter {
	height: 4vh;
}


.answerBlock button {
	width: 30%;
}
.bold-section .light,
.bubble-section .light,
.section .light {
	background-color: #4A8979;
	
}

.normal-text,
.section .normal-text {
	font-style: normal;
	font-weight: normal;
}
/** Exchange **/
.bubble-body {
	border: 1px solid black;
	border-radius: 20px;
	background-color: white;
}

ul.top-bar {
	list-style-type: none;
}

ul.top-bar li {
	display: inline-block;
	padding: 20px;
	border: 1px solid #0E5541;
	
}
button:hover {
	-webkit-transition: all 0.2s;
	transition: all 0.2;
	box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.15), 0 6px 20px 0 rgba(0, 0, 0, 0.14);
	cursor: pointer;
}

.bubble-header-row {
	text-align: center;
	font-size: 20px;
	color: green;
	font-weight: bold;
	cursor: pointer;
}

.row {
/*
	margin-left: auto;
	margin-right: auto;
*/
	margin: 0 auto;
	max-width: 100em;
	width: 100%;
	margin-bottom: 0;
}
.bubble-section {
	padding-left: 5%;
	padding-right: 5%;
	padding-top: 2%;
	padding-bottom: 2%;
}

/** About San Luis Obispo **/
.icon-row {
	margin-bottom: 20px;
}

.quote-bubble {
	border-radius: 10px;
	background-color: #DBDCDD;
	padding: 50px;
	width: 85%;
	position: relative;
}

.quote-bubble-text {
	width: 75%;
	font-size: 2em;
}

.quote-bubble-tag {
	position: absolute;
	bottom: 10%;
	right: 10%;
	font-style: italic;
}

.youtube {
	width: 85%;
	height: 500px;
}
@media screen and (max-width: 768px) {
	.quote-bubble {
		width: 100%;
	}
	
	.youtube {
		width: 100%;
		height: 300px;
	}
	.quote-bubble-tag {
		bottom: 5%; 
		right: 5%;
	}
}
.bold {
	font-weight: bold;
}

.bolder {
	font-weight: bolder;
}

li.table { padding: 0; }
li.table a { display: block; padding: 1em; height:100%; }

.take-all-space-you-can{
    width:100%;
}

ul.nav-tabs-nostyle > li {
  width: 33.333%;
}

ul.nav-tabs-nostyle > li > a {
  text-align: center;
}

ul.nav-tabs-nostyle-banking > li {
  width: 30%;
}

ul.nav-tabs-nostyle-banking > li > a {
  text-align: center;
}

@media screen and (max-width: 768px) {
	ul.nav-tabs-nostyle-banking > li {
		width: 98%;
	}
}

.active-header {
	color: #0E5541;
	/*red for test*/
	background: #fafafa;
}
a.active-banking-header {
	color: #fafafa;
	background: #0E5541;
	border: 1px #808080 solid; 
	border-radius: 6px;
	
}

a.nonactive-banking-header {
	color: #0E5541;
	background: #fafafa;
	border: 1px #808080 solid; 
	border-radius: 6px;
	
}
.nonactive-header {
	color: #fafafa;
	background: #0E5541;
}

.active-div {
	background: #fafafa;
}
.active-banking-div {
	background: #0E5541;
}

.nonactive-banking-div {
	background: #fafafa;
}

a.nonactive-banking-header:hover {
	background: #035642;
	color: white;
	opacity: 0.75;
}

a.active-banking-header:hover {
	cursor: default;
	color: white;
}

.nonactive-div {
	background: #0E5541;
}
a.nonactive-header{
	color: white;
	border: none;
	box-sizing: border-box;
}

a.active-header{
	color: #0E5541;
	border: none;
	box-sizing: border-box;
}

a.nonactive-header:hover{
	color: white;
	opacity:.8;
}

/*
a.active-header:hover{
	opacity:.8;

}
*/
a.active-header:hover {
	cursor: default;
}

ul.header:first-child{
	border-top-left-radius: 19px;
}

ul.header:last-child{
	border-top-right-radius: 19px;
}

ul.nav-right li a.tier_1_text.highlight-nav {
	color: #0E5541;
 	pointer-events: none;
	cursor: default;
	font-weight: 900;
}

ul.nav-right a.tier_2.highlight-nav {
	color: #0E5541;
 	pointer-events: none;
	cursor: default;
	font-weight: 900;
}

ul.nav-right li label.highlight-nav {
	color: #0E5541;
	font-weight: bold;
}




a.highlight-nav-mobile {
	color: #0E5541;
	pointer-events: none;
	cursor: default;
	font-weight: bold;
	background: white;
	border: 1px solid #0E5441;
}



@media screen and (max-width: 768px) {
	ul.nav-right li.no-background {
		background: white;
	}
	a.nested-button {
		width: 80%;
	}
}

.img-center {
	display: block;
	margin: auto;
}

.img-left {
	display: block;
	margin-right: auto;
}
.img-small {
	width: 150px;
	height:auto;
}

.text-center {
	text-align: center;
}

.show {
	display: block;
}

.bold {
	font-weight: bold;
}

ul.inside_ul {
	list-style-type: disc; 
}

h2.title {
	font-weight: bold;
	font-size: 3rem;
}

.grey-border {
	border: 1px solid gray;
}

.grey-text {
	color: darkgray;
}

.large-text {
	margin-top: 0.5em;
	font-size: 2rem;
}

.left-aligned-header {
/*	margin-left: -350px;*/
	color: white;
/*	width: 1600px;*/
	padding: 25px 0px 25px 50px;
	background-color:#0E5541;
	margin-bottom: 0.4em;
	margin-top: 1.8em;
}

@media screen and (max-width: 768px) {
	.left-aligned-header {
		font-size: 21px;
	}
}
h3.align-top,
.align-top {
	margin-top: 0px;
}

.mbot-25 {
	margin-bottom: 25px;
}

.mtop-25 {
	margin-top: 25px;
}

.mtop-100 {
	margin-top: 100px;
}

.pbot-25 {
	padding-bottom: 25px;
}

.ptop-25 {
	padding-top: 25px;
}

.pleft-50 {
	padding-left: 50px;
}

.pright-50 {
	padding-right: 50px;
}

@media screen and (max-width: 768px) {
	.ptop-25 {
		padding-top: 0px;
	}
}
.bright-grey,
table.bright-grey td{
	background-color: #DFE4EB;
}

.seventy-width {
	width: 70%;
}
.ninety-width {
	width: 90%;
}

.poly-green,
table.poly-green-head th {
	background-color: #0E5541;
}

table.whiteLinks th a {
	color: white;
}

table.whiteLinks th a:hover {
	color: white;
}
table.whiteBorders th,
table.whiteBorders td {
	border: 1px solid white;
}

table.morePadding td {
	padding: 20px;
}

table.headerShort th {
	width: 40%;
}

.content-left {
	padding-left: 3%;
}


@media screen and (max-width:768px) {

	.img-resize {
		width: 50%;
		height: auto;
		margin-bottom: 20px;
	}
	
	.push-left {
		padding-right: 5%;
	}
}

text-left {
	text-align: left;
}

.quote-text {
	position: absolute;
	top: 30%;
	left: 30%;
}

.blurImage {
	background: url(../images/header/the_p_header.jpg);
	background-size: cover;
	-webkit-filter: blur(3px);
    -moz-filter: blur(3px);
    -o-filter: blur(3px);
    -ms-filter: blur(3px);
    filter: blur(3px);
    position:absolute;
    width:100%;
    height:100%;
}

.darkerImage {
	background-color: black;
	opacity: 0.3;
	position: absolute;
	width: 100%;
	height: 100%;
}

#mainBasicInfo.height_quote_text {
	height: 80vh;
}

#mainNews.height_40 {
	height: 600px;
}
@media screen and (max-width:768px) {
	.card-bubble {
		border-radius: 10px;
		color: white;
		font-size: 1.2em;
		line-height:1.3;
		font-weight: 900;
		text-align: left;
		padding: 15px 40px;
		width: 90%;
		margin-bottom: 20px;
		height: auto;
		display: inline-block;
	}
	

	.card-bubble:active {
		text-decoration: none;
	}
	
	.text-left {
		text-align: center;
	}
	.text_quote {
		font-size: 1em;
		padding: 0 1rem;
	}

	#mainBasicInfo.height_quote_text {
		height: 40vh;
	}
	
	#mainNews.height_40 {

		height: 1900px;
	}
	
	#mainNews div.mtop-100 {
		margin-top: 30px;
	}
}

ul.banking {
	padding-left: 0px;
	list-style-type: none;
}
ul.banking > li {
	background: #F5F5EB;
	border-left: 5px solid #ABA994;
	padding: 20px;
	padding-left: 50px;
	margin-right: -5.5%;
	margin-bottom: 20px;
}


ul.banks-explained > li {
	padding-left: 25px;
}

/*
div.mobile-nav > a.button.mobile-nav:first-of-type {
	margin-bottom: 20px;
}
*/

a.button.mobile-nav {
	margin-top: 0px;
}
@media screen and (max-width:768px) {
	div.certificate_program img.card-img-top {
		height: 300px;
	}
	
	ul.banking > li {
		padding-left: 20px;
	}
	
	ul.banking > li p {
		text-align: center;
	}
}

@media screen and (max-width: 1090px) {
	div.certificate_program img.card-img-top {
		height: 400px;
	}
}

a.button.button-large {
	height: 70px;
	text-align: center;
	padding-top: 10px;
}

.show + [data-toggle="collapse"] p.if-collapsed {
  display: none;
}
:not(.show) + [data-toggle="collapse"] p.if-not-collapsed {
  display: none;
}

.top-header {
	margin-top: 0px;
}

.frame {
	width: 80%;
	height: 700px;
} 

.hidden-lst li{
	display: none;
}

/******************* Start of Sidebar */

.sidebar ul {
  margin: 0;
  list-style-type: none;
}

ul.nav-right li i{
	cursor: pointer;
}

.sidebar li {
  width: auto;
  overflow: hidden;
  list-style-type: none;
}

.sidebar a {
  text-decoration: none;
  font-size: 15px;
  color: #000000;
  display: block;
  transition: 0.3s;
  font-weight: bolder;
}




.sidebar .tier_1 {
  text-decoration: none;
  font-size: 18px;
  color: #82786F;
  display: inline-block;
  transition: 0.3s;
  width: 100%;
  margin-bottom: 0;
  padding: 0.4375rem 0 0.4375rem 0.875rem;
}

.sidebar .tier_1:hover {
	background: #d3d3d3;
}


ul.nav-right li a.tier_1_text:hover {
  /* padding: 1px 0px 1px 0px; */
  color: rgb(3, 86, 66);
  text-decoration: underline;
  cursor: pointer;
  transition: 0.6s;
}

.sidebar .tier_1_clicked {
  font-weight: bolder;
  transition: 0.6s;
  background-color: #d3d3d3;
}

.sidebar .tier_2 {
  padding: 0.4375rem 0 0.4375rem 0.875rem;
  text-decoration: none;
  font-size: 16px;
  border-bottom: 3px solid transparent;
}

.offcanvas .tier_2:focus {
  padding: 0px 0px 0px 0px;
  font-size: 16px;
  color: mediumseagreen;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.sidebar .tier_2:hover {
/*
  text-decoration: underline;
  color: rgb(3, 86, 66);
*/
  -webkit-transition: 0.3s;
  transition: 0.3s;
  background-color: #d3d3d3;
}


ul.nav-right li a.tier_1_text {
	width: 65%;
	color: black;
	font-size: 18px;
	display: inline-block;
}


.tier_1_dropdown {
	margin-left: 20%;
	text-align: center;
}

.tier_1_dropdown:hover {
	color: #007e29;
	cursor: pointer;
}

.sidebar {
/*	padding-top: 35%;*/
}

.tree {
	padding-inline-start: 15px;
}

.features-sub {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 1rem;
}

.features-sub .card {
	flex-flow: column;
    grid-column: 1/2;
    grid-row: span 2;
}

.features-sub .card .card-image {
	width: 100%;
}

.features-sub .card .card-body {
	width: 100%;
}

.features-sub::before {
	display: block;
    content: '';
    grid-column: 2/4;
    grid-row: 1/2;
    background: var(--sky-blue-light);
    z-index: -1;
}

.features .articles {
	grid-column: 2/3;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 1rem;
	height: calc(150vh - 10px);
	grid-template-rows: repeat(3, 1fr);
	margin: 0 auto;
	max-width: 100em;
	width: 100%;
	margin-bottom: 0;
}

.articles .item-0 {
	grid-column: 1/-1;
	grid-row: 1/2;
    display: grid;
    grid-template-columns: 1fr 1fr 40%;
    grid-template-rows: 1fr 100px;
    padding-right: 0;
    margin-bottom: 1rem;
}

.articles .item-0::before {
	display: block;
    content: '';
    grid-column: 2/4;
    grid-row: 1/2;
    background: #eeeeee;
    z-index: -1;
}

.articles .item-0 .card-image {
	grid-column: 1/3;
    grid-row: 1/-1;
    width: 100%;
    margin-top: 2rem;
}

.articles .item-0 .card-image .card-image-image {
	max-width: 100%;
    width: auto;
    height: auto;
    border: none;
    vertical-align: bottom;
    -ms-interpolation-mode: bicubic;
    box-sizing: content-box;
}

.articles .item-0 .card-body {
	grid-column: 3/4;
    grid-row: 1/2;
    align-self: center;
    padding: 2rem 4rem;
}

.articles .item-1 {
	grid-column: 1/-1;
	grid-row: 2/3;
    display: grid;
    grid-template-columns: 1fr 1fr 40%;
    grid-template-rows: 1fr 100px;
    padding-right: 0;
    margin-bottom: 1rem;
}

.articles .item-1::before {
	display: block;
    content: '';
    grid-column: 2/4;
    grid-row: 1/2;
    background: #eeeeee;
    z-index: -1;
}

.articles .item-1 .card-image {
	grid-column: 1/3;
    grid-row: 1/-1;
    width: 100%;
    margin-top: 2rem;
}

.articles .item-1 .card-image .card-image-image {
	max-width: 100%;
    width: auto;
    height: auto;
    border: none;
    vertical-align: bottom;
    -ms-interpolation-mode: bicubic;
    box-sizing: content-box;
}

.articles .item-1 .card-body {
	grid-column: 3/4;
    grid-row: 1/2;
    align-self: center;
    padding: 2rem 4rem;
}

.articles .item-2 {
	grid-column: 1/-1;
	grid-row: 3/4;
    display: grid;
    grid-template-columns: 1fr 1fr 40%;
    grid-template-rows: 1fr 100px;
    padding-right: 0;
    margin-bottom: 1rem;
}

.articles .item-2::before {
	display: block;
    content: '';
    grid-column: 2/4;
    grid-row: 1/2;
    background: #eeeeee;
    z-index: -1;
}

.articles .item-2 .card-image {
	grid-column: 1/3;
    grid-row: 1/-1;
    width: 100%;
    margin-top: 2rem;
}

.articles .item-2 .card-image .card-image-image {
	max-width: 100%;
    width: auto;
    height: auto;
    border: none;
    vertical-align: bottom;
    -ms-interpolation-mode: bicubic;
    box-sizing: content-box;
}

.articles .item-2 .card-body {
	grid-column: 3/4;
    grid-row: 1/2;
    align-self: center;
    padding: 2rem 4rem;
}

.features {
	display: grid;
	width: 100%;
	grid-template-columns: 1fr 108rem 1fr;
	grid-template-rows: auto;
}

.searchInput {
  cursor: pointer;
  cursor: default;
  outline: none;
  height: 3em;
  width: 3em;
  background-color: lightcoral;
  border: none;
  font-size: 1.3em;
  border-radius: 50%;
  color: lightcoral;
  transition: all .2s ease-in;
}

.searchInput:focus {
    width: 16em;
    padding-left: 1em;
    padding-right: 2.5em;
    transition: all .2s ease-in;
    border-radius: 10px;
    color: white;    
  }

.fa-2x {
  cursor: pointer;
  color: white;
  position: relative;
  left: -1.45em;
  pointer-events: none;
}

.search-wrapper {
    position: absolute;
    transform: translate(-50%, -50%);
    top:50%;
    right: 0;
}
.search-wrapper.active {
	right: -5%;
	background-color: white;
}

.search-wrapper .input-holder {    
    height: 70px;
    width:70px;
    overflow: hidden;
    background-color: transparent;
    border-radius:6px;
    position: relative;
    transition: all 0.3s ease-in-out;
}
.search-wrapper.active .input-holder {
    width:450px;
    border-radius: 50px;
    background-color: white;
    transition: all .5s cubic-bezier(0.000, 0.105, 0.035, 1.570);
}
.search-wrapper .fa-search {
    color: white;
}
.search-wrapper.active .fa-search {
	color: black;
}
.search-wrapper .input-holder .search-input {
    width:100%;
    height: 50px;
    padding:0px 70px 0 20px;
    opacity: 0;
    position: absolute;
    top:0px;
    left:0px;
    background: transparent;
    box-sizing: border-box;
    border:none;
    outline:none;
    font-family:"Open Sans", Arial, Verdana;
    font-size: 16px;
    font-weight: 400;
    line-height: 20px;
    color:#FFF;
    transform: translate(0, 60px);
    transition: all .3s cubic-bezier(0.000, 0.105, 0.035, 1.570);
    transition-delay: 0.3s;
}
.search-wrapper.active .input-holder .search-input {
    opacity: 1;
    transform: translate(0, 10px);
}
.search-wrapper .input-holder .search-icon {
    width:70px;
    height:70px;
    border:none;
    border-radius:6px;
    background-color: transparent;
    padding:0px;
    outline:none;
    position: relative;
    z-index: 2;
    float:right;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}
.search-wrapper.active .input-holder .search-icon {
    width: 50px;
    height:50px;
    margin: 10px;
    border-radius: 30px;
}
.search-wrapper .input-holder .search-icon span {
    width:22px;
    height:22px;
    display: inline-block;
    vertical-align: middle;
    position:relative;
    transform: rotate(45deg);
    transition: all .4s cubic-bezier(.76,.07,.83,.67);
}
.search-wrapper.active .input-holder .search-icon span {
    transform: rotate(-45deg);
}
.search-wrapper .input-holder .search-icon span::before, .search-wrapper .input-holder .search-icon span::after {
    position: absolute; 
    content:'';
}
.search-wrapper .input-holder .search-icon span::before {
    width: 4px;
    height: 11px;
    left: 9px;
    top: 18px;
    border-radius: 2px;
    background-color: transparent;
}
.search-wrapper .input-holder .search-icon span::after {
    width: 14px;
    height: 14px;
    left: 0px;
    top: 0px;
    
}
.search-wrapper .close {
    position: absolute;
    z-index: 1;
    top:24px;
    right:20px;
    width:25px;
    height:25px;
    cursor: pointer;
    transform: rotate(-180deg);
    transition: all .3s cubic-bezier(0.285, -0.450, 0.935, 0.110);
    transition-delay: 0.2s;
	opacity: 0;
}
.search-wrapper.active .close {
    right:-50px;
/*    transform: rotate(45deg);*/
    transition: all .6s cubic-bezier(0.000, 0.105, 0.035, 1.570);
    transition-delay: 0.5s;
	opacity: 1;
}
/*
.search-wrapper .close::before, .search-wrapper .close::after {
    position:absolute;
    content:'';
    background: #FE5F55;
    border-radius: 2px;
}
*/
/*
.search-wrapper .close::before {
    width: 5px;
    height: 25px;
    left: 10px;
    top: 0px;
}
.search-wrapper .close::after {
    width: 25px;
    height: 5px;
    left: 0px;
    top: 10px;
}*/

.search-box {
 position: relative;
 background: transparent;
 height: auto;
 border-radius: 40px;
 padding: 0.5rem;
 margin-left: 0.5rem;
}

.search-box:hover > .search-txt {
 width: 240px;
 padding: 0 6px;
 color: black;
}

.search-box:hover > .search-btn {
	color: black;
	text-decoration: none;
}

.search-btn:hover {
	box-shadow: none;
}

.search-box:hover, .search-box:active {
  background-color: white;
}

.search-btn {
 all: unset;
 float: none;
 width: 40px;
 height: 40px;
 display: flex;
 justify-content: center;
 align-items: center;
 transition: 0.5s;
 color: white;
 cursor: pointer;
}

.search-btn > i {
 font-size: 30px;
}

.search-txt {
 border: none;
 background: none;
 outline: none;
 float: left;
 padding: 0;
 color: transparent;
 font-size: 16px;
 transition: 0.4s;
 line-height: 40px;
 width: 0px;
 font-weight: bold;
}

.Border
{
    width: 0;
    border-left: 35px solid transparent;
    border-right: 35px solid transparent;   
    position: absolute;
}

.Gray
{
    position: relative;
    margin: 0 auto;
}
.TopTriangle .Gray
{
    border-top: 25px solid gray;
}
.BottomTriangle .Gray
{
    border-bottom: 25px solid gray;
    top: -1px;
}

.Black
{
    left: -35px;
}
.TopTriangle .Black
{
    border-top: 25px solid black;
    top: -27px;
}
.BottomTriangle .Black
{
    border-bottom: 25px solid black;
    top: 1px;
}

.Black:before
{
    content: '';
    position: absolute;
    left: -35px;
    width: 70px;
    height: 6px;
    background-color: black;
}
.TopTriangle .Black:before
{
    top: -24px;
}
.BottomTriangle .Black:before
{
    top: 20px;
    z-index: 1;
}

.White
{
    left: -35px;
}
.TopTriangle .White
{
    border-top: 25px solid white;
    top: -30px;
}
.BottomTriangle .White
{
    border-bottom: 25px solid white;
    top: 6px;
    z-index: 2;
}


.notch {
	width: calc(50% - 2.5em);
    left: 0;
	top: -2.5em;
    height: 2.5em;
    margin: 0 auto;
    position: absolute;
    background: white;
    color: white;
    font-size: 11px;
    letter-spacing: 0.2em;
    text-align: center;
    text-transform: uppercase;
}
.notch:before {
	content: ' ';
    position: absolute;
    left: 100%;
    top: 0;
    width: 0;
    height: 0;
    border-top: 2.5em solid transparent;
    border-left: 2.5em solid white;
    border-right: 2.5em solid white;
}

.notch:after {
	content: '';
	position: absolute;
	left: calc(100% + 5em);
	width: 100%;
	margin: 0 auto;
	background: white;
	height: 2.5em;
}

@media only screen and (max-width: 1024px) {
	.notch {
		width: calc(50% - 1.5em);
		top: -1.5em;
		height: 1.5em;
	}
	.notch:before {
		border-top: 1.5em solid transparent;
		border-left: 1.5em solid white;
		border-right: 1.5em solid white;
	}
	.notch:after {
		left: calc(100% + 3em);
		height: 1.5em;
	}
}


.letter {
  float: left;
  font-size: 400px;
  font-family: Georgia;
  line-height: .8;
  margin-top: 20px;
  margin-right: 20px;
  shape-outside: polygon(5px 14px, 233px 20px, 246px 133px, 189px 167px, 308px 304px, 0px 306px) content-box;
  clip-path: polygon(5px 14px, 233px 20px, 246px 133px, 189px 167px, 308px 304px, 0px 306px);
}

.parallax {
  top: 0;
  bottom:  0;
  left: 0;
  right: 0;

  /* Full height */
  height: 90vh;
  width: 100%;

  /* Create the parallax scrolling effect */
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-size: cover;
  text-transform: uppercase;
  font-size: 3rem;
  font-weight: 1000;
  color: white; 
  font-family: "avernir heavy";
  font-style: italic;
}


@media only screen and (max-device-width: 1366px) and (-webkit-min-device-pixel-ratio: 2) {
  .parallax {
    background-attachment: scroll;
  }
}

@media only screen and (max-device-width: 1366px) and (-webkit-min-device-pixel-ratio: 2) and (orientation: portrait) {
	.parallax {
		height: 70vh;
	}
}

.parallax .title {
    font-style: italic;
    color: white;
    font-weight: 1000;
    font-family: "avenir heavy";
    font-size: calc(30px + (50 - 30) * ((100vw - 300px) / (1600 - 300)));
	line-height:1.0;
	text-shadow: #000 2px 2px 6px;
	top: 70vh;
	left: 5vw;
	position:fixed;
	display: block;
}


@media only screen and (max-device-width: 1366px) and (-webkit-min-device-pixel-ratio: 2) {
	.parallax .title {
		position: relative;
		left: 0;
		margin-left: 3vw;
	}
}

@media only screen and (max-device-width: 1366px) and (-webkit-min-device-pixel-ratio: 2) and (orientation: portrait) {
	.parallax .title {
		top: 55vh;
	}
}




/****************** HOMEPAGE CARD LINKS */
.homepage-card-gradient {
	background-image: linear-gradient(to bottom, rgba(0,0,0,0), rgba(0,0,0,1));
	height:100%;
}
.homepage-card-div {
	height:50vh; 
	background-size: cover;
	padding-top:50%;
}
p.homepage-card {
	color:white; 
	position:absolute; 
	bottom:5%; 
	font-size: 2vw; 
	font-weight: bold; 
	letter-spacing: 0px;
	width:100%;
	text-align:center;
}
@media (max-width: 1024px) {
	.homepage-card-div {
		height:25vh; 
		background-size: cover;
		padding-top:50%;
	}
}
@media (max-width: 767px) {
	.homepage-card-div {
		margin: 0 10%;
		height: auto;
		contain: content;
		border-radius:25px;
		padding:0;
	}
	p.homepage-card {
		position:relative; 
		font-size: 5vw; 
		font-weight: bold;
		width:100%;
		height: 100%;
		text-align:center;
		padding:10% 0;
		margin:0;
	}
	.homepage-card-gradient {
		background-image: linear-gradient(to bottom, rgba(0,0,0,.5), rgba(0,0,0,.5));
		height:100%;
	}
}

/* Forms */
div[id^="error"] {
	display: none;
	color: red;
}

.btn-primary {
	background-color: #035642;
	border-radius: 0px;
	height: auto;
	font-size: 1.2em;
	color: #fff;
	font-weight: bolder;
	text-align: center;
	padding: 8px 40px;
}

/*
div[id^="error"] > span {
	display: inline-block;
	padding-left: 5px;
}
*/

label.error {
	display: inline-block !important;
	padding-left: 5px;
	margin-top: 10px;
	color: red;
}

input.form-control.error,
textarea.form-control.error {
	box-shadow: 0 0 0 0.2rem rgba(255, 0, 0, 0.40);
	border-color: red;
}

i[id^="icon_for"] {
	color: red;
}

label.display-none {
	display: none !important;
}
.hidden {
	display: none !important;
}

.flex-end
{
	justify-content: flex-end;
}

input[type="radio"],
input[type="radio"] + label,
input[type="checkbox"], 
input[type="checkbox"] + label, 
input[type="checkbox"] ~ input[type="text"] {
	display: inline-block;
}

input[type="checkbox"] {
	margin-right: 5px;
}
input[type="checkbox"] ~ input[type="text"] {
	width: 0;
	border: 0;
	background-color: inherit;
}
input[type="checkbox"] ~ input[type="text"] {
	border-bottom: 3px solid #737373;
	padding: 0;
	height: auto;
	transition: width 0.5s ease-in-out;
}

select {
	display: block;
}

#s-suggestion-other:checked ~ input[type="text"] {
	width: 50%;
}

#other {
	margin-left: 5px;
	border-radius: 0;
}

#cform legend {
	font-size: 1rem;
	font-weight: 600;
}

/* All labels should be a little darker, except for the checkbox ones.*/
#cform label:not([for^="s-"]) {
	font-weight: 600;
}
