/* ---------------------- Nullify Existing link Styling --------------------- */

		a:link			{outline: 0 none;text-decoration:none; color: inherit; }	
		a:visited		{outline: 0 none;text-decoration:none; color: inherit; }					
		a:hover			{outline: 0 none;text-decoration:none; color: inherit; }					
		a:active		{outline: 0 none;text-decoration:none; color: inherit; }
		a:target		{outline: 0 none;text-decoration:none; color: inherit; }

/* ----------------------------------------------- General Content and Element Styling ------------------------------ */
@font-face {
    font-family: Gotham_Book;
    src: url(../fonts/Gotham-Book.otf);
}
@font-face {
    font-family: Gotham_Light;
    src: url(../fonts/Gotham-Light.otf);
}
@font-face {
    font-family: Gotham_Light_Italic;
    src: url(../fonts/Gotham-LightItalic.otf);
}
@font-face {
    font-family: Gotham_Bold;
    src: url(../fonts/Gotham-Bold.otf);
}
@font-face {
    font-family: Gotham_Black;
    src: url(../fonts/Gotham-Black.otf);
}
@font-face {
    font-family: Roboto Slab Regular;
    src: url(../fonts/RobotoSlab-Regular.ttf);
}
@font-face {
    font-family: Roboto_Slab_Bold;
    src: url(../fonts/RobotoSlab-Bold.ttf);
}
@font-face {
    font-family: Bebas_Neue;
    src: url(../fonts/BebasNeue.otf);
}
h1 {
    font-family: Gotham_Bold;
}
h2 {
    font-family: Gotham_Bold;
    letter-spacing:1px;
}
h3 {
    font-family: Gotham_Bold;
}
h4 {
    font-family: Bebas_Neue;
}
h5 {
    font-family: Gotham_Light;
}
h6 {
    font-family: Gotham_Bold;
    text-transform: capitalize;
}
p {
    font-family: Gotham_Book;
    font-size: 14px;
    line-height: 175%;
}
ul, li {
    list-style-type: none;
    text-decoration: none;
    font-family: Gotham_Book;
    color: rgba(90,90,90,1);
    font-size: 14px;
    line-height: 175%;
}
ul {
    margin-bottom: 15px;
}

/* ----------------------------------------------- End of General Content and Element Styling ------------------------------ */


/*------------------------------- Global Div Styles-----------------------------*/
html {
    height: 100%;
}
body.letu-body {
    background-color: rgba(40,40,40,1);
}
/*----------------------------------- Site Search ---------------------------------*/
 
#SiteSearch {
    background: linear-gradient(180deg, rgba(255,255,255,1)20%, rgba(255,255,255,.85)80%);
    width: 100vw;
    height: 100vh;
    position: fixed;
    right: -110%;
    top: -110%;
    transition: .5s;
    transition-timing-function: ease;
    z-index: 200;
}
#SiteSearch.visible {
    opacity: 1;
    transition: .4s;
    transition-timing-function: ease;
    top: 0;
    right: 0;
    overflow-y: scroll;
}
#SiteSearch .searchBar {
    padding-top: 5em;
    padding-bottom: 2em;
    width: 95%;
    max-width: 1100px;
    margin: auto;
    position: relative;
}
#CloseSearchIcon {
    padding: 0px 20px;
    position: absolute;
    top: 20px;
    right: 0px;
    cursor: pointer;
    z-index: 100;
}
#SiteSearch .searchResults {
    padding: 0em 3em 6em 3em;
    margin: auto;
    width: 95%;
    max-width: 1100px;
    background: rgba(255,255,255,1);
    border-radius: 15px;
}
#SiteSearch em {
    font-family: Gotham_Bold;
    font-style: normal !important;
    color: rgba(0,183,250,1.00);
}
#SiteSearch .st-metadata {
    font-family: Gotham_Light;
    color: rgba(40,40,40,1.00);
    font-size: 12px;
}
.st-search-result-link {
    font-family: Gotham_Bold;
    color: rgba(25,41,157,1.00) !important;
    transition: .3s;
}
.st-search-result-link:hover {
    color: rgba(226,121,52,1.00) !important;
    transition: .3s;
}
.st-result h3.title {
    font-size: 1.25em;
}
/*----------------------------------- End of Site Search ---------------------------------*/


/*----------------------------------- Hamburger Menu ---------------------------------*/
#French-Fries {
    background-color: rgba(40,40,40,0.00);
    flex: 1;
    color: rgba(248,180,53,1.00);
    text-align: right;
    font-size: 100px;
    line-height: 160%;
    font-family: Gotham_Bold;
}
#French-Fries h3 {
    font-size: 100px;
    z-index: 50;
}
#HamburgerMenu {
    position: fixed;
    top: -110%;
    right: -110%;
    width: 100%;
    max-width: 575px;
    background-color: rgba(0,17,47,0.00);
    padding: 20px 0px 10px 0px;
    /*display:flex;
	---This makes the menu expand above the screen when content no longer fits*/
    flex-direction: column;
    height: 100vh;
    transition: .5s;
    transition-timing-function: ease-in;
    z-index: 200;
    /*box-shadow: -2px -5px 4px rgba(0,0,0,0.10);
	*/
    justify-content: center;
    overflow: hidden;/*border-left: 2px solid rgba(248,180,53,1.00);
	*/
}
#HamburgerIcon {
    padding: 0px 20px;
    position: absolute;
    top: 20px;
    right: 0px;
    cursor: pointer;
}
#HamburgerMenu ul {
    display: -ms-flexbox; display: flex;
    flex-direction: column;
    margin: 0px;
    padding: 0px;
    position: relative;
}
#HamburgerMenu li {
    color: rgba(200,200,200,1.00);
    font-family: Gotham_Black;
    font-size: 15px;
    /*border-bottom: 1px solid rgba(150,150,150,0.50);
	*/
    width: 100%;
    text-transform: uppercase;
    transform: translateX(-500px);
    letter-spacing: 1px;
    min-height: 50px;
    padding-left: 25px;
}
#HamburgerMenu li:hover {
    cursor: pointer;
}
#HamburgerMenu.reveal {
    top: 0;
    right: 0;
    transition: .5s;
    transition-timing-function: ease;
    background-color: rgba(0,17,47,0.85);
    transition-delay: background-color .3s;
    overflow: visible;
    padding-top: 70px;
}
#HamburgerMenu.reveal li {
    animation-name: menu-item-slide;
    animation-duration: .5s;
    animation-fill-mode: both;
    animation-timing-function: ease;
}
#HamburgerMenu.reveal li:first-child {
    animation-delay: .2s;
}
#HamburgerMenu.reveal li:nth-child(2) {
    animation-delay: .25s;
}
#HamburgerMenu.reveal li:nth-child(3) {
    animation-delay: .3s;
}
#HamburgerMenu.reveal li:nth-child(4) {
    animation-delay: .35s;
}
#HamburgerMenu.reveal li:nth-child(5) {
    animation-delay: .4s;
}
#HamburgerMenu.reveal li:nth-child(6) {
    animation-delay: .45s;
}
#HamburgerMenu.reveal li:nth-child(7) {
    animation-delay: .5s;
}
#HamburgerMenu.reveal li:nth-child(8) {
    animation-delay: .55s;
}
#HamburgerMenu.reveal li:nth-child(9) {
    animation-delay: .6s;
}
#HamburgerMenu.reveal li:nth-child(10) {
    animation-delay: .65s;
}
#HamburgerMenu.reveal li:nth-child(11) {
    animation-delay: .7s;
}
#HamburgerMenu.reveal li:nth-child(12) {
    animation-delay: .75s;
}
 @keyframes menu-item-slide {
 from {
 opacity: 0;
 transform: translateX(-500px);
 letter-spacing:1px;
}
 to {
 opacity: 1;
 transform: translateX(0px);
 letter-spacing:8px
}
}
#HamburgerMenu.reveal li ul li {
    animation: none;
    transform: translateX(0px);
}
#HamburgerMenu ul li i {
    width: 0%;
    transition: .2s;
    opacity: 0;
    color: rgba(248,180,53,1.00);
}
#HamburgerMenu ul li i.active {
    width: 2%;
    transition: .2s;
    opacity: 1;
    margin-right: 15px;
    animation-duration: .8s;
}
#HamburgerMenu ul li:hover i {
    width: 2%;
    transition: .2s;
    opacity: 1;
    margin-right: 15px;
    animation-duration: .8s;
}
#HamburgerMenu ul ul {
    background-color: rgba(20,20,20,.50);
    padding: 15px;
    min-width: 310px;
    transform: translateX(-335px);
    position: absolute;
    display: none;
    border-top: 1px solid rgba(255,255,255,.5);
    max-width: 310px;
}
#HamburgerMenu ul li a {
    display: block;
}
#HamburgerMenu ul ul li {
    color: rgba(255,255,255,1.00);
    font-size: 13px;
    letter-spacing: 0px;
    font-family: Gotham_Bold;
    text-transform: none;
    display: block;
    text-align: left;
    transition-duration: .2s;
    min-height: 15px;
    padding-left: 0px;
    line-height: 125%;
    /* margin: 10px 0px;*/
    border-bottom: 1px solid rgba(200,200,200,.35);
}
#HamburgerMenu ul ul li a:hover {
    color: rgba(248,180,53,1.00);
    transition-duration: .2s;
}
#HamburgerMenu ul li a {
    letter-spacing: 8px;
}
#HamburgerMenu ul ul li a {
    letter-spacing: 1px;
    padding: 10px 0px;
}
#HamburgerLogo {
    margin: 60px 0px;
    align-items: flex-end;
    /* display:flex;*/
    margin-left: 25px;
    justify-content: center;
    display: none;
}
#HamburgerSocial {
    display: -ms-flexbox; display: flex;
    padding: 20px 25px 0px 20px;
    justify-content: center;
}
#Hamburger-CTA {
    display: -ms-flexbox; display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px 30px 25px;
}
.Hamburger-CTA-item {
    position: relative;
    justify-self: stretch;
    color: #fff;
    width: 150px;
    min-height: 60px;
    display:none;
}
.Hamburger-CTA-icon {
    display: flex;
    flex:1;
    text-align: center;
    color: rgba(17,30,53,1.00);
    background-color: rgba(248,180,53,1.00);
    max-width:30%;
    height: 40px;
    cursor: pointer;
    align-items: center;
    border-radius: 8px;
    margin:0px 5px 0px 0px;
    justify-content:center;
}
.Hamburger-CTA-icon a {
    font-size: 10px !important;
    font-family: Gotham_Bold;
    line-height:100%;
}
.Hamburger-CTA-icon img {
    max-width: 40px;
}
#Hamburger-Overlay {
    /*z-index: -1000;
	*/
    position: fixed;
    left: 0;
    width: 100%;
    height: 100vh;
    transition: .1s;
    transition-timing-function: ease;
    z-index: 50;
    top: -115%;
    transition-delay: .5s;
}
#Hamburger-Overlay-Inside {
    width: 100%;
    height: 100%;
    opacity: 0;
    background: rgba(0,13,37,0.85);
    transition: .5s;
    transition-timing-function: ease;
}
#Hamburger-Overlay.visible {
    opacity: 1;
    transition: .1s;
    transition-timing-function: ease;
    top: 0;
}
#Hamburger-Overlay-Inside {
    opacity: 0;
    /*background: rgba(0,13,37,0.75);*/background: linear-gradient(65deg, rgb(255, 200, 0)-40%, rgba(2, 16, 65, 0.85)50%, rgb(0, 7, 32)95%);
    transition: .5s;
    transition-timing-function: ease;
    transition-delay: .1s;
}
#Hamburger-Overlay.visible #Hamburger-Overlay-Inside {
    opacity: 1;
    /*background: rgba(0,13,37,0.75);*/background: linear-gradient(65deg, rgb(255, 200, 0)-40%, rgba(2, 16, 65, 0.85)50%, rgb(0, 7, 32)95%);
    transition: .5s;
    transition-timing-function: ease;
    transition-delay: .1s;
}
/*----------------------------------- End of Hamburger Menu ---------------------------------*/

 
/*-----------------------------------BG Video---------------------------------*/
.fullscreen-video {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    overflow: hidden;
    z-index: -1;
}
.fullscreen-video > video {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 50%;
    /*width: 100vw;
	 height: 100vh;
	*/
}

@media (min-aspect-ratio: 16/9) {
    .fullscreen-video > video {
        width: 100%;
        height: auto;/* actually taller than viewport */
    }
}

@media (max-aspect-ratio: 16/9) {
    .fullscreen-video > video {
        width: 100%;
        /* actually wider than viewport */
        height: 100vh;
    }
}

@supports (-ms-ime-align:auto) {
    @media (max-aspect-ratio: 16/9) {
        .fullscreen-video > video {
            min-width: 100%;
            width: auto;
            /* actually wider than viewport */
            height: 100vh;
        }
    }
}

#video-overlay {
    height: 100%;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    background: rgba(10,10,10,.30);
    z-index: 1;
    transition: .75s;
}
#video-overlay.darken {
    background: rgba(10,10,10,.80);
    transition: .75s;
}
#primaryContainer {
    flex: 1;
    flex-direction: column;
    z-index: 13;
}
#HeaderContain {
    display: -ms-flexbox; display: flex;
    flex-direction: column;
    justify-content: flex-end;
    position: relative;
    overflow: hidden;
    padding-top: 235px;
}

/*---------------------------------------Feature Headers and Elements ------------------------------------*/

/*-----Feature BG Class-------*/
.FeatureBG {
	content:"";
      position:fixed; /* stretch a fixed position to the whole screen */
      top:0;
      height:100vh; /* fix for mobile browser address bar appearing disappearing */
      left:0;
      right:0;
      z-index:-1; /* needed to keep in the background */
      -webkit-background-size: cover;
      -moz-background-size: cover;
      -o-background-size: cover;
      background-size: cover;
	background-attachment: fixed;
}

/*-----Position the Background (Horizontal/Vertical) -------*/
.FBG-LT {background-position: left top;}
.FBG-LC {background-position: left center;}
.FBG-LB {background-position: left bottom;}
.FBG-RT {background-position: right top;}
.FBG-RC {background-position: right center;}
.FBG-RB {background-position: right bottom;}
.FBG-CT {background-position: center top;}
.FBG-CC {background-position: center center;}
.FBG-CB {background-position: center bottom;}

#FeatureHeaderContain {
	display: flex;
	flex-direction:column;
	background-size:cover; 
	background-position:center; 
	background-attachment:fixed;
	position: relative;
    overflow: hidden;
    padding-top: 235px;
}

/*-----Change the overall header height-------*/
.FHC-Full {min-height:100vh;}
.FHC-Med {min-height:60vh;}
.FHC-Short {min-height:40vh;}

.FHC-Med .FeatureHeaderBar, .FHC-Short .FeatureHeaderBar {padding-bottom:0px !important;}

/*-----Vertically Align the Headline-------*/
.FHC-top {justify-content: flex-start;}
.FHC-middle {justify-content: center;}
.FHC-bottom {justify-content: flex-end;}

.FeatureHeaderBar {
	width:95%;
	margin:auto;
	padding-bottom: 75px;
}

.Feature-Headline {
    width: 35%;
	min-width:750px;
	padding-bottom:0px;
	letter-spacing:-1px; 
}

