@charset "UTF-8";
/* CSS Document */
/*
 * @toplevelpages2017.css
 * CSS for Top Level Pages Branding Initiative 2017 
 *
 * Includes CSS for prebuilt sections 
 * 
 */

/*------------------------------------------------------------*\
  * Start ##HTML SETTINGS
\*------------------------------------------------------------*/


body {
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 300;
  font-size: 16px;
}
.font--primary {
  font-family: Georgia, serif;
}
h2, h3 {
  margin: 0;
  padding: 0;
  font-family: "Source Sans Pro", sans-serif;
}
img.full-width {
  width: 100%;
  height: auto;
}
.absolute-center {
    left: 50%;
    margin: auto;
    position: absolute;
    top: 50%;
    transform: translate(-50%,-50%);
}
.absolute-center__visit {
  top: 25%;
}
@media (max-width: 600px) {
  .absolute-center__visit {
  top: 50%;
}
}

/*------------------------------------------------------------*\
  * End ##HTML SETTINGS
\*------------------------------------------------------------*/


/*------------------------------------------------------------*\
  *  Start ##COMPONENTS
\*------------------------------------------------------------*/

/* ---------------------------------  *\
  #Inline List 
\*------------------------------------*/

ul.list-inline {
  display: -webkit-box;   /* OLD - iOS 6-, Safari 3.1-6, BB7 */
display: -ms-flexbox;  /* TWEENER - IE 10 */
display: -webkit-flex; /* NEW - Safari 6.1+. iOS 7.1+, BB10 */
display: flex;         /* NEW, Spec - Firefox, Chrome, Opera */
  list-style-type:none;
  margin:0;
  padding:0;
  justify-content: center;
}
ul.list-inline li::after {
  content: '';
  padding: 0 1.389rem;
}
.list-inline__menu a {
  color: #000000;
}

  /* ---  ##Inline List with Slash. Suggested use: Combine with 'list-inline'.--- */
  ul.slash li::after {
    content: '/';
    padding: 0 1.389rem;
  }
  ul.slash li:last-child::after {
    content: none;
  }
  /* --- END ##UL with Slash --- */

/*------------------------------------*\
  #BUTTONS
\*------------------------------------*/
.btn {
  display: inline-block; 
  padding: 0.75rem 1.5rem; /* based on 16px */
  background-color: #990011; /* dark red */
  border: 3px solid #990011;
  border-radius: 0;
  color: #fff;
  cursor: pointer;
  text-decoration: none;
  font-family: "Source Sans Pro";
  font-size: 1rem; /* based on 16px */
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
	    white-space: inherit;
}
.btn:hover {
  transition: all 0.1s linear;
  background-color: #ffffff;
  color: #990011;
  }
  .btn--primary {
    background-color: #d6001c; /* lighter red */
    color:#fff;
    border: 3px solid #fff;
  }
    .btn--primary:hover {
      background-color: #ffffff;
      border: 3px solid #d6001c;
      color:#d6001c;
    }
  .btn--secondary {
    background-color: #011E5D; /* dark purple */
    border: 3px solid #011E5D;
  }
    .btn--secondary:hover {
      color: #011E5D; /* dark purple */
      background-color: #ffffff;
      border: 3px solid #011E5D;
    }
  .btn--tertiary {
    background-color: #000;
    border: 3px solid #fff;
  }
    .btn--tertiary:hover {
      transition: all 0.1s linear;
      background-color: #fff;
      color: #000;
      border: 3px solid #000;
    }
.btn--small {
    font-size: 0.750rem; /* 12px based on 16px=1rem */
}
.btn--med {
  font-size: 1.125rem; /* 18px based on 16px=1rem */
}
.btn--large {
  font-size: 1.4rem; /* 22px based on 16px=1rem */
  text-transform: none;
  font-weight: 300;
}
.btn--long {
  padding: 0.75rem 3rem;
}
.btn--bordered {
  border: 3px solid #ffffff;
 /* background-color: Transparent; */
  outline:none; 
  color: #ffffff;
}
.btn--bordered:hover {
  transition: all 0.1s linear;
  background-color: #ffffff;
  color: #990011;
}
.btn--bordered__primary {
  border: 3px solid #d6001c;
  background-color: transparent;
  color: #d6001c;
}
.btn--bordered__primary:hover {
  background-color: #d6001c;
  color: #ffffff;
}
.btn--bordered__secondary {
  border: 3px solid #000;
  background-color: transparent;
  color: #000000;
}
  .btn--bordered__secondary:hover {
    transition: all 0.1s linear;
  background-color: #000;
    color: #ffffff;
  }
.btn--bordered__tertiary {
  border: 3px solid #000;
  background-color: #fff;
  color: #000000;
}
  .btn--bordered__tertiary:hover {
  border: 3px solid #ffffff;
  background-color: #000000;
  color: #ffffff;
}
.btn--bordered__quaternary {
  border: 3px solid #fff;
  background-color: #100f21;
  color: #fff;
}
  .btn--bordered__quaternary:hover {
  border: 3px solid #100f21;
  background-color: #fff;
  color: #100f21;
}




/*------------------------------------*\
  #BLOCKQUOTE
\*------------------------------------*/

blockquote {
  border-left: medium none;
  color: #fff;
  font-family: "Source Sans Pro";
  font-size: 1.8rem;
  font-weight: 300;
  line-height: 1.4em;
  padding: 1.25em 3.5em 2em;
  text-align: center;
  margin: 0;
}
.blockquote__primary { /* dark red text */
  color: #d6001c;
}
.blockquote__secondary {
  color: #000; 
}
.blockquote__tertiary {
  text-align: left;
}
.blockquote__small {
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.75em;
}

@media (max-width: 768px) {
  blockquote {
  padding-right: 0;
  padding-left: 0;
	  font-size: 26px;
    line-height: 1.6em;
}
}



/*------------------------------------*\
#IMAGE NAVIGATION
/*------------------------------------*/
.img-nav {
  display: -webkit-box;   /* OLD - iOS 6-, Safari 3.1-6, BB7 */
  display: -ms-flexbox;  /* TWEENER - IE 10 */
  display: -webkit-flex; /* NEW - Safari 6.1+. iOS 7.1+, BB10 */
  display: flex;         /* NEW, Spec - Firefox, Chrome, Opera */
  width: 100%;
}

.img-nav__link {
  position: relative;
  -webkit-flex: 1 1 0; /* Safari 6.1+ */
  -ms-flex: 1 1 0; /* IE 10 */
  flex: 1 1 0;
}

.img-nav__link img {
  width: 100%;
  height: auto;
}

.img-grid {
  display: -webkit-box;   /* OLD - iOS 6-, Safari 3.1-6, BB7 */
  display: -ms-flexbox;  /* TWEENER - IE 10 */
  display: -webkit-flex; /* NEW - Safari 6.1+. iOS 7.1+, BB10 */
  display: flex;         /* NEW, Spec - Firefox, Chrome, Opera */
  width: 100%;
  border-width:10px 0;
  border-color:#a1c3c8;
  border-style:solid;
}

.img-grid img {
  width:100%;
  height:100%;
  object-fit:cover;
}

.img-grid > div:nth-child(even) {
  -webkit-flex: 2;
  -ms-flex: 2;
  flex: 2;
}

