@charset "UTF-8";

body {
  margin: 0;
  padding: 0;
  font-family: "Lato", sans-serif;
  background-color: #000;
  width: 100vw;
  height: auto;
}

.container {
  width: 100%;
  height: 100vh;
  overflow: hidden;
  background-position: center;
  background-image: url("../img/headshots/Tourek-4.jpg");
  background-repeat: no-repeat;
  background-size: contain;
}

.container_imageless {
  width: 80%;
  background-image: none;
}

.active {
  position: relative;
}

.content {
  color: #fff;
  width: 40%;
  margin-left: 100px;
  transition: 0.3s ease;
  overflow-y: visible;
  background-color: rgba(10%, 10%, 10%, 0.3);
  margin-bottom: 100px;
}

.content-black {
  width: 50%;
  color: #fff;
  margin-left: 100px;
  transition: 0.3s ease;
  overflow-y: visible;
  float: left;
  padding-bottom: 50px;
  background-color: #000;
  margin-bottom: 100px;
}

.content.toggle {
  margin-left: 350px;
  width: 30%;
  transition: 0.3s ease;
}

/* Headshot styling */

.headshots {
  transition: 0.3s ease;
  margin-left: 100px;
}

.headshots.toggle {
  margin-left: 350px;
  transform: 0.3s ease;
}

.headshots a {
  float: left;
  width: 100%;
  padding-right: 25px;
  box-sizing: border-box;
  margin-bottom: 25px;
}

.video {
  margin: 0;
  padding: 100px 100px 0;
  transition: 0.3s ease;
}

.video.toggle {
  padding: 175px 5% 5% 0%;
  margin-left: 350px;
  transition: 0.3s ease;
}

.videowrapper {
  clear: both;
  position: relative;
  padding-bottom: 50%;
}
.videowrapper video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* --- Demo page video layout overrides (tablet) --- */
#demoreel.videowrapper,
#accountant2.videowrapper,
#kingstown.videowrapper {
  position: static;
  padding-bottom: 0;
  margin: 20px auto 40px;   /* center, no huge left margin */
  max-width: 90vw;
}

/* center the video */
#demoreel .demo,
#accountant2 .demo,
#kingstown .demo {
  max-width: 100%;
  margin: 0 auto;
}

/* make the video responsive */
#demoreel.videowrapper video,
#accountant2.videowrapper video,
#kingstown.videowrapper video {
  position: static;
  width: 100%;
  height: auto;
  display: block;
}
/* Thumbnails styles */
.thumbnails {
  clear: both;
  margin: 0 -15px 0 100px;
  width: 95%;
  transition: 0.3s ease;
}

.thumbnails.toggle {
  margin-left: 350px;
  transition: 0.3s ease;
}

.thumbnails a {
  float: left;
  width: 50%;
  padding-right: 25px;
  box-sizing: border-box;
  margin-bottom: 25px;
}

.thumbnails img {
  display: block;
  width: 100%;
  height: auto;
}

img {
  vertical-align: top;
  width: 80%;
}

.photos.toggle {
  margin-left: 250px;
  transition: 0.3s ease;
}

li.filmlist {
  text-decoration: none;
  width: 400px;
  height: auto;
  float: left;
  text-align: center;
}

#hr {
  width: 433px;
}

.nav-tn a {
  float: left;
  width: 100%;
  height: auto;
}

#top-nav {
  width: 450px;
}

#top-nav-gallery a {
  width: 45%;
  float: left;
  height: auto;
}

/* Demo Styling */

.demo {
  transition: 0.3s ease;
  margin-left: 100px;
}

.demo.toggle {
  margin-left: 350px;
  transform: 0.3s ease;
}

.demo a {
  float: left;
  width: 100%;
  padding-right: 25px;
  box-sizing: border-box;
  margin-bottom: 25px;
}

.tooltip {
  position: relative;
  display: inline-block;
  border-bottom: 1px dotted black;
}

.tooltip .tooltiptext {
  visibility: hidden;
  width: 120px;
  background-color: #555;
  color: #fff;
  text-align: center;
  border-radius: 6px;
  padding: 5px 0;
  position: absolute;
  z-index: 1;
  bottom: 125%;
  left: 50%;
  margin-left: -60px;
  opacity: 0;
  transition: opacity 0.3s;
}

.tooltip .tooltiptext::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: #555 transparent transparent transparent;
}

.tooltip:hover .tooltiptext {
  visibility: visible;
  opacity: 1;
}