/*-----Horizontally Align the Headline Area -------*/
.FH-left {margin-left:5%;margin-right:auto;}
.FH-center {margin:auto;}
.FH-right {margin-right:5%;margin-left:auto;}

/*-----Choose between a Serif or Sans-Seric Headline -------*/
.FH1-serif {
	text-shadow:0px 0px 10px rgba(255,255,255,.9);
	letter-spacing:-1px; 
	font-size:85px !important;
	font-family:Baskerville, 'Palatino Linotype', Palatino, 'Century Schoolbook L', 'Times New Roman', 'serif'; 
	line-height:90%;
}

.FH1-sansserif {
	text-shadow:0px 0px 10px rgba(255,255,255,.9);
	letter-spacing:-1px; 
	font-size:80px !important;
	font-family:Gotham_Bold; 
	line-height:95%;
}

/*-----Make the Headline Black or White-------*/
.FH1-light {color:rgba(237,237,237,1.00);}
.FH1-dark {color:rgba(26,26,26,1.00);}

/*-----Align the Headline Text within its location -------*/
.FH1-left {text-align:left;}
.FH1-center {text-align:center}
.FH1-right {text-align:right}

/*-----Add a Shadow or Glow to the Headline-------*/
.FH1-Glow {text-shadow:0px 0px 10px rgba(255,255,255,.9);}
.FH1-Shadow {text-shadow:0px 0px 10px rgba(0,0,0,.9);}

#FeatureIntro-Text {
    color: rgba(225,225,225,1.00);
	width:85%;
	max-width:800px;
    position: relative;
    margin-bottom: 70px;
	background: rgba(0,0,0,.6); 
	padding:40px;
}

/*-----Position the Intro Text or make it full width -------*/
.FIT-left {margin-left:5%;margin-right:auto;}
.FIT-center {margin:auto;}
.FIT-center-wide {margin:auto;width:80% !important;min-width:80% !important;}
.FIT-right {margin-right:5%;margin-left:auto;}

/*---------------------------------------End of Feature Headers and Elements ------------------------------------*/


/*--------------------------------------- Branded Content Hub Elements ------------------------------------*/

.CategoryFiltersListItem label {
    margin-bottom:0px;
}

.ContentHubItem {
    width: 23%;
    margin: 1%;
    padding: 0;
    border: 0px solid gray;
    background-color: #ffffff;
	-webkit-box-shadow: 0px 5px 17px -5px rgba(0,0,0,0.2);
	-moz-box-shadow: 0px 5px 17px -5px rgba(0,0,0,0.2);
	box-shadow: 0px 5px 17px -5px rgba(0,0,0,0.2);
	border-radius:6px;
	overflow:hidden;

}

.ContentHubItemImage img {
    width: 100%;
}
div.ContentHubItemBody {
    width: 100%;
    padding: 12px;
}
.ContentHubItemBody a {
    color: rgba(90,90,90,1) !important;
}

.ContentHubItemCategories {
    font-size: 60%;
}
.ContentHubItemCategories .ContentHubItemCategoriesList {
    list-style-type: none;
    display: inline-block;
    padding-inline-start: 0;
}
.ContentHubItemCategories .ContentHubItemCategoriesList .ContentHubItemCategoriesListItem {
    font-size: 60%;
    background-color: rgba(232,232,232,1);
    border: none;
    color: black;
    padding: 1px 5px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    margin: 1px;
    border-radius: 3px;
    text-indent: 0;
    text-transform: capitalize;
}
.ContentHubItemCategories .ContentHubItemCategoriesList .ContentHubItemCategoriesListItem::before {
    color: black;
    content: "";
    font-size: 60%;
}

div.ContentHubItemBody a {
	font-family: Roboto_Slab_Bold;
    font-size: 16px;
    line-height: 100% !important;
}

ul.CategoryFiltersList {
    list-style-type: none; 
    display: inline-block; 
    padding-inline-start: 0;
}

ul.CategoryFiltersList li.CategoryFiltersListItem {
    display: inline;
    white-space: nowrap;
    margin-left: 8px; margin-right: 8px;
    text-transform: capitalize;
}

ul.CategoryFiltersList li.CategoryFiltersListItem::before {
    color: black;
    content: "";
}


/*--------------------------------------- End Branded Content Hub Elements ------------------------------------*/


/*---------------------------------------Navigation Bar------------------------------------*/
#NavContain {
    width: 100%;
    z-index: 100;
    /*height: 125px;
	*/
    transition: .3s;
    box-sizing: border-box;
    display: -ms-flexbox; display: flex;
    flex-direction: column;
    flex: 1;
    position: fixed;
}
/*----Navigation specific to Home page---*/
#NavContain.home {
    height: auto;
    top: 0;
    left: 0;
    transition: .3s;
}
#NavContain.home #HomeLogo {
    height: 80px;
}
#NavContain.home .titletext {
    color: rgba(250,250,250,1.00);
    transition: .3s;
}
#NavContain.home-scroll #HomeLogo {
    opacity: 0;
    height: 80px;
}
#NavContain.home-scroll .titletext {
    transition: .3s;
    height: 0px !important;
    opacity: 0;
}
#NavContain.home-scroll #OnTray {
    border-left: 0px solid rgba(200,200,200,.20);
    border-bottom: 0px solid rgba(200,200,200,.20);
    background-color: rgba(0,17,47,0.65);
    transition: .3s;
}
/*----Navigation specific to Academic Landing Pages---*/
#NavContain.home-2 {
    background-color: rgba(17,30,53,0.00);
    height: auto;
    position: fixed;
    top: 0;
    left: 0;
}
#NavContain.home-2 #OnTray {
    border-left: 0px solid rgba(200,200,200,.20);
    border-bottom: 0px solid rgba(200,200,200,.20);
    background-color: rgba(0,17,47,0.65);
    transition: .3s;
}
#NavContain.home-2 #breadcrumbs-contain {
    background-color: rgba(40,40,40,0.00);
}
#NavContain.home-2 #sec-toggle {
    transition: .3s;
    color: #fff;
    background-color: rgba(248,180,53,1.00);
}
#NavContain.home-2 #HomeLogo {
    height: 80px;
}
#NavContain.home-2 .titletext {
    color: rgba(250,250,250,1.00);
    transition: color .3s;
}
/*----Navigation specific to all pages with static NavContain Heights---*/
#NavContain.static {
    background-color: rgba(17,30,53,1.00);
    height: auto;
    position: fixed;
    top: 0;
    left: 0;
}
#NavContain.static #OnTray {
    border-left: 0px solid rgba(200,200,200,0);
    border-bottom: 0px solid rgba(200,200,200,0);
    background-color: rgba(0,17,47,0);
    transition: .3s;
}
#NavContain.static #breadcrumbs-contain {
    background-color: rgba(40,40,40,1.00);
}
#NavContain.static #sec-toggle {
    transition: .3s;
    color: #fff;
    background-color: rgba(248,180,53,1.00);
}
#NavContain.static #HomeLogo {
    /*height: 80px !important;*/
    max-width: 200px;
}
#NavContain.static.on-scroll #sec-toggle {
    background-color: rgba(40,40,40,0);
    transition: .3s;
    color: #fff;
}
#NavContain.static .titletext {
    color: rgba(53,69,107,1.00);
}
#NavContain.static.on-scroll #sec-toggle p {
    font-family: Gotham_Bold;
    font-size: 12px;
    margin: 0;
    color: rgba(248,180,53,1.00);
    transition: .3s;
}
/*----Controls state of Navigation once scrolling starts on pages like Academic Landing Pages ---*/
#NavContain.home-2.on-scroll {
    background-color: rgba(17,30,53,1.00);
    transition: .3s;
    height: auto !important;
}
#NavContain.home-2.on-scroll #breadcrumbs-contain {
    background-color: rgba(40,40,40,1.00);
    transition: .3s;
}
#NavContain.home-2.on-scroll #OnTray {
    border-left: 0px solid rgba(200,200,200,0);
    border-bottom: 0px solid rgba(200,200,200,0);
    background-color: rgba(0,17,47,0);
    transition: .3s;
}
#NavContain.home-2.on-scroll #sec-toggle {
    background-color: rgba(40,40,40,0);
    transition: .3s;
    color: #fff;
}
#NavContain.home-2.on-scroll #sec-toggle p {
    font-family: Gotham_Bold;
    font-size: 12px;
    margin: 0;
    color: rgba(248,180,53,1.00);
    transition: .3s;
}
/*-----.on-scroll refers to the state that the NavContain transitions to when scrolling begins. Here (even though it isn't triggered by scrolling) ".on-scroll" is the static state ove the NavContain and its components on the article pages---*/
#NavContain.on-scroll {
    height: auto!important;
    transition: .3s;
}
#NavContain.on-scroll #HomeLogo {
    /*height: 70px!important;*/
    transition: .3s;
    /*max-width: 200px;*/
}
#NavContain.on-scroll .titletext {
    color: rgba(53,69,107,1.00);
    transition: color .3s;
}
/*---------These are the standard attributes of the NavContain components without any classes applied to them. Every change throughout the site requires a class of some sort----------*/
#HomeLogo {
    height: 80px;
    padding: 15px;
    transition: .3s;
}
#HomeLogo img {
    height: 100%;
    /*width: 100%;*/
}
#HomeShield {
    display: none;
    z-index: 40;
}
#TitleBox {
    flex: 4;
    padding: 0px 15px;
}
/*---------------------------------------Always On Navigation------------------------------------*/

#NavTray, #NavTray.movein {
    flex-direction: column;
    padding: 0px 0px;
    position: fixed;
    z-index: 100;
    top: 275px;
    right: 0;
    text-align: right;
    color: #fff;
    font-family: Gotham_Light;
    font-size: 13px;
    width: 225px;
    align-items: flex-end;
    height: 450px;
    transform: translateX(0px);
}
#NavTray.moveout {
    transform: translateX(245px);
    transition-delay: .75s;
}
#OnTray {
    display: -ms-flexbox; display: flex;
    align-content: center;
    justify-content: flex-end;
    padding: 10px;
    align-self: stretch;
    align-items: center;
    border-radius: 0px 0px 0px 9px;
    transition:.3s;
}
.ontray-item {
    height: 50px;
    width: 50px;
    display: -ms-flexbox; display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 4px 10px 4px 10px;
    flex-direction: column;
    margin: 0px 5px;
    border-bottom: 1px solid rgba(248,180,53,00);
}
.ontray-phone-number {
    width: auto !important;
    color: rgba(248,180,53,1.00);
    align-items: flex-end;
    padding: 3px 15px 0px 15px;
    height: 50px;
    display: flex;
    justify-content: flex-start;
    flex-direction: column;
    margin: 0px 5px;
    border-bottom: 1px solid rgba(248,180,53,0);
}
.ontray-phone-number p {
    font-size: 26px;
    font-family: Gotham_Bold;
    line-height: 100%;
    margin: 0px;
}
.ontray-item-phone {
    width: 50px !important;
    display: none;
}
.ontray-item:hover {
    border-bottom: 1px solid rgba(248,180,53,1.00);
    transition: .3s;
    cursor: pointer;
}
.ontray-item img {
    min-height: 25px;
}
.ontray-item h3 {
    font-size: 9px;
    color: #fff;
    padding: 0px;
    margin: 6px 0px 0px 0px;
    font-family: Gotham_Book;
}
.ontray-item a {
    height: 100%;
    width: 100%;
}
.lock-scroll {
    overflow: hidden;
}
#traybuttons {
    flex: 1;
    height: 100%;
    display: -ms-flexbox; display: flex;
    flex-direction: column;
    width: 200px;
}
a.frenchfry {
    width: 200;
    animation-delay: 1s;
    display: -ms-flexbox; display: flex;
    color: #fff !important;
}
a.frenchfry p {
    line-height: inherit;
    font-size: 12px;
}
#traybuttons div {
    transform: translateX(0px);
    margin: 35px 0px;
    align-items: center;
}
#traybuttons div img {
    max-height: 35px;
}
#traybuttons.reduce div {
    transform: translateX(245px);
    transition: .5s;
    transition-timing-function: ease;
}
#traybuttons.expand div {
    transform: translateX(0px);
    transition: .5s;
    transition-timing-function: ease;
}
#traybuttons.expand div:nth-child(2) {
    transition-delay: .1s;
}
#traybuttons.expand div:nth-child(3) {
    transition-delay: .2s;
}
#traybuttons div:hover {
    transform: translateX(0px);
}
.dim {
    opacity: .2;
    transition: .5s;
}
/*---------------------------------------End of Always On Navigation ------------------------------------*/



#NavContent {
    margin: 0px auto 0px auto;
    display: -ms-flexbox; display: flex;
    overflow: visible;
    align-items: center;
    padding: 0px 0px 0px 10px;
    width: 100%;
}
#HeaderContent {
    height: auto;
    margin: 0 auto;
    padding: 0px;
    width: 100%;
    display: -ms-flexbox; display: flex;
    align-content: flex-end;
    align-items: flex-start;
    flex-direction: column;
}
/*--------------------------------------- Mobile Header Buttons ------------------------------------*/

#Mobile-Header-Buttons, #Platforms, #HeaderCTAs {
    width: 100%;
    margin: auto;
    padding: 0;
    display: -ms-flexbox; display: flex;
}
#Mobile-Header-Buttons {
    display: none;
    width: 95%;
    margin-bottom: 10px;
    padding: 0;
}
a.Mobile-Header-CTA, .Mobile-Header-CTA {
    border: 1px solid rgba(200,200,200,.20);
    background-color: rgba(80,80,80,0.3);
    color: rgba(248,180,53,1) !important;
    font-family: Gotham_Bold;
    font-size: 10px;
    padding: 10px 20px;
    margin-right: 10px;
}
p.residential, p.online {
    font-family: Gotham_Bold;
    font-size: 10px;
    padding: 10px 0px;
    margin-right: 10px;
    width: 125px;
}
p.residential {
    border-bottom: 1px solid rgba(248,180,53,1.00);
    color: rgba(248,180,53,1.00) !important;
}
p.residential::before {
    color: rgba(248,180,53,1.00);
    content: "\f19c";
    font-family: FontAwesome;
    margin-right: 10px;
    font-size: 14px !important;
}
p.online {
    border-bottom: 1px solid rgba(0,183,250,1.00);
    color: rgba(0,183,250,1.00) !important;
}
p.online::before {
    color: rgba(0,183,250,1.00);
    content: "\f109";
    font-family: FontAwesome;
    margin-right: 10px;
    font-size: 14px !important;
}
/*--------------------------------------- End of Mobile Header Buttons ------------------------------------*/

/*---------------------------------- Majors and Departments -----------------------------*/

#Major, #Department {
    width: 90%;
    height: auto;
    text-align: left;
    z-index: 5;
    overflow: visible;
    margin: auto;
    max-width: 1600px;
}
#Major {
    margin-bottom: 250px;
}
#Department {
    margin-bottom: 200px;
}
#MajorContent, #DepartmentContent {
    position: relative;
}
#Major h1, #Department h1 {
    color: rgba(218,218,218,1.00);
    position: relative;
    z-index: 5;
    overflow: visible;
}
#Major p {
    max-width: 800px;
    color: rgba(218,218,218,1.00);
    position: relative;
    z-index: 5;
}
/*--------------------------- End of Majors and Departments -----------------------------*/

