/* ==========================================================================
   Base Styles & Reset
   ========================================================================== */

*,
*:before,
*:after {
  box-sizing: border-box;
}

body {
  font-family: "Inconsolata", monospace;
  -webkit-font-feature-settings: 'liga' 0;
  font-feature-settings: 'liga' 0;
  font-size: 100%;
  line-height: 1.6;
  background-color: #f8f9f9;
}

@media (min-width: 20em) {
  body {
    font-size: 102.5%;
  }
}

@media (min-width: 30em) {
  body {
    font-size: 105%;
  }
}

@media (min-width: 54em) {
  body {
    font-size: 107.5%;
  }
}

@media (min-width: 64em) {
  body {
    font-size: 110%;
  }
}

@media (min-width: 76.5em) {
  body {
    font-size: 115%;
  }
}

@media (min-width: 114em) {
  body {
    font-size: 125%;
  }
}

/* ==========================================================================
   Typography
   ========================================================================== */

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  font-family: "Space Mono", monospace;
  line-height: 1.1;
}

@media (min-width: 54em) {
  h1 {
    font-size: 2.5em;
  }
}

@media (min-width: 76.5em) {
  h1 {
    font-size: 3em;
  }
}

h2 {
  margin-bottom: 0.25em;
  font-size: 1.75em;
}

@media (min-width: 54em) {
  h2 {
    font-size: 2em;
  }
}

h3 {
  margin-bottom: 0.1em;
  font-size: 1.5em;
}

h4 {
  margin-bottom: 0.1em;
  font-size: 1.25em;
}

p {
  margin: 0 0 0.75em;
}

a {
  color: #0a0a0a;
  text-decoration: none;
  transition: color 0.4s ease-in-out;
}

a:hover,
a:active,
a:focus {
  color: #bdb39f;
}

figure {
  margin: 0;
}

img {
  display: block;
  width: 100%;
  max-width: 100%;
}

blockquote {
  margin: 2em 0;
  font-family: "Space Mono", monospace;
  font-weight: 700;
  font-size: 1.25em;
}

cite {
  display: block;
  margin-top: 0.125em;
  font-family: "Inconsolata", monospace;
  font-weight: 400;
  font-style: normal;
}

cite:before {
  content: "\2014 \0020";
}

ol,
ul {
  margin: 0;
  padding: 0;
}

::-moz-selection {
  color: #fff;
  background-color: #bdb39f;
  text-shadow: none;
}

::selection {
  color: #fff;
  background-color: #cdcdcd;
  text-shadow: none;
}

/* Shared Font & Styling for Metadata/UI Elements */
.tabs,
.previews__container span,
.preview__more,
.card__more,
.pagination,
.footer__archive,
.nav,
.next__container span,
.archives__header {
  font-family: "Space Mono", monospace;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* Semi-transparent Overlays */
.previews > :first-child:after,
.card__img:after,
.mast:after,
.profile__img:after,
.next__link:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: rgba(10, 10, 10, 0.2);
  transition: background-color 0.4s ease-in-out;
}

/* ==========================================================================
   Layout Helpers & Sections
   ========================================================================== */

section {
  position: relative;
}

.section-padding {
  padding: 4em 0;
}

.section-padding--lg {
  padding: 6em 0;
}

.section-padding--sm {
  padding: 2em 0;
}

[class*='__container'] {
  position: relative;
  z-index: 1;
}

/* ==========================================================================
   Previews Split-Screen Layout
   ========================================================================== */

@media (max-width: 54em) {
  .previews {
    display: flex;
    flex-direction: column;
  }
}

.previews > *:first-child {
  position: relative;
  height: 30em;
  background-color: #0a0a0a;
}

@media (min-width: 54em) {
  .previews > *:first-child {
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 45%;
  }
}

.previews > *:last-child {
  min-height: 100vh;
}

@media (min-width: 54em) {
  .previews > *:last-child {
    margin-left: 45%;
  }
}

/* ==========================================================================
   Tabs
   ========================================================================== */