.img-grid > div:nth-child(odd) {
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.img-grid__stacked {
  display:flex;
  flex-direction:column;
}

.img-grid__stacked > div {
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.img-grid__content {
  background-color:#011E5D;
  color:#fff;
  font-weight:700;
  text-transform:uppercase;
  text-align:center;
  padding:1em 1.5em;
  display:flex;
  flex-direction:column;
}

.img-grid__fact {
  font-size:140px;
  line-height:1em;
  margin-top:auto;
  font-weight:300;
}

.img-grid__title {
  font-size:20px;
  margin-bottom:auto;
  line-height:1.2em;
}

@media (max-width:1200px) {
  .img-grid__fact {
    font-size:100px;
  }
  .img-grid__title {
    font-size:16px;
  }
}

@media (max-width:767px) {
  .img-grid__stacked .img-grid__img {
    display:none;
  }
  .img-grid__full {
    max-height:400px;
    object-fit:cover;
  }
  .img-grid {
    flex-flow:column;
  }
}


/* ---------------------------------  *\
  #SLASHES 
\*------------------------------------*/

.slash-area {
  display: -webkit-flex; 
  display: flex; 
  -webkit-flex-flow: row; 
  flex-flow: row; 
  -webkit-justify-content: space-between; 
  justify-content:space-between;
}
.slash-box {
  -webkit-flex: 1 1 20%; 
  -ms-flex: 1 1 0; 
  flex: 1 1 20%;
  text-align: center;
}
.slash-box__small img {
  max-width: 1.500em;
}

.coppola__icon {
  margin-top: -50px;  
  padding-top: 50px;  
}

.slashes__intro {
  font-family: Georgia, serif;
  font-size: 30px;
  font-weight: 400;
  margin: 60px 0px;
}
.slashes__fact {
  font-family: "Source Sans Pro", sans-serif;
  font-size: 36px;
  font-weight: 700;
  margin: 0;
  line-height: 1em;
}
.slashes__title {
    font-weight: 700;
}
.slashes__summary {
  margin-top: 1rem;
}
.slashes__intro--white, .slashes__fact--white, .slashes__title--white, .slashes__summary--white {
  color:#fff;
}
.slashes__intro--white a, .slashes__fact--white a, .slashes__title--white a, .slashes__summary--white a {
  color:#fff;
}
.slashes__intro--black, .slashes__fact--black, .slashes__title--black, .slashes__summary--black {
  color:#333;
}
.slashes__intro--black a, .slashes__fact--black a, .slashes__title--black a, .slashes__summary--black a{
  color:#333;
}
@media (max-width: 768px) {
  .slash-area.container {
    width: auto;
  }
}


/*------------------------------------*\
  #BACKGROUNDS
\*------------------------------------*/

.bkgrd {
  background-color: #fff;
}
.bkgrd--primary {
  background-color: #d6001c;
}
.bkgrd--secondary {
  background-color: #ab2328;
}
.bkgrd--tertiary {
  background-color:rgba(0,0,0,0.70)
}
.bkgrd--quaternary {
  background-color:#a1c3c8;
}

.bkgrd--diamonds {
  background-image: url(/images/backgrounds/diamonds/diamonds-white.jpg);
  background-color: #ffffff;
}
.bkgrd--diamonds__primary {
  background-image: url(/images/backgrounds/diamonds/diamonds-red.jpg);
  background-color: #971507;
}
.bkgrd--diamonds__tertiary {
  background-image: url(/images/backgrounds/diamonds/diamonds-teal.jpg);
  background-color: #e0f0f2;
}
.bkgrd--diamonds__quaternary {
  background-image: url(/images/backgrounds/diamonds/diamonds-dkgray.jpg);
  background-color: #343434;
}

.bkgrd--texture {
  background-repeat:repeat;
}

.texture-polygon_white, .texture-polygon_white__flip:after {
  background-image:url(/images/backgrounds/polygon/light-polygon-white.gif);
}

.texture-polygon_dark-blue, .texture-polygon_dark-blue__flip:after {
  background-image:url(/images/backgrounds/polygon/dark-polygon-blue.gif);
}

.texture-polygon_dark-red, .texture-polygon_dark-red__flip:after {
  background-image:url(/images/backgrounds/polygon/dark-polygon-red.gif);
}

.texture-polygon_light-gray, .texture-polygon_light-gray__flip:after {
  background-image:url(/images/backgrounds/polygon/light-polygon-grey.gif);
}

.texture-polygon_dark-gray, .texture-polygon_dark-gray__flip:after {
  background-image:url(/images/backgrounds/polygon/dark-polygon-grey.gif);
}

.texture-gradient_light-white-blue-gray, .texture-gradient_light-white-blue-gray__flip:after {
  background-image:url(/images/backgrounds/gradient/light-white-blue-grey.gif);
  background-repeat:repeat-x;
  background-position:center bottom;
  background-color:#d4e6e8;
}

.texture-gradient_dark-blue, .texture-gradient_dark-blue__flip:after {
  background-image:url(/images/backgrounds/gradient/dark-blue.gif);
  background-repeat:repeat-x;
  background-position:center bottom;
  background-color:#011e5d;
}

.texture-gradient_dark-red, .texture-gradient_dark-red__flip:after {
  background-image:url(/images/backgrounds/backgrounds/gradient/dark-red.gif);
  background-repeat:repeat-x;
  background-position:center bottom;
  background-color:#aa2c24;
}

.texture-gradient_light-gray-white, .texture-gradient_light-gray-white__flip:after {
  background-image:url(/images/backgrounds/gradient/light-grey-white.gif);
  background-repeat:repeat-x;
  background-position:center bottom;
  background-color:#fff;
}

.texture-gradient_light-white-gray, .texture-gradient_light-white-gray__flip:after {
  background-image:url(/images/backgrounds/gradient/light-white-grey.gif);
  background-repeat:repeat-x;
  background-position:center bottom;
  background-color:#d7dbde;
}

.texture-tile_dark-red, .texture-tile_dark-red__flip:after {
  background-image:url(/images/backgrounds/tile/dkred-red.gif);
}

.texture-tile_gray-green, .texture-tile_gray-green__flip:after {
  background-image:url(/images/backgrounds/tile/grey-green.gif);
}

.texture-tile_gray-light-gray, .texture-tile_gray-light-gray__flip:after {
  background-image:url(/images/backgrounds/tile/grey-ltgrey.gif);
}

.texture-tile_gray-white, .texture-tile_gray-white__flip:after {
  background-image:url(/images/backgrounds/tile/grey-white.gif);
}

.texture-tile_white-light-blue, .texture-tile_white-light-blue__flip:after {
  background-image:url(/images/backgrounds/tile/white-ltblue.gif);
}

.texture-circle_dark-red, .texture-circle_dark-red__flip:after {
  background-image:url(/images/backgrounds/circle/dkred-red.gif);
}

.texture-circle_gray-green, .texture-circle_gray-green__flip:after {
  background-image:url(/images/backgrounds/circle/grey-green.gif);
}

.texture-circle_grey-light-gray, .texture-circle_grey-light-gray__flip:after {
  background-image:url(/images/backgrounds/circle/grey-ltgrey.gif);
}

.texture-circle_grey-white, .texture-circle_grey-white__flip:after {
  background-image:url(/images/backgrounds/circle/grey-white.gif);
}

.texture-circle_white-light-blue, .texture-circle_white-light-blue__flip:after {
  background-image:url(/images/backgrounds/circle/white-ltblue.gif);
}

.texture-cubes-dark-white, .texture-cubes-dark-white__flip:after {
  background-image:url(/images/backgrounds/cubes/dark-cubes-white.jpg);
}

.texture-cubes-dark-white-small, .texture-cubes-dark-white-small__flip:after {
  background-image:url(/images/backgrounds/cubes/dark-cubes-white-small.jpg);
}

.texture-cubes-light-white, .texture-cubes-light-white__flip:after {
  background-image:url(/images/backgrounds/cubes/light-cubes-white.jpg);
}

.texture-cubes-light-white-small, .texture-cubes-light-white-small__flip:after {
  background-image:url(/images/backgrounds/cubes/light-cubes-white-small.jpg);
}

.bkgrd--flip {
  background-image:none;
  position: relative;
  overflow: hidden;
}

.bkgrd--flip:after {
  content:'';
  position:absolute;
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  transform: rotate(180deg);
  background-repeat:repeat;
  width: 100%;
  height: 100%;
  top: 0%;
  left: 0%;
  z-index: -1;
}


/*------------------------------------*\
  #BANNER AREA
\*------------------------------------*/
.banner-hero {
  width:100%;
  max-height:600px;
  object-fit:cover;
}
.about-intro .banner-hero {
  object-position:top;
}
.banner-area h2 {
  text-transform: none;
  font-size: 48px;
  color: #d6001c;
  padding: 4rem 1rem 0 1rem;
  font-weight: 500;
  text-align:center;
}

.banner-area h3 {
  font-size: 2em;
  color: #fff;
  font-weight:200;
  padding: 1.875rem 0;
  text-align: center;
  text-transform: capitalize;
}
.banner-area__arrow {
    width: 0px;
    height: 0px;
    border-left: 25px solid transparent;
    border-right: 25px solid transparent;
    border-top: 25px solid #fff;
    margin-left: auto;
    margin-right: auto;
}
@media (max-width: 768px) {
  .banner-area h2 {
    padding-right: 15px;
    padding-left: 15px;
  }
}



/*------------------------------------*\
  #CHECKERBOARD
\*------------------------------------*/

.ckbrd {
  background-color: #fff;
}
.checkerboard-block {
  display: -webkit-box;   /* OLD - iOS 6-, Safari 3.1-6, BB7 */
  display: -ms-flexbox;  /* TWEENER - IE 10 */
  display: -webkit-flex; /* NEW - Safari 6.1+. iOS 7.1+, BB10 */
  display: flex;/* NEW, Spec - Firefox, Chrome, Opera */
  -webkit-flex-direction: row; /* Safari 6.1+ */
  flex-direction: row;
  margin: auto;
  color: #fff;
  /*border-right: 1px solid #424242;
  border-left: 1px solid #424242;*/
  font-size: 1.25em;
}
  .checkerboard-block:nth-child(1n+0) {
    -webkit-flex-direction: row-reverse; /* Safari 6.1+ */
    flex-direction: row-reverse;
  }
  .checkerboard-block:nth-child(2n+0) {
    -webkit-flex-direction: row-reverse; /* Safari 6.1+ */
    flex-direction: row;
  }
  .checkerboard-block:nth-child(3n+1) {
    background-color: #00205c;
  }
  .checkerboard-block:nth-child(3n+2) {
    background-color: #888;
  }
  .checkerboard-block:nth-child(3n+3) {
    background-color: #d6001c;
  }
.checkerboard-block header {
    -webkit-flex: 1 1 0; /* Safari 6.1+ */
    -ms-flex: 1 1 0; /* IE 10 */
    flex: 1 1 0;
  flex-basis: 50%;
}
.checkerboard-block h2 {
  margin: 0 0 .25em 0;
  font-size: 2.500em;
  letter-spacing: 1px;
  font-weight: 300;
  padding: 15px 25px;

}
.checkerboard-block h3 {
  font-size: 1em;
  font-weight: 300;
  margin: 0 0 1.25em 0;
  padding: 0 25px;
}
.checkerboard-block div {
  -webkit-flex: 1 1 0; /* Safari 6.1+ */
  -ms-flex: 1 1 0; /* IE 10 */
  flex: 1 1 0;
  flex-basis: 50%;
}
.checkerboard-block__img {
  background-size: cover;
  background-position: top;
}
.checkerboard-block img {
  width: 100%;
  height: auto;
}
.checkerboard-block ul {
  list-style-type:none;
  margin:0;
  padding: 0 25px 25px 25px;
}
.checkerboard-block ul li {
  padding: .75em 0 .5em 0;
}
.checkerboard-block:nth-child(3n+1) ul li {
  border-top: 1px solid #5959a0;
}
.checkerboard-block:nth-child(3n+2) ul li {
  border-top: 1px solid #aaa;
}
.checkerboard-block:nth-child(3n+3) ul li {
  border-top: 1px solid #e35353; 
}
.checkerboard-block ul li:after {
  content: "\f101"; /* Font Awesome Unicode */
  font-family: "Font Awesome 5 Pro";
  display: inline-block;
  margin-left: -1.3em; /* same as padding-left set on li */
  width: 1.3em; /* same as padding-left set on li */
  float: right;
  font-weight:700;
}
.checkerboard-block a, .checkerboard-block a:link, .checkerboard-block a:visited {
  color: #fff;
  text-decoration: none;
}
.checkerboard-block a:hover {
  text-decoration: underline;
}

@media (max-width: 1200px){
  .container {
      width: 1200px;
      max-width: 100%;
  }
  .checkerboard-block h2 {
    font-size: 2em;
  }
  .checkerboard-block h3 {
    font-size: .85em;
}
}
@media (max-width: 850px) {
  .checkerboard-block h3 {
    display: none;
  }
    .checkerboard-block h2 {
    font-size: 1.8em;
  }
    .checkerboard-block ul li {
    font-size: 0.8em;
}
}
@media (max-width: 650px) {
  .checkerboard-block__img {
    display: none;
  }

}
/*------------------------------------*\
  #BOOTSTRAP DROPDOWN BUTTONS 
\*------------------------------------*/



/*------------------------------------------------------------*\
  *  End ##COMPONENTS
\*------------------------------------------------------------*/


/*------------------------------------------------------------*\
  *  Start ##PAGE SPECIFIC STYLING
\*------------------------------------------------------------*/

/*------------------------------------*\
  #HOME-PAGE 
\*------------------------------------*/

/*------------------------------------*\
  #STREAM-BAR
\*------------------------------------*/
/*STREAM BAR YELLOW VERSION*/
#stream-link.yellow {
  background-color: #ffeb3b;
  text-align: center;
  padding: 10px;
}  
.streamcopy.yellow p {margin-bottom: 0px;}
.streamcopy.yellow a {
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 300;
  color: #000 !important;
  font-size: 26px;
  margin-bottom: 0px;
}
/*STREAM BAR BLUE VERSION*/  
#stream-link {
  background-color: #00205b;
  text-align: center;
  padding: 10px;
}  
.streamcopy {
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 300;
  color: #fff;
  font-size: 20px;
}
.streamcopy p {margin-bottom: 0px;}
.streamcopy a {
  margin-bottom: 0px;
  color:#fff;
  text-decoration:underline
}  
/*STREAM BAR GRAY VERSION*/  
#stream-link.gray-bar {
  background-color: #B6B6B6;
  text-align: center;
  padding: 10px;
}  
.gray-bar .streamcopy p {margin-bottom: 0px;}
.gray-bar .streamcopy a {
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 300;
  color: #444;
  font-size: 26px;
  margin-bottom: 0px;text-decoration: underline;
}
/*------------------------------------*\
  #HOME-HERO: Every Day Matters
\*------------------------------------*/
#every-day-matters {
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
}    

