body 
{
  background-color: black;
  font-family: "Lato", sans-serif;
  margin: 0px;
}

.container 
{
  display: grid;
  grid-template-columns: 1fr;
}

.nav-wrapper 
{
  display: flex;
  justify-content: space-between;
  padding: 38px;
}

.left-side 
{
  display: flex;
}

.right-side
{
  color: white;
}

.nav-wrapper > .left-side > div {
  margin-right: 20px;
  text-transform: uppercase;
  font-size: 0.9rem;
}

.nav-link-wrapper 
{
  height: 22px;
  border-bottom: 1px solid transparent;
  transition: border-bottom 0.5s;
}

.active-nav-link 
{
  border-bottom: 1px solid white;
}

.active-nav-link a 
{
  color: white !important;
}

.nav-link-wrapper a 
{
  color: #8a8a8a;
  text-decoration: none;
  transition: color 0.5s;
}

.nav-link-wrapper:hover 
{
  border-bottom: 1px solid white;
}

.nav-link-wrapper a:hover 
{
  color: white;
}

.portfolio-items-wrapper
{
  display: grid;
  flex-wrap: wrap;
  grid-template-columns: 1fr 1fr 1fr;
}

.portfolio-videos-wrapper
{
  display: grid;
  flex-wrap: wrap;
  grid-template-columns: 1fr 1fr 1fr;
}
.portfolio-item-wrapper 
{
  position: relative;
}

.portfolio-video-wrapper 
{
  position: relative;
}


.portfolio-img-background 
{
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 350px;
  width: 100%;
}

.portfolio-video-background
{
  position: relative;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  overflow: hidden;
}

.portfolio-video-background video {
  /* Make video to at least 100% wide and tall */
  min-width: 100%; 
  min-height: 100%; 

  /* Setting width & height to auto prevents the browser from stretching or squishing the video
  width: auto;
  height: auto;*/

  /* Center the video */
  position: relative;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
}

.img-text-wrapper 
{
  position: absolute;
  top: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
  text-align: center;
  padding-left: 100px;
  padding-right: 100px;
}

.img-text-wrapper .subtitle 
{
  transition: 1s;
  color: transparent;
}

.image-blur {
  transition: 1s;
  filter: brightness(10%);
}

.img-text-wrapper:hover .subtitle 
{
  color: lightseagreen;
  font-weight: 600;
}

.logo-wrapper img 
{
  width: 50%;
  margin-bottom: 20px;
}

.two-column-wrapper 
{
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.profile-image-wrapper img 
{
  width: 100%;
}

.profile-content-wrapper 
{
  padding: 30px;
}

.profile-content-wrapper
{
  color: white;
}

/* Media queries */
@media only screen and (min-width: 200px) {
  .profile-image-wrapper img 
  {
      width: calc(100% + 1500px);
  }
}
@media only screen and (min-width: 200px) {
  .portfolio-video-background video
  {
      width: calc(100%);
  }
}
@media only screen and (min-width: 200px) {
  .profile-content-wrapper 
  {
      width: calc(100% + 1500px);
  }
}
@media only screen and (min-width: 200px) {
  .logo-wrapper img 
  {
      width: calc(50% + 100px);
  }
}