/* STYLE.CSS */

main {
    color: #333333;
    background: #f2f2f2;
  	font-family: 'p22-underground', sans-serif;
	  letter-spacing: 0.8px;
    line-height: 1.2;
    font-size: 1.12rem;
    margin: 0 !important;
}
h1, h2, h3, h4, h5, h6 {
	font-weight: 200;
	font-family: 'p22-underground-sc', sans-serif;
}
ul {
	margin: 0;
	padding: 0;
	list-style: none;
}
h2 {
  font-size: 2.25rem;
  display: block;
  text-align: center;
  width: 100%;
  margin-bottom: 1rem;
  font-weight: 600;
  border-bottom: 1px solid #ffc514;
}
a {
	-webkit-transition: all 0.3s;
  	-moz-transition: all 0.3s;
  	transition: all 0.3s;
}
a:hover, a:focus, a:active, a:visited {
    text-decoration: none;
}

/* Buttons override */
a.btn, a.btn:link, a.btn:visited {
  color: #f2f2f2;
  background: #0a2240;
  text-align: center;
  margin: auto;
    border: 2px solid #577293;
    text-decoration: none;
    border-radius: 4px;
    padding: 10px;
    transition: all 0.3s ease 0s;
}
a.btn:hover, a.btn:focus, a.btn:active {
  color: #0A2240;
  background: #ffc514;
    border-radius: 50px;
    transition: all 0.3s ease 0s;
    border: 2px solid #ffc514;
    
}
.btn {
  text-transform: uppercase;
  font-weight: 600;
  background-color: #0a2240;
  color: #f2f2f2;
  box-shadow: 0px 3px 5px 2px rgba(41, 41, 41, 0.3);
}
.btn-lg {
	padding: 15px 40px;
    font-size: 16px;
    line-height: none;
    border-radius: 4px;
}
a.btn-register, a.btn-register:link, a.btn-register:visited {
  color: #0A2240;
  background: #ffc514;
}
a.btn-register:hover, a.btn-register:focus, a.btn-register:active {
  color: #f2f2f2;
  background: #0a2240;
}
.content-ct {
	text-align: center;
}

/*------------------
     Animations
------------------*/

.slide-right {
	-webkit-animation: slide-right 0.75s ease-in both;
	        animation: slide-right 0.75s ease-in both;
}

/* ----------------------------------------------
 * Generated by Animista on 2020-9-9 9:44:41
 * Licensed under FreeBSD License.
 * See http://animista.net/license for more info. 
 * w: http://animista.net, t: @cssanimista
 * ---------------------------------------------- */

/**
 * ----------------------------------------
 * animation slide-right
 * ----------------------------------------
 */
@-webkit-keyframes slide-right {
  0% {
    -webkit-transform: translateX(-50px);
            transform: translateX(-50px);
  }
  100% {
    -webkit-transform: translateX(30px);
            transform: translateX(30px);
  }
}
@keyframes slide-right {
  0% {
    -webkit-transform: translateX(-50px);
            transform: translateX(-50px);
  }
  100% {
    -webkit-transform: translateX(30px);
            transform: translateX(30px);
  }
}

.slide-left {
	-webkit-animation: slide-left 0.75s ease-in both;
	        animation: slide-left 0.75s ease-in both;
}

/* ----------------------------------------------
 * Generated by Animista on 2020-9-9 9:46:20
 * Licensed under FreeBSD License.
 * See http://animista.net/license for more info. 
 * w: http://animista.net, t: @cssanimista
 * ---------------------------------------------- */

/**
 * ----------------------------------------
 * animation slide-left
 * ----------------------------------------
 */
@-webkit-keyframes slide-left {
  0% {
    -webkit-transform: translateX(50px);
            transform: translateX(50px);
  }
  100% {
    -webkit-transform: translateX(-30px);
            transform: translateX(-30px);
  }
}
@keyframes slide-left {
  0% {
    -webkit-transform: translateX(50px);
            transform: translateX(50px);
  }
  100% {
    -webkit-transform: translateX(-30px);
            transform: translateX(-30px);
  }
}