#every-day-matters .container {
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  max-width: 100%;
  height: 660px;
}

#every-day-matters .banner01 {
  background-image: url("/images/magazine/sustaining-future-background.jpg"); 
  background-position: center right;
  background-color: #000;
  color: #fff !important;
}

#every-day-matters .copy {
  width: 1200px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 7em;
}  

#every-day-matters h2 {
  font-family: "Source Sans Pro", sans-serif;
  font-size: 45px;
  font-weight: 300;
  color: #fff;
  width: 80%;
  margin: 1em 0 0 0;
}

#every-day-matters p.arrow {
  font-family: "Source Sans Pro", sans-serif;
  font-size: 36px;
  color: #fff;
  padding-left: 1em;
  width: 50%;
  margin-bottom: 1.2em;
  margin-top: 1em;
  background-image: url(/images/home/arrow.png);
  background-position: 0 10px;
  background-repeat: no-repeat;
  width:90% !important;
}  

#every-day-matters p.button {margin-bottom: 20px;}

#every-day-matters p.button a {
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 400;
  font-size: 22px;
  color: #fff;
  text-transform: uppercase;
  padding: 20px 40px;
  background-color: #b30417;
  border: solid 1px #fff;
  letter-spacing: 2px;
}

#every-day-matters p.button a:hover {
  background-color: #950213;
  text-decoration: none;
}

