html,
body {
  height: 100%;
  margin: 0;
  padding: 0;
}


/*********************
  FONTS 
**********************/
.font-thin {
  font-family: "Titillium Web", Arial, Helvetica, sans-serif;
  font-weight: 200;
}
.font-semibold {
  font-family: "Titillium Web", Arial, Helvetica, sans-serif;
  font-weight: 600;
}
.font-bold {
  font-family: "Titillium Web", Arial, Helvetica, sans-serif;
  font-weight: 600;
}
.font-light {
  font-family: "Titillium Web", Arial, Helvetica, sans-serif;
  font-weight: 300;
}
.font-map {
  color: #f67280;
  font-family: "Titillium Web", Arial, Helvetica, sans-serif;
  font-weight: 600;
  text-decoration: none;
}


/*********************
  LANDING PAGE 
**********************/
.full-bg-img {
  background-color: #e4e6e5;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  height: 100%;
  width: 100%;
}

.full-bg-img .container {
  padding-top: 90px;
}

.full-bg-img img {
  display: block;
  margin: 0 auto;
}

/* REGISTER BUTTON
*/
.btn-reg {
  background-color: #f67280 !important;
}

.btn-reg:hover {
  background-color: #f8b195 !important;
}

.btn-reg:focus {
  background-color: #f8b195 !important;
}

@media only screen and (max-width: 768px) {
  .full-bg-img, .view {
    height: auto;
    position: relative;
    text-align: center;
  }
  .full-bg-img .verticalcenter, .view .verticalcenter {
    top: none;
    margin-top: 40px;
    -webkit-transform: none;
    -o-transform: none;
    transform: none;
  }
  .full-bg-img .container, .view .container {
    padding-top: 30px;
  }
}


/*********************
  COMPONENTS
**********************/
/* Small Devices, Tablets */
@media only screen and (max-width: 768px) {
  .navbar {
    background-color: #405C84 !important;
  }
  .navbar .navbar-nav > li > a {
    padding-top: 10px;
    padding-bottom: 10px;
    color: #fff !important;
  }
}

.top-nav-collapse {
  background-color: #f5f5f5;
}

.top-nav-collapse .nav li a {
  color: #000;
}

.top-nav-collapse .nav li a:hover, .top-nav-collapse .nav li a:focus {
  color: #fff;
  background-color: #0E274D;
}

.btn-floating {
  background-color: #f67280 !important;
}


/*********************
  NAVBAR 
**********************/
.menu {
  line-height: 1;
  margin: 0 auto 3em;
  background-color: #f5f5f5;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
  box-shadow: 0px 3px 6px 3px rgba(0,0,0,0.06);
  font-family: "Titillium Web", Arial, Helvetica, sans-serif;
}
.menu__list {
  position: relative;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
  list-style: none;
  vertical-align: middle;
}
.menu__item {
  display: block;
  margin: 1em 0;
}
.menu__link {
  font-size: 1.05em;
  font-weight: bold;
  display: inline-block;
  padding: 1em;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    box-shadow: 0px 3px 6px 3px rgba(0,0,0,0.06);
}
.menu__link:hover,
.menu__link:focus {
  outline: none;
  text-decoration: none;
}

/* Viola Theme
*/
.menu--viola .menu__item {
  position: relative;
  margin: 0 1em;
  margin-bottom: 10px;
}
.menu--viola .menu__link {
  position: relative;
  display: block;
  text-align: center;
  color: #6c5b7b;
  width: 130px;
  -webkit-transition: color 0.4s;
  transition: color 0.4s;
}
.menu--viola .menu__link:hover,
.menu--viola .menu__link:focus {
  color: #f67280;
}
.menu--viola .menu__item--current .menu__link {
  color: #f67280;
}
.menu--viola .menu__item::before,
.menu--viola .menu__item::after,
.menu--viola .menu__link::before,
.menu--viola .menu__link::after {
  content: '';
  position: absolute;
  background: #f67280;
  -webkit-transition: -webkit-transform 0.2s;
  transition: transform 0.2s;
}
.menu--viola .menu__item::before,
.menu--viola .menu__item::after {
  top: 0;
  width: 2px;
  height: 100%;
  -webkit-transform: scale3d(1, 0, 1);
  transform: scale3d(1, 0, 1);
}
.menu--viola .menu__item::before {
  left: 0;
  -webkit-transform-origin: 50% 100%;
  transform-origin: 50% 100%;
}
.menu--viola .menu__item::after {
  right: 0;
  -webkit-transform-origin: 50% 0%;
  transform-origin: 50% 0%;
}
.menu--viola .menu__link::before,
.menu--viola .menu__link::after {
  left: 0;
  width: 100%;
  height: 2px;
  -webkit-transform: scale3d(0, 1, 1);
  transform: scale3d(0, 1, 1);
}
.menu--viola .menu__link::before {
  top: 0;
  -webkit-transform-origin: 0 50%;
  transform-origin: 0 50%;
}
.menu--viola .menu__link::after {
  bottom: 0;
  -webkit-transform-origin: 100% 50%;
  transform-origin: 100% 50%;
}
.menu--viola .menu__item--current::before,
.menu--viola .menu__item--current::after,
.menu--viola .menu__item--current .menu__link::before,
.menu--viola .menu__item--current .menu__link::after {
  -webkit-transform: scale3d(1, 1, 1);
  transform: scale3d(1, 1, 1);
  -webkit-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  -webkit-transition-duration: 0.4s;
  transition-duration: 0.4s;
}