/*----------------------------Breadcrumbs--------------------------*/
#breadcrumbs-contain {
    background-color: rgba(40,40,40,1.0);
}
#breadcrumbs {
    display: -ms-flexbox; display: flex;
    width: 100%;
    height: 30px;
    margin: auto;
}
#breadcrumbs ul {
    margin-bottom: 0px;
    display: -ms-flexbox; display: flex;
    height: 30px;
    align-items: center;
    margin: auto;
    flex: 1;
}
#breadcrumbs li:last-child {
    justify-self: flex-end;
}
#breadcrumbs li {
    color: rgba(226,121,52,1.00);
    font-family: Gotham_Book;
    font-size: 11px;
    text-align: left;
    text-decoration: none;
    list-style-type: none;
    display: inline-block;
    text-transform: uppercase;
}
#breadcrumbs li:not(:last-child):after {
    content: "\f105";
    font-family: FontAwesome;
    margin: 0px 5px;
    color: rgba(119,119,119,1.00);
}
#sec-toggle {
    display: -ms-flexbox; display: flex;
    align-content: center;
    align-items: center;
    color: rgba(255,255,255,1.00);
    padding: 5px 15px 5px 15px;
    border-radius: 5px 0px 0px 5px;
}
#sec-toggle:hover {
    cursor: pointer;
}
#sec-toggle p {
    font-family: Gotham_Bold;
    font-size: 12px;
    margin: 0;
    color: rgba(40,40,40,1);
    transition: .3s;
}
/*-----------------------------------------Secondary Navigation-----------------------------------*/
#sec-nav-contain {
    background-color: rgba(240,240,240,1.00);
    justify-content: flex-start;
    width: 100%;
    height: auto;
    opacity: 1;
    z-index: -1;
    position: relative;
    overflow: hidden;
    display: none;
    padding-bottom: 15px;
    box-shadow: 3px 0px 05px rgba(0,0,0,.25);
}
#sec-nav-content {
    width: 95%;
    max-width: 1200px;
    padding: 5px 20px;
    display: -ms-flexbox; display: flex;
    margin: auto;
    flex-wrap: wrap;
    justify-content: flex-start;
}
#sec-nav-content ul {
    justify-item: flex-start;
    display: -ms-flexbox; display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}
#sec-nav-content li {
    color: rgba(40,40,40,1.00);
    font-family: Gotham_Bold;
    font-size: 12px;
    text-align: left;
    text-decoration: none;
    list-style-type: none;
    flex-basis: 250px;
    border-bottom: 1px solid rgba(220,220,220,1.00);
    margin: 15px 10px 10px 10px;
    min-width: 250px;
}
#sec-nav-content a:hover {
    color: rgba(226,121,52,1.00);
}
#sec-nav-content li.nothome::before {
    content: '|| ';
    color: rgba(226,121,52,1.00);
    font-family: Gotham_Bold;
}
#sec-nav-content li.home::before {
    font-family: FontAwesome;
    content: '\F015 ';
    color: rgba(226,121,52,1.00);
}
#secMenuCaret {
    color: rgba(226,121,52,1.00);
    margin-left: 5px;
}
/*-----------------------------------------end of Secondary Navigation-----------------------------------*/

/*------------------------------- Animated Feature Panel  ----------------------------*/
#FeatureBox {
    width: 55%;
    /*max-width: 1400px;
	 */
    margin: auto;
    margin-bottom: 325px;
    position: relative;
    overflow: visible;
}
#FeatureImg {
    position: relative;
    z-index: 2;
    box-shadow: 0px 0px 35px rgba(0,0,0,.75);
    width: 100%;
    margin: auto;
}
#FeatureImg img {
    width: 100%;
}
.FeatureTitle {
    position: absolute;
    top: 75%;
    left: 35%;
    width: 55%;
    height: auto;
    z-index: 5;
}
.FeatureTitle h1 {
    font-size: 80px;
    line-height: 90%;
    font-family: Gotham_Black !important;
    text-shadow: 3px 3px 5px rgba(0,0,0,.4);
    letter-spacing: -5px;
    position: relative;
    z-index: 4;
}
#FeatureType {
    display: -ms-flexbox; display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(4,15,34,0.80);
    position: absolute;
    top: 6%;
    left: -60px;
    width: 450px;
    height: 60px;
    z-index: 3;
}
#FeatureType p {
    line-height: 80%;
    font-family: Gotham_Light !important;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin: 0px;
}
.FeatureDesc {
    display: -ms-flexbox; display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(4,15,34,0.80);
    position: absolute;
    top: 83%;
    left: 5%;
    width: 109%;
    z-index: 3;
    padding: 30px 30px 10px;
    line-height: 190%;
    font-size: 14px;
}
#FeaturePanel1 {
    /*background:rgba(248,180,53,1.00);
	*/
    position: absolute;
    top: -4%;
    left: -10%;
    width: 55%;
    height: 250px;
    z-index: 1;
    padding: 15px;
    border: 10px solid rgba(248,180,53,1.00);
}
#FeaturePanel2 {
    /*background:rgba(248,180,53,1.00);
	*/
    position: absolute;
    bottom: 10%;
    right: -8%;
    width: 35%;
    height: 60%;
    z-index: 1;
    border: 10px solid rgba(248,180,53,1.00);
}
.PlanStroke1 {
    background: rgba(255,255,255,.50);
    position: absolute;
    bottom: -50px;
    left: -25px;
    width: 1px;
    height: 40%;
    z-index: 1;
    ;
}
.PlanStroke2 {
    background: rgba(255,255,255,.50);
    position: absolute;
    bottom: -25px;
    left: -50px;
    width: 30%;
    height: 1px;
    z-index: 1;
}
.PlanStroke3 {
    background: rgba(255,255,255,.50);
    position: absolute;
    top: -50px;
    right: -25px;
    width: 1px;
    height: 40%;
    z-index: 1;
    ;
}
.PlanStroke4 {
    background: rgba(255,255,255,.50);
    position: absolute;
    top: -25px;
    right: -50px;
    width: 35%;
    height: 1px;
    z-index: 1;
}
.GridBL {
    background-image: url('');
    bottom: -15%;
    left: -16%;
    position: absolute;
    opacity: .4;
    height: 75%;
    width: 40%;
    background-size: 1%;
    background-repeat: repeat;
}
.GridBC {
    background-image: url('');
    bottom: -13%;
    position: absolute;
    opacity: .4;
    height: 90%;
    width: 120%;
    background-size: .3%;
    left: -15%;
    background-repeat: repeat;
    z-index: -1;
}
/*-----------------------------End of Animated Feature Panel  -----------------------------*/

/*----------------------------- Branded Content Top Content Section  -----------------------------*/

#LETUTopContent {
	width:92%;
	max-width:1200px;
	padding: 60px 0px 190px 0px;
	display:flex;
	margin:auto;
	flex-direction: column;
}

#LETUTopContent h1 {
	color:rgba(248,180,53,1.00);
}

#MainBrandFeature {
	margin:auto;
	width:100%;
	margin-bottom:60px;
	padding:10px;
}

.MainFeatureImg, .SecFeatureImg {
	background-size:cover;
	background-position:center center;
	flex:1;
	height:250px;
	transition:.3s;
    margin-bottom: 15px;
    border-radius: 10px;
}

.MainFeatureImg:hover, SecFeatureImg:hover {
	background-size:cover;
	background-position:center center;
	cursor:pointer;
	transition:.3s;
}

.MainFeatureText {
}

.MainFeatureText h1, .sec-feature h1 {
	font-family: Gotham_Bold;
	font-size:18px;
	color: rgba(248,180,53,1.00);
}

.MainFeatureText p, .sec-feature p {
	font-family: Gotham_Book;
	font-size:14px;
	color: rgba(255,255,255,1.00);
}

.SecBrandFeatures {
	display:flex;
	justify-content: space-between;
	margin-bottom:60px;
}

.sec-feature {
	flex:1;
	padding:10px;

}


/*----------------------------- Branded Content Top Content Section  -----------------------------*/


/*--------------------------------------------Part 2 & Promo2 Containers -------------------------------------------*/
#Part2Contain {
    background-image: url('');
    background-position: center;
    background-attachment: fixed;
    background-color: rgba(40,40,40,1.00);
    overflow: hidden;
}
#Promo2Contain {
    overflow: hidden;
}
/*--------------------------------------------end of Part 2 & Promo2 Containers -------------------------------------*/

/*-------------------------------Areas of Study Display----------------------------*/
#AreasOfStudyContain {
    width: 100%;
    padding: 150px 0px;
    background: linear-gradient(180deg, rgba(22,28,40,1.00) 35%, rgba(22,28,40,0.00) 90%);
    background-position: center;
    z-index: 1;
    position: relative;
}
#AreasTitle {
    margin: 0 auto;
    max-width: 1700px;
    text-align: left;
    width: 90%;
}
#StudyAreas {
    /*opacity: 0; dont think you need this for the animation to work properly*/
    width: 85%;
    max-width: 1700px;
    margin: auto;
    padding: 0px;
    position: relative;
    overflow: visible;
    z-index: 2;
}
.AreasOfStudy {
    width: 100%;
    display: -ms-flexbox; display: flex;
    align-items: center;
    margin: auto;
    max-height: 300px;
    box-shadow: 0px 0px 50px rgba(0,0,0,.8);
    max-width: 1600px;
}
#StudyAreas a {
    margin: 0px;
    padding: 0px;
}
.StudyArea-box a {
    margin: 0px;
    padding: 0px;
    flex: 1;
}
.StudyArea-box {
    flex: 1;
    background: rgba(17,30,53,1.00);
    transition: .5s;
    flex-shrink: 1;
    flex-grow: 1;
    text-align: left;
    height: 300px;
    /* make sure that the max-height of the .AreasOfStudy is equal to this!!!*/
    overflow: hidden;
    position: relative;
    background-size: cover !important;
    background-position: center !important;
    background-color: rgba(17,30,53,1.00);
}
.StudyArea-box h1 {
    color: rgba(255,255,255,1.00);
    font-size: 15px;
    line-height: 90%;
    margin: 0px;
    /*background-color:rgba(20,20,20,0.50);
	*/
    padding: 10px;
    width: 100%;
    background: linear-gradient(90deg, rgba(0,14,24,0)10%, rgba(0,14,24,1)50%, rgba(0,14,24,0)90%);
}
.StudyArea-box > a {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: inline-block;
    overflow: hidden;
    transition: .5s;
    text-align: left;
    background-position: center !important;
}
.StudyArea-box > a > div {
    width: 100%;
    height: 100%;
    background-size: cover!important;
    background-position: center!important;
    display: -ms-flexbox; display: flex;
    align-items: center;
    text-align: center;
    cursor: pointer;
}
.StudyArea-box > a > div:hover {
    text-align: left;
    align-items: flex-end;
}
.StudyArea-box > a:hover {
    opacity: .4;
}
.StudyArea-box:hover {
    flex: 1.3;
    background: rgba(248,180,53,1.00);
    transition: .5s;
    padding: 0px;
    margin: 0px -35px;
    box-shadow: 30px 30px 50px rgba(0,0,0,0.60);
    z-index: 50;
    height: 325px;
}
.StudyArea-box:hover h1 {
    color: rgba(213,213,213,0.50);
    font-size: 80px;
    line-height: 73%;
    font-family: Gotham_Black !important;
    margin-left: -10px;
    margin-bottom: -15px;
    background: rgba(20,20,20,0.00);
}
/*------------------------------- End of Areas of Study Display----------------------------*/
 
/*------------------------------------------- ROI SECTION ------------------------------------*/

#StatContain {
    padding: 250px 0px 305px 0px;
    z-index: 2;
    text-align: center;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    min-height:100vh;
}
#StatContent {
    color: #fff;
    max-width: 1200px;
    margin: auto;
    padding-bottom: 75px;
    width: 90%;
}
#StatContent h3 {
    font-size: 18px;
}
#StatContent p {
    text-align: left;
    letter-spacing: 1px;
    max-width: 1200px;
}
.ROIGraphics {
    margin: auto;
    width: 90%;
    max-width: 1100px;
    display: -ms-flexbox; display: flex;
    justify-content: space-around;
    align-items: flex-start;
}
.ROI-Item {
    display: -ms-flexbox; display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0px 10px 30px 10px;
}
.ROI-Item img {
    min-width: 175px;
    max-width: 175px;
    max-height: 175px;
    margin-bottom: 20px;
}
.ROI-Item h1 {
    color: #fff;
    font-size: 15px;
}
/*-------------------------------------------- END OF ROI SECTION ------------------------------------*/

/*-------------------------------------------- DISPLAY TILES ------------------------------------*/