.tabs {
  display: flex;
  justify-content: space-around;
  padding: 1em;
  list-style-type: none;
}

@media (min-width: 54em) {
  .tabs {
    padding-left: 8em;
    padding-right: 8em;
  }
}

@media (min-width: 114em) {
  .tabs {
    padding-left: 10em;
    padding-right: 10em;
  }
}

.tabs ul {
  list-style-type: none;
}

.tabs__item {
  cursor: pointer;
}

.tabs__item:not(.active) {
  position: relative;
  color: #0a0a0a;
}

.tabs__item:not(.active):after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  border-bottom: 1px solid #bdb39f;
  transition: width 0.4s ease-in-out;
}

.tabs__item:not(.active):hover:after {
  width: 100%;
}

.tabs__item.active {
  border-bottom: 1px solid #ffffff;
}

.tab.active {
  will-change: opacity;
  -webkit-animation: fade-in 1s both;
  animation: fade-in 1s both;
}

.tab ul {
  list-style-type: none;
}

/* ==========================================================================
   Preview Item
   ========================================================================== */

.previews__container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
  padding: 2em;
  color: #fff;
}

.previews__container span {
  font-family: "Inconsolata", monospace;
}

.preview {
  transition: background-color 0.2s ease-in-out;
}

.preview:nth-child(even) {
  background-color: #fff;
}

.preview:hover {
  background-color: #f5f3ef;
}

.preview:hover .preview__more {
  box-shadow: inset 175px 0 0 0 #d5d3d0;
  color: #fff;
}

.preview__img {
  will-change: opacity;
  -webkit-animation: fade-in 1s both;
  animation: fade-in 1s both;
}

.preview__link {
  display: block;
  padding: 2em 1em;
}

@media (min-width: 54em) {
  .preview__link {
    padding: 4em 8em;
  }
}

@media (min-width: 114em) {
  .preview__link {
    padding-left: 10em;
    padding-right: 10em;
  }
}

.preview__date {
  font-family: "Space Mono", monospace;
  color: #0a0a0a;
}

.preview__header {
  color: #bdb39f;
  margin-bottom: 0.5em;
}

.preview__excerpt {
  color: #0a0a0a;
}

.preview__more {
  display: inline-block;
  padding: .5em;
  font-family: "Space Mono", monospace;
  color: #f7f7f7;
  border: 0px solid #000000;
  box-shadow: inset 0 0 0 0 #f5f5f5;
  transition: all 0.4s ease-in-out;
}

/* ==========================================================================
   Cards
   ========================================================================== */

.cards {
  display: flex;
  flex-direction: row;
  flex-flow: wrap;
  padding: 2em 1em;
  list-style-type: none;
}

.cards > * {
  padding: .25em;
  flex-basis: 100%;
  max-width: 100%;
}

@media (min-width: 54em) {
  .cards > * {
    flex-basis: 50%;
    max-width: 50%;
  }
}

@media (min-width: 114em) {
  .cards > * {
    flex-basis: 33.3333333333%;
    max-width: 33.3333333333%;
  }
}

@media (min-width: 54em) {
  .cards {
    padding: 4em 2em;
  }
}

.card__link {
  box-shadow: 0 1px 2px rgba(10, 10, 10, 0.1), 0 1px 2px rgba(10, 10, 10, 0.2);
  position: relative;
  display: block;
  background-color: #fff;
  transition: background-color 0.2s ease-in-out;
}

.card__link:after {
  box-shadow: 0 3px 6px rgba(10, 10, 10, 0.1), 0 3px 6px rgba(10, 10, 10, 0.2);
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  opacity: 0;
  will-change: opacity;
  transition: opacity 0.4s ease-in-out;
}

.card__link:hover {
  background-color: #f5f3ef;
}

.card__link:hover:after {
  opacity: 1;
}

.card__link:hover .card__more {
  box-shadow: inset 175px 0 0 0 #bdb39f;
  color: #fff;
}

.card__img {
  position: relative;
  height: 12em;
  background-color: #0a0a0a;
}