/* Mobile navbar icon
*/
.fa-bars {
  color: #000;
}
.navbar-header {
  display: block;
  text-align: right;
  float: right;
  width: 100%;
  vertical-align: middle;
  margin-bottom: 10px;
}

/* Controls the growth of the bar icon when in mobile view 
*/
.hvr-icon-grow {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  padding-right: 2.2em;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
}
.hvr-icon-grow {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  padding-right: 2.2em;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
}
.hvr-icon-grow:before {
  position: absolute;
  right: 1em;
  padding: 0 1px;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: transform;
  transition-property: transform;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}
.hvr-icon-grow:hover:before, .hvr-icon-grow:focus:before, .hvr-icon-grow:active:before {
  -webkit-transform: scale(1.3) translateZ(0);
  transform: scale(1.3) translateZ(0);
}

/* Controls the menu bar to expand at full screen view
*/
@media(min-width:567px) {
  .menu__list{
    padding: 12px 0;
    border-bottom: 0;
    letter-spacing: 1px;
    -webkit-transition: background .5s ease-in-out,padding .5s ease-in-out;
    -moz-transition: background .5s ease-in-out,padding .5s ease-in-out;
    transition: background .5s ease-in-out,padding .5s ease-in-out;
  }
}

@media(max-width: 960px) {
  .menu--viola .menu__link {
    width: 100%;
  }
}

/* Stack items for smaller screens */
@media screen and (max-width:47em) {
  .menu__list {
    display: block;
    margin: 0 auto;
  }
}
/* END NAVBAR */


/* GLOBAL CSS
 * Contains default css for all:
 *   Headers (About RowdyHacks, Event Schedule, etc)
 *   Content (Main content on each section)
 *   Slides  (About, Schedule, FAQ, etc are each a slide)
*/
.header {
  color: #f8b195;
  font-size: 45px;
  padding-bottom: 30px;
}

.content {
  padding-top: 40px;
  padding-bottom: 40px;
}

.slide {
  padding-bottom: 50px;
  padding-top: 80px;
  text-align: center;
  height: auto;
  width: 100%;
  box-shadow: 15px 3px 15px 15px rgba(0,0,0,0.06);
}

.line-row .hr {
  background-color: #f67280;
  height: 4px;
  margin: 0 auto;
  width: 33%;
  margin-bottom: 25px;
}

/* ABOUT SECTION
*/
#about {
  background-color: #6c5b7b;
  color: #fff; 
}

/* SCHEDULE SECTION
*/
#schedule {
  background-color: #355c7d;
  color: #fff; 
}
.schedule {
  padding-bottom: 5px;
}
.schedule-time {
  text-align: right;
  padding-right: 30px;
}
.schedule-event {
  text-align: left;
  padding-left: 30px;
}


/* SPONSORS SECTION
*/
#sponsors {
  background-color: #6c5b7b;
  color: #fff; 
}


/* FAQ SECTION
*/
#faq {
  background-color: #355c7d;
  color: #fff; 
}
#faq h3 {
  font-size: 2em;
  text-align: left;
}

#faq p {
  font-size: 1.25em;
  text-align: left;
}


/* CONTACT SECTION
*/
#contact {
  background-color: #6c5b7b;
  color: #fff; 
}
.fb-bg {

  background-color: #3B5998;
}
.tw-bg {
  background-color: #55ACEE;
}
.gplus-bg {
  background-color: #DD4B39;
}

/* FOOTER SECTION
*/
#footer .btn-circle {
  background-color: #f67280;
  border: 2px solid #c06c84;
  padding-bottom: 0px;
}

#footer i {
  color: #355c7d;
  padding-bottom: 0px;
  font-size: 1em;
}

.footer-left {
  vertical-align: middle;
  text-align: center; 
  margin-top: 15px;
}

.footer-right {
  vertical-align: middle;
  text-align: right;
  margin-top: 15px;
}

.footer-right>ul>li {
  list-style-type: none;
}

/* Footer Section Page Up Button
*/
.btn-circle {
  width: 70px;
  height: 70px;
  margin-top: 15px;
  padding: 15px 16px;
  border: 2px solid #c06c84;
  border-radius: 100% !important;
  font-size: 40px;
  color: #fff;
  background: 0 0;
  -webkit-transition: background .3s ease-in-out;
  -moz-transition: background .3s ease-in-out;
  transition: background .3s ease-in-out;
}

.btn-circle:hover,
.btn-circle:focus {
  background-color: #355c7d;
  border: 1px solid #f67280;
  outline: 0;
  color: #fff;
  opacity: .6;
}
.btn-circle i.animated {
  -webkit-transition-property: -webkit-transform;
  -webkit-transition-duration: 1s;
  -moz-transition-property: -moz-transform;
  -moz-transition-duration: 1s;
}

.btn-circle:hover i.animated {
  -webkit-animation-name: pulse;
  -moz-animation-name: pulse;
  -webkit-animation-duration: 1.5s;
  -moz-animation-duration: 1.5s;
  -webkit-animation-iteration-count: infinite;
  -moz-animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
}

@-webkit-keyframes pulse {    
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  50% {
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
  }

  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

@-moz-keyframes pulse {    
    0% {
        -moz-transform: scale(1);
        transform: scale(1);
    }

    50% {
        -moz-transform: scale(1.2);
        transform: scale(1.2);
    }

    100% {
        -moz-transform: scale(1);
        transform: scale(1);
    }
}
