/* MAIN */

div.contentContainer {
	left: 32%;
	width: 48%;
	height: auto;

	top: 130px;

	float: left;
	position: relative;	
	box-sizing: border-box;
}

div.sidebarContainer {
	left: 20%;
	width: 10%;
	height: 100%;

	top: 20px;

	float: left;
	position: fixed;
	box-sizing: border-box;
}

div.footer {
	left: 32%;
	width: 48%;
	height: 10px;

	position: relative;

	font-size:13px;
}


/* OVERLAY VIDEO PLAYER */

.player {
  height: 100%;
  width: 100%;
  position: fixed;
  display: none;
  top: 0;
  left: 0;
  background-color: rgba(0,0,0,0.7);
  z-index: 2;
  overflow-x: hidden;
  cursor: pointer;
}

.player .closebtn2 {
  position: absolute;
  top: 17px;
  right: 14%;
  font-size: 40px;
}

.player-video {
  position: absolute;
  top: 80px;
  left: 25%;

  max-width: 50%;
}


/* STICKY NAVBAR */

.sticky {
  position: fixed;
  width: 100%;
  background-color: #D6D6DA;
  z-index: 1;
}

.sticky + .contentContainer {
  padding-top: 100px;
}


/* OVERLAY NAVBAR */

.overlay {
  height: 100%;
  width: 0;
  position: fixed;
  z-index: 2;
  top: 0;
  left: 0;
  background-color: rgb(0,0,0);
  background-color: rgba(0,0,0, 0.9);
  overflow-x: hidden;
  transition: 0.5s;
}

.overlay-content {
  position: relative;
  top: 10%;
  width: 100%;
  text-align: center;
  margin-top: 30px;
}

.overlay a {
  padding: 8px;
  text-decoration: none;
  font-size: 40px;
  color: #979797;
  display: block;
  transition: 0.3s;
}

.overlay a:hover, .overlay a:focus {
  color: #696969;
}

.overlay .closebtn {
  position: absolute;
  top: 17px;
  right: 14%;
  font-size: 40px;
}

@media screen and (max-height: 450px) {
  .overlay a {font-size: 25px}
  .overlay .closebtn {
  top: 17px;
  right: 14%;
  font-size: 40px;
  }
}


/*SIDEBAR COLLAPSE*/

@media screen and (max-width: 1170px) {
  div.sidebarContainer {
    left: 10%;
    width: 81%;

    top: 20px;

    height: auto;
    position: fixed;
    overflow: auto;

    display: inline-table;
  }
  div.contentContainer {
  	left: 10%;
  	width: 80%;

  	top: 150px;
  }
}

.hamburger .icon {
  display: none;
}

@media screen and (max-width: 1170px) {
  .sidebarContainer a:not(:first-child) {
  	display: none;
  }
  .hamburger a.icon {
    display: flex;
    position: absolute;
    font-size: 50px;
    top: 10px;
    right: 6%;
  }
}


/*PROJECTS TAB*/

.column {
  float: left;
  max-width: 40%;
  padding: 20px;
}

.row {
	left: 10px;
}

@media screen and (max-width: 700px) {
  .column {
    -ms-flex: 80%;
    flex: 80%;
    max-width: 80%;
  }
}



/*PROJECTS PAGE MULTIPLE IMAGES*/

.box {
  float: left;
  max-width: 15%;
  padding: 4px;
}

.box img {
  opacity: 0.5; 
  cursor: pointer; 
}

.box img:hover {
  opacity: 1;
}

@media screen and (max-width: 1170px) {
  .box {
    -ms-flex: 30%;
    flex: 30%;
    max-width: 30%;
    padding: 8px;
  }
}

@media screen and (max-width: 600px) {
  .box {
    -ms-flex: 40%;
    flex: 40%;
    max-width: 40%;
    padding: 10px;
  }
}



/*GENERAL BODY*/

/* COLORS

Background Color - D6D6DA
D6D6DA

Text Color - 979797
F0F0F0

Link Color - 696969
979797

*/

body {
	background-color: #D6D6DA;
	color: #696969;
	font: 25px helvetica, arial, verdana, sans-serif;
	width: 100%;
	margin: 0px;
	padding: 0px;
}

a {
	text-decoration: none;
	color: #979797;
}

a:hover {
	color: #696969;
}

h1 {
	font-weight: normal;
	font-size: 25px;
	color: #696969;
  margin: 0;
}

h2 {
	font-weight: normal;
	font-size: 13px;
  margin-top: 0;
}

h3 {
	font-weight: normal;
	font-size: 13px;
	color: #696969;
}

h4 {
  font-weight: normal;
  font-size: 18px;
  color: #696969;
  margin: 0;
}

p {
	font-size: 15px;
	color: #696969;
	text-align: justify;
  line-height: 1.6;
}

img {
	max-width: 100%;
	max-height: 100%;
	display: block;
}