.TileContainer {
    display: -ms-flexbox; display: flex;
    width: auto;
    max-width: 1900px;
    justify-content: center;
    flex-wrap: wrap;
}
.tile-wrapper {
    flex-basis: 288px;
    flex-grow: 0;
    flex-shrink: 0;
    padding: 0px;
    flex: 1;
    background-color: rgba(40,40,40,.00);
    min-height: 162px;
    min-width: 288px;
    max-width: 288px;
    display: -ms-flexbox; display: flex;
    flex-direction: column;
    position: relative;
    margin: 0px 10px 35px 10px;
}
.tile {
    display: -ms-flexbox; display: flex;
    flex-direction: column;
    border-radius: 7px;
}
.tile-pic {
    position: relative;
    /*opacity:.7;*/
    transition: .3s;
    background-color: rgba(5,15,40,1.00);
    width: 100%;
    min-height: 204px;
    border-radius: 7px;
    margin-bottom: 8px
}
.tile-pic:hover {
    /*opacity:1;*/
    transition: .3s;
}
.tile-pic img {
    opacity: 1;
    transition: .3s;
    width: 100%;
    border-radius: 7px;
}
.tile:hover img {
    opacity: .6;
    transition: .3s;
}
.tile h4 {
    color: rgba(17,30,53,1.00);
    font-size: 24px;
    margin-bottom: 5px;
    padding-bottom: 2px;
    /*border-bottom: 1.5px solid rgba(248,180,53,1.00);*/
    box-shadow: inset 0px -1px 0px rgba(0,183,250,1.00);
    transition: .3s;
}
.tile:hover h4 {
    transition: .3s ease-out;
    box-shadow: inset 0px -70px 0px rgba(0,183,250,1.00);
    color: #fff;
    padding-left: 5px;
}
.tile-desc ul {
    margin: 0px;
    padding: 0px;
}
.tile-desc li {
    color: rgba(17,30,53,1.00);
    font-size: 12px;
    line-height: 165%;
    margin-bottom: 5px;
    font-family: Gotham_Bold !important;
}
.tile-text-overlay {
    background-color: rgba(5,15,40,.40);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition: .3s;
    display: -ms-flexbox; display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
.tile-text-overlay h3 {
    padding: 5px;
    color: #fff !important;
    box-shadow: inset 0px 0px 0px rgba(0,183,250,0);
    width: 100%;
    text-align: center;
    margin-top: 5px;
    font-size: 15px !important;
    text-transform: Capitalize !important;
    transition: .3s;
}
.tile-text-overlay .tile-icon img {
    opacity: 1 !important;
}
.tile:hover .tile-text-overlay h3 {
    color: rgba(248,180,53,1.00) !important;
    box-shadow: inset 0px 0px 0px rgba(0,183,250,0);
    background-color: rgba(5,15,40,.80);
}
.tile-overlay:hover {
    background-color: rgba(5,15,40,.0);
    transition: .3s;
    cursor: pointer;
}
/*------------------------------------------- END OF DISPLAY TILES ------------------------------------*/

/*---------------------- Testimonianl Display ------------------------*/

#TestimonyTitle {
    max-width: 1700px;
    margin: auto;
    margin-bottom: 50px;
    width: 95%
}
.testimony-container {
    background: linear-gradient(120deg, rgba(40,40,40,1) 40%, rgba(255,255,255,1) 40%);
    padding: 0px;
    width: 100%;
    flex: 1;
    z-indexs: 3;
    position: relative;
    padding-top: 75px;
}
.testimony-grid {
    display: -ms-flexbox; display: flex;
    width: 92%;
    margin: auto;
    padding-bottom:100px;
    max-width:2000px;
}
.testimony-tile {
    background-color: rgba(30,30,30,1);
    flex: 1;
    position: relative;
    min-height: 400px;
    display: -ms-flexbox; display: flex;
}
.testimony-link {
    cursor: pointer;
    transition: .3s;
    display: -ms-flexbox; display: flex;
    flex-direction: column;
    align-content: flex-end;
    justify-content: flex-end;
    flex: 1;
}
.testimony-tile:hover {
    transition: .3s;
}
.testimony-pic {
    position: absolute;
    transition: .3s;
    width: 100%;
    margin: 0px;
    padding: 0px;
    height: 100%;
    background-size: cover;
    background-position: 50% 15%;
    background-repeat: no-repeat;
    top: 0;
    left: 0;
}
.testimony-name {
    text-align: center;
    width: 100%;
    display: -ms-flexbox; display: flex;
    flex-direction: column;
    justify-content: flex-end;
    transition: .3s;
    position: relative;
    z-index: 2;
}
.testimony-tile:hover .testimony-name {
    text-align: center;
    width: 100%;
    display: -ms-flexbox; display: flex;
    flex-direction: column;
    justify-content: flex-end;
    transition: .3s;
    padding-bottom: 8%;
}
.testimony-tile-gradient {
    position: absolute;
    background: linear-gradient(180deg, rgba(30,30,30,0)60%, rgba(30,30,30,1)90%);
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition: .3s;
    mix-blend-mode: multiply;
    z-index: 1;
}
.testimony-tile:hover .testimony-pic {
    opacity: .5;
    transition: .3s;
}
.testimony-name h1 {
    color: #fff;
    font-size: 18px;
    margin-bottom: 1px;
}
.testimony-name p {
    color: #fff;
    font-size: 12px;
}
.testimony-tile:hover .testimony-name h1 {
    color: rgba(248,180,53,1.00)
}
.testimonial-text {
    margin-top: 50px;
    overflow: visible;
    display: -ms-flexbox; display: flex;
    flex-direction: column;
    z-index: 10;
    flex: 1;
    position: relative;
    align-self: center;
    width: 90%;
}
/*-------------------------------------- END OF TESTIMONIAL DISPLAY -------------------------------------*/

/*------------------------------------ FEATHERLIGHT CHANGES --------------------------------------*/

.featherlight .featherlight-content {
    padding: 0px;
    width: 90%;
    max-width: 700px;
    background: none;
}
.lightbox-whitebg {
    background-color: rgba(255,255,255,1);
    padding: 10px;
}
.testimony-lightbox-image img {
    width: 100%;
    height: 100%;
}
.testimony-lightbox-image {
    margin-bottom: 25px;
}
.testimony-lightbox-text p {
    font-family: Gotham_Bold;
    font-size: 16px;
    color: #fff;
}
/*------------------------------------ END OF FEATHERLIGHT CHANGES --------------------------------------*/

/*----------------------------- Sticky Footer Content-------------------------------*/

#FootContain {
    min-height: 100px;
    flex-shrink: 0;
    background-color: rgba(40,40,40,1.00);
    padding: 80px 60px;
    z-index: 1;
}
#FootContain2 {
    min-height: 100px;
    flex-shrink: 0;
    background-color: rgba(20,20,20,1.00);
    display: -ms-flexbox; display: flex;
    padding: 20px 30px;
    z-index: 1;
}
#LinkBin {
    display:flex;
    flex:1;
    align-items: start;
}

#LinkBin ul {
    padding: 0px;
    margin: 0px;
    text-align: left;
    display: -ms-flexbox; display: flex;
    flex-direction: column;
    margin-right: 35px;
}
#LinkBin li {
    color: rgba(165,165,165,1.0);
    margin: 0px 0px 5px 0px;
    font-size: 12px;
    font-family: Gotham_Book;
    border-bottom: 1px dotted rgba(255,255,255,.0)
}
#LinkBin li:hover {
    color: rgba(248,180,53,1.00);
    transition: .3s;
    border-bottom: 1px dotted rgba(255,255,255,.5);
    cursor: pointer;
}
#LinkBin li::before {
    content: "|| ";
    color: rgba(248,180,53,1.00);
}
.footer-CTA {
    margin: 0 auto;
    display: -ms-flexbox; display: flex;
    flex-direction: column;
    padding: 50px;
    width: 100%;
    align-items: stretch;
}
.footer-CTA img {
    margin: auto;
    margin-bottom: 20px;
    max-height: 150px;
    max-width: 270px;
}
.footer-CTA h1 {
    font-family: Gotham_Bold;
    font-size: 35px;
    color: rgba(70,70,70,1.00);
    text-align: center;
    line-height: 100%;
    display: -ms-flexbox; display: flex;
    flex-direction: row;
    justify-content: center;
    width: 100%;
    margin: auto;
    margin-top: 5px;
    margin-bottom: 15px;
    max-width: 1600px;
    letter-spacing: 2px;
}
#FootSocial {
    display: -ms-flexbox; display: flex;
    justify-content: flex-start;
}
#FootSocial img {
    margin: 0px 10px 0px 0px;
}
#CredentialContent {
    margin: auto;
    padding-top: 75px;
    margin-top: 75px;
    border-top: 1px solid rgba(205,205,205,.3);
    max-width: 1200px;
}
.credentials {
    display: inline-block;
    justify-content: center;
    padding: 20px 0px 0px 0px;
}
.credentials img {
    max-width: 65px;
    height: 95px;
    margin: 0px 15px 0px 0px;
}

.credentials li {
    display:inline-block;
}

/*----------------------HOME/FEATURE PAGE STYLING---------------------------------*/

/*----------------------------------GENERAL ARTICLE STYLING ---------------------------------*/
.article-A .article-content {
    padding: 60px;
    box-shadow: 2px -2px 4px rgba(100,100,100,0.10);
    background-color: #fff;
    margin: -45px 0px 0px 45px;
    border-radius: 6px 6px 0px 0px;
    min-height: 350px;
    overflow: hidden;
}
.article-A {
    margin-top: -340px;
}
.article-A p, .article-B p, .profile-fac p {
    font-family: Gotham_Book;
    padding: 0px;
    color: rgba(90,90,90,1.00);
}
.article-A h1 {
    line-height: 80%;
    font-family: Gotham_Black;
    color: #fff;
    font-size: 75px;
    margin-bottom: 25px;
}
.article-A h2, .article-B h2, .profile-fac h2 {
    padding: 0px;
    font-size: 20px;
    color: rgba(0,30,105,1);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: Gotham_Bold;
}
.article-A h3, .article-B h3, .profile-fac h3 {
    font-size: 20px;
    text-transform: uppercase;
    color: rgba(120,120,120,1.00);
    letter-spacing: 1px;
}
.article-A h4, .article-B h4, .profile-fac h4 {
    font-size: 22px;
    text-transform: uppercase;
    color: rgba(17,30,53,1.00);
}
.article-A h5, .article-B h5, .profile-fac h5 {
    font-size: 22px;
    font-size: 18px;
    text-transform: uppercase;
    color: rgba(120,120,120,1.00);
}
.article-A h6, .article-B h6, .profile-fac h6 {
    font-size: 22px;
    font-size: 18px;
    color: rgba(25,41,157,1.00);
}
.article-B .article-content {
    padding: 0px 60px 60px 60px;
    background-color: #fff;
    margin: 0px 0px 0px 0px;
    min-height: 160px;
}
.article-B {
    margin-top: -150px;
    background-color: #fff;
    box-shadow: 2px -2px 4px rgba(100,100,100,0.10);
}
.article-B h1, .profile-fac h1 {
    line-height: 105%;
    color: rgba(17,30,53,1.00);
    font-size: 40px;
    text-transform: capitalize;
    font-family: Roboto Slab Regular;
}
.article-B h1 {
    padding: 30px 40px 0px 40px;
}
.article-content h1 {
    padding: 0px 0px 10px 0px !important;
}
.profile-fac h1 {
    padding: 0px 40px 0px 40px;
}
.article-B hr.style-one, .profile-fac hr.style-one {
    margin-left: 40px;
    height: 2px;
    margin-top: 2rem;
    margin-bottom: 2rem;
}

.article-content img {
    max-width: 100%;
}

/*---------------------------------- end of GENERAL ARTICLE STYLING ---------------------------------*/

/*---------------------Profile Article Styling -----------------*/

.profile-fac {
    background-color: #fff;
    box-shadow: 2px -2px 4px rgba(100,100,100,0.10);
    margin-top: -45px
}
.profile-fac .article-content {
    padding: 0px 60px 60px 60px;
    background-color: #fff;
    margin: 20px 0px 0px 0px;
    border-radius: 6px 6px 0px 0px;
}
#Profile {
    margin: 0 auto;
    width: 100%;
    max-width: 1700px;
    display: -ms-flexbox; display: flex;
    padding-top: 20px;
    margin-bottom: 25px;
}
#ProfilePic {
    margin-left: 0px;
    max-width: 35%;
    min-height: 100px;
    min-width: 390px
}
#ProfilePic img {
    margin-top: -80px;
    border: 10px solid rgba(255,255,255,1);
    width: 100%;
}
#ProfileName {
    display: -ms-flexbox; display: flex;
    flex-direction: column;
    align-content: flex-start;
    justify-content: flex-end;
    padding-bottom: 10px;
}
#ProfileName h1 {
    font-family: Bebas_Neue !important;
    padding: 0;
    margin: 0;
    font-size: 75px !important;
    line-height: 75% !important;
    color: rgba(17,30,53,1.00);
}
#ProfileName p {
    margin: 0;
    padding: 0;
}
.ProfileQuote {
    color: rgba(255,255,255,1.00);
    text-align: center;
    max-width: 900px;
    width: 80%;
    margin: 0px auto 225px;
}
.ProfileQuote h5 {
    font-size: 24px !important;
    text-transform: none !important;
    line-height: 140%;
}
.profile-fac h1 {
    font-size: 25px;
    line-height: 115%;
}
.profile-titles h1 {
    display: inline;
    padding-left: 5px;
}
.profile-contact {
    font-family: Gotham_Bold;
    color: rgba(0,183,250,1.00);
}
.profile-position {
    font-size: 25px;
}
.ProfileSocial-icon {
    max-width: 30px;
}
.article-content p {
    margin: 0px 0px 15px 0px;
}
.MainContain strong {
    font-family: Gotham_Bold;
    font-weight:300;
}
.article-content .article-content-column-container {
    display: -ms-flexbox; display: flex;
}
.article-content .article-content-column-container .article-content-column:not(:first-child) {
    margin-left: 1em;
}
/*---------------------------------------- Side Column Styling --------------------------------------------*/

.side-col-highlights h1 {
    font-family: Roboto_Slab_Bold;
    font-size: 18px;
}
.side-col-highlights h2 {
    font-size: 14px;
    padding: 0px;
    color: rgba(0,30,105,1);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: Gotham_Bold;
}
.side-col-highlights h3 {
    font-family: Gotham_Book;
    font-size: 14px;
    padding: 0px;
    color: rgba(0,183,250,1.00);
    text-transform: uppercase;
    letter-spacing: 1px;
}
.MainContain li::before {
    color: rgba(226,121,52,1.00);
    content: "|| ";
    font-size: 16px;
    letter-spacing: 0px;
    font-family: Gotham_Bold;
}
.MainContain li {
    list-style-position: inside;
    text-indent: -1em;
    padding-left: 1em;
}
/*----------------------------------end of Side Column Styling ---------------------------------*/

/*---------------------------------------- BACKGROUNDS --------------------------------------------*/
.HeaderBG {
    background-attachment: fixed;
    -webkit-background-size: 100% 100%;
    background-size: cover;
    background-position: 50% 50%;
    background-repeat: no-repeat no-repeat;
    background-color: rgba(40,40,40,1.00);
}
#BG-Screen {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.parallax-window {
    min-height: 400px;
    background: transparent;
}
/*-----------------------------------------------------------------------------------------------*/
 
 /*-------------------------------------------Header Heights-------------------------------------------------*/

 
.article-A-header {
    min-height: 520px;
    height: 60vh
}
.article-B-header {
    height: 35vh;
    min-height: 320px;
}
.tall-header {
    min-height: 100vh;
}
.medium-header {
    min-height: 80vh;
    background-position: 50% 50%;
}
.short-header {
    min-height: 60vh;
    background-position: 50% 50%;
    min-height: 450px;
}
.shorter-header {
    min-height: 35vh;
    background-position: 50% 50%;
}
.header-550 {
    min-height: 550px;
    background-position: 50% 50%;
}
/*-------------------------------------------End of Header Heights-------------------------------------------------*/

 
.promo-container {
    background: linear-gradient(180deg, rgba(40,40,40,0.00) 0%, rgba(40,40,40,1.00) 30%);
    color: #fff;
    display: -ms-flexbox; display: flex;
    flex-direction: column;
    padding: 120px 0px 0px;
    outline: 0 none;
    text-decoration: none;
    overflow: hidden;/*z-index:1;
	*/
}
/*---------------------------------------------- SWIPER CSS -------------------------------------------*/
.swiper-container {
    width: 100%;
    margin: auto;
    /* text-align: center;
	 margin-bottom: 10px;
	*/
    color: rgba(255,255,255,1.00);
}
.swiper-container img {
    max-width: 100%;
    /*margin-bottom: 20px;
	*/
    width: 100%;
}
.swiper-button-prev, .swiper-button-next {
    bottom: -75px !important;
    top: auto !important;
    width: 50px;
    height: 50px;
    padding: 0px;
    background-size: 35px 35px;
}
.swiper-button-prev,  .swiper-button-prev-promo {
    background-image: url('../../images-general/svg/toggle-lt.svg') !important;
}
.swiper-button-next, .swiper-button-next-promo {
    background-image: url('../../images-general/svg/toggle-rt.svg') !important;
}
.swiper-button-prev {
    left: 18% !important;
}
.swiper-button-next {
    left: 18% !important;
    margin-left: 45px;
}
.swiper-button-next-promo, .swiper-button-prev-promo {
    top: auto !important;
    bottom: 0 !important;
    height: 40px;
    width: 40px;
    position: absolute;
    z-index: 1;
}
.swiper-button-prev-promo {
    left: 10px !important;
}
.swiper-button-next-promo {
    left: 10px !important;
    margin-left: 55px;
}
.swiper-slide {
    font-size: 35px;
    line-height: 100%;
    font-family: Gotham_Bold;/*padding-bottom: 15px;
	*/
}
/*--------------------------------END OF SWIPER CSS ----------------------------------*/

/*----------------------------------GALLERY SLIDER------------------------------*/
.gallery-slider {
    margin-bottom: 40px;
}

