@charset "utf-8";
/* CSS Document */

/*High level wrappers*/
.cy-main-wrapper section {
    width: 100%;
    margin: 80px auto;
}

.cy-full-width {
 position: relative;   
}

.cy-full-width-inner {
    padding: 0 5%; 
}

/*Currently the 2nd child to dismiss the hero section - will this apply to all category pages or just homepage? */
.cy-main-wrapper section:nth-child(2) {
    margin: 40px auto 80px auto;
}

.cy-main-wrapper section:last-child {
    margin: 80px auto 40px auto;
}
/*Images that need to be full width - usually only one per section*/
.cy-lead-image {
    width: 100%;   
}
/*For sections that don't touch the edges of the screen on mobile*/
.cy-mobile-thin {
    padding: 0 5%; 
    box-sizing: border-box;  
}

/*Elements replacements*/
.cy-main-wrapper:not(.la-main-wrapper) h1 {
 font-family: museo-slab-100, 'Open Sans', Arial, sans-serif;
}

.cy-main-wrapper h2 {
 font-family: museo-sans-700, 'Open Sans', Arial, sans-serif;
 color: #333333;
 font-size: 3rem;
 line-height: 3.6rem;   
 margin: 0 0 20px 0;
 display: inline-block;
}
.cy-main-wrapper h3 {
 font-family: museo-slab-100, museo-sans-500, 'Open Sans', Arial, sans-serif;  
 margin-bottom: 10px;
}

/*Repeted sections/pieces on high level pages*/

/*Image grids at top - consider removing from this stylesheet if they're going to be inserted locally each time using sitecore templates*/
.cy-main-wrapper section.cy-image-grid {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 30px;
    position: relative;
    flex-direction:column;
}
.cy-image-grid .cg-block img{
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;  
    max-height: none;
}
.cy-image-grid .cg-width-blocks {
    width: 100%;
}
.cy-image-grid .ts-header-image1 {
    display:block;
    height: 250px;
}

.cy-image-grid .cg-block:first-child {
   display: -webkit-box;
   display: -ms-flexbox;
   display: flex;
   -webkit-box-orient: vertical;
   -webkit-box-direction: normal;
       -ms-flex-direction: column;
           flex-direction: column;
   margin-bottom: 0;
}

/*Main image (first)*/
.cy-image-grid .cg-block:first-child img{
   height: 250px;
    width: 100%;
    -o-object-fit: cover;
       object-fit: cover;
   -webkit-box-ordinal-group: 3;
       -ms-flex-order: 2;
           order: 2;
}

.cy-image-grid h1 {
    font-size: 3rem;
    line-height: 4rem;
    padding: 15px 3% 10px 3%;
}
/*bubbles on image grids*/
/*.cy-image-grid .cg-button-bubble {
   position: absolute;
   bottom: -50px;  
   left: 0; 
}*/


/*DELIVERIES*/
/*next session date box*/
.cy-next-session {
    background: #fff;
    box-shadow: 0 0 5px #cccccc; 
    height:auto; /*added because height:100%; on .cg-card is actually removing all height from this card in safari - ep 11/10*/
}
.cy-next-session h3 {
    color: #fff;
    text-align: center;
        background: #002855; 
        /*background: -webkit-linear-gradient(90deg, #179b90, #002855 100%); 
        background: -o-linear-gradient(90deg, #179b90, #002855 100%); 
        background: -moz-linear-gradient(90deg, #179b90, #002855 100%); 
        background: linear-gradient(90deg, #179b90, #002855 100%);*/
    padding: 10px 20px; 
}

.cy-next-session-content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;   
}
.cy-next-session-content p {
    text-align: center;
    
}

