@charset "utf-8";





#project_photos {
  position: relative;
  user-select: none;
  height: 370px;
}
#project_photos * {
  user-select: none;
}
#project_photos_scroll {
  overflow-x: auto;
  overflow-y: hidden;
  white-space: nowrap;
}
#project_photos #left_arrow {
  text-align: left;
  background: RGBA(0, 0, 0, 0.75);
  color: #FFFFFF;
  font-size: 25px;
  line-height: 25px;
  padding: 15px 0;
  width: 30px;
  height: 60px;
  border-radius: 0 30px 30px 0 !important;
  z-index: 1000;
}
#project_photos #right_arrow {
  text-align: right;
  background: RGBA(0, 0, 0, 0.75);
  color: #FFFFFF;
  font-size: 25px;
  line-height: 25px;
  padding: 15px 0;
  width: 30px;
  height: 60px;
  border-radius: 30px 0 0 30px !important;
  z-index: 1000;
}
@media only screen and (orientation: landscape) {
  #project_photos img {
    width: auto;
    height: 370px;
  }
}
@media only screen and (orientation: portrait) {
  #project_photos img {
    width: auto;
    height: 370px;
  }
}





#project_sub_navigation {
  white-space: nowrap;
  overflow-x: auto;
  overflow-y: hidden;
  border-top: 1px solid var(--theme_colour);
  border-bottom: 1px solid var(--theme_colour);
  user-select: none;
}
#project_sub_navigation * {
  user-select: none;
}
#project_sub_navigation ul,
#project_sub_navigation ul li {
  padding: 0;
  margin: 0;
}
#project_sub_navigation ul li {
  padding: calc(1rem - 3px) 0;
}
#project_sub_navigation ul li a {
  padding: 1rem;
  margin: 0;
}
#project_sub_navigation ul li a.active {
  background: var(--theme_colour);
}
#project_sub_navigation ul li a:hover {
  background: var(--theme_colour);
}





.image_hover_overlay_container {
  position: relative;
  overflow: hidden;
}
.image_hover_overlay_container img {
  -webkit-transition: 0.3s ease;
  -moz-transition: 0.3s ease;
  transition: 0.3s ease;
}
.image_hover_overlay_container:hover img {
  -webkit-transform: scale(1.05, 1.05);
  -moz-transform: scale(1.05, 1.05);
  transform: scale(1.05, 1.05);
}
.image_hover_overlay_container .overlay_icon {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  width: 100%;
  opacity: 0;
  -webkit-transition: 0.3s ease;
  -moz-transition: 0.3s ease;
  transition: 0.3s ease;
  background-color: RGBA(0, 0, 0, 0.5);
}
.image_hover_overlay_container:hover .overlay_icon {
  opacity: 1; 
}
.image_hover_overlay_container .overlay_icon i {
  color: white;
  font-size: 50px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}
.image_hover_overlay_container .video_overlay_container {
  color: white;
  position: absolute;
  font-size: 20px;
  line-height: 20px;
  padding: 5px 10px;
  bottom: 0;
  left: 0;
  text-align: left;
}





/*===========================================================================================*/
/*============================== SEO AND OTHER PROJECT WRITEUP ==============================*/
/*===========================================================================================*/
.other_project_writeup {
  display: block;
  height: 0px;
  padding: 0px;
  margin: 0px;
  overflow: scroll;
  transition: max-height 0.5s ease-out;
  border: 0px;
}
.other_project_writeup p {
  padding: 0px;
  margin: 0px;
  display: block;
}
.other_project_writeup.open {
  max-height: 1000px;
}




#project_comparison td {
  min-width: 255px !important;
}
@media (min-width: 768px) {
  #project_comparison tr td:first-child {
    position:sticky;
    left:0px;
    background-color:#f2f2f2;
  }
}



