/* 
FOR ALL PAGES
 */

.cover {
  background: linear-gradient(rgba(0, 0, 0, .5), rgba(0, 0, 0, .5)), url(../images/home/coverphoto.jpg) center center;
  background-size: cover;
  min-height: 226px;
}

/* nav bar */
#top {
  font-family: "Knockout 70 A","Knockout 70 B",Impact;
  font-weight: 300;
  font-size: 2rem;
}

#navbarNav, #totop {
  text-transform: uppercase;
  font-weight: 600;
}

.current {
  border-bottom: 4px solid royalblue;
  width: 20%;
}

#register {
  border: 1px solid white;
  width: 25%;
  text-align: center;
  margin: 0 auto;
}

#register:hover {
  color:white;
  border: 2px solid rgba(255,255,255,.5);
  font-weight: 500;
}

.navbar-dark .navbar-toggler {
  border-color: white;
}

/* Responsive - for mobile and smaller screen */

h1 {
  font-size: 2rem;
}

.title h2 {
  font-size: 1.75rem;
}

.title h3 {
  font-size: 1.5rem;
  padding: 0 10px;
}

.title p {
  font-size: 0.8rem;
  padding: 0 10px;
}

/* footer */

.footer {
  background-color: black;
}

.footer > a {
  font-weight: 500;
}

small {
  color: #dcdcdc;
}

#totop {
  color: white;
}

/* 
HOME page 
*/

#cta {
  font-weight: 700;
}

.card-img {
  width: 100%!important;
  height: 200px!important;
  object-fit: cover;
}

a.card {
  color: #212529;
  text-decoration: none;
}

a.card:hover {
  color: royalblue;
}

/* 
Speakers page 
*/

.speaker-photo img {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  margin: -66px 0 22px 0;
}

.speaker-photo{
  border: 1px solid #dfe2e5;
  border-radius: 5px;
  margin-top: 88px;
  padding-bottom: 22px;
  text-align: center;
  width: 65%;
  max-height: 230px;
}

/* Responsive - for mobile and small screen */
.profile-info {
  order: 2;
}

.profile-photo {
  order: 1;
  margin-bottom: 2rem;
}

/* 
Schedule page 
*/

.schedule-item {
  border-left: 3px solid royalblue;
  border-top: 1px solid rgb(207, 207, 207);
  padding: 0.8rem 0.8rem 0.2rem 0.8rem;  
  margin-bottom: 1.3rem;
}

.schedule-item:hover {
  border-left: 5px solid grey;
  background-color: rgb(232, 232, 232);
}

.profile {
  width: 80px;
  height: 80px;
  border-radius: 50%;
}

.profilebox img, .profilebox p {
  display: inline-block;
}

.profilebox p {
  margin-bottom: 0;
  padding-left: 12px;
}

.profilebox {
  margin: 7px 0;
}

.schedule-item a {
  text-decoration: none;
  color: inherit;
}

.schedule-item a:hover {
  color: #a9b2b9;
}

/* 
Venue page 
*/

iframe {
	max-width: 100%;
}

/* 
Register page 
*/

.whyattend {
  list-style: square;
}


/* MEDIA QUERY */

@media only screen and (min-width: 992px) {
  
  /* Responsive - for ALL pages for Desktop
  Navbar  */
  #register {
      width: 100%;
      margin-left: 0.8rem;
  }

  .current {
    width: 100%;
  }

}

/* Responsive - Speaker page for Desktop */
@media only screen and (min-width: 768px) {

  .speaker-photo {
    width: 90%;
  }

  .profile-info {
    order: 1;
  }

  .profile-photo {
    order: 2;
  }

  .speaker1 {
    margin-top: 3rem;
  }

  /* for ALL pages desktop */
   
  h1 {
    font-size: 4vw;
  }
  
  .title h2 {
    font-size: 3vw;
  }

  .title h3 {
    font-size: 2.5vw;
  }

  .title p {
    font-size: 1rem;
  }

}

