@import "normalize.css";
/* general */
html {
  width: 100%;
  height: 100%;
  font-family: 'Barlow', sans-serif;
  color: rgba(62, 62, 66, 0.7);
  background-color: #EDEDED;
  -webkit-tap-highlight-color: transparent;
}
body {
  height: 100%;
  background-color: #EDEDED;
}
body.noscroll {
  overflow: hidden;
}
*,
*:after,
*:before {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
::selection {
  background: none;
  /* WebKit/Blink Browsers */
  color: #F16341;
}
::-moz-selection {
  background: none;
  /* Gecko Browsers */
  color: #F16341;
}
#page {
  -webkit-transition: 0.75s;
  transition: 0.75s;
}
#page.hidden {
  opacity: 0;
}
@font-face {
  font-family: 'BobbyJonesSoft';
  src: url('../resources/fonts/BobbyJonesSoft.otf');
  font-weight: normal;
  font-style: normal;
}
/* utility */
.bobbyjones {
  font-family: 'BobbyJonesSoft';
}
.barlow {
  font-family: 'Barlow';
}
.bold {
  font-weight: bold;
}
.italic {
  font-style: italic;
}
.text-black {
  color: #3E3E42;
}
.text-red {
  color: #F16341;
}
h1 {
  font-size: 20px;
  line-height: 30px;
  font-family: 'BobbyJonesSoft';
  margin-top: 0px;
  margin-bottom: 0px;
  font-weight: normal;
}
h2 {
  font-size: 14px;
  line-height: 18px;
  font-weight: bold;
  font-family: 'Barlow';
  margin-top: 0px;
  margin-bottom: 0px;
}
h3 {
  font-size: 20px;
  line-height: 30px;
  font-family: 'Barlow';
  font-weight: bold;
  color: #3E3E42;
  margin-top: 0px;
  margin-bottom: 0px;
}
h4 {
  font-size: 20px;
  line-height: 30px;
  font-family: 'Barlow';
  font-weight: bold;
  font-style: italic;
  color: #3E3E42;
  margin-top: 0px;
  margin-bottom: 0px;
}
p {
  font-size: 14px;
  line-height: 18px;
  font-family: 'Barlow';
  margin-top: 0px;
  margin-bottom: 0px;
}
a.link {
  font-family: 'BobbyJonesSoft';
  font-size: 14px;
  line-height: 18px;
  text-decoration: underline;
  margin-top: 0px;
  margin-bottom: 0px;
  color: rgba(62, 62, 66, 0.7);
  cursor: pointer;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
a.link:visited {
  color: rgba(62, 62, 66, 0.7);
}
.margin8-bottom {
  margin-bottom: 8px;
}
.margin16-bottom {
  margin-bottom: 16px;
}
.margin32-bottom {
  margin-bottom: 32px;
}
.margin64-bottom {
  margin-bottom: 64px;
}
.margin8-top {
  margin-top: 8px;
}
.margin16-top {
  margin-top: 16px;
}
.margin32-top {
  margin-top: 32px;
}
.margin64-top {
  margin-top: 64px;
}
.special-margin-top {
  margin-top: 32px;
}
@media only screen and (min-width: 720px) {
  .special-margin-top {
    margin-top: 24px;
  }
}
.special-margin-bottom {
  margin-bottom: 32px;
}
@media only screen and (min-width: 720px) {
  .special-margin-bottom {
    margin-bottom: 24px;
  }
}
.padding32 {
  padding: 32px;
}
.padding32-sides {
  padding-right: 32px;
  padding-left: 32px;
}
.padding32-bottom {
  padding-bottom: 32px;
}
.move-down {
  transform: translateY(40px);
}
.transition-fast {
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.transition-mid {
  -webkit-transition: 0.8s;
  transition: 0.8s;
}
.transition-slow {
  -webkit-transition: 1s;
  transition: 1s;
}
.transition-xslow {
  -webkit-transition: 1.2s;
  transition: 1.2s;
}
/* elements */
/*nav*/
#hidden-summary {
  position: absolute;
  top: -3000px;
  left: -3000px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
#overlay {
  display: none;
  position: fixed;
  width: 100vw;
  height: 100vh;
  width: 100%;
  height: 100%;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  opacity: 1;
  background-color: rgba(0, 0, 0, 0.2);
  z-index: 2;
  cursor: pointer;
}
#logo {
  z-index: 3;
  width: 64px;
  height: 64px;
  position: fixed;
  top: 32px;
  left: 32px;
  border-radius: 50%;
  background-color: #3E3E42;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  cursor: pointer;
}
#logo img {
  position: absolute;
  width: 32px;
  height: 32px;
  margin: 16px;
}
#nav-dial {
  z-index: 3;
  width: 64px;
  height: 64px;
  position: fixed;
  bottom: 32px;
  right: 32px;
  border-radius: 50%;
  background-color: #EDEDED;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  cursor: pointer;
}
#nav-dial .nav-line {
  position: absolute;
  -webkit-transition: 0.25s;
  transition: 0.25s;
  left: 16px;
}
#nav-dial :first-child {
  top: 26px;
}
#nav-dial :nth-child(2) {
  bottom: 26px;
}
#nav-dial.open-dial :first-child {
  top: 30px;
  transform: rotate(135deg);
}
#nav-dial.open-dial :nth-child(2) {
  bottom: 30px;
  transform: rotate(225deg);
}
#nav-dial span.ripple {
  background: rgba(0, 0, 0, 0.2);
}
.dial-menu {
  z-index: 4;
  position: fixed;
  right: 32px;
  bottom: 96px;
  cursor: pointer;
  height: 184px;
}
.dial-menu .dial-container {
  transform: scale(0);
  display: block;
  margin: 16px 12px;
}
.dial-menu .dial-container span.tooltip {
  display: none;
  opacity: 0;
  padding: 8px 12px 6px 12px;
  border-radius: 5px;
  background-color: #3E3E42;
  color: #EDEDED;
  font-size: 12px;
  line-height: 16px;
  white-space: nowrap;
  position: fixed;
  right: 52px;
  font-family: BobbyJonesSoft;
  margin-top: -34px;
}
.dial-menu.closed .dial-container:nth-child(1) {
  transition: transform 0.1s;
}
.dial-menu.closed .dial-container:nth-child(2) {
  transition: transform 0.2s;
}
.dial-menu.closed .dial-container:nth-child(3) {
  transition: transform 0.3s;
}
.dial-menu.closed .dial-container:nth-child(4) {
  transition: transform 0.4s;
}
.dial-menu.closed .dial-container:nth-child(5) {
  transition: transform 0.5s;
}
.dial-menu.open .dial-container {
  transform: scale(1);
}
.dial-menu.open .dial-container:nth-child(5) {
  transition: transform 0.1s;
}
.dial-menu.open .dial-container:nth-child(4) {
  transition: transform 0.2s;
}
.dial-menu.open .dial-container:nth-child(3) {
  transition: transform 0.3s;
}
.dial-menu.open .dial-container:nth-child(2) {
  transition: transform 0.4s;
}
.dial-menu.open .dial-container:nth-child(1) {
  transition: transform 0.5s;
}
.small-dial {
  position: relative;
  width: 40px;
  height: 40px;
  background-color: #EDEDED;
  border-radius: 50%;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  cursor: pointer;
}
.small-dial img {
  position: absolute;
  margin: 8px;
  width: 24px;
  height: 24px;
}
.small-dial span.ripple {
  background: rgba(0, 0, 0, 0.2);
}
.ripple-btn {
  overflow: hidden;
}
.ripple {
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  transform: scale(0);
  position: absolute;
  opacity: 1;
}
.rippleEffect {
  animation: rippleDrop 0.5s linear;
}
@keyframes rippleDrop {
  100% {
    transform: scale(2);
    opacity: 0;
  }
}
/*work-page*/
.work-grid-container {
  display: grid;
  grid-template-columns: 1fr;
  max-width: 264px;
  margin: auto;
  margin-top: 90px;
  color: rgba(62, 62, 66, 0.7);
}
.work-grid-item {
  text-align: center;
}
.work-grid-item p {
  font-size: 14px;
  font-family: BobbyJonesSoft;
  margin-bottom: 32px;
}
.work-item {
  width: 264px;
  height: 264px;
  border-radius: 50%;
  background-color: #c9c9c9;
  margin: 32px 0px;
  position: relative;
  cursor: pointer;
  -webkit-transition: transform 0.7s;
  transition: transform 0.7s;
  transform: scale(0.3);
}
.work-item img {
  opacity: 0;
  width: 264px;
  height: 264px;
  border-radius: 50%;
  overflow: hidden;
}
.work-item.inview {
  transform: scale(1);
}
.work-item.inview.hide-back {
  background-color: #ededed;
  -webkit-transition: transform 0.7s, background-color 0.5s;
  transition: transform 0.7s, background-color 0.5s;
}
.work-item.inview img {
  opacity: 1;
  -webkit-transition: 1.75s;
  transition: 1.75s;
}
.work-grid-container .work-grid-item .work-item {
  transition-delay: 0.1s;
}
.work-grid-container .work-grid-item .work-item img {
  transition-delay: 0.1s;
}
.work-grid-container .work-grid-item:nth-child(odd) .work-item {
  transition-delay: 0.1s;
}
.work-grid-container .work-grid-item:nth-child(odd) .work-item img {
  transition-delay: 0.1s;
}
.work-grid-container .work-grid-item:nth-child(3n) .work-item {
  transition-delay: 0.1s;
}
.work-grid-container .work-grid-item:nth-child(3n) .work-item img {
  transition-delay: 0.1s;
}
#work-content {
  padding: 32px;
}
#small-about p {
  color: #3E3E42;
  font-family: barlow;
  font-weight: bold;
  font-size: 12px;
  width: 220px;
  text-align: right;
  right: 32px;
  position: absolute;
  line-height: 18px;
}
#small-about p span {
  color: #F16341;
}
aside {
  display: none;
}
/*about-page*/
#more-contact .small-dial {
  background-color: #3E3E42;
}
#more-contact .small-dial span.ripple {
  background: rgba(255, 255, 255, 0.4);
}
#about-content {
  padding: 32px;
}
.page-container {
  max-width: 984px;
  width: 100%;
  margin: auto;
  margin-top: 122px;
}
.center-circle {
  width: 264px;
  height: 264px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
#about-summary {
  margin: auto;
  margin-bottom: 32px;
  margin-top: 46px;
  max-width: 656px;
  display: block;
}
#more-contact a.dial-container {
  display: inline-block;
  margin-right: 16px;
}
.text-block {
  margin: auto;
  max-width: 656px;
  display: block;
}
#about-details p {
  margin-bottom: 32px;
}
#about-details h2 {
  margin-bottom: 8px;
}
/*work-details*/
#work-details {
  padding-top: 122px;
}
.area-container {
  position: relative;
  max-width: 984px;
  width: 100%;
  margin: auto;
}
#bottom-bar {
  background-color: #3E3E42;
  width: 100%;
  height: 128px;
}
#bottom-bar #back-btn {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 2px solid #EDEDED;
  padding: 22px 14px;
  cursor: pointer;
  position: relative;
}
.column-grid2 {
  display: grid;
  grid-template-columns: 1fr;
  grid-column-gap: 0px;
}
.column-grid3 {
  display: grid;
  grid-template-columns: 1fr ;
  grid-column-gap: 0px;
}
@media only screen and (min-width: 500px) {
  .column-grid3 {
    grid-template-columns: 1fr 1fr;
    grid-column-gap: 32px;
  }
}
.grid-order1 {
  order: 1;
}
.grid-order2 {
  order: 2;
}
.grid-order3 {
  order: 3;
}
.grid-order4 {
  order: 4;
}
.side-note {
  display: none;
}
/*
.external-linkbox {
  display: none;
  text-decoration: none;
}
*/
  .external-linkbox {
    display: block;
    width: 100%;
    background-color: #3E3E42;
    height: 62px;
    position: absolute;
    right: 0px;
    padding: 22px;
    text-align: center;
    cursor: pointer;
    text-decoration: none;
    -webkit-transition: 0s;
    transition: 0s;
  }
  .external-linkbox h2 {
    text-decoration: none;
    color: #EDEDED;
    font-size: 14px;
    line-height: 18px;
  }
  .external-linkbox img {
    position: absolute;
    right: 32px;
    top: 23px;
    transform: rotate(180deg);
    -webkit-transition: 0.5s;
    transition: 0.5s
  }
  .linkbox-space {
    height: 62px;
  }