.slide-top {
	-webkit-animation: slide-top 2s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
	        animation: slide-top 2s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
}
/* ----------------------------------------------
 * Generated by Animista on 2020-9-9 9:56:7
 * Licensed under FreeBSD License.
 * See http://animista.net/license for more info. 
 * w: http://animista.net, t: @cssanimista
 * ---------------------------------------------- */

/**
 * ----------------------------------------
 * animation slide-top
 * ----------------------------------------
 */
@-webkit-keyframes slide-top {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  100% {
    -webkit-transform: translateY(-100px);
            transform: translateY(-100px);
  }
}
@keyframes slide-top {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  100% {
    -webkit-transform: translateY(-100px);
            transform: translateY(-100px);
  }
}


/* ------------------
	Navigation 
------------------ */
.side-menu {
	position: fixed;
	right: 30px;
	top: 50%;
    transform: translateY(-73px);
    z-index: 99;
}
.side-menu ul li {
    text-align: right;
    margin: 10px 0;
}
.side-menu ul li a span {
	display: inline-block;
}
.side-menu ul li a span.menu-title {
	color: #f2f2f2;
    position: relative;
    margin-right: 10px;
    text-transform: uppercase;
    font-size: 12px;
    background-color: #0a2240;
    padding: 4px 10px 2px 10px;
    top: -4px;
    font-weight: 600;
    border-radius: 3px;
    border: 1px solid #f2f2f2;
    -webkit-transition: -webkit-transform 0.2s, opacity 0.2s;
    -moz-transition: -moz-transform 0.2s, opacity 0.2s;
    transition: transform 0.2s, opacity 0.2s;
    -webkit-transform-origin: 100% 50%;
    -moz-transform-origin: 100% 50%;
    -ms-transform-origin: 100% 50%;
    -o-transform-origin: 100% 50%;
    transform-origin: 100% 50%;
    opacity: 0;
}
.side-menu ul li a:hover span.menu-title {
    opacity: 1;
}
.side-menu ul li a span.dot {
    position: relative;
    background-color: #0a2240;
    border-radius: 2rem;
    height: 15px;
    width: 15px;
    -webkit-transition: all 0.3s;
  	-moz-transition: all 0.3s;
  	transition: all 0.3s;
    border: 1px solid #f2f2f2;
}
.side-menu ul li a:hover span.dot {
	transform: scale(1.5);
}


.hero-header {
/* 	background: #2ec4b6; */
/*   background: #0A2240; */
/* 	min-height: 600px; */
	padding: 5rem;
	color: #f2f2f2;
  background:     linear-gradient(
      rgba(10, 34, 64, 0.75), 
      rgba(177, 194, 214, 0.75)
    ), url('https://cnu.edu/_assets/img/_homepage/wide_mcmurran_dsu/homepage-lg.jpg');
  background-position: center;
  background-repeat: no-repeat; 
  background-size: cover;
}
.hero-header h1 {
  margin: 1rem 0 0 0;
  font-size: 3rem;
  text-shadow: 0 3px 5px #333333;
}
.hero-header p#eventdate {
  font-weight: normal;
  font-size: 2rem;
  opacity: 0.8;
  letter-spacing: 1px;
  margin: 1rem 0;
}
.hero-header p {
  margin: 1.5rem 0;
  text-shadow: 0 3px 5px #333333;
}
@media only screen and (max-width: 992px) {
    .hero-header p {
      margin: 1.5rem 3rem;
    }
}
.hero-header .logo {
	max-width: 180px;
}
.hero-header .btn {
	margin-top: 3rem;
}
.hero-header .rocket {
	max-width: 100%;
}

.me-row {
	padding: 30px 0;
}
.row-title {
	font-weight: 400;
}
.feature {
    padding: 2rem;
    margin-top: 1rem;
}
.feature span {
	font-size: 5rem;
    color: #333333;
}


