/* CSS Document */
/* UNIVERSAL SETTINGS */ :root {
  --code-color: darkred;
  --code-bg-color: #aaaaaa;
  --code-font-size: 14px;
  --code-line-height: 1.4;
  --scroll-bar-color: #c5c5c5;
  --scroll-bar-bg-color: #f6f6f6;
}
html, body {
  padding: 0;
  margin: 0;
}
html {
  overflow: hidden;
}
* {
  font-family: 'Montserrat', sans-serif;
  scrollbar-width: thin;
  scrollbar-color: var(--scroll-bar-color) var(--scroll-bar-bg-color);
}
/* SCROLLBAR FIXES */
/* Works on Chrome, Edge, and Safari */
*::-webkit-scrollbar {
  width: 12px;
  height: 12px;
}
*::-webkit-scrollbar-track {
  background: var(--scroll-bar-bg-color);
}
*::-webkit-scrollbar-thumb {
  background-color: var(--scroll-bar-color);
  border-radius: 20px;
  border: 3px solid var(--scroll-bar-bg-color);
}
::-moz-scrollbar-button, ::-webkit-scrollbar-button {
  width: 0px;
}
/* FORM STYLES */
ul {
  list-style: none;
  line-height: 140%;
  margin: 25px 0 0 0;
  padding: 0;
  transition: padding 1s;
}
label {
  display: inline-block;
  width: 130px;
  font-size: 13px;
  margin-top: 5px;
  transition: margin 1s, padding 1s;
}
#interests label, #howHearDiv label {
  display: block;
  position: relative;
  padding: 0 0 0 22px;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  width: 100%;
}
ul input[type="text"] {
  margin: 3px 0 0 22px;
  width: 70%;
}
#interests label input, #howHearDiv label input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}
.formFlex {
  display: block;
}
input {
  color: #ffffff;
  background-color: #000000;
  outline: none;
  display: inline-block;
  border: 1px solid #ffffff3f;
  font-family: "Montserrat", sans-serif;
  padding: 1px 4px;
}
button {
  background-color: transparent;
  outline: none;
  border: none;
  font-weight: 700;
  color: #ffffff;
  padding: 8px 0;
  margin: 5px 0 0 0;
  cursor: pointer;
  transition: color .3s;
  font-size: 16px;
}
button:hover {
  color: #aaaaaa;
}
#frmContact {
  margin-bottom: 20px;
  font-size: 14px;
}
.screen {
  width: 100%;
  height: 100%;
  background: #000000bb;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 101;
  text-align: right;
  padding: 150px 50px;
  color: #ffffffaa;
  transition: width 1s, left 1s, padding 1s, transform 1s, background 1s;
  box-sizing: border-box;
  font-size: 14px;
}
#inquire-panel a {
  text-decoration: none;
  color: #ffffffbb;
  transition: color .3s;
}
#inquire-panel a:hover {
  color: #ffffff;
}
#inquire-panel {
  transform: translateX(-100%);
  padding: 18px 30px;
  font-size: 12px;
  transition: transform 1s, padding 1s;
}
body.inquire #inquire-panel {
  transform: translateX(0%) !important;
}
.close {
  position: absolute;
  top: 21px;
  right: 25px;
  font-size: 20px;
  cursor: pointer;
  transition: color .3s;
}
.close:hover {
  color: #ffffff;
}
/* Create a custom checkbox */
.checkmark {
  position: absolute;
  top: 1px;
  left: 0;
  height: 15px;
  width: 15px;
  background-color: #000000;
  border: 1px solid #ffffff3f;
  transition: background-color .3s;
}
/* On mouse-over, add a grey background color */
#interests label:hover input ~ .checkmark, #howHearDiv label:hover input ~ .checkmark {
  background-color: #fff;
  transition: background-color .3s;
}
/* When the checkbox is checked, add a blue background */
#interests label input:checked ~ .checkmark, #howHearDiv label input:checked ~ .checkmark {
  background-color: #000000;
}
/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}
/* Show the checkmark when checked */
#interests label input:checked ~ .checkmark:after, #howHearDiv label input:checked ~ .checkmark:after {
  display: block;
}
/* Style the checkmark/indicator */
#interests label .checkmark:after, #howHearDiv label .checkmark:after {
  left: 3px;
  top: 0px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