/*Campus tuition*/
.cy-tuition {
    box-shadow: 0 0 5px #cccccc;
}
.cy-tuition .cg-block {
    margin-bottom: 0; 
    display: -webkit-box; 
    display: -ms-flexbox; 
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;  
}
.cy-tuition .cy-mobile-background h3{
    margin: 20px auto;   
}
.cy-tuition-rate {
    text-align: center;  
    padding: 30px;
}
.cy-tuition-rate p.cg-big-number {
    font-family: museo-sans-700;  
    font-size: 100px; 
    line-height: 100px;
    margin-bottom: 10px;
    display: block;
    color: #002855; 



}



/*News*/
.cy-news {
    background: #f2f2f2;   
}
.cy-news .cy-news-item {
    /*border-bottom: 2px solid #767676;
    position: relative; 
    padding: 20px 40px 20px 8%;*/ 
    box-sizing: border-box;
    margin-bottom: 0;
}

/*.cy-news-item .cg-card-content {
    padding: 0;   
}*/
.cy-news .cy-news-item:last-child {
    border-bottom: none;   
}
.cy-main-wrapper .cy-news h2 {
    margin-top: 20px;
}
/*.cy-news h3 {
    font-family:  museo-sans-500, 'Open sans', Arial, sans-serif;
    margin: 0;
    box-sizing: border-box;
    font-size: 20px!important;
    line-height: 24px!important;
}*/