/* .speaker .feature {
	width: 31.011627%;
	-webkit-transition: all 0.3s;
  	-moz-transition: all 0.3s;
  	transition: all 0.3s;
  	margin-right: 20px;
  	border: 3px solid #f6f6f6;
    border-radius: 5px;
}
.speaker .feature:hover {
    box-shadow: 3px 3px 10px #ccc;
    transform: translateY(-10px);
} */
.speaker-img {
	max-width: 40%;
  border: 4px solid #f2f2f2;
  border-radius: 50%;
  margin: 5px;
}

/*.downloads {*/
/*	background-color: #b1c2d6;*/
/*  color: #0A2240;*/
/*}*/


.nav-tabs {
    margin-top: 20px;
}
@media only screen and (max-width: 768px) {
  .schedule {
    margin-left: 1rem;
  }
}
.schedule .media {
  margin-top: 4rem;
}
.schedule .media-object {
  max-width: 100px;
}
.schedule .media-heading {
  font-weight: 600;
  border-bottom: 2px solid #f2f2f2;
  padding-bottom: 10px;
}
.schedule .media-body {
    margin-bottom: 2.5rem;
}
.schedule .media-body h3 {
  font-family: 'p22-underground-sc', sans-serif;
  font-weight: 600;
  font-size: 1.25rem;
  padding: 5px 0;
  border-bottom: 1px solid #b1c2d6;
  /*margin-top: 1rem;*/
}
.schedule .media-body p {
  /*padding-top: 10px;*/
  font-weight: 300;
  padding-bottom: 10px;
}
.schedule .media-body p.datetime {
  font-size: 1.1rem;
  color: #555555;
  text-align: left;
  padding-bottom: 5px;
  margin-bottom: 0.5rem;
}

.schedule .media-body a, .schedule .media-body a:link, .schedule .media-body a:visited {
    border: 2px solid #577293;
    color: #0a2240;
    background: transparent;
    text-decoration: none;
    border-radius: 4px;
    padding: 10px;
    transition: all 0.3s ease 0s;
}
.schedule .media-body a:hover, .schedule .media-body a:active, .schedule .media-body a:focus {
    background: transparent;
    color: #0a2240;
    border-radius: 50px;
    transition: all 0.3s ease 0s;
    border: 2px solid #ffc514;
}
/*.schedule .media-body p.spacer {*/
/*    margin-bottom: 2rem;*/
/*}*/

.ondemand {
    background: #b1c2d6;
/*   background: rgba(168, 218, 220, 0.4); */
}

/*.footer {*/
/*    background-color: #0A2240;*/
/*    margin-top: 30px;*/
/*    color: #f2f2f2;*/
/*}*/
/*.footer p {*/
/*    margin-bottom: 0;*/
/*    font-family: 'p22-underground', sans-serif;*/
/*}*/
/*.footer-credit {*/
/*    padding: 40px;*/
/*}*/
/*ul.footer-menu {*/
/*    text-align: right;*/
/*}*/
/*ul.footer-menu li {*/
/*    display: inline-block;*/
/*}*/
/*ul.footer-menu li a {*/
/*    font-size: 12px;*/
/*    color: #f2f2f2;*/
/*    padding-right: 20px;*/
/*}*/
/*ul.footer-menu li a:hover {*/
/*    color: #ffc514;*/
/*}*/


/* ========================================
    Custom Media Queries
======================================== */

/* Mobile */

@media (max-width: 768px) {
    .hero-header {
        padding: 1rem;
        text-align: center;
        max-height: 685px;
    }
    .speaker .feature {
        width: 100%
    }
    .footer-credit {
        text-align: center;
        padding: 40px 20px;
    }
    ul.footer-menu {
        text-align: center;
        margin-top: 30px;
    }
}


/* iPad Portrait */

@media (min-width: 768px) and (max-width: 991px) {
    .hero-header {
        padding: 1rem;
        text-align: center;
    }
    .speaker .feature {
        width: 49%;
        margin-right: 7px;
    }
    ul.footer-menu {
        margin-top: 0;
    }
}


/* iPad Landscape */

@media (min-width: 992px) and (max-width: 1199px) {
    .speaker .feature {
        width: 49%;
        margin-right: 9px;
    }
}