@media only screen and (max-width: 1400px) {
  #every-day-matters.comm-2020 .comm-logo {
    width:40%;
  }
}

@media only screen and (max-width: 1220px) {
 
  #every-day-matters .copy {
    width: 95%;
    margin-left: 5em;
    margin-right: auto;
  }  

  #every-day-matters.comm-2020 .banner01 {
    background-position: left;
  } 

  #every-day-matters.comm-2020 .comm-logo {
    width:60%;
  }

}

@media only screen and (max-width: 800px) {
  #every-day-matters .container {height: auto;}
 
  #every-day-matters .copy {
    margin-top: 3em;
    margin-bottom: 4em;
  }
}

 @media only screen and (max-width: 675px) {
  #every-day-matters p.arrow {display: none;}    
  #every-day-matters p.button {margin-top: 50px;}  
  #every-day-matters p.button a {
    font-size: 18px;
    padding: 15px 30px;
  }  
  #every-day-matters .copy {margin-top: 6em;} 

  #every-day-matters img {width: 95%;}    
  #every-day-matters h2 {font-size: 30px;}
}

/*------------------------------------*\
  #HOME-HERO: Podcast
\*------------------------------------*/

#podcast {
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
}   

#podcast .container {
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  max-width:100%;
  height: 660px;
}

#podcast .banner01 {
  background-image: url("/images/home/globe-podcast-background.jpg"); 
  background-position: center right;
  background-color: #000;
  color: #fff !important;
}

#podcast img {
  max-width:100%;
}

#podcast .copy {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 7em;
}  

#podcast p.arrow {
  font-family: "Source Sans Pro", sans-serif;
  font-size: 36px;
  color: #fff;
  padding-left: 1em;
  width: 70%;
  margin-bottom: 1.2em;
  margin-top: 1em;
  background-image: url(/images/home/arrow.png);
  background-position: 0 10px;
  background-repeat: no-repeat;
}  

#podcast p.pod-button {margin-bottom: 60px;}

#podcast p.pod-button a {
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 400;
  font-size: 22px;
  color: #D6001C;
  text-transform: uppercase;
  padding: 20px 40px;
  background-color: #fff;
  border: solid 6px #17cedd;
  letter-spacing: 2px;
}
  
#podcast p.pod-button a:hover {
  background-color: #D6001C;
  text-decoration: none;
  color: #fff;
}

@media (max-width:991px) {
  #podcast p.arrow {
    width:100%;
  }
}

@media (max-width:776px) {
  #podcast p.arrow {
    font-size:28px;
  }

  #podcast p.pod-button a {
    padding: 15px 30px;
  }

  #podcast .container {
    height:500px;
  }
}

@media (max-width:600px) {
  #podcast p.arrow {
    font-size:24px;
  }

  #podcast p.pod-button a {
    padding: 10px 20px;
  }
}


/*------------------------------------*\
  #HOME-ABOUT (Explore Rensselaer)
\*------------------------------------*/
.home-about {
  padding: 3em 0;
}

.home-about blockquote {
  font-family:'Source Sans Pro';
  font-weight: 300;
  color:#000;
  font-size:1.6em;
  line-height:1.8em;
  padding: 1.85em 3.5em 2em;
}

.home-about blockquote span {
  display:block;
}

.home-about .slash-box {
  width:26%;
  display:flex;
  flex:inherit;
  flex-direction: column;
}

.home-about .slash-box:nth-child(2) {
  width:32%;
}

.home-about .slash-box > div:not(.slashes__summary) {
  flex-grow:1;
}

.home-about .slashes__fact {
  font-size: 72px;
  margin: 0;
  line-height: 1em;
  font-weight:300;
}
.home-about .slashes__title {
    font-weight: 700;
    font-size:18px;
}
.home-about .slashes__summary {
  margin-top:1em;
  margin-bottom:auto;
  font-size:18px;
  font-weight:400;
}

@media (max-width: 992px) {
  .home-about blockquote {
    padding: 1.85em 0 2em 0;
  }
}

@media (max-width: 768px) {
  .home-about .container {
    width: auto;
  }
  .home-about blockquote span {
    display:inline;
  }
  .home-about .slash-area {
    flex-flow:column;
  }
  .home-about .slash-box,
  .home-about .slash-box:nth-child(2) {
    width:auto;
    margin:0 0 1em;
    padding:1em 0;
  }
  .home-about .slash-box img {
    width:auto;
  }
  .home-about .slash-box:not(:last-child) {
    border-bottom:1px solid #f2f2f2;
  }
}

@media (max-width: 600px){
  .home-about blockquote {
    font-size:1.4em;
  }
  
}

/*------------------------------------*\
  #HOME-RESEARCH
\*------------------------------------*/

/*.home-research {
  background: rgba(0, 0, 0, 0) url("/images/home-research/research-bkgrd-empac.jpg") no-repeat scroll center center / cover    ;
  font-size: 18px;
  padding: 3em 0;
  background-color: #000000;
}
.home-research header {
  text-align: center;
  color: #fff;
}
.home-research h2 {
  margin-bottom: 0.611em;
  font-size: 2.667em;
  font-weight: 300;
  letter-spacing: 1px;
  color: #fff;
}
.home-research blockquote {
    padding-left: 6em;
    padding-right: 6em;
}*/

/* Image Navigation overrides for Homepage Research Section */

.home-research .img-nav--home-research__link {
  /* margin-left: -4%; use margin to override space between images [removed to accomodate IE */
  -webkit-clip-path: polygon(25% 0, 100% 0, 75% 100%, 0 100%);
  clip-path: polygon(25% 0, 100% 0, 75% 100%, 0 100%);
  overflow: hidden;
}
    .home-research .img-nav--home-research__link:nth-child(1) {
    /* removes margin override for first image */
    margin-left: 0;
    }