.img-full {
  width: 100%;
  height: auto;
  background-color: #c9c9c9;
}
.main-img {
  width: 100%;
  background-color: #c9c9c9;
  background-size: cover;
  height: 300px;
}
.main-img.small-resize {
  height: 160px;
}
@media only screen and (min-width: 380px) {
  .main-img.small-resize {
    height: 200px;
  }
}
@media only screen and (min-width: 580px) {
  .main-img.small-resize {
    height: 300px;
  }
}
@media only screen and (min-width: 720px) {
  .main-img.small-resize {
    height: 400px;
  }
}
@media only screen and (min-width: 720px) {
  .main-img {
    height: 400px;
  }
}
.background-center {
  background-position: center;
}
.background-top-left {
  background-position: top left;
}
.background-center-left {
  background-position: center left;
}
.background-center-right {
  background-position: center right;
}
@media only screen and (max-width: 720px) {
  .remove-sidepads {
    padding-left: 0px;
    padding-right: 0px;
  }
}
/* responsive breaks */
/*small-special*/
@media only screen and (max-width: 360px) {
  #small-about p {
    font-size: 10px;
    width: 200px;
    line-height: 16px;
  }
}
/* mid */
@media only screen and (min-width: 720px) {
  .work-grid-container {
    grid-template-columns: 1fr 1fr;
    max-width: 656px;
  }
  .work-item {
    margin: 32px;
  }
  #nav-dial {
    position: fixed;
    top: 32px;
  }
  .dial-menu {
    top: 96px;
    height: 0px;
  }
  .dial-menu.closed .dial-container:nth-child(1) {
    transition: transform 0.5s;
  }
  .dial-menu.closed .dial-container:nth-child(2) {
    transition: transform 0.4s;
  }
  .dial-menu.closed .dial-container:nth-child(3) {
    transition: transform 0.3s;
  }
  .dial-menu.closed .dial-container:nth-child(4) {
    transition: transform 0.2s;
  }
  .dial-menu.closed .dial-container:nth-child(5) {
    transition: transform 0.1s;
  }
  .dial-menu.open .dial-container {
    transform: scale(1);
  }
  .dial-menu.open .dial-container:nth-child(5) {
    transition: transform 0.5s;
  }
  .dial-menu.open .dial-container:nth-child(4) {
    transition: transform 0.4s;
  }
  .dial-menu.open .dial-container:nth-child(3) {
    transition: transform 0.3s;
  }
  .dial-menu.open .dial-container:nth-child(2) {
    transition: transform 0.2s;
  }
  .dial-menu.open .dial-container:nth-child(1) {
    transition: transform 0.1s;
  }
  #small-about p {
    right: 128px;
  }
  h1 {
    font-size: 36px;
    line-height: 50px;
  }
  h2 {
    font-size: 16px;
    line-height: 22px;
  }
  h3 {
    font-size: 36px;
    line-height: 50px;
  }
  h4 {
    font-size: 36px;
    line-height: 50px;
  }
  p {
    font-size: 16px;
    line-height: 22px;
  }
  a.link {
    font-size: 16px;
    line-height: 22px;
  }
  .work-grid-container .work-grid-item .work-item {
    transition-delay: 0.3s;
  }
  .work-grid-container .work-grid-item .work-item img {
    transition-delay: 0.3s;
  }
  .work-grid-container .work-grid-item:nth-child(odd) .work-item {
    transition-delay: 0.1s;
  }
  .work-grid-container .work-grid-item:nth-child(odd) .work-item img {
    transition-delay: 0.1s;
  }
  .work-grid-container .work-grid-item:nth-child(3n) .work-item {
    transition-delay: 0.5s;
  }
  .work-grid-container .work-grid-item:nth-child(3n) .work-item img {
    transition-delay: 0.5s;
  }
  #back-btn {
    margin: auto;
    -webkit-transition: 0.5s;
    transition: 0.5s;
  }
  .column-grid2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-column-gap: 24px;
  }
  .column-grid3 {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-column-gap: 24px;
  }
  .grid-order1 {
    order: initial;
  }
  .grid-order2 {
    order: initial;
  }
  .grid-order3 {
    order: initial;
  }
  .grid-order4 {
    order: initial;
  }
  .external-linkbox {
    display: block;
    width: 284px;
    background-color: #3E3E42;
    height: 48px;
    position: absolute;
    right: 0px;
    padding: 15px;
    text-align: center;
    cursor: pointer;
    text-decoration: none;
    -webkit-transition: 0s;
    transition: 0s;
  }
  .external-linkbox h2 {
    color: #EDEDED;
    font-size: 14px;
    line-height: 18px;
    text-decoration: none;
  }
  .external-linkbox img {
    position: absolute;
    right: 32px;
    top: 16px;
    transform: rotate(180deg);
    -webkit-transition: 0.5s;
    transition: 0.5s;
  }
  .linkbox-space {
    height: 48px;
  }
}
/* large */
@media only screen and (min-width: 1048px) {
  .work-grid-container {
    grid-template-columns: 1fr 1fr 1fr;
    max-width: 984px;
  }
}
/*xlarge*/
@media only screen and (min-width: 1400px) {
  aside {
    display: block;
    position: fixed;
  }
  aside#dots {
    left: 32px;
    bottom: 32px;
  }
  aside#work-this-way {
    right: 32px;
    top: 154px;
  }
  .side-note {
    display: block;
    position: relative;
    right: 164px;
    height: 100%;
    margin-top: -400px;
  }
  .side-note div {
    width: 2px;
    height: 100%;
    background-color: #3E3E42;
    min-height: 400px;
  }
  .side-note p {
    transform: rotate(270deg);
    position: absolute;
    left: 6px;
    transform-origin: top left;
    font-size: 11px;
    font-weight: bold;
  }
}
/* hover enabled device */
@media (hover: hover) {
  a.link:hover {
    color: #F16341;
  }
  .dial-menu .dial-container span.tooltip {
    display: block;
  }
  #logo:hover {
    transform: scale(1.04);
    -webkit-box-shadow: 0px 3px 8px 0px rgba(0, 0, 0, 0.3);
    -moz-box-shadow: 0px 3px 8px 0px rgba(0, 0, 0, 0.3);
    box-shadow: 0px 3px 8px 0px rgba(0, 0, 0, 0.3);
    background-color: #4F4F4F;
  }
  #nav-dial:hover {
    transform: scale(1.04);
    -webkit-box-shadow: 0px 3px 8px 0px rgba(0, 0, 0, 0.3);
    -moz-box-shadow: 0px 3px 8px 0px rgba(0, 0, 0, 0.3);
    box-shadow: 0px 3px 8px 0px rgba(0, 0, 0, 0.3);
    background-color: #c9c9c9;
  }
  .small-dial:hover {
    transform: scale(1.05);
    -webkit-box-shadow: 0px 3px 6px 0px rgba(0, 0, 0, 0.3);
    -moz-box-shadow: 0px 3px 6px 0px rgba(0, 0, 0, 0.3);
    box-shadow: 0px 3px 6px 0px rgba(0, 0, 0, 0.3);
    background-color: #c9c9c9;
  }
  .small-dial:hover + span.tooltip {
    opacity: 1;
    -webkit-transition: 1s;
    transition: 1s;
    transition-delay: 1s;
  }
  #more-contact .small-dial {
    background-color: #4F4F4F;
  }
  .grid-hover {
    -webkit-transition: 0.5s;
    transition: 0.5s;
  }
  .grid-hover:hover {
    transform: scale(1.04);
  }
  #back-btn:hover {
    transform: scale(1.04);
    background-color: #4F4F4F;
  }
  .external-linkbox:hover {
    background-color: #4F4F4F;
  }
  .external-linkbox:hover img {
    right: 20px;
  }
}
