body {
  font-family: 'Montserrat', sans-serif;
  padding-right: 12px;
}

html,
body,
h1,
p {
  padding: 0;
  margin: 0;
  scroll-behavior: smooth;
}

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

a:hover {
  color: black;
}

.noFocus:focus {
  outline: none;
}

.sticky {
  position: fixed;
  width: 100vw;
  background-color: white;
  z-index: 99;
}

.wrapper {
  max-width: 1080px;
  margin: auto;
}

.header {
  padding: 1em 2em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  color: #707070;
}

.underscore {
  background-color: #abd0e8;
  height: 0.2em;
  width: 40%;
}

.textLogo {
  cursor: pointer;
}

nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

nav li {
  margin: 0 0 0 1em;
  list-style-type: none;
  cursor: pointer;
}

nav li:hover {
  color: black;
}

.landing {
  height: 100vh;
  padding: 0 2em;
  padding-top: 0em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.heroSide {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
}

.circleBg {
  height: 100%;
  width: 100%;
  background-color: #abd0e8;
  opacity: .3;
}

.circles {
  width: 100%;
  max-width: 400px;
  min-width: 200px;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.circles .heroImage {
  width: 100%;
  max-width: 400px;
  min-width: 200px;
  border-radius: 50%;
  z-index: 0;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 1/1;
  opacity: 1;
}

.circles .circle {
  position: absolute;
  width: 20vw;
  height: 20vw;
  min-width: 100px;
  max-width: 200px;
  min-height: 100px;
  max-height: 200px;
  bottom: 0;
  right: 0;
  border-radius: 50%;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
}

.circles .circle2 {
  position: absolute;
  width: 10vw;
  min-width: 70px;
  max-width: 150px;
  min-height: 70px;
  max-height: 150px;
  height: 10vw;
  top: 0;
  left: 0;
  border-radius: 50%;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  z-index: 3;
}

.watermark {
  position: absolute;
  bottom: 3em;
  right: 50%;
  left: 50%;
}

.heroText {
  padding: 0 0em 0 4em;
}

.heroTitle {
  font-weight: 700;
  font-family: 'Montserrat', sans-serif;
  font-size: calc(3 * 1.7vw);
}

.heroSubTitle {
  color: #707070;
  margin-top: 2em;
}

.heroAction {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 2em 0 0;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.heroAction:hover .arrow {
  -webkit-transform: translateX(8px);
          transform: translateX(8px);
}

.heroAction #projectTitle {
  padding: 3em;
  margin-right: 3em;
}

.heroAction .arrow {
  padding-left: 8px;
  color: #abd0e8;
  -webkit-transition: 0.5s ease;
  transition: 0.5s ease;
}

.watermarkText {
  color: #707070;
  opacity: 0.25;
  font-size: calc(5 * 1.5vw);
  text-align: center;
}

.projects {
  padding-top: 3em;
  overflow: hidden;
}

.sectionTitle {
  text-align: center;
  font-size: 32px;
}

.sectionDivider {
  height: 1px;
  width: 40%;
  background-color: #abd0e8;
}

.projLink {
  display: none;
  color: #707070;
  cursor: pointer;
}

.projLink .material-icons {
  color: #abd0e8;
}

.projLink .linkTag {
  padding-left: 1em;
}

.show {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.projectDetail {
  margin: 4em 0;
  opacity: 0;
  padding: 0 2em;
  display: none;
}

.projectDetail .projectDetailWrap {
  padding: 2em;
  border: solid #eeeeee 2px;
  border-radius: 8px;
}

.projectDetail .projectDetailHeader {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 2em;
}

.projectDetail #close {
  cursor: pointer;
}

.projectDetail .projectTitle {
  font-size: 20px;
  padding-bottom: 0.25em;
  pointer-events: none;
}

.projectDetail .projectSubTitle {
  font-size: 14;
  color: #707070;
  pointer-events: none;
}

.projectDetail .projectImage {
  -webkit-box-shadow: none;
          box-shadow: none;
  -o-object-fit: contain;
     object-fit: contain;
  height: 400px;
}

.projectDetail .projectBody {
  padding: 2em 0;
  font-size: 14;
  color: #707070;
}

.projectGrid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: auto auto;
      grid-template-columns: auto auto;
  -webkit-column-gap: 64px;
          column-gap: 64px;
  row-gap: 64px;
  padding: 0 2em;
  margin: 4em 0;
}

#open1,
#open2,
#open3,
#open4 {
  cursor: pointer;
}