/* CUSTOM */
.datetime {
	text-align: center;
	font-size: 1.25rem;
	color: #555555;
}


/*----------------------------------
Flexboxes
----------------------------------*/
.lunchlearn .flex {
  flex-basis: 100%;
  padding: 0;
  list-style: none;
  display: flex;
  -webkit-flex-flow: row wrap;
  justify-content: space-around;
  width: 100%;
  margin: 0 auto 1rem auto; }
  @media only screen and (max-width: 1200px) {
    .lunchlearn .flex {
      flex-basis: 70%; } }
  @media only screen and (max-width: 992px) {
    .lunchlearn .flex {
      flex-basis: 100%; } 
}
.lunchlearn .flex div.flexSpacing {
  margin: 10px;
}
.lunchlearn .flex div.flexSpacing div.flex-item {
    padding: 5px;
    width: 272px;
    height: 100%;
    margin: 10px;
    color: #0a2240;
    font-weight: bold;
    font-size: 1.1rem;
/*     font-family: "serenity", sans-serif; */
    text-align: center;
    vertical-align: baseline;
    position: relative;
    overflow: hidden;
/*     background: #f2f2f2;
    border: 2px solid #A8DADC; */
/*   background: #A8DADC; */
  background: rgba(177, 194, 214, 0.3);
  border:  1px solid #0A2240;
/*     box-shadow: 3px 3px 10px #ccc; */
    border-radius: 10px; 
}
/* .lunchlearn .flex div.flexSpacing div.flex-item:hover {
    box-shadow: 3px 3px 10px #ccc;
    transform: translateY(-10px);
} */
.lunchlearn .flex div.flexSpacing div.flex-item h3 {
  font-size: 1.25rem;
  font-weight: 400;
  margin: 1rem 0;
}
.lunchlearn .flex div.flexSpacing div.flex-item h3 a, .lunchlearn .flex div.flexSpacing div.flex-item h3 a:link, .lunchlearn .flex div.flexSpacing div.flex-item h3 a:visited {
  color: #0a2240;
}
.lunchlearn .flex div.flexSpacing div.flex-item h3 a:hover, .lunchlearn .flex div.flexSpacing div.flex-item h3 a:active, .lunchlearn .flex div.flexSpacing div.flex-item h3 a:focus {
  color:  #0a2240;
  text-decoration: none;
}
.lunchlearn .flex div.flexSpacing div.flex-item p {
  font-size: 1rem;
  font-weight: 300;
  margin: 0.5rem;
}
.lunchlearn .flex div.flexSpacing div.flex-item p.datetime {
  color: #555555;
}
.lunchlearn .flex div.flexSpacing div.flex-item p.topic {
  font-weight: 400;
  border-bottom: 1px solid #577293;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  margin-top: 1rem;
}


.activities .flex {
  flex-basis: 100%;
  padding: 0;
  list-style: none;
  display: flex;
  -webkit-flex-flow: row wrap;
  justify-content: space-around;
  width: 100%;
  margin: 0 auto 1rem auto; }
/*  @media only screen and (max-width: 1200px) {*/
/*    .downloads .flex {*/
/*      flex-basis: 70%; } }*/
/*  @media only screen and (max-width: 992px) {*/
/*    .downloads .flex {*/
/*      flex-basis: 100%; } */
/*}*/
.activities .flex div.flexSpacing {
  margin: 10px;
}
.activities .flex div.flexSpacing div.flex-item {
    padding: 5px;
    width: 250px;
    height: 100%;
    min-height: 180px;
    color: #f2f2f2;
    font-weight: bold;
    font-size: 1.1rem;
    text-align: center;
    vertical-align: baseline;
    position: relative;
    overflow: hidden;
/*     background: #2ec4b6; */
}
/* .downloads .flex div.flexSpacing div.flex-item:hover {
    box-shadow: 3px 3px 10px #ccc;
    transform: translateY(-10px);
} */
.activities .flex div.flexSpacing div.flex-item h3 {
  font-size: 1.5rem;
  color: #fafafa
  font-weight: 400;
}
.activities .flex div.flexSpacing div.flex-item p {
  font-size: 0.968rem;
  font-weight: 200;
  margin: 0.5rem 0;
  color: #fafafa;
  padding-bottom: 10px;
}
/* .downloads .flex div.flexSpacing div.flex-item a, .downloads .flex div.flexSpacing div.flex-item a:link, .downloads .flex div.flexSpacing div.flex-item a:visited {
  background-color: #ff9f1c;
  color: #011627;
  padding: 5px 10px;
  border-radius: 4px;
}
.downloads .flex div.flexSpacing div.flex-item a:hover, .downloads .flex div.flexSpacing div.flex-item a:active, .downloads .flex div.flexSpacing div.flex-item a:focus {
  color:#e71d36;
  box-shadow: 3px 3px 10px #ccc;
} */