.home-research .img-nav--home-research__link a {
  font-size: 0.889em;
  color: #fff;
  text-decoration: none;
  text-transform: uppercase;
  }
.home-research .img-nav--home-research__link a:hover {
    transition: all 0.1s linear;
  opacity: .3;
}
.home-research .img-nav--home-research__overlay::after {
  /* overlay for text background */
  position: absolute;
  display: block;
  width: 100%;
  height: 180px;
  margin-top: -100px;
  background: rgba(0, 0, 0, 0.7) none repeat scroll 0 0;
  content: '';
}
.home-research .img-nav--home-research__title {
  position: absolute;
  bottom: 1em;
  width: 60%;
  margin: 0 0 0 15%;
}

/* Research Unordered List with Slash */

.home-research ul.slash {
  font-weight: 700;
  font-size: 1.222em;
  }
@media (max-width: 1200px) {
  .home-research .container {
    width: auto;
  }
.home-research blockquote {
padding-left: 3em;
padding-right: 3em;
}
  .home-research ul.slash {
    font-size: 1em;
  }
  .home-research .img-nav--home-research__link a {
    font-size: .75em;
  }
}
@media (max-width: 840px) {
  .home-research {
    font-size: 16px;
  }
}
@media screen and (max-width: 750px) {
  .home-research {
    font-size: 18px;
  }
  .home-research ul.list-inline {
    display: none;
  }
  .home-research blockquote {
    display: none;
  }
  .home-research .img-nav--home-research {
    -webkit-flex-direction: column; /* Safari 6.1+ */
    flex-direction: column;
  }
  .home-research .img-nav--home-research__link {
    -webkit-clip-path: none;
    clip-path: none;
    margin-left: 0;
  }
  .home-research .img-nav--home-research__link img {
    display: none;
  }
  .home-research .img-nav--home-research__overlay::after {
    margin: 0;
    position: relative;
    height: 100px;
    display: none;
  }
  .home-research .img-nav--home-research__title {
    width: 100%;
    margin: .5em 0;
    position: relative;
    line-height: 3.444em;
    text-align: center;
    background: #000;
    border: 1px solid #424242;
}
}
/*------------------------------------*\
  #end RESEARCH
\*------------------------------------*/

/*------------------------------------*\
  #HOME-ACADEMICS (DeShaun's Section)
\*------------------------------------*/

.home-academics {
  padding: 4rem 0;
  background-color: #E6F0F1;
}
.home-academics h2 {
  color: #00205b;
  font-size: 2em;
  text-align: center;
  margin-bottom: 1em;
  line-height:1.6em;
}
.home-academics h2 span {
  display:block;
}
.home-academics .academiclist {
  margin: 0 auto;
  width: 35%;
}
.home-academics .btn {
  background-color: #fff;
  color: #00205b;
  width: 100%;
  border: 3px solid #00205b;
  text-align:left;
  font-weight:400;
}
.home-academics .dropdown-menu {
  border-radius: 0;
}
.home-academics .dropdown-toggle::after {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  padding: 0 0.5em;
  content: '\f0d7';
  font-family: 'Font Awesome 5 Pro';
  border: 0;
  font-size: 38px;
  color: #fff;
  background-color: #011E5D;
  font-weight:800;
}
@media (max-width: 990px) {
    .home-academics .academiclist {
    width: 70%;
  }
}
@media (max-width:776px) {
  .home-academics h3 span {
    display:inline;
  }
}
@media (max-width: 500px) {
  .home-academics .academiclist {
  width: 100%;
}
  .home-academics .dropdown-toggle::after {
      margin-left: 25%;
  }
}

/*------------------------------------*\
  #HOME-NEWS
\*------------------------------------*/

.home-news {
  font-size: 18px;
  padding: 4em 0 4em 0;
}
.home-news .container:nth-child(1n+2) {
  /* add padding above wrapper when more than one news block */
  padding: 3em 0 0 0;
}
.home-news header {
  text-align: center;
  color: #990000;
}
.home-news h2 {
  margin-bottom: 0.611em;
  font-size: 2.667em;
  font-weight: 300;
  letter-spacing: 1px;
  text-transform: none;
}
.img-nav--homepage-news {
  background-color:#f9f9f9;
  padding:1em;
}

.img-nav--homepage-news > div {
  margin-right:1em;
  flex: 1 1 0;
}

.img-nav--homepage-news > div:last-child {
  margin-right:0;
}

.img-nav--homepage-news__title {
  display:none;
}

.img-nav--homepage-news__short-title {
  color: #000;
  font-weight: 400;
  margin-top: 0.5em;
  line-height: 1.2em;
  font-size: 18px
}


@media (max-width: 1195px) {
  .home-news .container {
    width: auto;
  }
}
@media (max-width: 995px) {
  .news-block {
    font-size: 16px;
  }
}
@media (max-width: 866px) and (min-width: 675px) {
   .img-nav--homepage-news__short-title {
    line-height: normal;
    font-size: .9em;
  }
  .img-nav--homepage-news__title{
    font-size: .75em;
    padding-top: 5px;
    padding-bottom: 5px;
  }
}
@media (max-width: 675px) {
  .img-nav--homepage-news {
    -webkit-flex-direction: column; /* Safari 6.1+ */
    flex-direction: column;
  }
  .img-nav--homepage-news__link {
    margin: 0 75px;
    margin-bottom: 25px;
  }
}
@media (max-width: 425px) {
  .img-nav--homepage-news__link {
    margin: 0 10px;
    margin-bottom: 15px;
  }
}

/*------------------------------------*\
  # end HOME-NEWS
\*------------------------------------*/

/*------------------------------------*\
 Start HOME-EVENTS
\*------------------------------------*/

/* use .homepage-events__override for custom formating for events */
.home-events {
  align-items: center;
  padding: 1.5em 0 4em;
  border-top: 1px solid #f4f4f4;
}
.home-events h2 {
  margin-bottom: 0.25em;
  font-size: 2.667em;
  font-weight: 300;
  letter-spacing: 1px;
  text-transform: none;
}
.home-events header {
  color: #990000;
  text-align: center;
  border-bottom: 1px solid #990000;
  padding-bottom: 1em;
  margin-bottom: 1.5em;
}
.home-events ul.list-inline {
  text-transform: uppercase;
  color: #333;
  font-size: 1em;
}
.home-events ul.list-inline li a {
  text-decoration: none;
  color: #000;
}
.home-events ul.list-inline li a:hover {
  text-decoration: underline;
}
@media (max-width: 425px) {
  .home-events ul.list-inline.noslash li:nth-child(1)::before {
  content: none;
}
  .home-events h2 {
    font-size: 2em;
  }
}