.projectItem {
  padding: 2em;
  border: solid #eeeeee 2px;
  border-radius: 8px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  -webkit-box-shadow: none;
          box-shadow: none;
  -webkit-transform: rotateY(0) rotateX(0);
          transform: rotateY(0) rotateX(0);
  -webkit-perspective: 1000px;
          perspective: 1000px;
}

.projectItem .projectDetailWrap {
  padding: 2em;
  border: solid #eeeeee 2px;
  border-radius: 8px;
}

.projectItem .projectDetailHeader {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 2em;
}

.projectItem .projectTitle {
  font-size: 20px;
  padding-bottom: 0.25em;
}

.projectItem .projectSubTitle {
  font-size: 14;
  color: #707070;
}

.projectItem .projectImage {
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transform-style: preserve-3d;
          transform-style: preserve-3d;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.about {
  padding: 0 2em;
  padding-top: 3em;
}

.aboutContainer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.aboutSide {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 4em 0;
}

.aboutSide .aboutImageContainer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding: 0 3em;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
}

.aboutSide .blob {
  position: absolute;
  z-index: 4;
  bottom: -3em;
  left: 3em;
}

.aboutSide .aboutText {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding-bottom: 1em;
}

.aboutSide .aboutImg {
  -o-object-fit: cover;
     object-fit: cover;
  width: 250px;
  height: 250px;
  border-radius: 50%;
  opacity: 1;
  z-index: 2;
}

.aboutSide .aboutTitle {
  font-size: 20px;
  padding-bottom: 0.5em;
}

.aboutSide .aboutBody {
  font-size: 14px;
  color: #707070;
  padding-bottom: 0.5em;
}

.contact {
  padding: 0 2em;
  padding-top: 3em;
}

.contactGrid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: auto auto;
      grid-template-columns: auto auto;
  margin: 4em 0;
  -webkit-column-gap: 64px;
          column-gap: 64px;
  row-gap: 64px;
}

.contactGrid .contactLink {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 32px;
}

.contactGrid .contactLink .md-size {
  font-size: 60px;
}

.contactGrid .contactLink #contact {
  margin-left: 8px;
}

form {
  border: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

form .sent {
  display: none;
}

form .contactSuccess {
  display: none;
  border: none;
  padding: 1em;
  margin: 0.5em 0;
  border-radius: 4px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
}

form .show {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

form input,
form textarea {
  border: none;
  padding: 1em;
  margin: 0.5em 0;
  border-radius: 4px;
}

form label {
  margin-top: 1em;
}

form input[type="text"] {
  background-color: #f1f1f1;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

form input[type="email"] {
  background-color: #f1f1f1;
  background: #f1f1f1;
}

form textarea {
  background-color: #f1f1f1;
  height: 150px;
  resize: none;
}

form input[type="submit"] {
  margin-top: 2em;
  background-color: #abd0e8;
}

.footer {
  background-color: #f1f1f1;
  padding: 1em 2em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: #707070;
  margin-top: 5em;
}

@media (max-width: 500px) {
  nav {
    display: none;
  }
  .landing {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .circles {
    margin: 2em 3em 0;
  }
  .header {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .heroText {
    padding: 0;
    text-align: center;
  }
  .heroActionWrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .watermark {
    display: none;
  }
  .projectDetail .projectImage {
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .projectGrid {
    -ms-grid-columns: auto;
        grid-template-columns: auto;
  }
  .contactGrid {
    -ms-grid-columns: auto;
        grid-template-columns: auto;
  }
  .aboutContainer {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
/*# sourceMappingURL=style.css.map */