.cy-news .cg-mobile-list-card {
      padding: 15px 40px 10px 5%; 
}
.cy-news .cg-card .cg-action-button {
    position: absolute;
    right: 0; 
    top: 20%;
    width: 30px;
    height: 30px;
    line-height: 23px;
     background: #e92f32;
    background: linear-gradient(110deg, #ffd800, #f37d1b 40%, #e92f32 70%); 
}
.cy-social-bar {
    background: #1a1a1a;
    padding: 10px 0 5px 0;
   /* margin: 20px 0;*/
}
.cy-social-bar .cg-width-blocks {
-webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-pack: distribute;/* csslint allow: known-properties, distribute */
        justify-content: space-around;
}
.cy-social-bar-inner {
    max-width: 300px;  
    margin: 0 auto; 
}
.cy-social-bar .cg-block {
    margin: 0;
    text-align: center;
}
.cy-social-bar img {
    width: 30px;
    transition: all .5s ease-in-out; 
}
.cy-social-bar a {
    display: block;
     
}
/*Don't really like this hover effect. Ask Jon*/
.cy-social-bar a:hover img {
   -webkit-transform: scale(1.08);
           transform: scale(1.08);
   background: #179b90;
   border-radius: 5px;
}
/*Ends news*/

/*Stripes?*/
.cy-stripe {
    background: #f2f2f2;
    width: 100%;
    height: 350px; 
    position: absolute;
    top: 20%;
    left: 0;
    z-index: -10;
}
/*Make this local to nationwide if not used elsewhere*/
.cy-main-wrapper .cy-double-stripe {
    padding-top: 50px;
    padding-bottom: 30px;
    margin-bottom: 50px;  
    position: relative;
}

.cy-double-stripe .cy-stripe {
    top: 0; 
    height: 30px;  
}
.cy-double-stripe div.cy-stripe:last-child {
    top: auto;
    bottom: 0; 
}


/*Filmstrips - flex images*/

.cy-filmstrip-blurb { /*these are from campus-experience.aspx - ep*/
    padding: 10px 15px;
}
.cy-filmstrip-mobile {
    display:-webkit-box;
    display:-ms-flexbox;
    display:flex;
    width: 100%;
    height: 200px;
}
    .cy-filmstrip-mobile .cy-filmstrip-image {
        -webkit-box-flex:1;
            -ms-flex:1;
                flex:1;
    }
        .cy-filmstrip-mobile .cy-filmstrip-image:last-child {
            -webkit-box-flex:2;
                -ms-flex:2;
                    flex:2;
            border-left: solid 3px #fff;
        }
        .cy-filmstrip-mobile .cy-filmstrip-image img {
            height: 200px;
        }

/*Green backgrounds on mobile - if only on homepage, move to local*/
.cy-mobile-background {
    background: #179b90;
    padding: 30px 5%; 
}
.cy-mobile-background-shadow {
 margin: 0 auto 20px auto;
        box-shadow: 0 3px 7px #cccccc;   
}
.cy-mobile-background h2, h2.cy-mobile-background, .cy-mobile-background h3, .cy-mobile-background a, .cy-mobile-background p {
    color: #fff;   
    /*margin: 0 auto;*/
    display: block;
}

.cy-mobile-background a.cg-link-standalone, .cy-mobile-background a.cg-link-standalone:visited {
    color: #fff;   
}


/*Admissions checklist*/
.cy-checklist-content {
    position: relative;   
}

.cy-checklist .cy-stripe{
    height: 30px;   
    top: 52%;
}
    .cy-checklist {
        overflow:hidden;
    }

    .cy-checklist-image {
        margin-bottom:50px;
        height: 250px;
        max-width:none;
    }

.cg-mobile-scroll-cards .cy-full-width-inner {
    padding: 0;
}

/* local centers */
.lc-locations {
    padding-top:1px;
}
    .lc-locations iframe {
        display:none;
    }
    .lc-locations .iframe .i4ewOd-pzNkMb-haAclf {
        background-color: rgb(23, 155, 144)!important;
    }
    .cy-main-wrapper.lc-locations .in-main-content {
        max-width: 100%;
        margin: 0 auto;
    }
.cy-main-wrapper.lc-locations .cy-full-width {
    margin-top:50px;
}
    .cy-main-wrapper.lc-locations h1 {
        font-size: 3rem;
        line-height: 3.4rem;
        font-family: museo-sans-700, 'Open Sans', Arial, sans-serif;
        color: #444444;
        margin-bottom: 10px 0 1.5rem 0;
    } 
    .cy-main-wrapper.lc-locations h2 {
        font-size: 2.2rem;
        color:#444444;
        line-height: 2.4rem;
        margin-bottom: 10px;
    }
    .lc-locations ul.cg-four-columns {
        -webkit-column-count: 1;
           -moz-column-count: 1;
                column-count: 1;
    }
    .lc-locations li {
        margin-bottom: .5em;
        -webkit-column-break-inside:avoid;
           page-break-inside:avoid;
                break-inside:avoid;
    }
    .lc-locations li:last-child {
        margin-bottom: 1em;
    }
    .lc-locations li a {
        color: #444444;
        font-family:museo-sans-300;
    }

/*STUDENT LIFE mobile*/
.sa-orientation-inner {
    position: relative;   
}

/*specificity of class to fix padding overwrites*/
.cy-main-wrapper section.sa-reslife {  
    background: #f0f0f0;
    padding-top: 40px;
    padding-bottom: 20px;
}

.sa-reslife .cg-iframe-wrapper {
    margin: 0;   
}

.sa-resources .cy-stripe {
    height: 80%;
    top: calc(10% + 36px);
}   
.sa-story .cg-block .cg-button, .sa-reslife .cg-block .cg-button {
    max-width:none;
}

.sa-resources .cg-card {
    text-align: center; 
    position: relative;
}
.sa-activities .cg-action-button, .sa-resources .cg-action-button {
    background: #e92f32; 
    background: linear-gradient(100deg, #002855 5%, #4b2a4a 15%, #b92e39 45%, #e92f32 80%);
}

.sa-activities .cg-action-button:hover, .sa-resources .cg-action-button:hover {
    background: #e92f32; 
    background: linear-gradient(100deg, #4b2a4a 0%, #b92e39 40%, #e92f32 80%);
}

.sa-resources .cg-card-caps  {
    text-transform: none;   
}

.sa-resources .cg-card div:first-child img {
 display: none;
}

/*IE specific styles - use .ie class that is added to the HTML element to target elements in IE only*/


@media screen and (min-width: 600px) {
/*News*/
.cy-news .cy-news-item{
   /* padding: 30px 40px 30px 8%; */ 
   padding: 0;
}
/* local centers */

.lc-locations ul.cg-four-columns {
    -webkit-column-count: 2;
       -moz-column-count: 2;
            column-count: 2;
}
}

@media screen and (min-width:769px) {
/*Adjustments from content.css*/

/*hide-on-mobile*/
.cy-main-wrapper .cg-hide-on-mobile {
    display: inline-block;   
}
.cy-main-wrapper .cg-hide-on-desktop {
    display: none;   
}
/*Width blocks*/
.cy-main-wrapper .cg-width-blocks {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
 }
.cy-main-wrapper .cg-block {
    margin-right: 25px;   
 }
.cy-main-wrapper .cg-block:last-child  {
    margin-right: 0;
} 
/*ends adjustments*/

/*High level wrappers*/
.cy-main-wrapper section{
    width: 100%;
    padding: 0 3%;
    box-sizing: border-box;
}

.cy-mobile-thin {
    padding: 0;   
}
section.cy-desktop-wide, section.cy-full-width {
 padding: 0;   
}

.cy-desktop-wide-inner, .cy-full-width-inner, .cg-mobile-scroll-cards .cy-full-width-inner {/*test*/
    padding: 30px 4% 0 4%;  /*Changed margin-bottom to make spacing for tablet bubbles*/  
}

/*Image grids at top*/
 .cy-main-wrapper section.cy-image-grid {
     width: 100%;
     max-width: none;
     margin: 0 0 60px 0;
     padding: 20px;
     box-sizing: border-box; 
}
.cy-image-grid .cg-block:first-child {
   display: block;
}
/*Main image (first)*/
.cy-image-grid .cg-block:first-child img{
   height: calc(100% - 100px);
   margin-bottom: 20px;
   display: block;
}
.cy-image-grid .cg-width-blocks {
    width: 100%;   
    flex-basis: auto;
    -ms-flex-preferred-size: auto;
}
 /*3 columns*/
.cy-image-grid .cg-block {
    height: 400px;   
    margin-right: 20px;
    max-height: 500px;
}
.cy-image-grid h1 {
    text-align: center;
    font-size: 3.5rem;
    line-height: 4rem;
    background: #f2f2f2;
    margin: 0;
    min-height: 80px;
    box-sizing: border-box;
    max-width: none;
}
/*3rd column*/
.cy-image-grid-half  {
    height: calc(50% - 10px);
    display: block;
    width: 100%;
}
.cy-image-grid .cy-image-grid-half img{
    width: 60%;
    height: 100%;
    margin-bottom: 20px;
    float: right;
}
.cy-image-grid-box {
    width:  calc(40% - 20px);
    height: 100%;
    margin: 0 20px 20px 0;
    background: #f2f2f2;   
    display: inline-block;
}
.cy-image-grid .cg-block img.cg-image-grid-half-height {
    height: calc(50% - 10px);   
}

    
/*styles after switching to background images */    
.cy-image-grid .ts-header-image4 {
    height: calc(50% - 10px);
    background-repeat: no-repeat;
    background-size: cover;
    margin-top:20px;
}

.cy-image-grid .ts-header-image3 {
    height: 100%;
    width: 60%;
    margin-bottom: 20px;
    float: right;
    background-size: cover;
}

.cy-image-grid .ts-header-image2 {
    background-size: cover;
    height: 100%;
}

.cy-image-grid .ts-header-image1 {
    height: calc(100% - 100px);
    background-repeat: no-repeat;
    background-size: cover;
    overflow: hidden;
    width: 100%;
    margin-bottom: 20px;
}
/*end*/


/*bubbles on image grids*/
.cy-image-grid .cg-button-bubble {
    left: auto;
   right: 22%;
    top: 330px;
}

/*campus deliveries*/
.cy-full-width-inner.cg-block.cy-next-session {
    -webkit-transform: translate(0, -60px);
            transform: translate(0, -60px);
    margin: 0 3% -40px 3%; 
}

.cy-delivery a.cg-link-standalone:last-child {
   padding-bottom: 20px;
}
/*News*/
.cy-news {
    position: relative;
    background: transparent;   
    border: none;
}
.cy-news .cg-mobile-list-card {
      padding: 0; 
}
.cy-main-wrapper .cy-news h2 {
    margin-top: 0;
}

.cy-news .cy-news-item{
    border-bottom: none; 
}
.cy-social-bar {
    width: 200px; 
    position: absolute;
    top: 5px;/*changed from 20*/
    right: 3%; 
    padding: 7px 5px 0 5px; 
    -webkit-box-align: center; 
        -ms-flex-align: center; 
            align-items: center;
    border-radius: 3px;
}
.cy-social-bar img {
    width: 25px;   
}

/*repeats from content.css because it gets overwritten by custom mobile styles*/
.cy-news .cg-card .cg-action-button {
   top: -42px;
   right: 15px; 
}

	/*new styles with no photo */
.cy-news .cg-desktop-card.cg-mobile-list-card > img {
    display: none;
}

.cy-news-item .cg-card-content {
    background-color: #f2f2f2;
    display:flex;
    align-items:center;
    transition:all .2s ease;
    width: 100%;
}

.cy-news-item .cg-card-content h3 {
    width: 89%;
    display:inline-block;
}

.cy-news .cg-action-button {
    position: static!important;
    display: inline-block;
    width: 9%;
    width:30px;
    height:30px;
}
.cy-news .cg-action-button img {
    margin-top:0;
    margin-bottom: 4px;
}

.cy-news .cg-desktop-card.cg-mobile-list-card {
    display:flex;
    align-items:stretch;
	height:100%;
}  
.cy-news .cy-news-item .cg-action-button {
    transition:all .2s cubic-bezier(0.4, 0, 0, 1);
}
.cy-news .cy-news-item a.cg-wrapper-link:hover .cg-action-button {
    transform: translateX(10px);
}
.cy-news a.cg-wrapper-link {
    transition:all .2s cubic-bezier(0.4, 0, 0, 1);
} 
.cy-news .cg-hover-cards .cg-action-button:hover {
    transform: none;
    background: linear-gradient(110deg, #ffd800, #f37d1b 40%, #e92f32 70%);
    transition:all .2s cubic-bezier(0.4, 0, 0, 1);
}
.cy-news .cg-hover-cards a.cg-wrapper-link .cg-card:hover, .cy-news .cg-hover-cards a.cg-wrapper-link .cg-desktop-card:hover {
    box-shadow: none;
}
.cy-news .cg-card-content:hover {
    background-color: #e1e1e1;
}
    
    /*wide images */

    .cy-checklist-image {
        height: auto;
        max-width: 100%;
    }
	



/*Filmstrips - flex images*/

.cy-filmstrip {
   display: -webkit-box;
   display: -ms-flexbox;
   display: flex;
   width: 100%; 
   height: 150px;

}
.cy-filmstrip .cy-filmstrip-image {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1; 
    border-right: 3px solid #fff;
}
.cy-filmstrip-image img{
    display: block;
    height: 150px;
    min-width: 100%;
    -o-object-fit: cover;
       object-fit: cover;
}
.cy-filmstrip .cy-filmstrip-image:nth-child(1), .cy-filmstrip .cy-filmstrip-image:nth-child(5) {
-webkit-box-flex: 1.5;
    -ms-flex: 1.5;
        flex: 1.5;
}
.cy-filmstrip .cy-filmstrip-image:nth-child(2), .cy-filmstrip .cy-filmstrip-image:nth-child(4) {
-webkit-box-flex: 2;
    -ms-flex: 2;
        flex: 2;
}
.cy-filmstrip .cy-filmstrip-image:nth-child(3) {
-webkit-box-flex: 1;
    -ms-flex: 1;
        flex: 1;
}
.cy-filmstrip .cy-filmstrip-image:nth-child(5) {
display: none;
}
.cy-filmstrip .cy-filmstrip-image:last-child {
    border-right: none;
}
.cy-filmstrip.cy-filmstrip-with-blurb { /*these are from campus-experience.aspx - ep*/
    -webkit-box-align:center;
        -ms-flex-align:center;
            align-items:center;
    background-color: #f2f2f2;
}
.cy-filmstrip.cy-filmstrip-with-blurb .cy-filmstrip-image {
    -webkit-box-flex:1;
        -ms-flex:1;
            flex:1;
}
    .cy-filmstrip-blurb {
        -webkit-box-flex: 1.5;
            -ms-flex: 1.5;
                flex: 1.5;
        padding: 0 15px;
        height: 150px;
    }
.cy-filmstrip.cy-filmstrip-with-blurb .cy-filmstrip-image:nth-child(3) {
    border-left: solid 3px #fff;
    -webkit-box-flex: .75;
        -ms-flex: .75;
            flex: .75;
}

 /*Stripes*/ 
 .cy-stripe {
    height: 30px;
    max-width: none;   
} 

/*This might just need to be all the cg-blocks on category pages (desktop only)? - also local styles for news*/
.cy-desktop-wide-inner .cg-block {
    margin-bottom: 0;   
}

/*Green backgrounds on mobile- disappear here for desktop*/
.cy-mobile-background {
        padding: 30px 4%; 
}

.cy-mobile-background-shadow {
     box-shadow: none;
}

/*absolute positioned green background for tuition section - homepage - if not used elsewhere move to local*/
.cy-desktop-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 80%;
    background: #179b90;
    z-index: -2;  
}

/*Admission checklist - not currently working*/
.cy-checklist .cg-lazy-load:nth-child(2) {
    -webkit-animation-delay: .2s; 
    animation-delay: .2s;  
}

.cy-checklist .cg-lazy-load:last-child {
    -webkit-animation-delay: .4s; 
    animation-delay: .4s;  
}

.cy-checklist .cy-stripe{ 
    top: 65%;
}
    
/* local centers */
    
.lc-locations h2 {
    font-size: 4.2rem;
    line-height: 5rem; 
    margin-left:0;
}
    
/*STUDENT LIFE !!!!!!!!!!!!!!!!!!!!!!!!*/
.sa-reslife .cg-iframe-wrapper {
    margin: 0;   
}

.cy-main-wrapper .sa-story, .sa-story .cy-full-width-inner {
    padding-top: 0;   
}

.sa-activities .cy-stripe {
    top: 30%;   
}

/*need cy-main-wrapper because the rule to make margin-bottom 0 has it*/
.cy-main-wrapper .sa-resources .cg-block {
    margin-bottom: 30px;  
}

.sa-resources .cg-action-button {
    right: calc(50% - 20px);   
}

.sa-resources .cg-card-caps {
    text-transform: uppercase;   
}

.sa-resources .cg-card div:first-child img {
    display: block;
}
/*specificity of class to fix padding overwrites*/
.cy-main-wrapper section.sa-reslife {  
    background: #f0f0f0;
    padding-top: 40px;
    padding-bottom: 20px;
}

}

@media screen and (min-width:992px) {
/*High level wrappers*/
.cy-main-wrapper section {
    margin: 100px auto;   
}
.cy-main-wrapper section:nth-child(2) {
    margin: 40px auto 100px auto;
}
.cy-main-wrapper section:last-child {
    margin: 100px auto 40px auto;
}



/*Elements replacements*/
.cy-main-wrapper h2 {
 font-size: 3.5rem;
 line-height: 4.2rem;   
}
.cy-main-wrapper h3 {
 font-size: 2rem;
 line-height: 2.8rem;
}

/*Admission checklist*/
.cy-checklist-content .cg-button-bubble {
    position: absolute;
    right: 30px; 
    top: -130px; /* changed from -170 to -130 for evening checklist bubble ep - 11/10*/
}
    
    .cy-filmstrip-mobile .cy-filmstrip-image:last-child {
        border-left: none;
    }
/* local centers */
.lc-locations ul.cg-four-columns {
    -webkit-column-count: 3;
       -moz-column-count: 3;
            column-count: 3;
}
    
/*STUDENT LIFE !!!!!!!!!!!!!!!!!!!!!!!!*/
.sa-resources .cy-stripe {
    height: 65%;
    top: calc(17% + 36px);
}
    
/*local centers*/
    
    .lc-locations iframe {
        display:block;
        width: 100%;
        height: 60vh;
        border:none;
        border-bottom: 15px solid #179b90;  
        border-image-source: linear-gradient(to left, rgba(0, 40, 85, 1), rgba(23, 155, 144, 1));
        border-image-slice: 20;
    }
}

@media screen and (min-width:1200px) {
/*High level wrappers*/
.cy-main-wrapper section, .cy-full-width-inner, .cy-checklist .cy-full-width-inner{
    padding: 0 10%;
}
section.cy-desktop-wide {
 /*margin: inherit; causing problems with tuition section? - ep 11/1*/
 width: 88%; 
    margin: auto;/*added this to fix spacing in IE*/
    /* min-height: 100%;/*added this to fix spacing in IE ** causing problems with tuition section? ep - 11/1*/
 padding: 0;  
}

section.cy-full-width {
    padding: 0;  
}

.cy-image-grid h1 {
    font-size: 4.5rem;
    line-height: 5.3rem;
}

/*News*/
 .cy-social-bar {
    right: 10%;   
 }
 
/*Filmstrips*/

.cy-filmstrip, .cy-filmstrip-image img {
 height: 200px;   
}
.cy-filmstrip .cy-filmstrip-image:nth-child(5) {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
}

/*Admission checklist*/
.cy-checklist-content .cg-button-bubble {
    top: -110px; 
}   
.cy-checklist-image, .cy-main-wrapper .cy-checklist h2, .cy-checklist-content {
    width: 100%;
    margin: 0 auto;  
    display: block; 
}
 .cy-main-wrapper .cy-checklist h2 {
    margin: 40px auto;   
}

.cy-checklist .cy-stripe{
    top: 73%;
}
    
/*STUDENT Life !!!!!!!!!!!!!!!!!!!!!!!!*/
.sa-orientation .cg-button-bubble {
    position: absolute;
    right: -70px; 
    top:   20%;
}
    
}

@media screen and (min-width: 1500px) {
 /*Revisit these max-widths when you have a chance to view on Amanda's Mac*/
 .cy-main-wrapper section {
    padding: 0;
    max-width: 1300px;
} 

 .cy-full-width-inner, .cy-desktop-wide-inner, .cg-mobile-scroll-cards .cy-full-width-inner  {
     padding: 0;
     max-width: 1300px;
     margin: auto;
     position: relative;
 }

.cy-main-wrapper .cy-desktop-wide {
    width: 95%; 
    max-width: 1400px;/*changed from 1500 - look again later on Amanda's Mac*/
}  

section.cy-full-width {
    padding: 0;  
    max-width: none;
}

.cy-desktop-wide-inner {
    padding: 30px 0;
    max-width: 1300px; 
    margin: 0 auto;  
    box-sizing: border-box;
}

/*Elements replacements*/
.cy-main-wrapper h2 {
 font-size: 4.5rem;
 line-height: 5.4rem;   
}
.cy-main-wrapper h3 {
 font-size: 3rem;
 line-height: 4rem;
}

/*image grid*/
.cy-image-grid .cg-block {
   height: 600px;   
}
    .cy-image-grid .cg-button-bubble {
        top: 430px;
    }

/*News*/
 .cy-social-bar {
    right: 0; 
    top: 10px;  /*changed from 30*/
 }
 
/*Stripes*/  
/*.cy-stripe-background {
    max-width: none;
}*/

/*Admissions checklist*/
.cy-checklist-image, .cy-main-wrapper .cy-checklist h2, .cy-checklist-content { 
    max-width: 1300px;   
}
    
/* local centers */
.lc-locations ul.cg-four-columns {
    -webkit-column-count: 4;
       -moz-column-count: 4;
            column-count: 4;
}

}