.home-events--calendar {
  font-family: Georgia, serif;
  display: -webkit-box;   /* OLD - iOS 6-, Safari 3.1-6, BB7 */
  display: -ms-flexbox;  /* TWEENER - IE 10 */
  display: -webkit-flex; /* NEW - Safari 6.1+. iOS 7.1+, BB10 */
  display: flex;/* NEW, Spec - Firefox, Chrome, Opera */
  -webkit-flex-direction: row; /* Safari 6.1+ */
  flex-direction: row;
}
.home-events--calendar h3 {
  font-size: 1em;
  padding-left: 1em;
  padding-right: 3em;
  color: #424242;
}
a.home-events--calendar__event, a:link.home-events--calendar__event {
  color:#424242;
  text-decoration: none;
  display: -webkit-box;   /* OLD - iOS 6-, Safari 3.1-6, BB7 */
  display: -ms-flexbox;  /* TWEENER - IE 10 */
  display: -webkit-flex; /* NEW - Safari 6.1+. iOS 7.1+, BB10 */
  display: flex;         /* NEW, Spec - Firefox, Chrome, Opera */
  flex-direction: row;
  -webkit-flex-direction: row; /* Safari 6.1+ */
  align-items: center;
}
a:hover.home-events--calendar__event {
  text-decoration: underline;
}
.home-events--calendar__event .time {
display: -webkit-box;   /* OLD - iOS 6-, Safari 3.1-6, BB7 */
display: -ms-flexbox;  /* TWEENER - IE 10 */
display: -webkit-flex; /* NEW - Safari 6.1+. iOS 7.1+, BB10 */
display: flex;         /* NEW, Spec - Firefox, Chrome, Opera */
    -webkit-flex-direction: column; /* Safari 6.1+ */
  flex-direction: column;
  border-right: 1px solid #ccc;
  padding-right: 1em;
  line-height: 1.5em;
  text-align: center;
}
.home-events--calendar__event .month {
  text-transform: uppercase;
  font-size: 0.938em;
}
.home-events--calendar__event .day {
  font-size: 2.250em
}
@media (max-width: 1195px) {
  .home-events .container {
    width: auto;
  }
}
@media (max-width: 840px) {
  a.home-events--calendar__event, a:link.home-events--calendar__event {
        -webkit-flex-direction: column; /* Safari 6.1+ */
    flex-direction: column;

  }
  .home-events--calendar__event .time {
    border-right: none;
    border-bottom: 1px solid #ccc;
    padding-right: 0;
    padding-bottom: 1em;
    text-align: center;
    margin-bottom: 1em;
}
  .home-events--calendar__event h3 {
    font-size: 1em;
    padding-left: 1em;
    padding-right: 1em;
    text-align: center;
}
  .home-events--calendar {
        -webkit-justify-content: space-around;
    justify-content: space-around;

  }
}
@media (max-width: 500px) {
  .home-events--calendar {
  -webkit-flex-direction: column; /* Safari 6.1+ */
  flex-direction: column;
  }
  a.home-events--calendar__event {
    margin-bottom: 1em;
  }
}

/*------------------------------------*\
  #End HOME-EVENTS
\*------------------------------------*/

/*------------------------------------*\
  #Start HOME-SOCIAL
\*------------------------------------*/
.home-social {
  background-color:#777676;
  color:#fff;
  padding:2em;
}
.home-social header {
  margin-bottom:2.5em;
}
.home-social .home-social--icons {
  padding:3em 0;
  border-right:1px solid #fff;
}
.home-social .home-social--icons ul {
  list-style:none;
  padding-left:0;
}
.home-social .home-social--icons ul li {
  display:inline-block;
  margin-right:2em;
}
.home-social .home-social--icons ul li a {
  text-decoration:none;
}
.home-social .home-social--events {
  padding:3em 0 3em 6em;
}
.home-social .home-social--events ul {
  list-style:none;
  padding-left:0;
}
.home-social .home-social--events ul li {
  margin:1em 0;
}
.home-social .home-social--events ul li a {
  font-size:1.5em;
  color:#fff;
}
.home-social .home-social--events ul li a i {
  margin-right:0.5em;
  vertical-align:middle;
  font-size:1.75em;
}
@media (max-width:991px) {
  .home-social .home-social--icons ul li {
    display:inline-block;
    margin-right:0.5em;
  }
}
@media (max-width:776px) {
  .home-social {
    text-align:center;
  }
  .home-social .home-social--icons {
    padding:1em 0 2em;
    border-right:0;
    border-bottom:1px solid #fff;
  }
  .home-social .home-social--events {
    padding:2em 0 1em;
  }
}
/*------------------------------------*\
  #End HOME-SOCIAL
\*------------------------------------*/

/*------------------------------------*\
  #Start CAMPAIGN CTA
\*------------------------------------*/

.campaignCTA-block {
  background: rgba(0, 0, 0, 0) url("/images/campaignCTA-bkgrd.jpg") no-repeat scroll center center / cover  ;
  font-size: 18px;
  border-bottom: 5px solid #fff;
}
.campaignCTA-block__wrapper {
  /* create a container for the campaignCTA content
  larger than the normal .container */
  max-width: 1200px;
  margin: 0 auto;
  padding: 3em 1em;
}
.campaignCTA-block header {
  color: #fff;
}
.campaignCTA-block h2 {
  margin: .85em 0;
  font-size: 2.25em;
  font-weight: 300;
  letter-spacing: 1px;
  line-height: 1.35em;
  color: #fff;
}
.campaignCTA-block .tagline--whynot {
  font-weight: 700;
}
@media (max-width: 801px) {
  .campaignCTA-block h2 {
    font-size: 2em;
}
}
@media (max-width: 425px) {
  .campaignCTA-block h2 {
    line-height: 1.25em;
  }
}

/*------------------------------------*\
  # End CAMPAIGN CTA
\*------------------------------------*\


/*------------------------------------*\
  #ABOUT PAGE
\*------------------------------------*/

/*------------------------------------*\
  #ABOUT-INTRO 
\*------------------------------------*/

/*------------------------------------*\
  #ABOUT-RESEARCH 
\*------------------------------------*/

.about-research-quickfacts,
.about-quickfacts-2 {
  padding: 0;
}
.about-quickfacts-2 {
  background-color:#00205c;
}

.about-research-quickfacts a,
.about-research-quickfacts a:hover,
.about-research-quickfacts a:active {
  text-decoration:none;
  color:#fff;
}

.about-research button {
  margin-bottom: 2em;
}
.about-research-quickfacts .slash-box,
.about-quickfacts-2 .slash-box {
  border-right:2px solid #fff;
  padding: 2em 3em;
}
.about-research-quickfacts .slash-box:last-child,
.about-quickfacts-2 .slash-box:last-child {
  border-right:0;
}
.about-research-quickfacts .slashes__summary,
.about-quickfacts-2 .slashes__sumary {
  max-width:60%;
  margin:1rem auto;
}
@media (max-width:1600px) {
  .about-research-quickfacts .slashes__summary,
  .about-quickfacts-2 .slashes__summary {
    max-width:80%;
  }
}
@media (max-width:1400px) {
  .about-research-quickfacts .slashes__summary,
  .about-quickfacts-2 .slashes__summary {
    max-width:100%;
  }
}
@media (max-width:991px) {
  .about-research-quickfacts .slash-area,
  .about-quickfacts-2 .slash-area {
    display:block;
  }
  .about-research-quickfacts .slash-box,
  .about-quickfacts-2 .slash-box { 
    padding:1em;
    border-right:0;
    border-bottom:2px solid #fff;
  }
}




/*------------------------------------*\
  #ABOUT-CHECKERBOARD
\*------------------------------------*/

#About-Checkerboard .checkerboard-block:nth-child(1n+0) {
  -webkit-flex-direction: row; /* Safari 6.1+ */
  flex-direction: row;
}
#About-Checkerboard .checkerboard-block:nth-child(2n+0) {
    -webkit-flex-direction: row-reverse; /* Safari 6.1+ */