#logo {
  right: 110px;
  width: 60%;
  max-width: 200px;
  transition: all 1s;
   position:absolute;
}
.cycle-slideshow {
  position: absolute;
  top: 0px;
  left: 0px;
  width: calc(100% - 385px);
  height: 100%;
  padding-bottom: 0px;
  box-sizing: border-box;
  pointer-events: none;
  z-index: 2;
}
.home .cycle-slideshow {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100vh;
  height: 100svh;
  padding-bottom: 0px;
  box-sizing: border-box;
  pointer-events: none;
  z-index: 2;
}
.slide-wrapper {
  position: relative;
  width: 100%;
  top: 0px;
  left: 0px;
  height: 100%;
  box-sizing: border-box;
  transition: height 1s;
}
.hideme {
  display: none;
}
.home #background::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: calc(100% - 259px);
  width: 100%;
  background: rgb(0, 0, 0);
  background: linear-gradient(0deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, .6) 100%);
  z-index: 999998;
  transition: background 1s;
}
header {
  background: #1f2a3a;
  height: 100vh;
  height: 100svh;
  width: 80%;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 10;
  max-width: 385px;
}
.home header {
  background: none;
}
footer {
  z-index: 100;
  position: fixed;
  bottom: 0;
  right: 0;
  width: 100%;
  max-width: 385px;
  text-align: center;
  height: 255px;
  box-sizing: border-box;
  padding: 0 49px 0 0;
  transition: height 1s;
}
footer .footerCredit {
  padding-top: 3px;
  display: block;
}
.phone {
  font-weight: 600;
  border-bottom: 1px solid #5d646e;
  padding: 10px 26px 13px 26px;
  margin: 0 auto 13px auto;
  display: block;
  max-width: 60%;
  font-size: 16px;
}
#content {
  letter-spacing: .3px;
}
@keyframes aboutAnimation {
  0% {
    right: -153px;
  }
  50% {
    right: -153px;
  }
  100% {
    right: 385px;
  }
}
.about #content {
  position: fixed;
  height: 100%;
  top: 0;
  right: 385px;
  background: #000000bb;
  z-index: 9;
  color: #fff;
  width: 539px;
  padding: 225px 138px;
  box-sizing: border-box;
  line-height: 190%;
  font-weight: 300;
  font-size: 16px;
  transition: right 1s;
  animation-name: aboutAnimation;
  animation-duration: 2s;
}
.contact #content, #projectList {
  z-index: 100;
  position: fixed;
  top: 280px;
  right: 47px;
  width: 100%;
  max-width: 338px;
  text-align: center;
  height: 289px;
  box-sizing: border-box;
  padding: 0;
  color: #fff;
  transition: top 1s;
}
.contact #content h1 {
  font-size: 18px;
  margin-bottom: 30px;
}
.contact #content p {
  font-size: 13px;
  line-height: 160%;
  font-weight: 300;
}
.contact #content p a, #projectList a, #projects a {
  color: #fff;
  text-decoration: none;
  margin-top: 15px;
  transition: all .3s;
}
#projectList a {
  display: block;
  margin: 14px auto;
  text-transform: uppercase;
}
#projectList a:hover, #projectList a:active, #projectList a.currentProject {
  color: #68a1ce;
}
.contact #content p a.button, .projects a.button {
  display: block;
  background: #28384a;
  padding: 4px 24px;
  font-size: 12px;
  width: fit-content;
  margin: 25px auto;
}
.projects h2 {
  font-size: 30px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .5px;
  margin: 0 auto 9px auto;
}
.projects main {
  position: absolute;
  top: 0;
  right: 0;
  width: calc(100% - 393px);
  max-width: 1097px;
  text-align: center;
  padding: 0;
  margin: 0 385px 3.5vh 0;
  margin: 0 385px 3.5svh 0;
  height: 100vh;
  height: 100svh;
  overflow-y: scroll;
  box-sizing: border-box;
  scroll-behavior: smooth;
  scrollbar-width: thin;
  padding: 7.5vh 7.5vh 0 7.5vh;
}
.projects main .project {
  position: relative;
  margin: 0 0 4vh 0;
  scroll-behavior: smooth;
  background: #f4f4f4;
  aspect-ratio: 16/9;
  cursor: pointer;
}
.projects main .project .projectAnchor {
  position: absolute;
  top: -15vh;
  top: -15svh;
  scroll-behavior: smooth;
}
.projects main .project img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.projects main .project .projectInfo {
  opacity: 1;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  background: #00000099;
  color: #fff;
  max-width: 400px;
  padding: 50px;
  transition: all .8s;
  font-size: 17px;
  letter-spacing: .3px;
  width: 30%;
  min-width: 242px;
}
.projects main .project:hover .projectInfo, .projects main .project.active .projectInfo {
  opacity: 1;
}
.projects main .project a.button {
  text-decoration: none;
  color: #fff;
  font-size: 13px;
  padding: 7px 14px;
  line-height: 1;
  background: #455c6dbb;
  transition: all .3s;
  margin: 17px auto 0 auto;
}
.projects main .project .projectInfo:hover a.button {
  background: #5d819b;
}
/* INDIVIDUAL PROJECT */
.project main {
  text-align: left;
  width: calc(100% - 393px);
  max-width: 1097px;
  margin: 0 385px 3.5vh 0;
  margin: 0 385px 3.5svh 0;
  position: relative;
  color: #8e8e8e;
  font-size: 14px;
  line-height: 1.6;
}
.project main h1 {
  color: #1f2a3a;
  text-transform: uppercase;
  font-size: 19px;
  font-weight: 600;
  margin: 0;
}
.project main a.button {
  background: #c7c7c7;
  display: inline-block;
  text-decoration: none;
  color: #fff;
  font-size: 13px;
  padding: 7px 14px;
  line-height: 1;
  margin-left: 14px;
  transition: background .3s;
}
#buttons {
  position: absolute;
  top: 5vh;
  right: 7.5vh;
}
.project main a.button.active, .project main a.button:hover {
  background: #7891a4;
}
#project-details {
  position: fixed;
  background: #fff;
  z-index: 1;
  width: calc(100% - 401px);
  max-width: 1089px;
  right: 0;
  padding: 3vh 7.5vh;
  top: 0;
  margin: 0 395px 3.5vh 0;
  margin: 0 395px 0;
  box-sizing: border-box;
}
#project-galleries {
  overflow-y: scroll;
  height: 100vh;
  height: 100svh;
  position: fixed;
  top: 0;
  right: 0;
  padding: 19vh 7.5vh 7.5vh 7.5vh;
  box-sizing: border-box;
  width: calc(100% - 393px);
  max-width: 1097px;
  margin: 0 385px 3.5vh 0;
  margin: 0 385px 3.5svh 0;
  z-index: 0;
}
.project-gallery {
  display: none;
  grid-template-columns: 1fr 1fr 1fr;
  grid-gap: 44px;
}
.project-gallery.active {
  display: grid;
}
.home footer, nav {
  position: fixed;
  transform: rotate(270deg);
  transform-origin: bottom left;
  bottom: 0;
  left: 100%;
  right: auto;
  max-width: auto;
  text-align: left;
  box-sizing: border-box;
  white-space: nowrap;
  letter-spacing: 0.5px;
  max-height: 44px;
  width: 100vh;
  width: 100svh;
  padding: 11px 22px;
  color: #ffffffbb;
  font-size: 10px;
  height: 49px;
}
.home footer {
  z-index: 100;
  width: auto;
  font-size: 12px;
}
nav {
  z-index: 999;
  background: #000000aa;
  text-align: right;
}
footer a, nav a {
  color: #fff;
  transition: color .3s;
  text-decoration: none;
}
footer a:hover, nav a:hover {
  color: #ffffff88;
}
nav {
  float: right;
  font-size: 13px;
}
nav a {
  font-weight: 600;
  font-size: 13.5px;
}
nav a.currentPage {
  color: #68a1ce;
}
nav a::after {
  content: "|";
  margin: 0px 10px;
  color: #fff !important;
}
nav a:last-child::after {
  content: "";
  padding: 0
}
.home #address, .home .credits {
  color: #ffffffbb;
  font-weight: 300;
  letter-spacing: .5px;
}
.home #address a.credit {
  color: #ffffffbb;
}
#address {
  color: #fff;
  font-size: 14px;
}
.home #address, .home #copyright {
  font-size: 11.5px;
}
#copyright {
  font-size: 11px;
  color: #ffffff;
}
#copyright a {
  color: #ffffff;
  text-decoration: none;
  font-weight: 300;
  letter-spacing: .7px;
  font-family: 'Montserrat', sans-serif;
}
#address a {
  color: #ffffff;
  transition: color .3s;
  text-decoration: none;
}
#address a:hover {
  color: #ffffffbb;
}
.insta {
  display: block;
  width: 25px;
  height: 25px;
  opacity: .7;
  transition: opacity .3s;
  margin: 0 auto 17px;
}
.insta:hover {
  opacity: 1;
}
.insta img {
  width: 25px;
  height: 25px;
}
/* ABOVE MOBILE SIZE */
@media screen and (min-width:651px) {
  #inquire-panel {
    padding: 50px 25px 50px 75px;
  }
  .screen {}
  #logo {
    right: 110px;
    position: absolute;
    top: 0;
    z-index: 99;
  }
  .slide-wrapper {
    height: 100vh;
    height: 100svh;
  }
  #background::after {
    height: 100%;
  }
  .home footer, nav {
    padding: 12px 60px 10px 60px;
    font-size: 10px;
  }
  #background::after {
    background: linear-gradient(0deg, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, .6) 100%);
  }
}
/* SHORT VERTICAL LAYOUTS */
@media screen and (min-height:880px) {
  .hideme {
    display: inline;
  }
}
@media screen and (min-width:985px) {
  .screen {
    max-width: 600px;
  }
  .project-gallery {
    grid-template-columns: 1fr 1fr 1fr;
    grid-gap: 44px;
  }
}
@media screen and (max-height:800px) {
  footer {
    height: 219px;
  }
  .contact #content, #projectList {
    top: 250px;
  }
  .about #content {
    padding: 138px;
  }
}
@media screen and (max-width:984px), screen and (max-height:710px) {
  body {
    position: relative;
  }
  html {
    overflow: auto;
  }
  body.about, body.contact {
    background-color: #1f2a3a;
  }
  body:not(.home) {
    font-family: system-ui;
    text-align: center;
    display: block !important;
    height: auto !important;
    overflow-x: visible !important;
  }
  body:not(.home) #background {
    height: calc(100% - 507px);
    top: 273px;
    width: 100%;
  }
  body:not(.home) main {
    position: relative;
  }
  body:not(.home) header, body:not(.home) footer {
    background: #1f2a3a;
    display: block;
    position: relative;
    width: 100%;
    top: auto;
    left: auto;
    right: auto;
    bottom: auto;
    max-width: 100%;
    height: auto;
    transform: none;
    float: none;
  }
  body:not(.home) footer {
    padding: 30px;
  }
  body:not(.home) nav {
    position: relative;
    transform: none;
    width: 100%;
    text-align: center;
    float: none;
    top: auto;
    left: auto;
    right: auto;
    bottom: auto;
    margin: 20px 0 0 0;
  }
   nav a:last-child::after {
    content: "";
    padding: 0;
      margin:0;
}
  body:not(.home) #logo {
    position: relative;
    right: auto;
    transform: none;
  }
  .contact #content {
    min-height: calc(100vh - 507px);
    min-height: calc(100svh - 507px);
    display: flex;
    justify-content: center;
    align-content: center
  }
  .contact #content, #projectList {
    background: #00000099;
    z-index: 100;
    position: relative;
    top: auto;
    right: auto;
    width: 100%;
    max-width: inherit;
    text-align: center;
    height: auto;
    box-sizing: border-box;
    padding: 90px;
    color: #fff;
  }
   body.projects #projectList{display: none;}
  .about #content {
    position: relative;
    height: auto;
    top: auto;
    right: auto;
    background: #00000099;
    z-index: 9;
    color: #fff;
    width: 100%;
    padding: 120px 90px;
    box-sizing: border-box;
    line-height: 190%;
    font-weight: 300;
    font-size: 16px;
    transition: padding 1s;
    animation-name: none;
    min-height: calc(100vh - 507px);
    min-height: calc(100svh - 507px);
  }
  .about #content p {
    max-width: 550px;
    margin: auto;
  }
  body.projects main, body.project main {
    position: relative;
    width: 100%;
    text-align: center;
    padding: 2vh;
    margin: 0;
    height: auto;
    box-sizing: border-box;
    overflow: visible;
    max-width: 100%;
    max-width: 1000px;
    margin: 0 auto 3.5vh auto;
  }
  body.projects .project {
    transform: none !important;
  }
  .projects main .project .projectInfo {
    opacity: 1 !important;
  }
  #project-details {
    position: relative;
    background: #fff;
    z-index: 1;
    width: 100%;
    padding: 0;
    margin: 0;
    text-align: left;
    box-sizing: border-box;
  }
  #buttons {
    position: absolute;
    top: 0;
    right: 0;
  }
  #project-galleries {
    overflow-y: scroll;
    height: auto;
    position: relative;
    top: auto;
    left: auto;
    padding: 5vh 0;
    box-sizing: border-box;
    margin: 0;
    z-index: 0;
    width: 100%;
    max-width: 100%;
    overflow: visible;
  }
  .project-gallery {
    grid-template-columns: 1fr 1fr 1fr;
    grid-gap: 2vh;
  }
}
@media screen and (max-width:650px) {
  body.projects .project {
    transform: none !important;
    aspect-ratio: 12/9 !important;
    height: auto;
    position: relative;
    margin: 0 0 2vh 0;
  }
  .projects main .project .projectInfo {
    background: #00000066;
    width: 100% !important;
    min-width: 100% !important;
    max-width: 100% !important;
    aspect-ratio: 12/9 !important;
    box-sizing: border-box;
    height: 100% !important;
    padding: 30px;
  }
  .projects h2 {
    font-size: 18px;
  }
  #project-details {
    position: relative;
    background: #fff;
    z-index: 1;
    width: 100%;
    padding: 0;
    margin: 0;
    text-align: left;
    box-sizing: border-box;
     text-align:center;
  }
  .centerMe {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  #buttons {
    position: absolute;
    top: 0;
    right: 0;
  }
  #project-galleries {
    overflow-y: auto;
    height: auto;
    position: relative;
    top: auto;
    left: auto;
    padding: 0;
    box-sizing: border-box;
    margin-right: 0;
    z-index: 0;
     margin-bottom:36px;
  }
  .project-gallery {
    grid-template-columns: 1fr 1fr;
    grid-gap: 2vh;
  }
}
@media screen and (max-width:540px){
   #buttons{position:relative;margin:20px 0;}
   .project main #buttons a.button{margin-left:0;} 
   .cboxPhoto {
    max-width: 100% !important;
}
}