.card__container {
  padding: 2em 1em;
}

.card__header {
  color: #bdb39f;
}

.card__count {
  color: #0a0a0a;
}

.card__more {
  display: inline-block;
  padding: .25em;
  font-family: "Space Mono", monospace;
  color: #bdb39f;
  border: 3px solid #bdb39f;
  box-shadow: inset 0 0 0 0 #bdb39f;
  transition: all 0.4s ease-in-out;
}

/* ==========================================================================
   Pagination
   ========================================================================== */

.pagination {
  display: flex;
  width: 100%;
}

.pagination > * {
  display: flex;
  justify-content: center;
  flex: 1;
  padding: 2em 0;
  color: #fff;
  background-color: #0a0a0a;
  transition: background-color 0.4s ease-in-out;
}

.pagination > *:hover {
  color: #fff;
  background-color: #dddddd;
}

/* ==========================================================================
   Footer
   ========================================================================== */

.footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding-left: 2em;
  padding-right: 2em;
}

@media (min-width: 30em) {
  .footer {
    flex-direction: row;
  }
}

.footer__archive {
  position: relative;
  color: #0a0a0a;
}

.footer__archive:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  border-bottom: 1px solid #f5f5f5;
  transition: width 0.4s ease-in-out;
}

.footer__archive:hover:after {
  width: 100%;
}

.footer__social {
  display: flex;
  margin-top: 1em;
  list-style-type: none;
}

@media (min-width: 30em) {
  .footer__social {
    margin-top: 0;
  }
}

.footer__social > *:not(:last-child) {
  margin-right: 1em;
}

/* ==========================================================================
   Masthead
   ========================================================================== */

.mast {
  position: relative;
  height: 20em;
  color: #fff;
  background-color: #0a0a0a;
}

@media (min-width: 30em) {
  .mast {
    height: 35em;
  }
}

.mast__img {
  -webkit-animation: fade-in 2s both;
  animation: fade-in 2s both;
}

.mast__container {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  height: 100%;
  width: 90%;
  margin: 0 auto;
}

@media (min-width: 54em) {
  .mast h1 {
    width: 75%;
  }
}

/* ==========================================================================
   Navigation
   ========================================================================== */

.nav {
  position: absolute;
  top: 1.25em;
  left: 1em;
  z-index: 99;
  display: flex;
  align-items: center;
  font-family: "Inconsolata", monospace;
}

@media (min-width: 30em) {
  .nav {
    left: 2em;
  }
}

@media (min-width: 30em) {
  .nav i {
    margin-right: 0.5em;
  }
}

.nav span {
  display: none;
}

@media (min-width: 30em) {
  .nav span {
    display: block;
  }
}

.nav--black {
  color: #0a0a0a;
}

.nav--black:hover,
.nav--black:active,
.nav--black:focus {
  color: #0a0a0a;
}

.nav--white {
  color: #fff;
}

.nav--white:hover,
.nav--white:active,
.nav--white:focus {
  color: #fff;
}

/* ==========================================================================
   Post Page
   ========================================================================== */

.post {
  width: 90%;
  max-width: 54em;
  margin: 0 auto;
  font-family: "Lora", serif;
}

@media (min-width: 54em) {
  .post {
    width: 55%;
  }
}

.post > *:last-child {
  margin-bottom: 0;
}

.post h1,
.post h2 {
  line-height: 1.2;
}

.post ol,
.post ul {
  margin-bottom: 1em;
  margin-left: 1em;
}

.post ol > li,
.post ul > li {
  position: relative;
}

.post ol > li:before,
.post ul > li:before {
  position: absolute;
  left: -1em;
}

.post ol > li:not(:last-child),
.post ul > li:not(:last-child) {
  margin-bottom: 0.25em;
}

.post ol {
  list-style-type: none;
  counter-reset: li;
}

.post ol > li:before {
  content: counter(li) ".";
  counter-increment: li;
}

.post p:first-child {
  font-size: 1.25em;
}