flex-direction: row-reverse;
}

#About-Checkerboard .checkerboard-block:nth-child(2n+2) {
background-color: #767676;
}
#About-Checkerboard .checkerboard-block ul li {
  padding: 0 0 0.25em 1em;
  border-top:0;
}
#About-Checkerboard .checkerboard-block ul li:after {
  content:'';
}
#About-Checkerboard .checkerboard-block a, 
#About-Checkerboard .checkerboard-block a:link, 
#About-Checkerboard .checkerboard-block a:visited {
  text-decoration:underline;
  text-underline-position:under;
}
@media (max-width: 650px) {
  #About-Checkerboard .checkerboard-block:nth-child(2n+0) {
      -webkit-flex-direction: column; /* Safari 6.1+ */
    flex-direction: column;
  }
    #About-Checkerboard .checkerboard-block:nth-child(1n+0) {
        -webkit-flex-direction: column; /* Safari 6.1+ */
flex-direction: column;
}
}
@media (max-width: 1200px) {
.about-container {
    padding:0;
}
}
/*------------------------------------*\
  # Start ABOUT-ATHLETICS
\*------------------------------------*/

.about-athletics {
    position: relative;
}
.about-athletics button.btn {
  height: 60px;
}
@media (max-width: 450px) {
  .about-athletics {
    display: none;
  }
}


/*------------------------------------*\
  #STUDENT EXPERIENCE 
\*------------------------------------*/

.se-cta-footer {
    background-color: #100f21;
    padding: 60px 0;
}

.student-footer .student-footer--nav {
  position:relative;
}

.student-footer img {
  max-height:400px;
  width:100%;
  object-fit:cover;
  object-position:top;
}

.student-footer .student-footer__title {
  position: absolute;
  bottom: 0;
  min-height: 45%;
  max-height:100%;
  padding: 2em;
  text-align: center;
  color: #fff;
  width: 100%;
  background-color: rgba(0, 32, 92, 0.65);
  transition: 0.3s all;
}

.student-footer a:hover .student-footer__title {
  background-color: rgba(0, 32, 92, 1);
  transition: 0.3s all;
}

.student-footer .student-footer__title h3 {
  color: #fff;
  font-size: 2.5em;
  text-align: center;
  padding: 0;
  font-weight: 600;
}

.student-footer .student-footer__title h3 span {
  display: block;
  font-size: 0.65em;
  text-transform: none;
  font-weight: 300;
  max-width: 50%;
  margin: 0.5em auto 0;
}

@media(max-width:1400px) {
  .student-footer .student-footer__title h3 span {
    max-width:75%;
  }
}

@media (max-width: 1200px) {
.se-container {
    padding:0;
}
#SE-STUDENTLIFE-CTA button {
    margin-top:60px;
	}
}
@media(max-width:991px) {
  .student-footer .student-footer__title h3 {
    font-size:2em;
  }
  .student-footer .student-footer__title h3 span {
    max-width:100%;
  }
}
@media(max-width:991px) {
  .student-footer .student-footer__title {
    padding:1em;
  }
  .student-footer .student-footer__title h3 {
    font-size:1.5em;
  }
  .student-footer .student-footer__title h3 span {
    font-size:0.9em;
  }
}
@media (max-width:776px) {
  .student-footer .student-footer__title {
    min-height:100%;
  }
  .student-footer img {
    min-height:200px;
  }
  .student-footer .student-footer__title h3 span {
    font-size:0.8em;
  }
}
@media (max-width: 600px) {
  .se-pos-statement, .se-arrow, .se-second-statement {
      display: none;
  }
}
/*------------------------------------*\
  #ADMISSIONS
\*------------------------------------*/
.bkgrd--admissions {
  background: url("/images/admissions/top-image-2.jpg") no-repeat;
  background-size: cover;
  background-color: #000000;
}
.admissions-fa {
  padding: 4em 0;
}
.admissions-visit {
  position: relative;
}
.admissions-visit button.btn {
  height: 60px;
  width: -moz-max-content;
}
.admissions-visit-cta {
  font-size: 1.5em;
  padding: 1.5em 0;
}
.blockquote__admissions {
  padding: 1.5em 3.5em 1em 3.5em;
  max-width: 65%;
  line-height:3.8rem;
}

.admissions-header { /* HEADER LINKS TO OTHER PAGES */
  padding: 0 0 4em 0;
}
.admissions-header .container {
  display: -webkit-box;   /* OLD - iOS 6-, Safari 3.1-6, BB7 */
display: -ms-flexbox;  /* TWEENER - IE 10 */
display: -webkit-flex; /* NEW - Safari 6.1+. iOS 7.1+, BB10 */
display: flex;         /* NEW, Spec - Firefox, Chrome, Opera */
      -webkit-flex-flow: row nowrap; /* Safari 6.1+ */
  flex-flow: row nowrap;
  -webkit-justify-content: space-around;
  justify-content: space-around;
  gap:1.75em;
}
@media (max-width:1200px) {
  .admissions-header .container {
    flex-flow:wrap;
  }
  .blockquote__admissions {
    max-width:100%;
  }
}
.admissions-header .container a:hover {
  transition: all 0.1s linear;
  opacity: .9;
}
.admissions-header .container a:hover h3 {
  background-color: #0e122b;
  transition: all 0.1s linear;
}
.admissions-header--nav {
  -webkit-flex: 1 1 0; /* Safari 6.1+ */
  -ms-flex: 1 1 0; /* IE 10 */
  flex: 1 1 0;
    position: relative;
  background-color: #000000;
}

.admissions-header--nav img {
  height: auto;
  width: 100%
}
.admissions-header--nav h3 {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  height: 2em;
  color: #fff;
  font-size: 1.5em;
  text-align: center;
  text-transform: uppercase;
  padding: 0;
  line-height: 2em;
  background-color: rgba(14, 18, 43, 0.65);
}
.admissions-footer { /* FOOTER LINKS TO OTHER PAGES */
  background-color: #00205c;
  padding: 2em 0;
}

.admissions-footer .container a:hover {
  transition: all 0.1s linear;
  opacity: 1;
}
.admissions-footer__title {
  position: absolute;
  top: -20%;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  height: 1em;

}
.admissions-footer--nav {
  -webkit-flex: 1 1 0; /* Safari 6.1+ */
  -ms-flex: 1 1 0; /* IE 10 */
  flex: 1 1 0;
    position: relative;
  background-color: rgba(0,0,0,.8)
}

.admissions-footer--nav img {
  opacity: 1;
  height: auto;
  width: 100%
}
.admissions-footer--nav h3 {
  color: #fff;
  font-size: 1.5em;
  text-align: center;
  text-transform: uppercase;
  padding: 1em 0;
  font-weight:700;
}
.admissions-footer__sub {
  display: block;
  font-size: 0.8em;
  text-transform: none;
  padding-top: 0.25em;
  font-weight:500;
}
.admissions-footer .container a .admissions-footer--nav h3 {
  background-color: rgba(0, 32, 92, 0.65);
  transition:0.3s all;
}
.admissions-footer .container a:hover .admissions-footer--nav h3 {
  background-color: rgba(0, 32, 92, 1);
  transition:0.3s all;
}
@media (max-width: 768px){
  .admissions-footer .container, .admissions-intro .container {
    width: auto;
  }
  .blockquote__admissions {
  padding: 1em 0;
  max-width: 100%;
    font-size: 1.5em;
}
  .admissions-visit-cta {
    font-size: 1em;
  }
  .admissions-footer--nav p {
    display: none;
}
}
@media (max-width: 675px) {
  .admissions-header h3 {
    font-size: 1em;
    line-height: normal;
    height: 3em;
  }
  .admissions-fa .slash-area {
    display: none;
  }

}