.gallery-swiper-button-next {
    position: absolute;
    top: 35%;
    right: 40px;
    z-index: 100;
    background-image: url('../../images-general/svg/toggle-rt.svg') !important;
    height: 40px;
    width: 40px;
}
.gallery-swiper-button-prev {
    position: absolute;
    top: 35%;
    left: 40px;
    z-index: 100;
    background-image: url('../../images-general/svg/toggle-lt.svg') !important;
    height: 40px;
    width: 40px;
}
/*----------------------------------GALLERY SLIDER------------------------------*/

/*---------------------------------------------- END SWIPER CSS -------------------------------------------*/

.Big-Watermark-Contain-L, .Big-Watermark-Contain-R {
    position: absolute;
    overflow: hidden;
    top: -125px;
}
.Big-Watermark-Contain-L h1, .Big-Watermark-Contain-R h1 {
    line-height: 85%;
    font-size: 290px;
    color: rgba(255,255,255,.04) !important;
    font-family: Gotham_Black !important;
    letter-spacing: -1px;
    overflow: hidden;
    white-space: nowrap;/*max-width: 100vw;*/
}
.Big-Watermark-Contain-L h1 {
    margin-left: -70px;
}
.Big-Watermark-Contain-R h1 {
    margin-right: -70px;
}
.Big-Watermark-Contain-R {
    right: 0px;
    text-align: right;
}
.Big-Watermark-Contain-L {
    left: 0px;
    text-align: left;
}
.bottom-WM {
    bottom: -50px;
    top: auto !important;
}
.blue-WM h1 {
    color: rgba(2,15,45,.34) !important;
}
/*---------------------------- HEADLINE 3 STYLING --------------------------*/
#story-container {
    width: 100%;
    position: relative;
}
#stories {
    width: 100%;
    margin: auto;
    padding-bottom: 35px;
}
#headline3 {
    padding: 0px;
    margin: auto;
    display: -ms-flexbox; display: flex;
    justify-content: flex-start;
    align-content: flex-start;
    margin-bottom: 0px;
    width: 100%;
}
.colorbar {
    background-color: rgba(05,15,40,1.00);
    flex: 1;
    z-index: 2;
}
#head3text {
    flex: 7;
    z-index: 5;
}
#headline3 h1, .home-section-h1 {
    font-family: Gotham_Black;
    font-size: 70px;
    line-height: 95%;
    color: rgba(210,210,210,1.00);
    text-align: left;
    margin: 0px 0px 0px 0px;
}
#Head3description {
    color: rgba(218,218,218,1.00);
    padding: 0px;
    max-width: 800px;
    margin: auto 2.5% auto 15%;
}
/*------------------------------------------Promo Content and Academic Promo Content --------------------------------------------*/
.StoryFadeCover {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0%;
    z-index: 10;
    background: linear-gradient(90deg, rgba(40,40,40,1) 0%, rgba(40,40,40,0) 100%);
}
.promo-content {
    flex: 1;
    color: #fff;
    flex-grow: 1;
    /*max-width: 1800px;*/
    width: 100%;
    margin: 15px 0% 10px 15%;
    text-align: center;
    position: relative;
    padding-top: 15px;
    padding-bottom:55px;
}
.promo-content-item {
    background-color: rgba(17,30,53,1.00);
    width: 350px;
    height: 575px;
    background-size: 103% !important;
    background-position: center!important;
    transition: .3s;
    margin-top: 20px
}
.promo-content-item-type {
    position: absolute;
    top: -30px;
    left: 0;
}
.promo-content-item-type p {
    font-size: 13px;
    color: rgba(248,180,53,1.00) !important;
    padding: 0px 0px 0px 8px;
    border-left: 1px dotted rgba(255,255,255,.4);
    text-transform: uppercase;
    font-family: Gotham_Bold !important;
}
.promo-slide-text {
    position: absolute;
    top: 0;
    left: 0;
    justify-content: center;
    background-color: rgba(17,30,53,0);
    width: 100%;
    height: 100%;
    display: -ms-flexbox; display: flex;
    align-items: flex-end;
    text-align: center;
    transition: .3s;
}
.promo-content-item h1 {
    color: rgba(255,255,255,1.00);
    font-size: 18px;
    padding: 20px;
    transition: .3s;
    text-align: left;
    line-height: 130%;
    margin-bottom: 0px;
    width: 100%;
    background-color: rgba(0,20,57,1.00);
    border-radius: 15px 15px 0px 0px;
}
.dept-promo-content-item {
    width: 853px;
    height: 480px;
    background-size: 110% !important;
    /*background-position: center !important;*/
    transition: .3s;
    margin-top: 20px;
}
.dept-promo-content-item:hover, .promo-content-item:hover {
    transition: .3s;
    background-size: 120% !important;
    /*background-position: center !important;*/
}
.dept-promo-content-item h1 {
    color: rgba(255,255,255,1.00);
    font-size: 20px;
    padding: 30px;
    transition: .3s;
    background-color: rgba(0,20,57,1.0);
    border-radius: 15px 15px 0px 0px;
    width: 100%;
    margin-bottom: 0px;
    text-align: left;
}
.dept-promo-slide-text {
    position: absolute;
    top: 0;
    left: 0;
    justify-content: center;
    background-color: rgba(17,30,53,0);
    width: 100%;
    height: 100%;
    display: -ms-flexbox; display: flex;
    align-items: flex-end;
    text-align: center;
    transition: .3s;
}
.dept-promo-content-item > a:hover .dept-promo-slide-text, .promo-content-item > a:hover .promo-slide-text {
    transition: .3s;
    background-color: rgba(17,30,53,.80);
}
.dept-promo-content-item > a:hover h1, .promo-content-item > a:hover h1 {
    transition: .3s;
    color: rgba(248,180,53,1.00);
}
.promo-text {
    max-width: 1200px;
    margin: auto;
    color: #fff;
    padding: 0px 40px;
    font-size: 18px;
    line-height: 190%;
}
.promo-text p:first-child:first-letter {
    color: rgba(248,180,53,1.00);
    float: left;
    font-family: Gotham_Bold;
    font-size: 55px;
    line-height: 25px;
    padding-top: 14px;
    padding-right: 8px;
    padding-left: 3px;
}
/*-----------------------------------END OF Promo Content and Academic Promo Content --------------------------------------------*/

.btn-50 {
    max-width: 50px;
    max-height: 50px;
    min-width: 50px;
    min-height: 50px;
}
.btn-280 {
    max-width: 280px;
    min-width: 280px;
}
.btn-35 {
    max-width: 35px;
    max-height: 35px;
    min-width: 35px;
    min-height: 35px;
}
.btn-75 {
    max-width: 75px;
    max-height: 75px;
    min-width: 75px;
    min-height: 75px;
}
.btn-25 {
    max-width: 25px;
    max-height: 25px;
    min-width: 25px;
    min-height: 25px;
}
.btn-15 {
    max-width: 15px;
    max-height: 15px;
    min-width: 15px;
    min-height: 15px;
}
.rotate180 {
    transform: rotate(180deg);
    transition: .5s;
}
#secMenuCaret {
    z-index: 200;
    transition: .5s;
}
.nav-menu-icon {
    height: 100%;
    width: 100%;
}
.promo-content img {
    width: 100%;
}
.promo-content p {
    color: #fff;
    font-family: Gotham_Light;
}
/*---------------------------------------------GRAPHIC AREA----------------------------------------------*/
#GraphicArea {
    background: linear-gradient(180deg, rgba(15,17,20,1.00) 0%, rgba(22,28,40,1.00) 70%);
    min-height: 700px;
    padding: 185px 0px 150px 0px;
    position: relative;
}
#GraphicAreaTitle {
    width: 95%;
    max-width: 1700px;
    margin: auto;
}
#IconGraphics {
    margin: auto;
    max-width: 1700px;
    display: -ms-flexbox; display: flex;
    justify-content: space-around;
    position: relative;
    animation-duration: 2s;
    padding: 35px;
}
.Graphic-Col {
    flex-direction: column;
    align-items: center;
}
.GraphicRow {
    display: -ms-flexbox; display: flex;
    align-items: center;
    max-width: 1600px;
    margin: auto;
    padding-bottom: 75px;
}
.IconArea {
    display: -ms-flexbox; display: flex;
    align-items: center;
    max-width: 1600px;
    flex-direction: column;
    color: #fff;
    padding: 0px 25px;
    flex: 1;
}
.IconArea img {
    display: inline-block;
    max-width: 200px;
    margin: 0px 15px 25px 15px;
    min-width: 150px;
}
.IconText h4 {
    text-align: center;
}
.GraphicArea h4, .IconArea h4 {
    font-size: 25px;
    color: rgba(0,183,250,1.00);
    letter-spacing: 4px
}
.GraphicArea p {
    color: rgba(179,179,179,1.00)
}
.GraphicSection {
    display: -ms-flexbox; display: flex;
    margin: auto;
    max-width: 750px;
    width: 90%;
    align-items: center;
}
.Graphic-Perc {
    display: -ms-flexbox; display: flex;
    justify-content: center;
    text-align: center;
    color: rgba(0,183,250,1.00);
    font-family: Bebas Neue;
    font-size: 100px;
    position: relative;
    align-items: center;
    flex: 1;
    min-width: 225px;
    min-height: 225px;
    max-width: 300px;
    max-height: 350px;
    margin-right: 2%;
    padding: 1%;
}
.Graphic-Section-Divider {
    background: rgba(0,183,250,1.00);
    flex-shrink: 0;
    flex-grow: 0;
    flex-basis: 2px;
    align-self: stretch;
    margin: 1% 0%;
}
.Graphic-Perc img {
    width: 100%;
    height: 100%;
    max-height: 200px;
}
.Graphic-Perc-desc {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    color: #fff;
    padding: 2%;
}
.half-graphic {
    width: 50%;
}
.Graphic-Perc-desc p {
    font-family: Gotham_Bold !important;
    font-size: 17px;
}
/*------------------------------------------END OF GRAPHIC AREA---------------------------------*/
 
/*------------------------------------------VIDEO MODULE---------------------------------*/
.video-module h2 {
    font-family: Gotham_Black;
    font-size: 45px;
    color: rgba(255,255,255,1.00);
    text-align: center;
    line-height: 100%;
    margin-top: 10px;
    letter-spacing: 1px;
    display: -ms-flexbox; display: flex;
    flex-direction: row;
    justify-content: center;
    margin-left: 15px;
    margin-right: 15px;
    margin: auto;
    max-width: 1400px;
    margin-bottom: 55px;
}
.video-module h2:before, .video-module h2:after {
    background-color: rgba(255,255,255,1.00);
    content: '\a0';
    flex-grow: 1;
    height: 1px;
    position: relative;
    top: 0.5em;
}
.video-module h2:before {
    margin-right: 10px;
}
.video-module h2:after {
    margin-left: 10px;
}
#whole-person-ed {
    background-color: rgba(40,40,40,1.00);
    z-index: 5;
}
.video-container {
    display: -ms-flexbox; display: flex;
    align-items: stretch;
    max-width: 1700px;
    margin: auto;
    margin-top: 0px;
    margin-bottom: 15px;
}
.video-left {
    flex: 5;
    flex-shrink: 1;
    min-width: 400px;
}
.video-info {
    flex: 1;
    display: -ms-flexbox; display: flex;
    flex-direction: column;
    padding: 0px 20px 0px 20px;
    justify-content: center;
    flex-basis: 250px;
    flex-shrink: 1;
}
.video-info-title {
    font-family: Roboto Slab Regular;
    font-size: 45px;
    line-height: 90%;
    color: rgba(130,130,130,1.00);
    margin-bottom: 20px;
}
.video-info-text {
    font-family: Gotham_Light;
    font-size: 13px;
    line-height: 180%;
    color: rgba(255,255,255,1.00);
    margin-bottom: 25px;
}
.video-link {
    flex: none !important;
    margin-left: 0px !important;
    margin-bottom: 0px;
}
.video-wrapper {
    position: relative;
    overflow: hidden;
    padding-top: 56.25%;
}
.video-frame {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}
/*------------------------------------------END OF VIDEO MODULE---------------------------------*/ 

/*------------------------------------------PANORAMA VIEWER-------------------------------------*/
.panoramaWrapper {
    width: 100%;
    padding-top: 56.25%;
    padding-left: 0;
    padding-right: 0;
    padding-bottom: 0;
    position: relative;
}

.panoramaPlayer {
    /* width: 100%; */
    /* min-height: 500px; */
    /* height: 100%; */
    margin-left: auto;
    margin-right: auto;
    position: absolute !important;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
}
/*------------------------------------------END OF PANORAMA VIEWER------------------------------*/

 
/*------------------------------------------DEPARTMENT SOCIAL---------------------------------*/

#dep-social {
    background: rgba(17,30,53,1.00);
    padding: 0px;
    z-index: 12;
    position: relative;
    color: #fff;
}
#dep-social h1 {
    color: rgba(222,222,222,1.00);
    font-size: 18px;
    text-align: center;
    line-height: 100%;
    display: -ms-flexbox; display: flex;
    flex-direction: row;
    justify-content: center;
    margin-left: 12px;
    margin-right: 15px;
    max-width: 1500px;
    margin: auto;
    text-transform: uppercase;
    letter-spacing: 9px;
    border-bottom: 0px solid rgba(255,255,255,.3);
}
#dep-social p {
    letter-spacing: 2px;
    margin-top: 10px;
}
#dep-social-content {
    width: 95%;
    margin: 30px auto 15px;
    text-align: center;
}
#dep-social-icons {
    width: auto;
    max-width: 1500px;
    display: -ms-flexbox; display: flex;
    margin: auto;
    justify-content: center;
    margin-top: 20px;
    margin-bottom: 30px;
}
#dep-social-icons a {
    max-width: 50px;
    width: 100%;
    margin: 0px 10px;
}
/*------------------------------------------END OF DEPARTMENT SOCIAL---------------------------------*/



.promo-section-gold {
    /*background-color: rgba(248,180,53,1.00);*/
    padding: 0px;
    margin: 0px;
    z-index: 12;
    background: linear-gradient(160deg, rgb(255, 224, 0) -20%, rgba(248,180,53,1.00) 50%);
}
.ctr-img {
    margin: auto;
}
.promo-section-gold .gray-button {
    margin: 10px 15px;
}
#Promo-Intro {
    background: rgba(40,40,40,1);
    z-index: 3;
}
#PromoIntro-Text {
    color: rgba(225,225,225,1.00);
    max-width: 850px;
    margin: auto;
    margin-left: 15%;
    position: relative;
    padding-top: 40px;
    margin-bottom: 70px;
}
/*------------------------------------------BUTTONS---------------------------------*/