.post a {
  border-bottom: 1px solid #bdb39f;
}

.post img {
  margin: 2em 0;
}

.post figure {
  margin: 2em 0;
}

.post figure > img {
  margin: 0;
}

.post figcaption {
  margin-top: 0.5em;
  font-size: 0.75em;
  text-align: center;
}

/* ==========================================================================
   Profile Card
   ========================================================================== */

.profile {
  width: 90%;
  max-width: 54em;
  margin: 0 auto;
  padding-bottom: 4em;
}

@media (min-width: 64em) {
  .profile {
    width: 55%;
  }
}

.profile__card {
  box-shadow: 0 1px 2px rgba(10, 10, 10, 0.1), 0 1px 2px rgba(10, 10, 10, 0.2);
  display: flex;
  flex-direction: column;
}

@media (min-width: 54em) {
  .profile__card {
    flex-direction: row;
  }
}

.profile__img {
  position: relative;
  min-height: 15em;
  background-color: #0a0a0a;
}

@media (min-width: 54em) {
  .profile__img {
    flex-basis: 45%;
    max-width: 45%;
  }
}

.profile__container {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 1em;
  background-color: #fff;
}

@media (min-width: 54em) {
  .profile__container {
    flex-basis: 55%;
    max-width: 55%;
  }
}

.profile__social {
  display: flex;
  justify-content: flex-end;
  list-style-type: none;
}

.profile__social > *:not(:last-child) {
  margin-right: 1em;
}

/* ==========================================================================
   Next Project & Archive
   ========================================================================== */

.next {
  background-color: #0a0a0a;
}

.next__link {
  display: block;
  height: 25em;
  padding: 6em 0;
  color: #fff;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 50%;
}

.next__link:hover {
  color: #fff;
}

.next__link:hover:after {
  background-color: rgba(189, 179, 159, 0.8);
}

.next__container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  text-align: center;
}

.next__container span {
  font-family: "Inconsolata", monospace;
}

.archives__header {
  padding: 1em;
  text-align: center;
}

.archives__header span {
  border-bottom: none;
}

.archives__container {
  display: flex;
  flex-direction: row;
  flex-flow: wrap;
  max-width: 76.5em;
  margin: 0 auto;
  padding-left: 1em;
  padding-right: 1em;
}

.archives__container > * {
  padding: .25em;
  flex-basis: 100%;
  max-width: 100%;
}

@media (min-width: 54em) {
  .archives__container > * {
    flex-basis: 50%;
    max-width: 50%;
  }
}

@media (min-width: 64em) {
  .archives__container > * {
    flex-basis: 33.3333333333%;
    max-width: 33.3333333333%;
  }
}

@media (min-width: 114em) {
  .archives__container > * {
    flex-basis: 25%;
    max-width: 25%;
  }
}

/* ==========================================================================
   Animations & Helper Classes
   ========================================================================== */

@-webkit-keyframes fade-in {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes fade-in {
  from { opacity: 0; }
  to { opacity: 1; }
}

.fade-in {
  will-change: opacity;
  -webkit-animation: fade-in 2s both;
  animation: fade-in 2s both;
}

.absolute-bg {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 50%;
}

.bg-black {
  background-color: #0a0a0a;
}

.bg-grey {
  background-color: #f8f9f9;
}

.bg-white {
  background-color: #fff;
}

/* ==========================================================================
   Messenger & Interactive Search Overlay
   ========================================================================== */

#messenger {
  position: relative;
  display: inline;
  white-space: nowrap;
  text-shadow: 0 2px 2px rgba(0, 0, 0, 0.9);
}

/* Buttons */
.btn {
  margin: 0;
  padding: 0;
  cursor: pointer;
  border: none;
  background: none;
}

.btn:focus {
  outline: none;
}

.btn--search {
  font-size: 1.5em;
}

.btn--hidden {
  pointer-events: none;
  opacity: 0;
}

/* Reset Search Input */
.search__input {
  border: 0;
  background: transparent;
  border-radius: 0;
  -webkit-appearance: none;
}

