/*colours*/
/*fonts*/
@font-face {
  font-family: 'montserrat';
  src: url('fonts/Montserrat-VariableFont_wght.ttf');
}
@font-face {
  font-family: 'lora';
  src: url('fonts/Lora-VariableFont_wght.ttf');
}
.para {
  font-size: 12px;
  font-size: clamp(12px, 1vw, 16px);
}
.h-one {
  font-size: 20px;
  font-size: clamp(20px, 1.5vw, 28px);
}
.xlarge {
  font-size: 40px;
  font-size: clamp(40px, 2vw, 56px);
}
.small {
  font-size: 10px;
  font-size: clamp(10px, 0.6vw, 12px);
}
/* Variables */
html {
  scroll-snap-type: y mandatory;
  scroll-behavior: smooth;
}
/* Styles */
body {
  font-family: "lora";
  margin: 0;
  overflow-x: hidden;
  color: white;
}
body::-webkit-scrollbar {
  display: none;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "montserrat";
  text-transform: uppercase;
  font-weight: 500;
}
h1 {
  font-size: 20px;
  font-size: clamp(20px, 1.5vw, 28px);
}
p,
ul {
  font-family: "lora";
  list-style: none;
  font-weight: 500;
  line-height: 200%;
  font-size: 12px;
  font-size: clamp(12px, 1vw, 16px);
}
p span.standout,
ul span.standout {
  color: #bdb655;
  font-size: x-large;
}
p + p,
ul + p,
p + ul,
ul + ul,
p + button,
ul + button {
  margin-top: max(4vh, 30px);
}
img {
  display: block;
}
button {
  border: none;
  text-transform: uppercase;
}
button a {
  text-decoration: none;
  font-family: "montserrat";
}
button.goTo {
  outline: 2px solid white;
  outline-offset: 2px;
  cursor: pointer;
  padding: 0.5rem 3rem 0.5rem 0.5rem;
  background: url("assets/arrow-right.svg") 95% 50% / 1.5rem no-repeat #bdb655;
  font-weight: 500;
  transform: translate(4px);
  font-size: 12px;
  font-size: clamp(12px, 1vw, 16px);
}
button.goTo a {
  color: #131826;
}
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #131826;
  border-bottom: 1px solid white;
  z-index: 1000;
  /* Ensure header is above other content */
  display: flex;
}
header nav {
  height: calc(max(4vh, 30px)*2);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 max(4vh, 30px);
}
header nav .menu-toggle {
  display: none;
  cursor: pointer;
}
header nav .menu-toggle .hamburger {
  width: max(4vh, 30px);
  height: 3px;
  background-color: white;
  position: relative;
}
header nav .menu-toggle .hamburger::before,
header nav .menu-toggle .hamburger::after {
  content: '';
  position: absolute;
  width: max(4vh, 30px);
  height: 3px;
  background-color: white;
}
header nav .menu-toggle .hamburger::before {
  top: -10px;
}
header nav .menu-toggle .hamburger::after {
  bottom: -10px;
}
header nav .menu {
  list-style: none;
  display: flex;
  margin: 0;
  padding: 0;
  font-family: "montserrat";
  text-transform: uppercase;
}
header nav .menu li {
  margin-right: 20px;
}
header nav .menu li button.back {
  background: url("assets/arrow-left.svg") left center / 1.5rem no-repeat transparent;
  text-transform: uppercase;
  color: white;
  text-indent: 3rem;
  cursor: pointer;
  padding: 0;
  height: 100%;
}
header nav .menu li a {
  text-decoration: none;
  color: white;
}
header nav .menu li.selected a {
  color: #bdb655;
}
header nav .menu li.selected a::before {
  content: "//";
  padding-right: 1rem;
}
header a.home {
  margin: auto max(4vh, 30px) auto auto;
  align-self: flex-end;
}
header a.home img {
  height: calc(max(4vh, 30px)/2);
}
main {
  background: #131826;
  width: 100vw;
}
#scrollButton {
  width: max(4vh, 30px);
  height: max(4vh, 30px);
  position: fixed;
  bottom: max(4vh, 30px);
  left: 50%;
  transform: translateX(-50%);
  border-radius: 100%;
  background: url("assets/arrow-down.svg") center / 50% no-repeat #bdb655;
  outline: 2px solid white;
  outline-offset: 2px;
}
#scrollButton.end {
  background: url("assets/arrow-up.svg") center / 50% no-repeat #bdb655;
}
#scrollButton:hover {
  background-color: #F2E2C4;
  transition: background-color 0.3s ease-in;
  cursor: pointer;
}
section {
  scroll-snap-align: start;
  overflow-x: hidden;
  min-height: 100vh;
  height: auto;
  width: 100vw;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #131826;
  padding: calc(max(4vh, 30px)*2) max(4vh, 30px) max(4vh, 30px) max(4vh, 30px);
  box-sizing: border-box;
}
section#introduction,
section#project {
  gap: calc(max(4vh, 30px)*2);
}
section#introduction div,
section#project div {
  flex: 1;
}
section#introduction div h1,
section#project div h1 {
  font-size: 40px;
  font-size: clamp(40px, 2vw, 56px);
  color: white;
}
section#introduction div p,
section#project div p,
section#introduction div ul,
section#project div ul {
  color: white;
}
section#introduction div img.profile,
section#project div img.profile {
  width: 10em;
  height: auto;
  max-width: 50%;
  border-radius: 100%;
  object-fit: cover;
  outline: 2px solid white;
  outline-offset: 2px;
}
section#introduction div.content,
section#project div.content {
  flex: 2;
}
section#introduction div.content .textbox,
section#project div.content .textbox {
  width: 80%;
  margin: auto;
}
section#introduction div.content .textbox + .textbox,
section#project div.content .textbox + .textbox {
  margin-top: calc(max(4vh, 30px)*2);
}
section#introduction div.content .textbox ul.responsibilities,
section#project div.content .textbox ul.responsibilities,
section#introduction div.content .textbox ul.softwares,
section#project div.content .textbox ul.softwares,
section#introduction div.content .textbox ul.languages,
section#project div.content .textbox ul.languages {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  row-gap: 1.5rem;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 0;
  line-height: 100%;
}
section#introduction div.content .textbox ul.responsibilities li,
section#project div.content .textbox ul.responsibilities li,
section#introduction div.content .textbox ul.softwares li,
section#project div.content .textbox ul.softwares li,
section#introduction div.content .textbox ul.languages li,
section#project div.content .textbox ul.languages li {
  width: 50%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  box-sizing: border-box;
}
section#introduction div.content .textbox ul.responsibilities li:nth-child(odd),
section#project div.content .textbox ul.responsibilities li:nth-child(odd),
section#introduction div.content .textbox ul.softwares li:nth-child(odd),
section#project div.content .textbox ul.softwares li:nth-child(odd),
section#introduction div.content .textbox ul.languages li:nth-child(odd),
section#project div.content .textbox ul.languages li:nth-child(odd) {
  padding-right: 1rem;
}
section#introduction div.content .textbox ul.responsibilities li::before,
section#project div.content .textbox ul.responsibilities li::before,
section#introduction div.content .textbox ul.softwares li::before,
section#project div.content .textbox ul.softwares li::before,
section#introduction div.content .textbox ul.languages li::before,
section#project div.content .textbox ul.languages li::before {
  content: "";
  display: inline-block;
  margin-right: 1.5rem;
  background-repeat: no-repeat;
  background-size: 1.5rem 1.3rem;
  background-position: center;
  background-color: #F2C894;
  border-radius: 100%;
  width: 2.5rem;
  height: 2.5rem;
  outline: 2px solid white;
  outline-offset: 2px;
}
section#introduction div.content .textbox ul.responsibilities li.bulb::before,
section#project div.content .textbox ul.responsibilities li.bulb::before,
section#introduction div.content .textbox ul.softwares li.bulb::before,
section#project div.content .textbox ul.softwares li.bulb::before,
section#introduction div.content .textbox ul.languages li.bulb::before,
section#project div.content .textbox ul.languages li.bulb::before {
  background-image: url("assets/lightbulb.svg");
}
section#introduction div.content .textbox ul.responsibilities li.handshake::before,
section#project div.content .textbox ul.responsibilities li.handshake::before,
section#introduction div.content .textbox ul.softwares li.handshake::before,
section#project div.content .textbox ul.softwares li.handshake::before,
section#introduction div.content .textbox ul.languages li.handshake::before,
section#project div.content .textbox ul.languages li.handshake::before {
  background-image: url("assets/handshake.svg");
}
section#introduction div.content .textbox ul.responsibilities li.team::before,
section#project div.content .textbox ul.responsibilities li.team::before,
section#introduction div.content .textbox ul.softwares li.team::before,
section#project div.content .textbox ul.softwares li.team::before,
section#introduction div.content .textbox ul.languages li.team::before,
section#project div.content .textbox ul.languages li.team::before {
  background-image: url("assets/people-group.svg");
}
section#introduction div.content .textbox ul.responsibilities li.design::before,
section#project div.content .textbox ul.responsibilities li.design::before,
section#introduction div.content .textbox ul.softwares li.design::before,
section#project div.content .textbox ul.softwares li.design::before,
section#introduction div.content .textbox ul.languages li.design::before,
section#project div.content .textbox ul.languages li.design::before {
  background-image: url("assets/pencil.svg");
}
section#introduction div.content .textbox ul.responsibilities li.code::before,
section#project div.content .textbox ul.responsibilities li.code::before,
section#introduction div.content .textbox ul.softwares li.code::before,
section#project div.content .textbox ul.softwares li.code::before,
section#introduction div.content .textbox ul.languages li.code::before,
section#project div.content .textbox ul.languages li.code::before {
  background-image: url("assets/code.svg");
}
section#introduction div.content .textbox ul.responsibilities li.software::before,
section#project div.content .textbox ul.responsibilities li.software::before,
section#introduction div.content .textbox ul.softwares li.software::before,
section#project div.content .textbox ul.softwares li.software::before,
section#introduction div.content .textbox ul.languages li.software::before,
section#project div.content .textbox ul.languages li.software::before {
  background-image: url("assets/window.svg");
}
section#introduction div.content .textbox ul.responsibilities li.comment::before,
section#project div.content .textbox ul.responsibilities li.comment::before,
section#introduction div.content .textbox ul.softwares li.comment::before,
section#project div.content .textbox ul.softwares li.comment::before,
section#introduction div.content .textbox ul.languages li.comment::before,
section#project div.content .textbox ul.languages li.comment::before {
  background-image: url("assets/message-question.svg");
}
section#introduction div.content .textbox ul.responsibilities li.sitemap::before,
section#project div.content .textbox ul.responsibilities li.sitemap::before,
section#introduction div.content .textbox ul.softwares li.sitemap::before,
section#project div.content .textbox ul.softwares li.sitemap::before,
section#introduction div.content .textbox ul.languages li.sitemap::before,
section#project div.content .textbox ul.languages li.sitemap::before {
  background-image: url("assets/sitemap.svg");
}
section#introduction div.content .textbox ul.responsibilities li.map::before,
section#project div.content .textbox ul.responsibilities li.map::before,
section#introduction div.content .textbox ul.softwares li.map::before,
section#project div.content .textbox ul.softwares li.map::before,
section#introduction div.content .textbox ul.languages li.map::before,
section#project div.content .textbox ul.languages li.map::before {
  background-image: url("assets/map.svg");
}
section#introduction div.content .textbox ul.responsibilities li.inspect::before,
section#project div.content .textbox ul.responsibilities li.inspect::before,
section#introduction div.content .textbox ul.softwares li.inspect::before,
section#project div.content .textbox ul.softwares li.inspect::before,
section#introduction div.content .textbox ul.languages li.inspect::before,
section#project div.content .textbox ul.languages li.inspect::before {
  background-image: url("assets/magnifying-glass.svg");
}
section#introduction div.content .textbox ul.responsibilities li.pretzel::before,
section#project div.content .textbox ul.responsibilities li.pretzel::before,
section#introduction div.content .textbox ul.softwares li.pretzel::before,
section#project div.content .textbox ul.softwares li.pretzel::before,
section#introduction div.content .textbox ul.languages li.pretzel::before,
section#project div.content .textbox ul.languages li.pretzel::before {
  background-image: url("assets/pretzel.svg");
}
section#introduction div.content .textbox ul.responsibilities li.tea::before,
section#project div.content .textbox ul.responsibilities li.tea::before,
section#introduction div.content .textbox ul.softwares li.tea::before,
section#project div.content .textbox ul.softwares li.tea::before,
section#introduction div.content .textbox ul.languages li.tea::before,
section#project div.content .textbox ul.languages li.tea::before {
  background-image: url("assets/mug-tea.svg");
}
section#introduction div.content .textbox ul.responsibilities li.bowl::before,
section#project div.content .textbox ul.responsibilities li.bowl::before,
section#introduction div.content .textbox ul.softwares li.bowl::before,
section#project div.content .textbox ul.softwares li.bowl::before,
section#introduction div.content .textbox ul.languages li.bowl::before,
section#project div.content .textbox ul.languages li.bowl::before {
  background-image: url("assets/bowl-chopsticks-noodles.svg");
}
section#introduction div.content .textbox ul.responsibilities li.language::before,
section#project div.content .textbox ul.responsibilities li.language::before,
section#introduction div.content .textbox ul.softwares li.language::before,
section#project div.content .textbox ul.softwares li.language::before,
section#introduction div.content .textbox ul.languages li.language::before,
section#project div.content .textbox ul.languages li.language::before {
  background-image: url("assets/language.svg");
}
section#introduction div.stats,
section#project div.stats {
  display: grid;
  grid-gap: 2em;
  border-left: 1.5px solid white;
  padding: calc(max(4vh, 30px)*2);
  transform: skew(-10deg);
}
section#introduction div.stats > *,
section#project div.stats > * {
  transform: skew(10deg);
}
section#introduction div.stats div,
section#project div.stats div {
  display: flex;
  flex-wrap: nowrap;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  height: 1.5rem;
}
section#introduction div.stats div h4,
section#project div.stats div h4 {
  width: 10rem;
}
section#introduction div.stats div .scale,
section#project div.stats div .scale {
  outline: 2px solid white;
  outline-offset: 2px;
  transform: skew(-10deg);
}
section#introduction div.stats div .scale.ten,
section#project div.stats div .scale.ten {
  background: linear-gradient(to right, #bdb655 0%, #bdb655 100%, transparent 100%, transparent 100%);
}
section#introduction div.stats div .scale.nine,
section#project div.stats div .scale.nine {
  background: linear-gradient(to right, #bdb655 0%, #bdb655 90%, transparent 90%, transparent 100%);
}
section#introduction div.stats div .scale.seven,
section#project div.stats div .scale.seven {
  background: linear-gradient(to right, #bdb655 0%, #bdb655 70%, transparent 70%, transparent 100%);
}
section#introduction div.stats div .scale.five,
section#project div.stats div .scale.five {
  background: linear-gradient(to right, #bdb655 0%, #bdb655 50%, transparent 50%, transparent 100%);
}
section#project {
  scroll-snap-align: none;
  height: auto;
  overflow-y: auto;
  min-height: 100vh;
  align-items: flex-start;
}
section#project .imagewrapper {
  padding: max(4vh, 30px) 0;
  display: flex;
  flex-wrap: wrap;
  flex-flow: column;
  align-items: flex-start;
  justify-content: flex-start;
}
section#project .imagewrapper .images {
  width: 100%;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 1rem;
}
section#project .imagewrapper .images img {
  width: calc(50% - 1rem/2);
  object-fit: contain;
}
section#project .imagewrapper .images img.portrait {
  max-height: 40vh;
  width: auto;
}
section#project .imagewrapper .images img:hover {
  cursor: pointer;
}
section#project .imagewrapper .images + h3 {
  margin-top: max(4vh, 30px);
}
section#project .imagewrapper h3 {
  margin-top: 0;
  background: #F2C894;
  padding: 0.5rem;
  box-sizing: border-box;
  color: #131826;
  outline: 2px solid white;
  outline-offset: 2px;
  transform: translateX(4px);
}
section#project .imagewrapper.fullscreen {
  position: absolute;
  top: 0;
  left: 0;
  background: #131826;
  width: 100vw;
  z-index: 99999;
  box-sizing: border-box;
  padding: calc(max(4vh, 30px)*3) max(4vh, 30px);
  display: flex;
  justify-content: center;
  align-items: flex-start;
}
section#project .imagewrapper.fullscreen .images img.portrait {
  max-height: unset;
}
section#project .imagewrapper.fullscreen button#nofullscreen {
  width: 100vw;
  height: calc(max(4vh, 30px)*2);
  background: url("assets/arrow-left.svg") max(4vh, 30px) center / 1.5rem no-repeat #131826;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  position: fixed;
  border-bottom: 1px solid white;
  top: 0;
  left: 0;
  padding: 0;
  color: white;
  text-transform: uppercase;
  padding: 0 max(4vh, 30px);
  text-indent: 3rem;
}
section#project .imagewrapper button#nofullscreen {
  display: none;
}
section#project div.content {
  flex: 1;
}
section#portfolio {
  padding: calc(max(4vh, 30px)*2) 0 0 0;
  flex-direction: column;
}
section#portfolio .content {
  overflow: hidden;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: row;
}
section#portfolio .content .project {
  transform: skew(-10deg);
  height: calc(100vh - max(4vh, 30px)*2);
  flex: 0;
  transition: flex 1.5s ease-in-out;
  overflow: hidden;
}
section#portfolio .content .project img {
  height: 100%;
  filter: brightness(0.5);
}
section#portfolio .content .project img:hover {
  filter: brightness(1);
  transition: filter 0.3s ease-in;
}
section#portfolio .content .project a {
  position: absolute;
  top: max(4vh, 30px);
  left: -1rem;
  background-color: #bdb655;
  width: 80%;
  height: max(4vh, 30px);
  transform: skew(0deg);
  outline: 2px solid white;
  outline-offset: 2px;
}
section#portfolio .content .project a:hover {
  background-color: #F2E2C4;
  transition: background-color 0.3s ease-in;
}
section#portfolio .content .project a button {
  text-transform: uppercase;
  border: none;
  width: 100%;
  height: 100%;
  text-align: right;
  padding: 0 4rem 0 0;
  background: url("assets/arrow-right.svg") 95% 50% / 1.5rem no-repeat transparent;
  transform: skew(10deg);
  color: #131826;
  cursor: pointer;
}
section#portfolio .content .project > * {
  transform: skew(10deg);
  height: 100%;
}
section#portfolio .content .project:not(:last-of-type) {
  border-right: 5px solid #131826;
}
section#portfolio .content .project::after {
  content: "";
  position: absolute;
  bottom: calc(max(4vh, 30px)*3);
  left: 50%;
  width: 50%;
  height: 8rem;
  transform: translateX(-50%) skew(10deg);
  filter: brightness(100);
}
section#portfolio .content .project:first-of-type::after {
  left: 60%;
}
section#portfolio .content .project.sqp img {
  transform: translateX(-50%);
}
section#portfolio .content .project.sqp::after {
  background: url("assets/sqp/logo.svg") center / contain no-repeat;
}
section#portfolio .content .project.oval img {
  transform: translateX(-35%);
}
section#portfolio .content .project.oval::after {
  background: url("assets/oval/logo.svg") 0% / contain no-repeat;
}
section#portfolio .content .project.bow img {
  transform: translateX(-20%);
}
section#portfolio .content .project.bow::after {
  background: url("assets/bow/logo.svg") 40% / contain no-repeat;
}
section#portfolio .content .project.wallacea img {
  transform: translateX(-55%);
}
section#portfolio .content .project.wallacea::after {
  background: url("assets/wallacea/logo.svg") 30% / contain no-repeat;
}
section#portfolio .content .project.artisi img {
  transform: translateX(-70%);
}
section#portfolio .content .project.artisi::after {
  background: url("assets/artisi/logo.svg") 40% / contain no-repeat;
}
section#portfolio .content .project.diriyah img {
  transform: translateX(-20%);
}
section#portfolio .content .project.diriyah::after {
  background: url("assets/diriyah/logo.svg") 40% / contain no-repeat;
}
section#portfolio .content .project.thebroadley img {
  transform: translateX(-50%);
}
section#portfolio .content .project.thebroadley::after {
  background: url("assets/thebroadley/logo.svg") 40% / contain no-repeat;
}
section#portfolio .content .project.primepoint img {
  transform: translateX(-70%);
}
section#portfolio .content .project.primepoint::after {
  background: url("assets/primepoint/logo.svg") 40% / contain no-repeat;
}
section#portfolio .content .project.hillgroup img {
  transform: translateX(-50%);
}
section#portfolio .content .project.hillgroup::after {
  background: url("assets/hillgroup/logo.svg") 40% / contain no-repeat;
}
section#portfolio .content .project.fiftyfenchurch img {
  transform: translateX(-20%);
}
section#portfolio .content .project.fiftyfenchurch::after {
  background: url("assets/fiftyfenchurch/logo.svg") 40% / contain no-repeat;
}
section#contact ul li {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  height: 3rem;
  line-height: 3rem;
}
section#contact ul li img {
  width: 1.5rem;
  height: 1.5rem;
  margin-right: 1rem;
  object-fit: contain;
}
section#contact ul li a {
  padding-left: 0.5rem;
  color: #bdb655;
  text-transform: uppercase;
  font-family: "montserrat";
}
section.visible#portfolio .content .project {
  flex: 1;
}
/* Media Queries */
@media only screen and (orientation: landscape) and (-webkit-min-device-pixel-ratio: 1) and (min-device-width: 820px) and (max-device-width: 1180px) {
  main {
    padding-top: calc(max(4vh, 30px)*2);
  }
  section#introduction {
    flex-direction: column;
    height: auto;
  }
  section#introduction div.stats {
    height: calc(100vh - max(4vh, 30px)*2);
    transform: none;
    padding: 0;
    border: none;
    width: 80%;
  }
  section#introduction div.stats > * {
    transform: none;
  }
  section#project {
    flex-direction: column;
  }
  section#project div.content .textbox {
    width: 100%;
  }
  section#project div.content .textbox ul.responsibilities li,
  section#project div.content .textbox ul.softwares li {
    width: 33.33%;
  }
  section#project .content {
    width: 80%;
    margin: auto;
  }
  section#project .imagewrapper {
    width: 80%;
    margin: auto;
  }
  section#project .imagewrapper img.portrait {
    width: auto;
  }
}
/* iPad Mini in landscape only */
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: landscape) {
  main {
    padding-top: calc(max(4vh, 30px)*2);
  }
  section#introduction {
    padding-top: max(4vh, 30px);
    flex-direction: column;
    height: auto;
  }
  section#introduction div.stats {
    height: calc(100vh - max(4vh, 30px)*2);
    transform: none;
    padding: 0;
    border: none;
    width: 80%;
  }
  section#introduction div.stats > * {
    transform: none;
  }
  section#project {
    flex-direction: column;
  }
  section#project div.content .textbox ul.responsibilities li,
  section#project div.content .textbox ul.softwares li {
    width: 33.33%;
  }
  section#project .imagewrapper {
    width: 80%;
    margin: auto;
  }
  section#project .imagewrapper img.portrait {
    width: auto;
  }
}
/*all portrait AND landscape mobile only*/
@media only screen and (orientation: portrait), only screen and (max-width: 932px) and (orientation: landscape) {
  p span.standout {
    font-size: medium;
  }
  header nav .menu {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #131826;
    width: 100vw;
    position: absolute;
    top: calc(max(4vh, 30px)*2);
    left: 0;
    padding: max(4vh, 30px);
    box-sizing: border-box;
    gap: 2rem;
    height: calc(100vh - max(4vh, 30px)*2);
  }
  header nav .menu.back {
    display: initial;
    position: absolute;
    top: 0;
    height: calc(max(4vh, 30px)*2);
    display: flex;
    align-items: flex-start;
    width: auto;
  }
  header nav .menu.active {
    display: flex;
  }
  header nav .menu-toggle {
    display: block;
  }
  main {
    padding-top: calc(max(4vh, 30px)*2);
  }
  section {
    padding: max(4vh, 30px);
  }
  section#introduction {
    height: auto;
    flex-direction: column;
  }
  section#introduction div.content {
    width: 100%;
    flex: auto;
    height: auto;
  }
  section#introduction div.content .textbox {
    width: 100%;
  }
  section#introduction div.content .textbox ul.languages {
    flex-direction: column;
  }
  section#introduction div.content .textbox ul.languages li {
    width: 100%;
  }
  section#introduction div.stats {
    height: calc(100vh - max(4vh, 30px)*2);
    transform: none;
    padding: 0;
    border: none;
    width: calc(100vw - max(4vh, 30px)*2);
  }
  section#introduction div.stats > * {
    transform: none;
  }
  section#portfolio .content {
    flex-direction: column;
  }
  section#portfolio .content .project {
    transform: none;
    border: none !important;
    display: flex;
    flex-direction: column-reverse;
  }
  section#portfolio .content .project.sqp div {
    background-image: url("assets/sqp/logo.svg"), url("assets/sqp/vb2371517_LOUNGE_CAMPAIGN_263_8256x5504.jpg");
  }
  section#portfolio .content .project.oval div {
    background-image: url("assets/oval/logo.svg"), url("assets/oval/3787_2615_240301B_xfer.jpg");
  }
  section#portfolio .content .project.bow div {
    background-image: url("assets/bow/logo.svg"), url("assets/bow/4946_2001_240228_xfer.jpg");
  }
  section#portfolio .content .project.wallacea div {
    background-image: url("assets/wallacea/logo.svg"), url("assets/wallacea/GettyImages-561094457 copy.jpg");
  }
  section#portfolio .content .project.artisi div {
    background-image: url("assets/artisi/logo.svg"), url("assets/artisi/4901_1410_220831_xfer.jpg");
  }
  section#portfolio .content .project div {
    background-position: 1rem center, center;
    background-repeat: no-repeat;
    background-size: 30% 50%, cover;
  }
  section#portfolio .content .project div img {
    display: none;
  }
  section#portfolio .content .project a {
    position: initial;
    width: 100%;
  }
  section#portfolio .content .project a button {
    transform: none;
  }
  section#portfolio .content .project::after {
    display: none;
  }
  section#portfolio .content .project img {
    width: 100%;
    transform: none !important;
    object-fit: cover;
  }
  section#portfolio .content .project > * {
    transform: none;
  }
  section#project {
    flex-direction: column;
  }
  section#project div.content .textbox {
    width: 100%;
  }
  section#project div.content .textbox h1 {
    margin-top: 0;
    font-size: 20px;
    font-size: clamp(20px, 1.5vw, 28px);
  }
  section#project div.content .textbox ul.responsibilities li::before,
  section#project div.content .textbox ul.softwares li::before {
    width: 2rem;
    height: 2rem;
    margin-right: 1rem;
  }
  section#project .imagewrapper {
    padding: 0;
  }
  section#project .imagewrapper .images img {
    width: 100%;
  }
  section#project .imagewrapper .images img.portrait {
    max-width: calc(50% - 1rem/2);
  }
  section#project .imagewrapper h3 {
    font-size: 12px;
    font-size: clamp(12px, 1vw, 16px);
  }
}
/* all portrait mobile */
@media only screen and (max-device-width: 767px) and (orientation: portrait) {
  section#project .imagewrapper.fullscreen .images img.portrait {
    max-width: unset;
    width: 100%;
  }
}
/*landscape mobile only*/
@media only screen and (max-width: 932px) and (orientation: landscape) {
  section#introduction div img.profile {
    max-width: 25%;
  }
  section#introduction div.content .textbox ul.languages {
    flex-direction: row;
  }
  section#introduction div.content .textbox ul.languages li {
    width: 50%;
  }
  section#portfolio .content {
    flex-direction: row;
  }
  section#portfolio .content .project div {
    background-position: center;
    background-size: 10vw, cover;
  }
  section#project {
    flex-direction: column;
  }
  section#project .imagewrapper .images img {
    width: calc(50% - 1rem / 2);
  }
  section#project .imagewrapper .images img.portrait {
    max-height: calc(100vh - max(4vh, 30px)*2);
    width: auto;
  }
}
/* For 1366 Resolution same as ipad landscape*/
@media only screen and (min-width: 1030px) and (max-width: 1366px) {
  main {
    padding-top: calc(max(4vh, 30px)*2);
  }
  section#introduction {
    padding-top: max(4vh, 30px);
    flex-direction: column;
    height: auto;
  }
  section#introduction div.stats {
    height: calc(100vh - max(4vh, 30px)*2);
    transform: none;
    padding: 0;
    border: none;
    width: 80%;
  }
  section#introduction div.stats > * {
    transform: none;
  }
  section#project {
    flex-direction: column;
  }
  section#project div.content .textbox ul.responsibilities li,
  section#project div.content .textbox ul.softwares li {
    width: 33.33%;
  }
  section#project .imagewrapper {
    width: 80%;
    margin: auto;
  }
  section#project .imagewrapper img.portrait {
    width: auto;
  }
}