.colorblock {
/*   background: #011627;
  color: #fdfffc; */
  background: #2c4460;
  color: #fafafa;
  padding: 0 4rem;
}
.colorblock p {
  margin-bottom: 1.25rem;
  font-weight: 300;
}
.colorblock p a, .colorblock p a:link, .colorblock p a:visited {
  color: #fafafa;
  font-weight: 600 !important;
}
.colorblock p a:hover, .colorblock p a:focus, .colorblock p a:active {
  color: #fafafa;
}

.colorblock a.btn, .colorblock a.btn:link, .colorblock a.btn:visited {
  color: #0A2240;
  background: #b1c2d6;
}
.colorblock a.btn:hover, .colorblock a.btn:focus, .colorblock a.btn:active {
  color: #0a2240;
  background: #ffc514;
}


.nocolorblock {
  background: #fafafa;
  color: #333333;
  padding: 0 4rem;
}
.nocolorblock p {
  margin-bottom: 1.25rem;
  font-weight: 300;
}
.nocolorblock p a, .nocolorblock p a:link, .nocolorblock p a:visited {
  color: #333333;
  font-weight: 600 !important;
}
.nocolorblock p a:hover, .nocolorblock p a:focus, .nocolorblock p a:active {
  color: #333333;
}

.nocolorblock a.btn, .nocolorblock a.btn:link, .nocolorblock a.btn:visited {
  color: #fafafa;
  background: #0A2240;
}
.nocolorblock a.btn:hover, .nocolorblock a.btn:focus, .nocolorblock a.btn:active {
  color: #0a2240;
  background: #ffc514;
}


footer {
  background: #0a2240;
  color: #fafafa;
  padding: 2rem;
  text-align: center;
}
footer p {
  padding-top: 10px;
  font-family: 'p22-underground', sans-serif;
}
footer p a, footer p a:link, footer p a:visited {
  color: #fafafa;
}
footer p a:hover, footer p a:focus, footer p a:active {
  color: #fafafa;
}



.multimedia {
    padding: 0;
    list-style: none;
    display: flex;
    -webkit-flex-flow: row wrap;
    justify-content: space-around;
    width: 100%;
    margin: 0 auto 1rem auto;
}

.multimedia div.flex-item {
    padding: 1%;
    margin-top: 10px;
    position: relative;
    background: #f2f2f2;
    width: 48%;
    height: auto;
}
@media only screen and (max-width: 768px) {
  .multimedia div.flex-item {
    width: 100%;
}
}


/* 
.register {
  background: #e63746;
  color: #f2f2f2;
}
.register a {
  
}
 */


/*TABS*/

main {
  margin: 2rem;
  font-family: 'p22-underground', sans-serif;   
}
.tab-buttons {
  flex: 0 0 25%;
  max-width: 25%;
  margin-left: 8.3333333333%;
}
.tab-content {
  flex: 0 0 66.6666666667%;
  max-width: 66.6666666667%;
}
.tab-content a, .tab-content a:link, .tab-content a:visited {
    border: 2px solid #577293;
    color: #0a2240;
    background: transparent;
    text-decoration: none;
    border-radius: 4px;
    padding: 10px;
    transition: all 0.3s ease 0s;
}
.tab-content a:hover, .tab-content a:active, .tab-content a:focus {
    background: transparent;
    color: #0a2240;
    border-radius: 50px;
    transition: all 0.3s ease 0s;
    border: 2px solid #ffc514;
}