.search__input:focus {
  outline: none;
}

.trigger {
  color: gray;
  text-decoration: none;
  cursor: pointer;
}

.lyrics {
  display: none;
  margin-top: 1em;
  white-space: pre-wrap;
  font-family: monospace;
  color: #ccc;
  background-color: #111;
  padding: 1em;
  border: none;
}

/* Links & General Elements */
a,
.btn {
  text-decoration: none;
  color: #ffffff;
  outline: none;
}

.hidden {
  position: absolute;
  overflow: hidden;
  width: 0;
  height: 0;
  pointer-events: none;
}

/* Icons */
.icon {
  display: block;
  width: 1.5em;
  height: 1.5em;
  margin: 0 auto;
  fill: currentColor;
}

/* Layout for search container */
.search {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 3em;
}

span.green {
  color: #34fc47;
}

.btn--search-close {
  font-size: 2em;
  position: absolute;
  top: 1.25em;
  right: 1.25em;
  display: none;
}

.js .btn--search-close {
  display: block;
}

.terminal__line {
  line-height: 1.25;
  overflow: hidden;
  width: 0;
  height: 0;
  margin: 0;
  white-space: nowrap;
}

.search__form::before {
  content: '>';
}

.search__input {
  font-family: inherit;
  line-height: 1;
  display: inline-block;
  box-sizing: border-box;
  padding: 0.05em 0;
  color: #fff;
}

.search__input::-webkit-input-placeholder {
  color: #4a319e;
}

.search__input::-moz-placeholder {
  opacity: 1;
  color: #4a319e;
}

.search__input:-ms-input-placeholder {
  color: #4a319e;
}

.search__input::-webkit-search-cancel-button,
.search__input::-webkit-search-decoration {
  -webkit-appearance: none;
}

.search__input::-ms-clear {
  display: none;
}

/* ==========================================================================
   State & Transitions
   ========================================================================== */

.js .main-wrap {
  transition: opacity 0.3s;
}

.js .main-wrap--hide {
  pointer-events: none;
  opacity: 0;
}

.js .main-wrap--move .btn--search {
  pointer-events: none;
  opacity: 0;
}

.js .search {
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s;
}

.js .search--open {
  pointer-events: auto;
  opacity: 1;
}

/* Terminal Lines Sizing on Open */
.js .search--open .terminal.binding .terminal__line {
  width: 29ch;
}

.js .search--open .terminal__line:first-child {
  width: 27ch;
}

.js .search--open .terminal__line:nth-child(2),
.js .search--open .terminal__line:nth-child(3) {
  width: 21ch;
}

.js .search--open .terminal__line:nth-child(4) {
  width: 15ch;
}

.js .search--open .terminal__line:nth-child(5) {
  width: 15ch;
}

.js .search--open .terminal__line:nth-child(6) {
  width: 15ch;
}

.js .search--open .terminal__line:nth-child(7) {
  width: 15ch;
}

.js .search--open .terminal__line:nth-child(8) {
  width: 15ch;
}

.js .search--open .terminal__line:nth-child(9) {
  width: 15ch;
}

.js .search--open .terminal__line:nth-child(10) {
  width: 13ch;
}

.js .search--open .terminal__line:nth-child(11) {
  width: 12ch;
}

.js .search--open .terminal__line:nth-child(12) {
  width: 11ch;
}

.js .search--open .terminal__line:nth-child(13) {
  width: 11ch;
}

/* Terminal Typing Animation Settings */
.js .search--open .terminal__line {
  animation: typing 1s steps(30, end), scaleUp 0.1s forwards;
}

.js .search--open .terminal__line:first-child {
  animation-timing-function: steps(20, end), ease;
}

.js .search--open .terminal__line:nth-child(2) {
  animation-delay: 2s;
}

.js .search--open .terminal__line:nth-child(3) {
  animation-delay: 4s;
}

.js .search--open .terminal__line:nth-child(2),
.js .search--open .terminal__line:nth-child(3) {
  animation-duration: 1.35s, 0.1s;
  animation-timing-function: steps(27, end), ease;
}