/*------------------------------------*\
  #ADMISSIONS-DIVERSITY
\*------------------------------------*/

.admissions-diversity {
  padding-bottom: 3em; 
}
.admissions-diversity ul.list-inline {
  text-transform: uppercase;
}

@media (max-width: 705px) {
  .admissions-diversity ul.list-inline {
        -webkit-justify-content: column;
  flex-direction: column;
}
  .admissions-diversity ul.slash li::after {
    content: "";
    padding: 0;
}
}


/*------------------------------------*\
  #ADMISSIONS-ROTC
\*------------------------------------*/
.admissions-rotc {
    background: url("/images/admissions/Admissions-home-ROTC-bkgrd.jpg") no-repeat;
  background-size: cover;
}
.admissions-rotc button {
  margin: 3em 0;
}




/*------------------------------------*\
  #ACADEMICS
\*------------------------------------*/

.academics-fiveschools {
  background-image:url(/images/academics/schools-bg.jpg);
	padding:8em 3em;
}
.academics-fiveschools .schools-box {
  background-color: rgba(218,232,234, 0.85);
  margin:0 1em;
  flex: 1 1;
  display:flex;
  align-items:center;
  text-align:center;
  text-decoration:none;
  height:250px;
  transition:0.3s all;
}
.academics-fiveschools .schools-box:hover {
  background-color: rgba(218,232,234, 1);
  transition:0.3s all;
}
.academics-fiveschools .schools-box .schools-title {
  font-size:1.5em;
  color:#00205c;
  font-weight:600;
  text-transform:uppercase;
  flex: 1 1;
  margin:0 0.5em;
}
@media (max-width:1400px) {
  .academics-fiveschools {
    padding:6em 3em;
  }
  .academics-fiveschools .schools-box {
    height:200px;
  }
  .academics-fiveschools .schools-box .schools-title {
    font-size:1.5em;
  }
}
@media (max-width:1200px) {
  .academics-fiveschools {
    padding:5em 2em;
  }
  .academics-fiveschools .schools-box .schools-title {
    font-size:1.25em;
  }
}
@media (max-width:991px) {
  .academics-fiveschools .schools-box {
    height: auto;
    padding: 1.5em;
    margin: 1.5em 0;
  }
  .academics-fiveschools .schools-box .schools-title {
    font-size:1.5em;
  }
}
.academics-fiveschools-intro {
  padding:1em 0;
  color:#fff;
  background-color:#d6001c;
  font-size:2em;
  font-weight:200;
  text-align:center;
  text-transform:capitalize;
}
@media(max-width:991px) {
  .academics-fiveschools-intro {
    font-size:1.5em;
  }
}
.academics-programs {
  background-color:#f9f9f9;
  padding: 3em 0;
  font-weight: 400;
  color: #000000;
}
.academics-programs a {
    color: #000000;
}
.academics-container {
  max-width: 1300px;
  margin: auto;
}
.academics-schools {
  -webkit-column-count: 1; /* Chrome, Safari, Opera */
  -moz-column-count: 1; /* Firefox */
  column-count: 1;
  -webkit-column-gap: 4em; /* Chrome, Safari, Opera */
  -moz-column-gap: 4em; /* Firefox */
  column-gap: 4em;
}
.academics-other {
  -webkit-column-count: 1; /* Chrome, Safari, Opera */
  -moz-column-count: 1; /* Firefox */
  column-count: 1;
  -webkit-column-gap: 4em; /* Chrome, Safari, Opera */
  -moz-column-gap: 4em; /* Firefox */
  column-gap: 4em;
}
.academics-schools section#Eng table, .academics-other section#Minors table {
    overflow: hidden;
    break-inside: avoid-column;
    -webkit-column-break-inside: avoid;
}
.academics-cta {
  padding-bottom: 3em;
}
@media (max-width: 992px) {
  .academics-other, .academics-schools {
  column-count: 1;
  column-gap: 0;
}
} 

/* Academic Programs - TABLES */
/*---------Tables Start--------*/

.col-md-5 {background-color:#fff;}
.col-md-1 {background-color: transparent; width: 30px;}
.col-right {float:right;}

.admin {
    width: 100%;
    border-collapse: collapse;
    border: 0;
    font-size: 16px;
    background-color: #fff;
}

.admin td a:hover {
    color: #000;
    text-decoration: underline;
}

.admin th a:hover {
    text-decoration: underline;
}

  
.admin th.header {
    background-color: #d6001c;
    color: #fff;
    text-transform: uppercase;
    font-size: 18px;
    font-weight: 400;
    padding-top: 15px;
    padding-left: 15px;
}
.admin th.header a {
  color: #ffffff;
}
.admin th.minors {
    background-color: #424242;
    color: #fff;
    text-transform: uppercase;
    font-size: 18px;
    font-weight: 400;
    padding-top: 15px;
    padding-left: 15px;
}
.admin th.profdev {
    background-color: #333366;
    color: #fff;
    text-transform: uppercase;
    font-size: 18px;
    font-weight: 400;
    padding-top: 15px;
    padding-left: 15px;
}
  
  
 thead th:nth-child(1) {
  width: 60%;
}

thead th:nth-child(2) {
  width: 40%;
}
  
th, td {
  padding: 5px 10px;
  text-align:left
}

tbody tr:nth-child(odd) {
  background-color: #e7e7e7;
}

tbody tr:nth-child(even) {
  background-color: #ffffff;
}

.major {padding-top: 15px;}
.degree {padding-top: 15px;}
th.degree {
  border-left: 1px solid #e7e7e7;
}

a.minilink {
  text-transform: none;
  font-size: 14px;
  font-weight: 300;
  float: right;
  color: #ffffff;
}

/*------------------------------------*\
  #PRESIDENTIAL VIDEOS SECTION
\*------------------------------------*/

.home-video {
  text-align: center;
  padding-top: 4em;
}
.home-video h2 {
  margin-bottom: .5em;
  font-weight:300;
}
.home-video h3 {
  font-size: 1.4em;
  font-weight:300;
  color: #595959;
  padding-bottom: 2em;
  text-align: center;
}
.home-video__links {
  width:75%;
  margin: 0 auto;
  text-align: left;
  list-style: none;
  font-size:24px;
  line-height:3.5em;
  font-weight:400;
  color:#54585A;
}
.home-video__links a {
  color:#54585A;
}
.home-video__links i {
  color:#54585A;
  margin-right:0.5em;
}

@media (max-width:991px) {
  .home-video__links {
    width:45%;
    font-size:26px;
  }
}

@media (max-width:776px) {
  .home-video__links {
    width:65%;
  }
}

@media (max-width:600px) {
  .home-video__links {
    width:100%;
  }
}

/*------------------------------------*\
  #background textures from Pattern Lab
\*------------------------------------*/

.texture-gradient_light-white-gray {
  background-image: url(/images/textures/light-white-grey.gif);
  background-repeat: repeat-x;  
  background-position: center bottom;
  background-color: #d7dbde;
}