.yellow-button, .gray-button, .teal-button, .rev-yellow-button, .rev-gray-button, .rev-teal-button {
    display: inline-block;
    font-family: Gotham_Bold !important;
    font-size: 12px !important;
    width: 210px;
    padding: 10px !important;
    text-align: center;
    margin: 5px 25px 5px 0px;
    transition: .3s;
    transition-timing-function: ease-in-out;
    border-radius: 8px;
    cursor: pointer;
}
.yellow-button a, .gray-button a, .teal-button a {
    margin: 0px;
    padding: 0px;
    font-family: Gotham_Bold !important;
    color: rgba(255,255,255,1) !important;
    transition: .3s;
}
.rev-yellow-button {
    color: rgba(248,180,53,1.00);
    border: 1px solid rgba(248,180,53,1.00);
}
.rev-gray-button {
    color: rgba(55,55,55,1.00);
    border: 1px solid rgba(55,55,55,1.00);
}
.rev-teal-button {
    color: rgba(0,183,250,1.00);
    border: 1px solid rgba(0,183,250,1.00);
}
.rev-orange-button {
    color: rgba(226,121,52,1.00);
    border: 1px solid rgba(226,121,52,1.00);
}
p.yellow-button, p.gray-button, p.teal-button {
    display: inline-block;
    width: 210px;
}
.yellow-button, .rev-yellow-buttom:hover {
    background-color: rgba(248,180,53,1.00);
    border: 1px solid rgba(248,180,53,1.00);
    color: rgba(255,255,255,1) !important;
}
.gray-button, .rev-gray-button:hover {
    background-color: rgba(55,55,55,1.00);
    border: 1px solid rgba(55,55,55,1.00);
    color: rgba(255,255,255,1) !important;
}
.teal-button, .rev-teal-button:hover {
    background-color: rgba(0,183,250,1.00);
    border: 1px solid rgba(0,183,250,1.00);
    color: rgba(255,255,255,1) !important;
}
.orange-button, .rev-orange-button:hover {
    background-color: rgba(226,121,52,1.00);
    border: 1px solid rgba(226,121,52,1.00);
    color: rgba(255,255,255,1) !important;
}
.yellow-button:hover {
    color: rgba(248,180,53,1.00) !important;
    background-color: rgba(248,180,53,0);
    border: 1px solid rgba(248,180,53,1);
    transition: .3s;
    transition-timing-function: ease-in-out;
    cursor: pointer;
}
.yellow-button:hover a {
    color: rgba(248,180,53,1.00) !important;
    transition: .3s;
}
.gray-button:hover {
    color: rgba(70,70,70,1.00) !important;
    background-color: rgba(70,70,70,00);
    border: 1px solid rgba(70,70,70,1.00);
    transition: .3s;
    transition-timing-function: ease-in-out;
    cursor: pointer;
}
.gray-button:hover a {
    color: rgba(70,70,70,1.00) !important;
    transition: .3s;
}
.teal-button:hover {
    color: rgba(0,183,250,1.00) !important;
    background-color: rgba(0,183,250,00);
    border: 1px solid rgba(0,183,250,1.00);
    transition: .3s;
    transition-timing-function: ease-in-out;
    cursor: pointer;
}
.teal-button:hover a {
    color: rgba(0,183,250,1.00) !important;
    transition: .3s;
}
.orange-button:hover {
    color: rgba(226,121,52,1.00) !important;
    background-color: rgba(226,121,52,00);
    border: 1px solid rgba(226,121,52,1.00);
    transition: .3s;
    transition-timing-function: ease-in-out;
    cursor: pointer;
}
.orange-button:hover a {
    color: rgba(226,121,52,1.00) !important;
    transition: .3s;
}
/*------------------------------------------END OF BUTTONS ---------------------------------*/

/*------------------------------Cascade Element Styling-----------------------------*/
.article-content-column {
    margin-bottom: 20px;
}
/*--------------------------------animated draw on buttons ----------------------------*/
.ctr-btn {
    position: relative;
    margin: auto;
    width: 200px;
    min-height: 55px;
    margin-bottom:90px;
    margin-left:15%;
}
a.draw-btn {
    position: absolute;
    top: 0;
    right: 0;
    height: 55px;
    line-height: 55px;
    /*the Height and line-height must be the same for the button to look even*/
    text-align: center;
    text-transform: uppercase;
    text-decoration: none;
    margin: auto;
    font-family: Gotham_Book;
    font-size: 12px;
    transition: .5s;
    /*box-shadow: 0px 0px 0px rgba(0,0,0,.8);
	*/
    z-index: 15;
    overflow: hidden;
    /*border: 1px solid rgba(0,0,0,.3);
	*/
    background-color: rgba(80,80,80,0.3);
    border: 0px solid rgba(200,200,200,.20);
    background-color: rgba(0,17,47,0.65);
}
a.db150 {
    width: 150px;
}
a.db200 {
    width: 200px;
}
a.db250 {
    width: 250px;
}
a.yllw-btn {
    color: rgba(248,180,53,1.00);
}
a.yllw-btn:hover {
    color: rgba(70,70,70,1.00);
    background-color: rgba(248,180,53,1.00);
}
a.yllw-btn span {
    background: rgba(248,180,53,1.00);
}
a.blue-btn {
    color: rgba(25,41,157,1.00);
}
a.blue-btn:hover {
    color: rgba(70,70,70,1.00);
    background-color: rgba(25,41,157,1.00);
}
a.blue-btn span {
    background: rgba(25,41,157,1.00);
}
a.teal-btn {
    color: rgba(0,183,250,1.00);
}
a.teal-btn:hover {
    color: rgba(255,255,255,1.00);
    background-color: rgba(0,183,250,1.00);
}
a.teal-btn span {
    background: rgba(0,183,250,1.00);
}
a.draw-btn:hover {
    transition: .4s;
    transition-delay: .3s;/*transform:translate(-5px,-5px);
	*//*box-shadow: 0px 8px 1px rgba(0,0,0,.8);
	*/
}
a.draw-btn span {
    display: block;
    transition: .2s;
}
a.draw-btn span:nth-child(1), a.draw-btn span:nth-child(3) {
    position: absolute;
    height: 1px;
    width: 100%;
}
a.draw-btn span:nth-child(2), a.draw-btn span:nth-child(4) {
    position: absolute;
    width: 1px;
    height: 100%;
}
a.draw-btn span:nth-child(1) {
    top: 0;
    left: -100%;
    transition-delay: 0s;
}
a.draw-btn span:nth-child(2) {
    top: -100%;
    right: 0;
    transition-delay: .1s;
}
a.draw-btn span:nth-child(3) {
    bottom: 0;
    right: -100%;
    transition-delay: .15s;
}
a.draw-btn span:nth-child(4) {
    bottom: -100%;
    left: 0;
    transition-delay: .2s;
}
a.draw-btn:hover span:nth-child(1) {
    top: 0;
    left: 0;
}
a.draw-btn:hover span:nth-child(2) {
    top: 0;
    right: 0;
}
a.draw-btn:hover span:nth-child(3) {
    bottom: 0;
    right: 0;
}
a.draw-btn:hover span:nth-child(4) {
    bottom: 0;
    left: 0;
}
 @keyframes gray-btn-hover {
 from {
 background-color: rgba(70,70,70,0.00)
}
 to {
 background-color: rgba(70,70,70,1.00)
}
}
.quote-textbox {
    border: 1px solid rgba(0,183,250,1.00);
    padding: 70px;
    margin: 40px auto;
    width: 95%;
    max-width: 1400px;
}
.related-content-container {
    background-color: rgba(240,240,240,1.00);
    padding: 55px 10px 55px 10px;
    text-align: center;
}
.related-content-container h1 {
    font-family: Gotham_Black;
    font-size: 60px;
    color: #464646;
    text-align: left;
    line-height: 120%;
    margin-top: 30px;
    letter-spacing: .5px;
}
.related-content {
    display: -ms-flexbox; display: flex;
    margin: auto;
    max-width: 1500px;
    width: 100%;
    flex-wrap: wrap;
    justify-content: center;
}
.related-content a {
    max-width: 500px;
    flex-basis: 400px;
    flex-grow: 1;
}
.related-content-art {
    background-color: #fff;
    border-top: solid;
    border-top-width: 8px;
    border-color: rgba(40,40,40,1.00);
    padding: 15px 25px 30px 25px;
    margin: 20px 15px;
    z-index: 50;
    font-size: 14px;
    box-shadow: 2px 2px 4px rgba(100,100,100,0.10);
    border-radius: 5px;
}
.related-content a:nth-child(1):hover {
    border-color: rgba(0,183,250,1.00);
    transition: .3s;
}
.related-content a:nth-child(2):hover {
    border-color: rgba(248,180,53,1.00);
    transition: .3s;
}
.related-content a:nth-child(3):hover {
    border-color: rgba(25,41,157,1.00);
    transition: .3s;
}
.related-content h1 {
    font-family: Roboto_Slab_Bold;
    font-size: 18px;
    line-height: 120%;
    margin: 10px 0px;
}
.related-content p {
    font-family: Gotham_Light;
    text-align: left;
}
/*-----------------------------H1 Span Rule ---------------------------------*/
h1.span-rule-g:before, h1.span-rule-g:after, h1.span-rule-w:before, h1.span-rule-w:after {
    content: '\a0';
    flex-grow: 1;
    height: 1px;
    position: relative;
    top: 0.5em;
}
h1.span-rule {
    display: -ms-flexbox; display: flex;
    flex-direction: row;
    justify-content: center;
    margin-left: 15px;
    margin-right: 15px;
}
h1.span-rule-g:before, h1.span-rule-g:after {
    background-color: rgba(40,40,40,1.00);
}
h1.span-rule-w:before, h1.span-rule-w:after {
    background-color: rgba(200,200,200,1.00);
}
h1.span-rule-w:before, h1.span-rule-g:before {
    margin-right: 10px;
}
h1.span-rule-w:after, h1.span-rule-g:after {
    margin-left: 10px;
}
.MainContain {
    background-color: #fff;
    flex: 1;
    display: -ms-flexbox; display: flex;
    flex-direction: column;
}
.MainContain a {
    color: rgba(226,121,52,1.00);
    border-bottom: .0px solid rgba(226,121,52,1);
}

.MainContain a:hover {
    color: rgba(226,121,52,1.00);
}
.column-layout {
    max-width: 1500px;
    height: auto;
    margin: 0px auto;
    display: -ms-flexbox; display: flex;
    overflow: visible;
    padding: 0px;
    align-content: space-between;
    width: 97%;
}
.vert-center {
    align-items: center;
}
.main-column {
    flex-basis: 60%;
    z-index: 15;
    flex: 1;
    border-radius: 6px 6px 0px 0px;
}
/*.main-column img {
    max-width: 100%;
    height: 100%;
}*/

 
 /*!---------------------------------------------- RESOURCES / SIDE COLUMN NAVIGATION ---------------------------------------------*/

.resources-title {
    color: rgba(0,30,105,1.00);
    text-align: left;
    line-height: 115%;
    letter-spacing: .35px;
    font-family: Gotham_Book;
    font-size: 22px;
    margin: 20px 0px 20px 0px;
}
.side-col-nav {
    flex-basis: 15%;
    margin: 40px 0px;
    min-width: 200px;
    padding: 0px 30px;
    background-color: #fff;
    z-index: 15;
    border-right: solid;
    border-right-width: 1px;
    border-right-color: rgba(220,220,220,1.00);
}
.side-col-nav a {
    color: #333333;
}
.side-col-nav ul {
    list-style-type: none;
    text-decoration: none;
    padding: 0px;
    margin: 0px;
    text-align: left;
    font-size: 15px;
}
.side-col-nav li {
    list-style-type: none;
    text-decoration: none;
    display: block;
    text-align: left;
    padding-bottom: 8px;
    font-size: 15px;
    font-family: Gotham_Bold;
}
.resources-2 {
    margin: 0px 5% 20px 0%;
    padding: 0px 30px 30px;
    z-index: 15;
    display: none;
    width: 95%;
    background-color: rgba(240,240,240,1);
    border-radius: 8px;
}
.resources-2 a {
    color: #333333;
}
.resources-2 ul {
    list-style-type: none;
    text-decoration: none;
    padding: 0px;
    margin: 0px;
    text-align: left;
    font-size: 15px;
}
.resources-2 li {
    list-style-type: none;
    text-decoration: none;
    display: block;
    text-align: left;
    padding-bottom: 8px;
    font-size: 15px;
    font-family: Gotham_Bold;
}
/*!---------------------------------------------- END OF RESOURCES / SIDE COLUMN NAVIGATION ---------------------------------------------*/
 
.rt-col-title {
    color: rgba(0,30,105,1.00);
    text-align: left;
    line-height: 115%;
    letter-spacing: .35px;
    font-family: Gotham_Book;
    font-size: 22px;
    margin: 20px 0px 20px 0px;
}
.side-col-highlights ul {
    padding-left: 4px;
    font-size: 13px;
}
.first-level-nav > li::before {
    color: rgba(226,121,52,1.00);
    content: "|| ";
    font-size: 16px;
    letter-spacing: 0px;
    font-family: Gotham_Bold;
}
.inset-ul > li {
    font-family: Gotham_Book;
    padding-left: 15px;
    font-size: 13px;
    text-decoration: none;
    line-height: 135%;
}
.side-col-highlights {
    flex-basis: 25%;
    max-width: 25%;
    border-radius: 0px 6px 0px 0px;
    min-width: 275px;
}
.accord-nav {
    border-right: solid;
    border-right-width: 1px;
    border-right-color: rgba(220,220,220,1.00);
}
.side-col-highlights a {
    color: rgba(226,121,52,1.00);
    font-family: Gotham_Book;
    flex: 1;
}
.columnp {
    line-height: 140%;
    margin-top: 15px;
    font-size: 13px;
    color: rgba(124,124,124,1.00)
}
#FootContent {
    margin: auto;
    max-width: 1200px;
    width: 100%;
    display: -ms-flexbox; display: flex;
    justify-content: center;
    align-items: flex-start;
}
#FootContent2 {
    margin: auto;
    max-width: 1800px;
}
.important-column {
    border-top: solid;
    border-top-width: 12px;
    border-color: rgba(0,183,250,1.00);
    box-shadow: 2px -2px 4px rgba(100,100,100,0.10);
    padding: 30px;
    margin-top: -80px;
    z-index: 12;
    background-color: #FFFFFF;
}
.sidebar-links {
    max-width: 250px;
    margin: auto;
}
.sidebar-links p {
    font-family: Gotham_Book;
    font-size: 11px;
    color: rgba(160,160,160,1);
    margin: 0px;
}
/*---------------------------------------GEN CONTACT-----------------------------*/

.Gen-Contact {
    display: -ms-flexbox; display: flex;
    justify-content: flex-start;
    color: rgba(170,170,170,1.00);
    font-family: Gotham_Book;
    line-height: 135%;
    font-size: 13px;
    align-items: stretch;
    padding-left: 0px;
    margin: 0px;
    flex: 2;/*come back and remove later by adding spacer between*/
}
.Gen-Contact p {
    color:rgba(165,165,165,1);
}