@media (max-width: 992px) {
  .tab-buttons {
  flex: 0 0 25%;
  max-width: 25%;
  margin-left: 0;
  }
  .tab-content {
  flex: 0 0 75%;
  max-width: 75%;
  }
}
@media (max-width:480px) {
  .tab-buttons {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .tab-content {
    flex: 0 0 100%;
    max-width: 100%;
  }
}
.nav-pills .nav-link.active, .nav-pills .show>.nav-link {
  color: #0a2240;
  background-color: transparent;
  border-left: 2px solid #577293;
}
.nav-pills .nav-link.active i, .nav-pills .show>.nav-link i {
  color: #ffc514;
}
.nav-pills .nav-link {
    border-radius: 0;
}
.nav-link, .nav-link:link, .nav-link:visited {
    display: block;
    padding: .5rem 1rem;
    color:#0a2240;
/*     background:#b1c2d6; */
    margin: 0.15rem 0;
}

.nav-link:focus, .nav-link:hover, .nav-link:active {
  text-decoration: none;
/*   background: #ffc514;  */
}

.nav-link:focus i, .nav-link:hover i, .nav-link:active i {
  color: #ffc514; 
}

.tab-content>.active {
  display: block;
}

.tab-pane p{
  
}


/* Icon Forward */
.hvr-icon-forward {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-transition-duration: 0.1s;
  transition-duration: 0.1s;
}
.hvr-icon-forward .hvr-icon {
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-transition-duration: 0.1s;
  transition-duration: 0.1s;
  -webkit-transition-property: transform;
  transition-property: transform;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}
.hvr-icon-forward:hover .hvr-icon, .hvr-icon-forward:focus .hvr-icon, .hvr-icon-forward:active .hvr-icon {
  -webkit-transform: translateX(4px);
  transform: translateX(4px);
}


/* Underline From Center */
.hvr-underline-from-center {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  position: relative;
  overflow: hidden;
}
.hvr-underline-from-center:before {
  content: "";
  position: absolute;
  z-index: -1;
  left: 51%;
  right: 51%;
  bottom: 0;
  background: #ffc514;
  height: 2px;
  -webkit-transition-property: left, right;
  transition-property: left, right;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}
.hvr-underline-from-center:hover:before, .hvr-underline-from-center:focus:before, .hvr-underline-from-center:active:before {
  left: 0;
  right: 0;
}


/* Header Intro */

.intro-text {
  flex: 0 0 58.3333333333%;
  max-width: 58.3333333333%; 
}

.intro-img {
  flex: 0 0 33.3333333333%;
  max-width: 33.3333333333%;
}
.intro-img img {
  left: 0;
  margin-left: 0;
  text-align: center;
}

@media (max-width:992px) {
  .intro-text {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .intro-img {
    flex: 0 0 100%;
    max-width: 100%;
    margin-top: 2rem;
  }
}
@media (max-width:992px) {
  .intro-img img {
    height: 180px;
  }
}

/*----------------------------------
 BOTTOM PAGE ACTIONS: PROBLEM & EDIT
----------------------------------*/
div.actions {
  background-color: #0a2240;
  padding-left: 10px;
  width: 100%; }
  div.actions a, div.actions a:visited {
    color: #f2f2f2;
    margin-top: 0;
    font-size: 0.75rem;
    font-weight: 300; }
    div.actions a#reportproblem span, div.actions a:visited#reportproblem span {
      font-family: "p22-underground-sc", sans-serif; }
    div.actions a#reportproblem:hover, div.actions a#reportproblem:focus, div.actions a#reportproblem:active, div.actions a:visited#reportproblem:hover, div.actions a:visited#reportproblem:focus, div.actions a:visited#reportproblem:active {
      color: #ffc514; }