.js .search--open .terminal__line:nth-child(4) {
  animation-duration: 1.4s, 0.1s;
  animation-timing-function: steps(28, end), ease;
  animation-delay: 3.35s;
}

.js .search--open .terminal__line:nth-child(5) {
  animation-duration: 0.35s, 0.1s;
  animation-timing-function: steps(7, end), ease;
  animation-delay: 7.75s;
}

.js .search--open .terminal__line:nth-child(6) {
  animation-duration: 0.8s, 0.1s;
  animation-timing-function: steps(16, end), ease;
  animation-delay: 8.1s;
}

.js .search--open .terminal__line:nth-child(7) {
  animation-duration: 0.7s, 0.1s;
  animation-timing-function: steps(14, end), ease;
  animation-delay: 8.9s;
}

.js .search--open .terminal__line:nth-child(8) {
  animation-duration: 0.95s, 0.1s;
  animation-timing-function: steps(19, end), ease;
  animation-delay: 9.6s;
}

.js .search--open .terminal__line:nth-child(9) {
  animation-duration: 0.5s, 0.1s;
  animation-timing-function: steps(10, end), ease;
  animation-delay: 10.55s;
}

.js .search--open .terminal__line:nth-child(10) {
  animation-duration: 0.65s, 0.1s;
  animation-timing-function: steps(13, end), ease;
  animation-delay: 11.05s;
}

.js .search--open .terminal__line:nth-child(11) {
  animation-duration: 0.6s, 0.1s;
  animation-timing-function: steps(12, end), ease;
  animation-delay: 11.7s;
}

.js .search--open .terminal__line:nth-child(12) {
  animation-duration: 0.6s, 0.1s;
  animation-timing-function: steps(12, end), ease;
  animation-delay: 12.2s;
}

.js .search--open .terminal__line:nth-child(13) {
  animation-duration: 3s, 0.1s;
  animation-timing-function: steps(190, end), ease;
  animation-delay: 13s;
}

/* ==========================================================================
   Home Section & Canvas Decor
   ========================================================================== */

.connecting-dots {
  position: absolute;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background-size: cover;
  background-position: center center;
  position: relative;
  margin: 0 auto;
}

canvas {
  position: absolute;
  z-index: 1;
}

.home {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #000;
  z-index: 9999;
  -webkit-animation: move 1s;
  -moz-animation: move 1s;
  -o-animation: move 1s;
  animation: move 1s;
}

.home_container {
  animation-delay: 1s;
  -webkit-animation: show 1s;
  -moz-animation: show 1s;
  -o-animation: show 1s;
  animation: show 1s;
}

.close_home {
  padding: 1px 10px 6px 10px;
  position: absolute;
  top: 70px;
  right: 80px;
  font-size: 30px;
  border: none;
  cursor: pointer;
}

.home_container h2 {
  position: absolute;
  top: 35%;
  left: 0;
  right: 0;
  text-align: center;
  font-size: 3em;
}

.home_container p {
  position: absolute;
  top: 45%;
  left: 0;
  right: 0;
  text-align: center;
  font-size: 2em;
}

/* Keyframe Animations */
@keyframes move {
  0% {
    right: 5000px;
  }
  30% {
    right: 2000px;
  }
  100% {
    right: 0;
  }
}

@keyframes move {
  0% {
    opacity: 0;
  }
  30% {
    opacity: 0.5;
  }
  100% {
    opacity: 1;
  }
}

@keyframes typing {
  from {
    width: 0;
  }
}

@keyframes scaleUp {
  from {
    height: 0;
  }
  to {
    height: 1.5em;
  }
}

/* Close & Search Animation Opacity */
.btn--search-close {
  opacity: 0;
  transition: opacity 0.5s;
}

.search--open .btn--search-close {
  opacity: 1;
}

.js .search__form {
  opacity: 0;
}

.js .search--open .search__form {
  opacity: 1;
  transition: opacity 0.3s 3.35s;
}