.Gen-Contact h1 {
    color:rgba(165,165,165,1);
}
.Gen-Contact ul {
    list-style-type: none;
    text-decoration: none;
}
.Gen-Contact li:first-child {
    margin-right: 0px;
}
.Gen-Contact li {
    text-decoration: none;
    flex: 1;
}
.Gen-Contact h1 {
    margin: 0px 0px 0px 0px;
    font-size: 20px;
}
.Gen-Contact .divider {
    flex-basis: 1px;
    flex-grow: 0;
    flex-shrink: 0;
    align-self: stretch;
    background-color: rgba(205,205,205,.30);
    margin: 0px 35px 0px 35px;
}
.Gen-Contact a {
    color: rgba(248,180,53,1.00);
}
/*--------------------------------------- END OF GEN CONTACT-----------------------------*/

 
.Info-Links {
    /*grid-template-columns: repeat(auto-fit, minmax(200px, 225px));
	*/
    justify-content: center;
}
.Info-Links li {
    display: inline-block;
    font-size: 11px;
}
.site {
    height: 100%;
    display: -ms-flexbox; display: flex;
    flex-direction: column;
}
/* --------------- General Font Styling ------------- */
.titletext {
    font-size: 17px;
    color: rgba(255,255,255,1.00);
    letter-spacing: 8px;
    font-family: Gotham_Bold;
    text-align: center;
    line-height: 100%;
    padding: 0px 40px;
    transition: color .3s;
}
.title-spread {
    font-size: 35px;
    text-transform: uppercase;
    letter-spacing: 12px;
    color: rgba(100,100,100,1);
    margin: auto;
}
.headline {
    flex: 1;
    flex-basis: 100%;
    flex-grow: 1;
}
.headline h1 {
    font-family: Gotham_Black;
    font-size: 140px;
    line-height: 80%;
    color: #fff;
    text-align: left;
}
.headline2 {
    width: 100%;
}
.headline2-text {
    max-width: 1700px;
    width: 80%;
    margin-left: 10%;
}
.headline2 h1 {
    font-family: Gotham_Bold;
    font-size: 60px;
    line-height: 95%;
    color: #fff;
    text-align: left;
    letter-spacing: -1px;
    text-transform: none;/*padding: 0px 40% 30px 10%;
	*/
}
.headline2-description {
    color: #fff;
    max-width: 1000px;
    margin: 15px auto 0px 15%;
    padding: 0px;
    width: 70%;
}
.headline2-description p:first-child:first-letter {
    color: rgba(248,180,53,1.00);
    float: left;
    font-family: Gotham_Bold;
    font-size: 55px;
    line-height: 25px;
    padding-top: 14px;
    padding-right: 8px;
    padding-left: 3px;
}
.toggle-down {
    flex: 1;
    padding-bottom: 20px;
    align-self: center;
}
ul.style1 li:before {
    content: "\f10c";
    font-family: FontAwesome;
    letter-spacing: 8px;
    font-size: 10px;
    color: rgba(0,30,105,1.00);
}
ul.style1 li {
    font-family: Gotham_Book;
    line-height: 175%;
    color: rgba(90,90,90,1);
}
/*----------------------------------------------------*/
.dropcap:first-letter {
    color: rgba(248,180,53,1.00);
    float: left;
    font-family: Gotham_Bold;
    font-size: 55px;
    line-height: 25px;
    padding-top: 14px;
    padding-right: 8px;
    padding-left: 3px;
}
/*----------------------------------------- HR Horizontal Rule Styling ------------------------------*/

hr.style-one {
    border: 0;
    height: 7px;
    background: rgba(248,180,53,1.00);
    position: relative;
    width: 40%;
    max-width: 250px;
}
hr.style-one-2 {
    border: 0;
    height: 7px;
    background: rgba(248,180,53,1.00);
    position: relative;
    margin-left: 40px;
    margin-top: 0px;
    width: 40%;
    max-width: 250px
}
hr.style-two {
    border: 0;
    height: 1px;
    background: rgba(70,70,70,1.00);
    width: 1000px;
    position: relative;
    margin-top: 0px;
}
hr.style-three {
    border: 0;
    height: 1px;
    background: rgba(0,183,250,1.00);
    position: relative;
    width: 40%;
    max-width: 250px
}
hr.style-three-y {
    border: 0;
    height: 7px;
    background: rgba(248,180,53,1.00);
    position: relative;
    width: 40%;
    max-width: 250px
}
hr.style-headline-y {
	border: 0;
    height: 15px;
    background: rgba(248,180,53,1.00);
    position: relative;
    width: 40%;
    max-width: 250px;
	border-radius: 15px 15px 0px 0px;
    margin-bottom: 0px;
}

hr.style-three-g {
    border: 0;
    height: 1px;
    background: rgba(40,40,40,1.00);
    position: relative;
    width: 40%;
    max-width: 250px
}
hr.style-basic-white {
    border: 0;
    height: 1px;
    background: #fff;
    width: 70%;
    max-width: 1400px;
    align: center;
    margin: 20px auto;
}
hr.add-margin {
    margin: 25px 0px 60px;
}
/*---------------------------------------------End of HR Horizontal Rule Styling--------------------------*/


img.float-left {
    float: left;
    margin-right: 1em;
    margin-top: 0.5em;
    margin-bottom: 0.5em;
    max-width: 40%;
    height: auto;
}
img.float-right {
    float: right;
    margin-left: 1em;
    margin-top: 0.5em;
    margin-bottom: 0.5em;
    max-width: 40%;
    height: auto;
}
.column-title {
    font-family: Roboto_Slab_Bold;
    font-size: 17px;
    line-height : 115%;
    color: rgba(115,115,115,1);
}
.BlueBlockBL {
    position: absolute;
    width: 35%;
    background-color: rgba(248,180,53,1.0);
    bottom: 0;
    left: 0px;
    height: 5%;
    z-index: -1;
}

/* --------------- Div ID Content Styling ------------- */
/*----------------------------------------------------------------------------------------------------------------------*/
/*----------------------------------------------------------------------------------------------------------------------*/
/*----------------------------------------------------------------------------------------------------------------------*/
@media only screen and (max-width: 1920px) {
#FeatureBox {
    width: 60%;
}
.Big-Watermark-Contain-L h1, .Big-Watermark-Contain-R h1 {
    font-size: 260px;
}
.FeatureTitle h1 {
    font-size: 80px;
}
.testimony-tile {
    min-height: 350px;
}
}

/*----------------------------------------------------------------------------------------------------------------------*/
/*----------------------------------------------------------------------------------------------------------------------*/
/*----------------------------------------------------------------------------------------------------------------------*/
@media only screen and (max-width: 1281px) {
.testimony-tile {
    min-height: 250px;
}
/*----------------------------------- Site Search (max 1281px) ---------------------------------*/
 
#SiteSearch .searchResults {
    padding-top: .2em;
}
/*----------------------------------- End of Site Search (max 1281px) ---------------------------------*/

/*--------------------------------------- Branded Content Hub Elements (MAX 1281px) ------------------------------------*/

.ContentHubItem {
    width: 30%;
}

/*---------------------------------------Feature Headers and Elements (MAX 1281px) ------------------------------------*/
    
/*---------------------------------------------- PROMO CONTENT (MAX 1281px)------------------------------------------------*/ 


.promo-container {
    padding: 150px 0px 0px;
}
.promo-content-item {
    height: 500px;
}
.dept-promo-content-item {
    width: 853px;
    height: 400px;
}
/*---------------------------------------------- END OF PROMO CONTENT (MAX 1281px)---------------------------------------*/     
    
/*------------------------------------ Animated Feature Panel (max 1281px)------------------------------------*/

    
#FeatureBox {
    width: 80%;
}
.FeatureTitle {
    left: 0%;
    width: 100%;
    padding-left: 3%;
    padding-right: 3%;
}
.FeatureDesc {
    width: 100%;
    left: 0;
    padding: 25px 20px 15px;
}
.FeatureTitle h1 {
    font-size: 70px;
}
.swiper-button-next, .swiper-button-prev {
    left: auto !important;
    top: -50px !important;
    right: 5%;
}
.swiper-button-prev {
    margin-right: 45px
}
.swiper-button-next {
}
/*------------------------------------ End of Animated Feature Panel (max 1281px)------------------------------------*/

/*------------------------------------ Areas of Study (max 1281px)------------------------------------*/

    
.AreasOfStudy {
    max-height: 250px
}
.StudyArea-box {
    height: 250px;
}
.StudyArea-box:hover {
    height: 285px;
}
/*------------------------------------ End or Areas of Study (max 1281px)------------------------------------*/


.FeatureTitle h1 {
    font-size: 70px;
}
.headline h1 {
    font-size: 80px;
}
.headline3 h1, .home-section-h1 {
    font-size: 60px;
}
.testimonial-group {
    display: none;
}
.testimonial-divider {
    display: none;
}
}

/*----------------------------------------------------------------------------------------------------------------------*/
/*----------------------------------------------------------------------------------------------------------------------*/
/*----------------------------------------------------------------------------------------------------------------------*/
@media only screen and (max-width: 960px) {
.headline2-text {
    margin: auto;
    width: 95%;
}
.resources-2 {
    display: inherit;
}
.testimony-tile {
    min-height: 200px;
}
.ctr-btn {
    margin-left:auto;
}
.ontray-item-phone {
    display: flex;
}
.ontray-phone-number {
    display: none;
}
/*-------------------------------------------------HAMBURGER MENU (MAX 960PX)--------------------------------------------------------*/  
     
#HamburgerMenu {
    width: 100%;
    max-width: 100%;
}
.fa-arrow-left:before {
    content: "\f063" !important;
}
.sideToSide {
    animation-iteration-count: 1 !important;
}
#HamburgerMenu.reveal {
    overflow-y: scroll;
}
#HamburgerMenu li {
    min-height: 35px;
}
#HamburgerMenu ul {
    max-width: 600px;
    margin: auto;
}
#HamburgerMenu ul ul {
    position: relative;
    transform: translateX(0px);
    margin: 15px 8px;
    background-color: rgba(20,20,20,0);
    border-top: none;
    border-left: 1px dotted rgba(248,180,53,1);
    padding: 0px;
    max-width: none;
}
#HamburgerMenu ul ul li {
    margin-left: 10px;
}
#Hamburger-CTA {
    max-width: 600px;
    margin: 0 auto;
    display: -ms-flexbox; display: flex;
    padding: 30px 25px;
}
.Hamburger-CTA-item {
    display: none;
}
.Hamburger-CTA-icon {
    display: -ms-flexbox; display: flex;
    flex: 1;
    flex-direction: column;
    text-align: center;
    background-color: rgba(248,180,53,1.00);
    color: rgba(17,30,53,1.00);
    max-width: 30%;
    height: 40px;
    justify-content: center;
}
.Hamburger-CTA-icon a {
    margin: 0px;
}
#HamburgerSocial {
    display: -ms-flexbox; display: flex;
    justify-content: center;
    padding-bottom: 50px;
}
#HamburgerLogo {
    display: none;
}
/*----------------------------------------------END OF HAMBURGER MENU (MAX 960PX)--------------------------------------------------------*/  

	
#FeatureBox {
    width: 95%;
}
.FeatureTitle h1 {
    font-size: 45px;
    letter-spacing: 0px;
}
#FeatureType {
    top: -15%;
    left: -2%;
    width: 250px;
    height: 40px;
}
#FeatureType p {
    letter-spacing: 1px;
}
/*---------------------------------------------- PROMO CONTENT (MAX 960PX)------------------------------------------------*/ 
     
#PromoIntro-Text {
    width: 85%;
    margin: auto auto auto auto;
}
.promo-content-item {
    width: 40%;
    height: 375px;
}
.promo-content-item h1 {
    font-size: 16px;
}
.dept-promo-content-item {
    width: 427px;
    height: 240px;
}
.dept-promo-content-item h1 {
    padding: 15px;
    font-size: 16px;
}
.promo-content {
    margin-right: 0%;
    margin-left: 5%;
    width: 100%;
    margin-top: 35px;
}
#stories {
    width: 100%;
}
/*---------------------------------------------- END OF PROMO CONTENT (MAX 960PX)---------------------------------------*/ 




.FeatureHeaderBar {
	padding-bottom: 50px;
}
	
.Feature-Headline {
    width: 95%;
	min-width: 300px;
}


.FH-left {margin-left:auto;margin-right:auto;}
.FH-center {margin:auto;}
.FH-right {margin-right:auto;margin-left:auto;}

.FH1-serif {
	font-size:55px !important;
}

.FH1-sansserif {
	font-size:55px !important;
}

#FeatureIntro-Text {
	width:90%;
    margin-bottom: 0px;
	padding:20px;
}

.FIT-left {margin-left:auto;margin-right:auto;}
.FIT-center {margin:auto;}
.FIT-right {margin-right:auto;margin-left:auto;}



/*---------------------------------------End of Feature Headers and Elements (MAX 960PX) ------------------------------------*/

/*--------------------------------------- Branded Content Hub Elements (MAX 960px) ------------------------------------*/

.ContentHubItem {
    width: 45%;

}

/*--------------------------------------- End Branded Content Hub Elements (MAX 960px) ------------------------------------*/



/*------------------------------------ Areas of Study (max 960px)------------------------------------*/

    
.AreasOfStudy {
    max-height: 175px
}
.StudyArea-box {
    height: 175px;
}
.StudyArea-box:hover {
    height: 175px;
}
.StudyArea-box h1 {
    font-size: 16px;
    line-height: 100%;
}
/*------------------------------------ End of Areas of Study (max 960px)------------------------------------*/


	
.headline2 {
    font-family: Roboto Slab Regular;
    color: #fff;
    text-align: left;
}
.headline2-description {
    width: 95%;
    margin: auto;
}
.headline2 h1 {
    font-size: 35px;
    line-height: 105%;
}
.headline {
    font-size: 80px;
}
#Head3description {
    margin: 0 auto;
    width: 95%;
}
.sec-nav-contain {
    display: none;
}
.swiper-container {
    width: 100%;
    margin-bottom: 40px;
}
.titletext {
    font-size: 12px;
    letter-spacing: 5px;
    text-align: center;
    line-height: 105%;
}
.article {
    font-family: Gotham_Book;
    font-size: 14px;
    line-height: 175%;
    margin: -50px 0px 0px 0px;
    color: rgba(90,90,90,1.00);
    padding-top: 50px;
}
.french-fry {
    display: none;
}
.Big-Watermark-Contain-L, .Big-Watermark-Contain-R {
    top: -50px;
}
.Big-Watermark-Contain-L h1, .Big-Watermark-Contain-R h1 {
    font-size: 100px;
}
.StatContain {
    padding: 60px 0px 60px 0px;
}
.column-layout {
    padding: 20px;
}
.side-col-nav {
    display: none;
}
.main-column {
    flex-basis: 75%;
}
/*------------------------------------------------GRAPHIC AREA (MAX 960PX)--------------------------------------------------*/
     
#IconGraphics {
    flex-direction: column;
    padding: 0px 10px 0px 0px;
}
.IconArea {
    flex-direction: row;
    align-items: flex-start;
    padding: 30px 0px;
}
.IconArea h4 {
    min-width: 35%;
    text-align: center;
}
.IconText {
    text-align: left;
}
.half-graphic {
    width: 96%;
}
.GraphicRow {
    display: -ms-flexbox; display: flex;
    align-items: center;
    max-width: 1600px;
    margin: auto;
    flex-direction: column;
}
.GraphicSection {
    margin-bottom: 20px;
}
/*------------------------------------------------end of GRAPHIC AREA (MAX 960PX)--------------------------------------------------*/
	
.article-content .article-content-column-container {
    flex-direction: column;
}

.article-content .article-content-column-container .article-content-column:not(:first-child) {
    margin-left: 0em;
}
#ProfileName h1 {
    font-size: 55px !important;
}
#HeaderContent {
    margin: 0 auto;
    padding: 0px 0px 0px 0px;
}
#FootContain {
    left: 0%;
}
#FootContent {
    flex-direction: column;
    align-items: center;
}
#NavContain {
    display: block;
}
.Gen-Contact {
    margin-bottom: 35px;
    justify-content: center;
}
.video-container {
    flex-direction: column;
    align-items: center;
    display: inline;
}
.video-left {
    min-width: 0;
}
.video-info {
    padding: 0px 20px;
}
.testimonial-container {
    flex-direction: column;
}
}

/*----------------------------------------------------------------------------------------------------------------------*/
/*----------------------------------------------------------------------------------------------------------------------*/
/*----------------------------------------------------------------------------------------------------------------------*/
@media only screen and (max-width: 768px) {
#NavTray {
    display: none;
}
#Mobile-Header-Buttons {
    display: -ms-flexbox; display: flex;
}
#Hamburger-CTA {
    justify-content: space-around;
}
#HamburgerMenu ul li a {
    letter-spacing: 4px;
}
.resources-2 {
    margin: 0px auto 20px;
    width: 100%;
}
.dept-promo-content-item h1 {
    font-size: 14px;
    padding: 14px;
}
#GraphicArea {
    padding: 65px 0px 100px 0px;
}


/*-------------------------------------------------Header Heights (MAX 768PX)-------------------------------------------*/  

#HeaderContent.arrow-space {
    padding-bottom: 70px;
}
.article-A-header {
    min-height: 380px;
}
.short-header {
    min-height: 325px;
}
.article-A-header {
    min-height: 325px;
}
.header-550 {
    min-height: 375px;
    background-position: 50% 50%;
}
/*-------------------------------------------------End of Header Heights (MAX 768PX)------------------------------------*/



/*-------------------------------------------------AREAS OF STUDY (MAX=768PX)-------------------------------------------*/

#AreasOfStudyContain {
    padding: 40px 0px;
    margin-top: -1px;
}
.AreasOfStudy {
    flex-direction: column;
    width: 100%;
    height: 350px;
    max-height: 350px
}
.StudyArea-box {
    height: 350px;
    width: 100%;
}
.StudyArea-box:hover, .StudyArea-box:active {
    flex: 1;
    background: rgba(248,180,53,1.00);
    transition: .5s;
    padding: 0px;
    margin: 0px 0px;
    box-shadow: 30px 30px 50px rgba(0,0,0,0.60);
    z-index: 50;
    height: 350px;
}
.StudyArea-box h1 {
    font-size: 14px;
    text-align: left;
    margin: auto 0px auto 135px;
    background: none; /*linear-gradient(90deg, rgba(0,14,24,1)10%, rgba(0,14,24,0)90%);*/
}
.StudyArea-box:hover h1, .StudyArea-box:active h1 {
    color: rgba(255,255,255,1.00);
    font-size: 14px;
    line-height: 90%;
    margin: auto 0px auto 135px;
    /*background-color:rgba(20,20,20,0.50);
	*/
    width: 100%;
    font-family: Gotham_Bold !important;
}
.StudyArea-box > a > div {
    background-size: contain !important;
    background-repeat: no-repeat !important;
    background-position: left !important;
}
.StudyArea-box > a > div:hover, .StudyArea-box > a > div:active {
    text-align: center;
    align-items: center;
}
.StudyArea-box > a:hover, .StudyArea-box > a:active {
    background-position: center !important;
    opacity: .4;
}
/*---------------------------------------- END OF AREAS OF STUDY (MAX=768PX)--------------------------------------*/

/*----------------------------- Branded Content Top Content Section  -----------------------------*/

#MainBrandFeature, .SecBrandFeatures {
	margin-bottom:15px;
	padding:5px;
}

.SecFeatureImg {
	height:125px;
}


/*----------------------------- Branded Content Top Content Section  -----------------------------*/
	 
/*------------------------------------------- ROI SECTION (MAX=768PX) ------------------------------------*/

#StatContain {
    padding: 105px 0px 50px 0px;
}
#StatContent {
    color: #fff;
    max-width: 1650px;
    margin: auto;
    width: 90%;
    padding-bottom: 15px;
}
.ROIGraphics {
    flex-direction: column;
    max-width: 450px;
}
.ROI-Item {
    flex-direction: row;
    margin: 0px 10px 0px 10px;
}
.ROI-Item img {
    min-width: 65px;
    max-height: 65px;
    margin: 10px 20px 10px 0px;
}
.ROI-Item h1 {
    text-align: left;
}
/*-------------------------------------------- END OF ROI SECTION (MAX=768PX) ------------------------------------*/

/*----------------------------------GENERAL ARTICLE STYLING (MAX=768PX ---------------------------------*/

.column-layout {
    padding: 5px;
    flex-direction: column;
}
.article-A {
    margin-top: -200px;
}
.article-A h1 {
    font-size: 65px;
}
.article-A .article-content {
    padding: 40px 20px;
    box-shadow: 2px -2px 4px rgba(100,100,100,0);
    background-color: #fff;
    margin: -45px 0px 0px 0px;
}
.article-B .article-content, .profile-fac .article-content {
    padding: 0px 20px 10px 20px;
}
.article-B {
    box-shadow: 2px -2px 4px rgba(100,100,100,0);
}
.article-B h1, .profile-fac h1 {
    padding: 30px 15px 0px 15px;
}
.article-B h1 {
    font-size: 30px;
}

hr.style-one {
    margin-left:20px;
}
/*----------------------------------End of GENERAL ARTICLE STYLING (MAX=768PX ---------------------------------*/
     
/*-----------------------------------Profile Article Styling (MAX WIDTH:768px)-----------------------------*/


#Profile {
    flex-direction: column;
}
#ProfilePic {
    align-content: center;
    align-items: center;
    justify-content: center;
    display: -ms-flexbox; display: flex;
    max-width: 100%;
    min-width: 100px;
}
#ProfilePic img {
    margin-left: 0px;
}
.ProfileQuote {
    padding-bottom: 150px;
    align-self: center;
    margin: 0px 0px 0px 0px;
}
.ProfileQuote h5 {
    font-size: 20px !important;
    line-height: 130%;
}
#ProfileName {
    padding: 0px 10px;
}
#ProfileName h1 {
    font-size: 75px !important;
}
/*------------------------------End of Profile Article Styling (MAX WIDTH:768px)------------------------------------*/
/*---------------------------------------- Sticky Footer Content (MAX=768PX) ------------------------------------------*/

#LinkBin {
    flex-direction:column;
}
/*--------------------------------------- End of Sticky Footer Content (MAX=768PX) ------------------------------------*/
/*------------------------------ jtabs (MAX WIDTH:768px)------------------------------------*/
.jtab-inner ul {
    padding-left: 0px;
}
    
.jtab-inner ul ul {
    padding-left: 20px;
}

/*---------------------------------------- HOME PAGE ICON AREA (MAX=768PX)--------------------------------------*/
.IconArea img {
    max-height: 150px;
}
/*---------------------------------------- END OF HOME PAGE ICON AREA (MAX=768PX)--------------------------------*/

#breadcrumbs {
    justify-content: flex-end;
    height: 30px;
}
#breadcrumbs ul {
    display: none;
}
.headline2 {
    text-align: center;
}
#HeaderContent {
    float: none;
    height: auto;
    padding: 0px 0px 0px 0px;
}
#Major {
    margin-bottom: 200px;
}
.headline {
    font-size: 50px;
    margin-left: 10px;
}
.column-layout {
    flex-direction: column;
}
.side-col-highlights {
    margin: 20px 0px 0px 0px;
    max-width: 100%;
    border-radius: 6px;
}
.testimonial h1 {
    font-size: 35px;
}
.headline h1 {
    font-size: 50px;
}
.headline3 {
    padding: 0px;
}
.swiper-container {
    margin-bottom: 40px;
}
.tier-1-h1 {
    font-size: 60px;
}
#headline3 h1, .home-section-h1 {
    font-size: 45px;
}
.headline2-description {
    margin: auto;
    font-size: 13px;
    line-height: 175%;
    width: 95%;
}
#Head3description {
    font-size: 13px;
    line-height: 175%;
}
#headline3 p {
    font-size: 50px;
}
.promo-container {
    background: linear-gradient(180deg, rgba(40,40,40,0.00) 0%, rgba(40,40,40,1.00) 20%);
}
.promo-text {
    font-size: 14px;
}
.title-spread {
    font-size: 20px;
    letter-spacing: 8px;
}
#NavContain.home-2 {
    background-color: rgba(17,30,53,1.00);
    border-left: 0px solid rgba(200,200,200,.20);
    border-bottom: 0px solid rgba(200,200,200,.20);
    transition: .3s;
}
#NavContain.home-scroll {
    background-color: rgba(17,30,53,1.00);
}
#NavContain.home-scroll #OnTray, #NavContain.home-2 #OnTray {
    border-left: 0px solid rgba(200,200,200,.20);
    border-bottom: 0px solid rgba(200,200,200,.20);
    background-color: rgba(0,17,47,0);
    transition: .3s;
}
#HomeShield {
    flex-basis: 50px;
    display: inline;
}
#HomeLogo {
    display: none;
}
#TitleBox {
    padding-right: 50px;
}
.titletext {
    display: none;
}
/*---------------------------------------- TESTIMONIAL SECTION (MAX=768PX)--------------------------------------*/
.testimony-container {
    background: linear-gradient(180deg, rgba(40,40,40,1) 25%, rgba(255,255,255,1) 25%);
    padding-top: 45px;
} 

.testimony-grid {
    flex-direction: column;
    max-width: 300px;
    width: 90%;
    padding-bottom: 40px;
}
.testimony-tile {
    min-height: 175px;
}
/*---------------------------------------- END OF TESTIMONIAL SECTION (MAX=768PX)--------------------------------------*/
	
.footer-CTA h1 {
    font-family: Gotham_Black;
    font-size: 30px;
}
#FootSocial {
    justify-content: center;
}
.Gen-Contact {
    flex-direction: column;
}
.Gen-Contact li {
    text-align: center;
}
.Gen-Contact li:first-child {
    margin-right: 0px;
    margin-bottom: 20px;
}
.Gen-Contact .divider {
    margin: 20px 0px;
}
.headline-description {
    font-size: 14px;
    margin: 15px 5% 0px 5%;
}
}

/*----------------------------------------------------------------------------------------------------------------------*/
/*----------------------------------------------------------------------------------------------------------------------*/
/*----------------------------------------------------------------------------------------------------------------------*/
@media only screen and (max-width: 480px) {

/*--------------------------------------- Hamburger Menu (max width:480px) ---------------------------------*/
    #HamburgerMenu ul ul li {
    font-size: 11px;
}
#HamburgerMenu.reveal {
    overflow-x: hidden;
}

/*---------------------------------------end of Hamburger Menu (max width:480px) ---------------------------------*/

#StudyAreas {
    width: 80%;
}
.headline2 h1 {
    font-size: 40px;
}
.headline h1 {
    font-size: 45px;
}

	
#headline3 h1, .home-section-h1  {
    font-size: 30px;
}
.IconArea {
    align-items: center;
    padding: 15px;
    flex-direction: column;
}
    
    
.article-A h1 {
    font-size: 35px;
}
.article-B hr.style-one, .profile-fac hr.style-one {
    margin-left: 5%;
    width: 90%;
}
.side-col-highlights {
    min-width: 0px;
}
.side-col-hightlights.important-column img {
    max-width: 100%;
    height: 100%;
}
/*-------------------------------------------------BUTTON (MAX WIDTH:480PX)-------------------------------------------*/
    
.yellow-button, .gray-button, .teal-button, .rev-yellow-button, .rev-gray-button, .rev-teal-button {
    margin: 5px auto;
    width: 95%;
}
/*-------------------------------------------------END OF BUTTON (MAX WIDTH:480PX)----------------------------------*/   


/*---------------------------------------Feature Headers and Elements (MAX 480PX) ------------------------------------*/


.FeatureHeaderBar {
	padding-bottom: 70px;
}
	
.Feature-Headline {
    width: 95%;
}

.FH1-serif {
	font-size:35px !important;
}

.FH1-sansserif {
	font-size:35px !important;
}

#FeatureIntro-Text {
	width:95%;
}

/*---------------------------------------End of Feature Headers and Elements (MAX 480PX) ------------------------------------*/

     
/*----------------------------------------AREAS OF STUDY (MAX=480PX)--------------------------------------*/

.AreasOfStudy {
    max-height: 300px;
    height: 300px;
}
.StudyArea-box {
    height: 75px;
}
.StudyArea-box h1 {
    margin: auto 0px auto 105px;
}
.StudyArea-box:hover h1, .StudyArea-box:active h1 {
    margin: auto 0px auto 135px;
}
.StudyArea-box > a > div {
    align-items: center;
    text-align: center;
}
/*---------------------------------------- end of AREAS OF STUDY (MAX=480PX)--------------------------------------*/

/*---------------------------------------- HOME PAGE ICON AREA (MAX=480PX)--------------------------------------*/
.IconArea {
    align-items: center;
    padding: 15px;
    flex-direction: column;
}
/*---------------------------------------- END OF HOME PAGE ICON AREA (MAX=480PX)--------------------------------------*/
     
/*---------------------------------------- SECONDARY GRAPHIC AREA (MAX=480PX)--------------------------------------*/
     
.GraphicSection {
    flex-direction: column;
}
.Graphic-Section-Divider {
    display: none;
}
.Graphic-Perc {
    min-height: inherit;
}
/*---------------------------------------- END OF SECONDARY GRAPHIC AREA (MAX=480PX)--------------------------------------*/

/*--------------------------------------- Branded Content Hub Elements (MAX 480px) ------------------------------------*/

.ContentHubItem {
    width: 95%;

}

/*--------------------------------------- End Branded Content Hub Elements (MAX 480px) ------------------------------------*/
    
/*---------------------------------------- PROMO CONTENT (MAX=480PX)--------------------------------------*/
     
.promo-content {
    padding: 0px 0px 55px 0px;
    margin: auto;
    width: 90%;
}
.promo-content-item {
    margin-top: 35px;
    height: 450px;
    width: 100%;
    background-size: cover !important;
    background-position: top !important;
}
.dept-promo-content-item {
    margin: 0px;
    margin-top: 40px;
    width: 100%;
    background-size: cover !important;
}
#FeaturePanel1, #FeaturePanel2 {
    display: none;
}
.swiper-button-prev-promo {
    left: auto !important;
    right: 30px;
    margin-right: 30px;
}
.swiper-button-next-promo {
    margin-left: 75px;
    left: auto !important;
    right: 0 !important;
}
#stories {
    padding-bottom: 35px;
    padding-top: 35px;
}
/*---------------------------------------- END OF FPROMO CONTENT (MAX=480PX)--------------------------------------*/ 

/*---------------------------------------- Sticky Footer Content (MAX=480PX) ------------------------------------------*/

#FootContain {
    top: auto;
    padding: 60px 25px;
}
.footer-CTA {
    padding: 70px 25px;
}
.promo-section-gold .gray-button {
    margin: 10px auto;
}
.credentials li img {
    margin: 0px 10px;
    width: 70px;
    max-height: 70px;
}
/*--------------------------------------- End of Sticky Footer Content (MAX=480PX) ------------------------------------*/

/* OverRides for Bootstrap Default Styles */
.container-fluid {
    width: auto !important;
}

}

@supports (-webkit-overflow-scrolling: touch) {
  /* CSS specific to iOS devices */
	
	.FeatureBG {
		background-attachment: scroll;
		background-size: cover;
		background-repeat: no-repeat;

	}
	
}






