/* =================================================================== 
 *
 *  TOC:
 *  # custom block grid STACK breakpoints
 *  # base style overrides
 *    ## links
 *  # typography & general theme styles
 *    ## Lists
 *    ## responsive video container
 *    ## floated image 
 *    ## tables
 *    ## Spacing
 *  # preloader
 *  # forms
 *    ## Style Placeholder Text
 *    ## Change Autocomplete styles in Chrome
 *  # buttons
 *  # Common and Reusable Styles
 *  # site header
 *    ## header logo
 *    ## main navigation
 *    ## mobile menu toggle
 *    ## download resume button
 *  # hero
 *    ## hero social
 *    ## hero scroll
 *    ## animate intro content
 *    ## animations
 *  # portfolio
 *    ## portfolio list
 *  # footer
 *    ## contact block
 *    ## copyright
 *    ## go top
 *
 * =================================================================== */

/* ===================================================================
 * # custom block grid STACK breakpoints
 *
 * ------------------------------------------------------------------- */
 @media screen and (max-width: 1000px) {
  .block-1000-full > .column {
    -ms-flex: 0 0 100%;
    -webkit-box-flex: 0;
    flex: 0 0 100%;
    max-width: 100%;
  }
}

@media screen and (max-width: 900px) {
  .block-900-full > .column {
    -ms-flex: 0 0 100%;
    -webkit-box-flex: 0;
    flex: 0 0 100%;
    max-width: 100%;
  }
}

/* ===================================================================
 * # base style overrides
 *
 * ------------------------------------------------------------------- */
:root {
  --primary-color: #ff6c4d;
  /* --primary-color: #f9861a; */
}

html {
  font-size: 10px;
}

@media screen and (max-width: 400px) {
  html {
    font-size: 9.444444444444444px;
  }
}

html,
body {
  height: 100%;
}

body {
  background: #0b0a15;
  font-family: "Martel", serif;
  font-size: 1.8rem;
  font-style: normal;
  font-weight: normal;
  line-height: 1.778;
  color: #000000;
  margin: 0;
  padding: 0;
  position: relative;
}

/* ------------------------------------------------------------------- 
 * ## links
 * ------------------------------------------------------------------- */
a {
  color: var(--primary-color);
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

a:hover,
a:focus,
a:active {
  color: #544d9d;
}

a:hover,
a:active {
  outline: 0;
}

/* ===================================================================
 * # typography & general theme styles
 * 
 * ------------------------------------------------------------------- */
h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
  /* font-family: "Gothic A1", sans-serif; */
  font-family: "Roboto Mono", monospace;
  font-weight: 700;
  font-style: normal;
  color: #000000;
  -webkit-font-variant-ligatures: common-ligatures;
  font-variant-ligatures: common-ligatures;
  text-rendering: optimizeLegibility;
}

h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4 {
  margin-top: 6rem;
  margin-bottom: 1.6rem;
}

@media screen and (max-width: 600px) {
  h1,
  .h1,
  h2,
  .h2,
  h3,
  .h3,
  h4,
  .h4 {
    margin-top: 5.6rem;
  }
}

h5,
.h5,
h6,
.h6 {
  margin-top: 4.8rem;
  margin-bottom: 1.2rem;
}

@media screen and (max-width: 600px) {
  h5,
  .h5,
  h6,
  .h6 {
    margin-top: 4.4rem;
    margin-bottom: 0.8rem;
  }
}

h1,
.h1 {
  font-size: 3.6rem;
  line-height: 1.222;
}

@media screen and (max-width: 600px) {
  h1,
  .h1 {
    font-size: 3.3rem;
  }
}

h2,
.h2 {
  font-size: 3.2rem;
  line-height: 1.25;
}

h3,
.h3 {
  font-size: 2.4rem;
  line-height: 1.167;
}

h4,
.h4 {
  font-size: 2.1rem;
  line-height: 1.333;
}

h5,
.h5 {
  font-size: 1.8rem;
  line-height: 1.333;
}

h6,
.h6 {
  font-size: 1.6rem;
  line-height: 1.5;
  text-transform: uppercase;
  letter-spacing: .3rem;
}

p img {
  margin: 0;
}

p.lead {
  /* font-family: "Gothic A1", sans-serif; */
  font-family: "Roboto Mono", monospace;
  font-weight: 300;
  font-size: 2.4rem;
  line-height: 1.833;
  margin-bottom: 3.6rem;
  color: #000000;
}

@media screen and (max-width: 1200px) {
  p.lead {
    font-size: 2.2rem;
  }
}

@media screen and (max-width: 600px) {
  p.lead {
    font-size: 2.1rem;
  }
}

em,
i,
strong,
b {
  font-size: inherit;
  line-height: inherit;
}

em,
i {
  font-family: "Martel", serif;
  font-style: italic;
}

strong,
b {
  font-family: "Martel", serif;
  font-weight: 700;
}

small {
  font-size: 1.2rem;
  line-height: inherit;
}

blockquote {
  margin: 4rem 0;
  padding: 4rem 4rem;
  border-left: 4px solid black;
  position: relative;
}

@media screen and (max-width: 600px) {
  blockquote {
    padding: 3.2rem 3.2rem;
  }
}

@media screen and (max-width: 400px) {
  blockquote {
    padding: 2.8rem 2.8rem;
  }
}

blockquote p {
  font-family: "Martel", serif;
  font-weight: 400;
  padding: 0;
  font-size: 2.8rem;
  line-height: 1.857;
  color: #000000;
}

@media screen and (max-width: 1200px) {
  blockquote p {
    font-size: 2.6rem;
  }
}

@media screen and (max-width: 600px) {
  blockquote p {
    font-size: 2.2rem;
  }
}

blockquote cite {
  display: block;
  /* font-family: "Gothic A1", sans-serif; */
  font-family: "Roboto Mono", monospace;
  font-size: 1.5rem;
  font-style: normal;
  line-height: 1.333;
}

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

blockquote cite,
blockquote cite a,
blockquote cite a:visited {
  color: #7e7e7e;
  border: none;
}

abbr {
  font-family: "Martel", serif;
  font-weight: 700;
  font-variant: small-caps;
  text-transform: lowercase;
  letter-spacing: .05rem;
  color: #7e7e7e;
}

var,
kbd,
samp,
code,
pre {
  font-family: Consolas, "Andale Mono", Courier, "Courier New", monospace;
}

pre {
  padding: 2.4rem 3.2rem 3.2rem;
  background: #efefef;
  overflow-x: auto;
}

code {
  font-size: 1.4rem;
  margin: 0 .2rem;
  padding: .4rem .8rem;
  white-space: nowrap;
  background: #efefef;
  border: 1px solid #d3d3d3;
  color: #000000;
  border-radius: 3px;
}

pre > code {
  display: block;
  white-space: pre;
  line-height: 2;
  padding: 0;
  margin: 0;
}

del {
  text-decoration: line-through;
}

abbr[title],
dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
  text-decoration: none;
}

mark {
  background: #fff099;
  color: #000000;
}

hr {
  border: solid #e0e0e0;
  border-width: 1px 0 0;
  clear: both;
  margin: 8rem 0 9.6rem;
  height: 0;
}

/* ------------------------------------------------------------------- 
 * ## Lists
 * ------------------------------------------------------------------- */
ol {
  list-style: decimal;
}

ul {
  list-style: disc;
}

li {
  display: list-item;
}

ol,
ul {
  margin-left: 1.6rem;
}

ul li {
  padding-left: .4rem;
}

ul ul,
ul ol,
ol ol,
ol ul {
  margin: .8rem 0 .8rem 1.6rem;
}

ul.disc li {
  display: list-item;
  list-style: none;
  padding: 0 0 0 .8rem;
  position: relative;
}

ul.disc li::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--primary-color);
  position: absolute;
  left: -16px;
  top: 11px;
  vertical-align: middle;
}

dt {
  margin: 0;
  color: var(--primary-color);
}

dd {
  margin: 0 0 0 2rem;
}

/* ------------------------------------------------------------------- 
 * ## responsive video container
 * ------------------------------------------------------------------- */
.video-container {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
}

.video-container iframe,
.video-container object,
.video-container embed,
.video-container video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* ------------------------------------------------------------------- 
 * ## floated image 
 * ------------------------------------------------------------------- */
img.h-pull-right {
  margin: 1.2rem 0 1.2rem 2.8rem;
}

img.h-pull-left {
  margin: 1.2rem 2.8rem 1.2rem 0;
}

/* ------------------------------------------------------------------- 
 * ## tables
 * ------------------------------------------------------------------- */
table {
  border-width: 0;
  width: 100%;
  max-width: 100%;
  /* font-family: "Gothic A1", sans-serif; */
  font-family: "Roboto Mono", monospace;
  border-collapse: collapse;
}

th,
td {
  padding: 1.5rem 3.2rem;
  text-align: left;
  border-bottom: 1px solid #e0e0e0;
}

th {
  color: #000000;
  /* font-family: "Gothic A1", sans-serif; */
  font-family: "Roboto Mono", monospace;
  font-weight: 700;
}

th:first-child,
td:first-child {
  padding-left: 0;
}

th:last-child,
td:last-child {
  padding-right: 0;
}

.table-responsive {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

/* ------------------------------------------------------------------- 
 * ## Spacing
 * ------------------------------------------------------------------- */
button,
.btn {
  margin-bottom: 1.6rem;
}

fieldset {
  margin-bottom: 1.6rem;
}

input,
textarea,
select,
pre,
blockquote,
figure,
table,
p,
ul,
ol,
dl,
form,
.video-container,
.ss-custom-select {
  margin-bottom: 3.2rem;
}

/* ===================================================================
 * # preloader
 *
 * ------------------------------------------------------------------- */
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #0b0a15;
  z-index: 500;
  height: 100vh;
  width: 100%;
  overflow: hidden;
}

.no-js #preloader,
.oldie #preloader {
  display: none;
}

.spinner:before,
.spinner:after {
  box-sizing: border-box;
  content: "";
  display: block;
  position: fixed;
  top: 50%;
  left: 50%;
  transform-style: preserve-3d;
  transform-origin: 50%;
  perspective-origin: 50% 50%;
  background-size: 10em 10em;
  background-image: url(/templates/template-slate/images/preloader.svg);
  width: 10em;
  height: 10em;
  margin-top: -5em;
  margin-left: -5em;
  animation-timing-function: linear;
}

.spinner:before {
  -webkit-animation: 750ms rotateBefore infinite linear reverse;
  animation: 750ms rotateBefore infinite linear reverse;
  transform: rotateY(50%);
  perspective: 340px;
}

.spinner:after {
  -webkit-animation: 750ms rotateAfter infinite linear;
  animation: 750ms rotateAfter infinite linear;
  transform: rotateY(50%);
  perspective: 340px;
}

@-webkit-keyframes rotateBefore {
  from {
    -webkit-transform: rotateX(60deg) rotateY(45deg) rotateZ(0deg);
    transform: rotateX(60deg) rotateY(45deg) rotateZ(0deg);
  }
  to {
    -webkit-transform: rotateX(60deg) rotateY(45deg) rotateZ(-360deg);
    transform: rotateX(60deg) rotateY(45deg) rotateZ(-360deg);
  }
}

@keyframes rotateBefore {
  from {
    -webkit-transform: rotateX(60deg) rotateY(45deg) rotateZ(0deg);
    transform: rotateX(60deg) rotateY(45deg) rotateZ(0deg);
  }
  to {
    -webkit-transform: rotateX(60deg) rotateY(45deg) rotateZ(-360deg);
    transform: rotateX(60deg) rotateY(45deg) rotateZ(-360deg);
  }
}

@-webkit-keyframes rotateAfter {
  from {
    -webkit-transform: rotateX(240deg) rotateY(45deg) rotateZ(0deg);
    transform: rotateX(240deg) rotateY(45deg) rotateZ(0deg);
  }
  to {
    -webkit-transform: rotateX(240deg) rotateY(45deg) rotateZ(360deg);
    transform: rotateX(240deg) rotateY(45deg) rotateZ(360deg);
  }
}

@keyframes rotateAfter {
  from {
    -webkit-transform: rotateX(240deg) rotateY(45deg) rotateZ(0deg);
    transform: rotateX(240deg) rotateY(45deg) rotateZ(0deg);
  }
  to {
    -webkit-transform: rotateX(240deg) rotateY(45deg) rotateZ(360deg);
    transform: rotateX(240deg) rotateY(45deg) rotateZ(360deg);
  }
}

/* ===================================================================
 * # forms
 *
 * ------------------------------------------------------------------- */
fieldset {
  border: none;
}

input[type="email"],
input[type="number"],
input[type="search"],
input[type="text"],
input[type="tel"],
input[type="url"],
input[type="password"],
textarea,
select {
  display: block;
  height: 6.8rem;
  padding: 1.8rem 0 1.5rem;
  border: 0;
  outline: none;
  color: #000000;
  /* font-family: "Gothic A1", sans-serif; */
  font-family: "Roboto Mono", monospace;
  font-size: 1.6rem;
  line-height: 3.2rem;
  max-width: 100%;
  background: transparent;
  border-bottom: 1px solid #d3d3d3;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}

.ss-custom-select {
  position: relative;
  padding: 0;
}

.ss-custom-select select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  text-indent: 0.01px;
  text-overflow: "";
  margin: 0;
  line-height: 3rem;
  vertical-align: middle;
}

.ss-custom-select select option {
  padding-left: 2rem;
  padding-right: 2rem;
}

.ss-custom-select select::-ms-expand {
  display: none;
}

.ss-custom-select::after {
  border-bottom: 2px solid #000000;
  border-right: 2px solid #000000;
  content: "";
  display: block;
  height: 8px;
  width: 8px;
  margin-top: -7px;
  pointer-events: none;
  position: absolute;
  right: 2.4rem;
  top: 50%;
  -webkit-transition: all 0.15s ease-in-out;
  transition: all 0.15s ease-in-out;
  -webkit-transform-origin: 66% 66%;
  transform-origin: 66% 66%;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

textarea {
  min-height: 25.6rem;
}

input[type="email"]:focus,
input[type="number"]:focus,
input[type="search"]:focus,
input[type="text"]:focus,
input[type="tel"]:focus,
input[type="url"]:focus,
input[type="password"]:focus,
textarea:focus,
select:focus {
  color: #000000;
  border-bottom: 1px solid #000000;
}

label,
legend {
  /* font-family: "Gothic A1", sans-serif; */
  font-family: "Roboto Mono", monospace;
  font-weight: 700;
  font-size: 1.4rem;
  margin-bottom: .8rem;
  line-height: 1.714;
  color: #000000;
  display: block;
}

input[type="checkbox"],
input[type="radio"] {
  display: inline;
}

label > .label-text {
  display: inline-block;
  margin-left: 1rem;
  /* font-family: "Gothic A1", sans-serif; */
  font-family: "Roboto Mono", monospace;
  line-height: inherit;
}

label > input[type="checkbox"],
label > input[type="radio"] {
  margin: 0;
  position: relative;
  top: .2rem;
}

/* ------------------------------------------------------------------- 
 * ## Style Placeholder Text
 * ------------------------------------------------------------------- */
::-webkit-input-placeholder {
  /* WebKit, Blink, Edge */
  color: #8c8c8c;
}

:-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  color: #8c8c8c;
}

::-ms-input-placeholder {
  /* Microsoft Edge */
  color: #8c8c8c;
}

::placeholder {
  /* Most modern browsers support this now. */
  color: #8c8c8c;
}

.placeholder {
  color: #8c8c8c !important;
}

/* ------------------------------------------------------------------- 
 * ## Change Autocomplete styles in Chrome
 * ------------------------------------------------------------------- */
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus input:-webkit-autofill,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover textarea:-webkit-autofill:focus,
select:-webkit-autofill,
select:-webkit-autofill:hover,
select:-webkit-autofill:focus {
  -webkit-text-fill-color: var(--primary-color);
  -webkit-transition: background-color 5000s ease-in-out 0s;
  transition: background-color 5000s ease-in-out 0s;
}

/* ===================================================================
 * # buttons
 *
 * ------------------------------------------------------------------- */
.btn,
button,
input[type="submit"],
input[type="reset"],
input[type="button"] {
  display: inline-block;
  font-family: "Work Sans", sans-serif;
  font-weight: 600;
  font-size: 1.3rem;
  text-transform: uppercase;
  letter-spacing: .6rem;
  height: 6rem;
  line-height: 5.6rem;
  padding: 0 3.2rem;
  margin: 0 .4rem 1.6rem 0;
  color: #000000;
  text-decoration: none;
  text-align: center;
  white-space: nowrap;
  cursor: pointer;
  -webkit-transition: all .3s;
  transition: all .3s;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background-color: #d3d3d3;
  border: 0.2rem solid #d3d3d3;
}

.btn:hover,
button:hover,
input[type="submit"]:hover,
input[type="reset"]:hover,
input[type="button"]:hover,
.btn:focus,
button:focus,
input[type="submit"]:focus,
input[type="reset"]:focus,
input[type="button"]:focus {
  background-color: #000000;
  border-color: #000000;
  color: #ffffff;
  outline: 0;
}

/* button primary
 * ------------------------------------------------- */
.btn.btn--primary,
button.btn--primary,
input[type="submit"].btn--primary,
input[type="reset"].btn--primary,
input[type="button"].btn--primary {
  background: var(--primary-color);
  border-color: var(--primary-color);
  color: #ffffff;
}

.btn.btn--primary:hover,
button.btn--primary:hover,
input[type="submit"].btn--primary:hover,
input[type="reset"].btn--primary:hover,
input[type="button"].btn--primary:hover,
.btn.btn--primary:focus,
button.btn--primary:focus,
input[type="submit"].btn--primary:focus,
input[type="reset"].btn--primary:focus,
input[type="button"].btn--primary:focus {
  background: #000000;
  border-color: #000000;
}

/* button modifiers
 * ------------------------------------------------- */
.btn.h-full-width,
button.h-full-width {
  width: 100%;
  margin-right: 0;
}

.btn--small,
button.btn--small {
  height: 5.6rem !important;
  line-height: 5.2rem !important;
}

.btn--medium,
button.btn--medium {
  height: 6.4rem !important;
  line-height: 6rem !important;
}

.btn--large,
button.btn--large {
  height: 6.8rem !important;
  line-height: 6.4rem !important;
}

.btn--stroke,
button.btn--stroke {
  background: transparent !important;
  border: 0.2rem solid #000000;
  color: #000000;
}

.btn--stroke:hover,
button.btn--stroke:hover {
  background: #000000 !important;
  border: 0.2rem solid #000000;
  color: #ffffff;
}

.btn--pill,
button.btn--pill {
  padding-left: 3.2rem !important;
  padding-right: 3.2rem !important;
  border-radius: 1000px !important;
}

button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

/* ===================================================================
 * # Common and Reusable Styles
 *
 * ------------------------------------------------------------------- */
.overflow {
  overflow: hidden;
}

.wide {
  max-width: 1400px;
}

.wider {
  max-width: 1600px;
}

.narrow {
  max-width: 1000px;
}

.subhead {
  font-size: 1.4rem;
  line-height: 1.286;
  text-transform: uppercase;
  letter-spacing: .4em;
  margin-top: 0;
  margin-bottom: 6rem;
  color: var(--primary-color);
}

.display-1 {
  font-size: 4.8rem;
  line-height: 1.286;
  text-transform: uppercase;
  letter-spacing: .4em;
  text-transform: uppercase;
  color: var(--primary-color);
}

.section-intro {
  position: relative;
  margin-bottom: 12rem;
}

.section-intro .display-1 {
  margin-top: 0;
}

.section-intro .subhead,
.section-intro .display-1 {
  position: relative;
}

.section-intro::before {
  content: attr(data-num);
  font-family: "Work Sans", sans-serif;
  font-weight: 600;
  font-size: 30rem;
  line-height: 1;
  letter-spacing: -.045em;
  color: rgba(0, 0, 0, 0.12);
  position: absolute;
  top: -.25em;
  left: 4.4rem;
}

.h-dark-bg {
  color: #ffffff;
}

.h-dark-bg .section-intro .display-1 {
  color: #ffffff;
}

.h-dark-bg .section-intro::before {
  color: rgba(255, 255, 255, 0.08);
}

.h-dark-bg p.lead {
  color: #ffffff;
}

.right-vert-line {
  width: 2px;
  height: 20rem;
  background-color: #302c59;
  -webkit-transform: translate3d(50%, 0, 0);
  transform: translate3d(50%, 0, 0);
  position: absolute;
  top: 0;
  right: 11.2rem;
}

/* ------------------------------------------------------------------- 
 * responsive:
 * common and reusable styles
 * ------------------------------------------------------------------- */
@media screen and (max-width: 1200px) {
  .right-vert-line {
    right: 9rem;
  }
}

@media screen and (max-width: 800px) {
  .section-intro::before {
    font-size: 24rem;
  }

  .right-vert-line {
    height: 16rem;
    right: 6.2rem;
  }
}

@media screen and (max-width: 600px) {
  .subhead {
    font-size: 1.3rem;
  }

  .display-1 {
    font-size: 3.2rem;
  }

  .section-intro::before {
    font-size: 22rem;
  }

  .right-vert-line {
    height: 12rem;
    right: 5rem;
  }
}

@media screen and (max-width: 500px) {
  .display-1 {
    font-size: 3rem;
  }
}

@media screen and (max-width: 400px) {
  .section-intro {
    margin-bottom: 9.6rem;
  }

  .section-intro::before {
    font-size: 20rem;
  }
}

@media screen and (max-width: 360px) {
  .display-1 {
    font-size: 2.5rem;
  }

  .section-intro::before {
    font-size: 18rem;
  }
}

/* ===================================================================
 * # site header
 *
 * ------------------------------------------------------------------- */
.s-header {
  z-index: 100;
  width: 100%;
  height: 8.8rem;
  position: absolute;
  top: 4rem;
  left: 0;
}

.s-header.offset {
  -webkit-transform: translate3d(0, -100%, 0);
  transform: translate3d(0, -100%, 0);
  -webkit-transition: all .5s;
  transition: all .5s;
}

.s-header.scrolling {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.s-header.sticky {
  background-color: #050505;
  opacity: 0;
  visibility: hidden;
  position: fixed;
  top: 0;
  left: 0;
}

.s-header.sticky .header-logo img {
  width: 35px;
  height: 38px;
}

.s-header.sticky .header-content .btn {
  height: 4.8rem !important;
  line-height: 4.4rem !important;
}

.s-header.sticky .header-nav a {
  color: rgba(255, 255, 255, 0.6);
}

.s-header.sticky.scrolling {
  opacity: 1;
  visibility: visible;
}

.header-content {
  height: 8.8rem;
  position: relative;
}

/* -------------------------------------------------------------------
 * ## header logo
 * ------------------------------------------------------------------- */
.header-logo {
  z-index: 101;
  display: inline-block;
  margin: 0;
  padding: 0;
  -webkit-transition: all .5s;
  transition: all .5s;
  -webkit-transform: translate3d(0, -50%, 0);
  transform: translate3d(0, -50%, 0);
  position: absolute;
  left: 8rem;
  top: 50%;
}

.header-logo a {
  display: block;
  border: none;
  padding: 0;
  outline: 0;
}

.header-logo :is(img, svg) {
  width: 41px;
  height: 44px;
  vertical-align: bottom;
  fill: white;
}

/* -------------------------------------------------------------------
 * ## main navigation
 * ------------------------------------------------------------------- */
.header-nav-wrap {
  max-width: 1400px;
  padding-left: 10px;
}

.header-nav {
  list-style: none;
  /* font-family: "Gothic A1", sans-serif; */
  font-family: "Roboto Mono", monospace;
  font-weight: 700;
  font-size: 1.4rem;
  line-height: 6rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  margin: 0;
}

.header-nav a {
  color: rgba(255, 255, 255, 0.4);
}

.active-link,
.header-nav a:hover,
.header-nav a:focus {
  color: #ffffff !important;
}

.header-nav li {
  display: inline-block;
  padding-left: 0;
  margin: 0 1rem;
}

/* ------------------------------------------------------------------- 
 * ## mobile menu toggle
 * ------------------------------------------------------------------- */
.header-menu-toggle {
  z-index: 101;
  display: none;
  height: 4.2rem;
  width: 4.2rem;
  line-height: 4.2rem;
  /* font-family: "Gothic A1", sans-serif; */
  font-family: "Roboto Mono", monospace;
  font-size: 1.4rem;
  text-transform: uppercase;
  letter-spacing: .2rem;
  color: #ffffff;
  outline: none;
  -webkit-transition: all .3s;
  transition: all .3s;
  position: absolute;
  right: 5.2rem;
  top: 1.6rem;
}

.header-menu-toggle:hover,
.header-menu-toggle:focus {
  color: #ffffff;
}

.header-menu-toggle span {
  display: block;
  width: 2.4rem;
  height: 2px;
  background-color: #ffffff;
  -webkit-transition: all .5s;
  transition: all .5s;
  font: 0 / 0 a;
  text-shadow: none;
  color: transparent;
  margin-top: -1px;
  position: absolute;
  top: 50%;
  left: .9rem;
  right: auto;
  bottom: auto;
}

.header-menu-toggle span::before,
.header-menu-toggle span::after {
  content: "";
  width: 100%;
  height: 100%;
  background-color: inherit;
  -webkit-transition: all .5s;
  transition: all .5s;
  position: absolute;
  left: 0;
}

.header-menu-toggle span::before {
  top: -.9rem;
}

.header-menu-toggle span::after {
  bottom: -.9rem;
}

.header-menu-toggle.is-clicked span {
  background-color: rgba(255, 255, 255, 0);
  -webkit-transition: all .1s;
  transition: all .1s;
}

.header-menu-toggle.is-clicked span::before,
.header-menu-toggle.is-clicked span::after {
  background-color: white;
}

.header-menu-toggle.is-clicked span::before {
  top: 0;
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
}

.header-menu-toggle.is-clicked span::after {
  bottom: 0;
  -webkit-transform: rotate(225deg);
  transform: rotate(225deg);
}

/* ------------------------------------------------------------------- 
 * ## download resume button
 * ------------------------------------------------------------------- */
.header-content .btn {
  border-color: #ffffff;
  color: #ffffff;
  margin: 0;
  padding: 0 4rem;
  font-size: 1.1rem;
  -webkit-transform: translate3d(0, -50%, 0);
  transform: translate3d(0, -50%, 0);
  position: absolute;
  top: 50%;
  right: 8rem;
}

.header-content .btn:hover,
.header-content .btn:focus {
  background-color: var(--primary-color) !important;
  border-color: var(--primary-color) !important;
}

/* ------------------------------------------------------------------- 
 * responsive:
 * header
 * ------------------------------------------------------------------- */
@media screen and (max-width: 1700px) {
  .header-logo {
    left: 6rem;
  }

  .header-nav-wrap {
    max-width: none;
    width: 100%;
    padding-left: 13.2rem;
  }

  .header-content .btn {
    right: 6rem;
  }
}

@media screen and (max-width: 1000px) {
  .header-content .btn {
    height: 4.8rem !important;
    line-height: 4.4rem !important;
  }
}

@media screen and (max-width: 900px) {
  .s-header {
    top: 2rem;
    height: 8rem;
  }

  .header-logo :is(img, svg) {
    width: 37px;
    height: 40px;
  }

  .header-content {
    display: block;
    background-color: #050505;
    height: auto;
    width: 100%;
    padding: 16rem 6rem 8rem;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
    position: absolute;
    top: -2rem;
    left: 0;
    -webkit-transition: -webkit-transform 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
    transition: -webkit-transform 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
    transition: transform 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
    transition: transform 0.5s cubic-bezier(0.215, 0.61, 0.355, 1), -webkit-transform 0.5s
      cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  .header-content .btn {
    margin-top: 4.8rem;
    -webkit-transform: translate3d(0, -2rem, 0);
    transform: translate3d(0, -2rem, 0);
    opacity: 0;
    visibility: hidden;
    position: static;
  }

  .header-nav-wrap {
    padding: 0;
    -webkit-transform: translate3d(0, -2rem, 0);
    transform: translate3d(0, -2rem, 0);
    opacity: 0;
    visibility: hidden;
  }

  .header-nav {
    display: block;
    width: 100%;
    padding: 0;
  }

  .header-nav a {
    display: block;
  }

  .header-nav li {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    display: block;
    margin: 0;
  }

  .header-nav li:last-child {
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }

  .header-menu-toggle {
    display: block;
  }

  .menu-is-open .header-content {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    /* -webkit-transition: -webkit-transform 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
    transition: -webkit-transform 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
    transition: transform 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
    transition: transform 0.5s cubic-bezier(0.215, 0.61, 0.355, 1), -webkit-transform 0.5s cubic-bezier(0.215, 0.61, 0.355, 1); */
  }

  .menu-is-open .header-content .btn {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
    visibility: visible;
    -webkit-transition-property: opacity, -webkit-transform;
    transition-property: opacity, -webkit-transform;
    transition-property: transform, opacity;
    transition-property: transform, opacity, -webkit-transform;
    -webkit-transition-duration: .5s;
    transition-duration: .5s;
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transition-delay: .7s;
    transition-delay: .7s;
  }

  .menu-is-open .header-nav-wrap {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
    visibility: visible;
    -webkit-transition: all 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
    transition: all 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transition-delay: .6s;
    transition-delay: .6s;
  }
}

@media screen and (max-width: 600px) {
  .header-logo {
    left: 4rem;
  }

  .header-menu-toggle {
    right: 3.2rem;
  }

  .header-content {
    padding: 16rem 4rem 8rem;
  }

  .header-content .btn {
    display: block;
  }
}

/* ===================================================================
 * # hero
 *
 * ------------------------------------------------------------------- */
.s-hero {
  width: 100%;
  height: 100vh;
  min-height: 82rem;
  overflow: hidden;
  background-color: transparent;
  position: relative;
}

.s-hero::before {
  display: block;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left top, right top, color-stop(10%, black), to(rgba(0, 0, 0, 0)));
  background: linear-gradient(90deg, black 10%, rgba(0, 0, 0, 0) 100%);
  opacity: 0.25;
}

.no-js .s-hero {
  background: #ffffff;
}

.hero-content {
  height: 100%;
  max-width: 1400px;
  -ms-flex-align: end;
  -webkit-box-align: end;
  align-items: flex-end;
  padding-top: 20vh;
  padding-bottom: 14vh;
  position: relative;
}

.hero-content h1 {
  font-size: 7rem;
  font-weight: 400;
  line-height: 1.257;
  padding-right: 3.2rem;
  margin-top: 0;
  color: #ffffff;
  position: relative;
}

.hero-content h1::before {
  content: "";
  display: block;
  height: 2px;
  width: 8rem;
  background-color: var(--primary-color);
  position: absolute;
  left: -10.8rem;
  top: .55em;
}

/* -------------------------------------------------------------------
 * ## hero social
 * ------------------------------------------------------------------- */
.hero-social {
  list-style: none;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-flow: row wrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  flex-flow: row wrap;
  /* font-family: "Gothic A1", sans-serif; */
  font-family: "Roboto Mono", monospace;
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 3.2rem;
  text-transform: uppercase;
  letter-spacing: .5em;
  margin-top: 8rem;
  margin-left: .4rem;
  margin-bottom: 0;
  position: relative;
}

.hero-social :is(a, svg) {
  color: #ffffff;
  fill: #ffffff;
}

.hero-social :is(a, svg):hover,
.hero-social :is(a, svg):focus,
.hero-social :is(a, svg):active {
  color: var(--primary-color);
  fill: var(--primary-color);
}

.hero-social li {
  padding-left: 0;
}

.hero-social li::after {
  content: "/";
  color: rgba(255, 255, 255, 0.1);
  margin-left: 0rem;
  margin-right: 1rem;
}

.hero-social li:last-child::after {
  display: none;
}

/* -------------------------------------------------------------------
 * ## hero profile
 * ------------------------------------------------------------------- */
.hero-profile {
  margin-top: 6rem;
  margin-bottom: 2rem;
  position: relative;
}

.hero-profile__image {
  width: 20rem;
  height: 20rem;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid var(--primary-color);
  box-shadow: 0 0 0 4px rgba(255, 108, 77, 0.2);
  position: relative;
  transition: all 0.3s ease;
}

.hero-profile__image:hover {
  transform: scale(1.05);
  box-shadow: 0 0 0 8px rgba(255, 108, 77, 0.3);
}

.hero-profile__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-profile__image::before {
  content: "";
  position: absolute;
  top: -8px;
  left: -8px;
  right: -8px;
  bottom: -8px;
  border-radius: 50%;
  background: linear-gradient(45deg, var(--primary-color), #ff8a65);
  z-index: -1;
  animation: rotate 3s linear infinite;
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

/* ------------------------------------------------------------------- 
 * responsive:
 * hero profile
 * ------------------------------------------------------------------- */
@media screen and (max-width: 1200px) {
  .hero-profile__image {
    width: 18rem;
    height: 18rem;
  }
}

@media screen and (max-width: 800px) {
  .hero-profile {
    margin-top: 4rem;
    text-align: center;
  }

  .hero-profile__image {
    width: 16rem;
    height: 16rem;
    margin: 0 auto;
  }
}

@media screen and (max-width: 600px) {
  .hero-profile__image {
    width: 14rem;
    height: 14rem;
  }
}

@media screen and (max-width: 400px) {
  .hero-profile__image {
    width: 12rem;
    height: 12rem;
  }
}

/* -------------------------------------------------------------------
 * ## hero scroll
 * ------------------------------------------------------------------- */
.hero-scroll {
  position: absolute;
  right: 8rem;
  bottom: 10rem;
}

.hero-scroll::after {
  content: "";
  display: block;
  width: 2px;
  height: 7rem;
  background-color: white;
  -webkit-transform: translate3d(50%, 0, 0);
  transform: translate3d(50%, 0, 0);
  position: absolute;
  right: 50%;
  bottom: -10rem;
}

.hero-scroll .scroll-link,
.hero-scroll .scroll-link svg path {
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}

.hero-scroll .scroll-link {
  text-decoration: none;
  border: 0 none;
  display: block;
  height: 6.4rem;
  width: 6.4rem;
  border-radius: 50%;
  background-color: rgba(0, 0, 0, 0.5);
  margin: 0;
  position: relative;
}

.hero-scroll .scroll-link svg {
  height: 1.2rem;
  width: 1.2rem;
  position: absolute;
  -webkit-transform: translate3d(-50%, -50%, 0);
  transform: translate3d(-50%, -50%, 0);
  left: 50%;
  top: 50%;
}

.hero-scroll .scroll-link svg path {
  fill: #ffffff;
}

.hero-scroll .scroll-link:hover,
.hero-scroll .scroll-link:focus {
  background-color: var(--primary-color);
}

/* -------------------------------------------------------------------
 * ## animate intro content
 * ------------------------------------------------------------------- */
html.ss-preload .hero-content {
  opacity: 0;
}

html.ss-loaded .hero-content {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
  -webkit-animation-duration: 3s;
  animation-duration: 3s;
  -webkit-animation-timing-function: cubic-bezier(0.23, 1, 0.32, 1);
  animation-timing-function: cubic-bezier(0.23, 1, 0.32, 1);
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

html.no-csstransitions .hero-content {
  opacity: 1;
}

/* ------------------------------------------------------------------- 
 * ## animations
 * ------------------------------------------------------------------- */

/* fade in */
@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }

  to {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }

  to {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

/* fade in left */
@-webkit-keyframes fadeInLeft {
  from {
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }

  to {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }

  to {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

/* fade out */
@-webkit-keyframes fadeOut {
  from {
    opacity: 1;
    visibility: visible;
  }

  to {
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}

@keyframes fadeOut {
  from {
    opacity: 1;
    visibility: visible;
  }

  to {
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}

/* ------------------------------------------------------------------- 
 * responsive:
 * hero
 * ------------------------------------------------------------------- */
@media screen and (max-width: 1800px) {
  .hero-content h1 {
    font-size: 6.3rem;
  }

  .hero-content h1::before {
    width: 6rem;
    left: -8.8rem;
  }
}

@media screen and (max-width: 1700px) {
  .hero-content {
    max-width: 1200px;
  }
}

@media screen and (max-width: 1500px) {
  .hero-content {
    max-width: 1000px;
  }
}

@media screen and (max-width: 1300px) {
  .hero-content {
    max-width: 1200px;
  }

  .hero-content h1 {
    font-size: 6rem;
    padding-top: 3.2rem;
  }

  .hero-content h1::before {
    width: 6rem;
    top: 0;
    left: 0;
  }
}

@media screen and (max-width: 1200px) {
  .hero-scroll {
    right: 6rem;
  }

  .hero-scroll::after {
    height: 8rem;
  }

  .hero-scroll .scroll-link {
    height: 6rem;
    width: 6rem;
  }
}

@media screen and (max-width: 1000px) {
  .hero-content h1 {
    font-size: 5.6rem;
  }

  .hero-social {
    font-size: 1.1rem;
  }
}

@media screen and (max-width: 800px) {
  .hero-content h1 {
    font-size: 4.8rem;
  }

  .hero-content h1 br {
    display: none;
  }

  .hero-social {
    padding-right: 7.2rem;
  }

  .hero-scroll {
    right: 3.6rem;
  }

  .hero-scroll .scroll-link {
    height: 5.2rem;
    width: 5.2rem;
  }
}

@media screen and (max-width: 600px) {
  .hero-content h1 {
    font-size: 4.6rem;
  }

  .hero-social {
    font-size: 1rem;
  }

  .hero-scroll {
    right: 2.4rem;
  }
}

@media screen and (max-width: 500px) {
  .hero-content h1 {
    font-size: 4.4rem;
    padding-right: 0;
  }
}

@media screen and (max-width: 400px) {
  .hero-content h1 {
    font-size: 4rem;
  }
}

@media screen and (max-width: 360px) {
  .hero-content h1 {
    font-size: 3.8rem;
  }
}

/* ===================================================================
 * # portfolio
 *
 * ------------------------------------------------------------------- */
.card {
  border-radius: 7px;
  overflow: hidden;
}

.s-portfolio {
  padding-top: 24rem;
  padding-bottom: 24rem;
  background-color: #ffffff;
  position: relative;
}

/* ------------------------------------------------------------------- 
 * ## portfolio list
 * ------------------------------------------------------------------- */
.s-portfolio__list {
  max-width: 1240px;
  gap: 1rem;
  padding: 0 2rem;
}

.folio-item {
  position: relative;
  overflow: hidden;
}

.folio-item__caption {
  display: none;
}

/* thumbnail
 *---------------------------------------------- */
.folio-item__thumb img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.folio-item__thumb a {
  display: block;
}

.folio-item__thumb a::before,
.folio-item__thumb div::before {
  z-index: 1;
  content: "";
  display: block;
  background-color: rgba(0, 0, 0, 0.8);
  opacity: 0;
  visibility: hidden;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-transition: all, .5s;
  transition: all, .5s;
}

.folio-item__thumb a::after {
  z-index: 1;
  content: "+";
  /* font-family: "Gothic A1", sans-serif; */
  font-family: "Roboto Mono", monospace;
  font-weight: 300;
  font-size: 3rem;
  color: #ffffff;
  display: block;
  height: 32px;
  width: 32px;
  line-height: 32px;
  margin-left: -16px;
  margin-top: -16px;
  text-align: center;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: scale(0.5);
  transform: scale(0.5);
  -webkit-transition: all, 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: all, 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
  position: absolute;
  left: 50%;
  top: 50%;
}

.folio-item__thumb img {
  vertical-align: bottom;
}

/* portfolio info
 *---------------------------------------------- */
.folio-item__info {
  z-index: 2;
  padding: 0 3rem;
  -webkit-transform: translate3d(0, -100%, 0);
  transform: translate3d(0, -100%, 0);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all, 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: all, 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
  position: absolute;
  left: 0;
  top: 3.6rem;
}

.folio-item__title {
  color: #ffffff;
  font-weight: 400;
  font-size: 2.1rem;
  line-height: 1.333;
  margin: 0;
}

.folio-item__cat {
  color: rgba(255, 255, 255, 0.5);
  /* font-family: "Gothic A1", sans-serif; */
  font-family: "Roboto Mono", monospace;
  font-size: 1.4rem;
  margin-bottom: 0;
}

.folio-item__project-link {
  z-index: 2;
  display: block;
  /* font-family: "Gothic A1", sans-serif; */
  font-family: "Roboto Mono", monospace;
  font-weight: 400;
  font-size: 1.2rem;
  line-height: 2rem;
  color: #000000;
  background-color: #ffffff;
  padding: .6rem 1.2rem;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translate3d(-100%, 0, 0);
  transform: translate3d(-100%, 0, 0);
  -webkit-transition: all, 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: all, 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
  position: absolute;
  /* bottom: 0rem; */
  bottom: 3.9rem;
  /* left: 3rem; */
  left: 0rem;
  right: 0rem;
}

.folio-item__project-link::before {
  display: block;
  content: "";
  height: 1px;
  width: 3rem;
  background-color: rgba(255, 255, 255, 0.3);
  position: absolute;
  top: 50%;
  left: -3rem;
}

.folio-item__project-link:hover,
.folio-item__project-link:focus,
.folio-item__project-link:active,
.folio-item__project-link:hover a:hover {
  background-color: var(--primary-color);
  color: #ffffff;
}

/* on hover
 *---------------------------------------------- */
.folio-item:hover .folio-item__thumb a::before,
.folio-item:hover .folio-item__thumb div::before {
  opacity: 1;
  visibility: visible;
}

.folio-item:hover .folio-item__thumb a::after {
  opacity: 1;
  visibility: visible;
  -webkit-transform: scale(1);
  transform: scale(1);
}

.folio-item:hover .folio-item__project-link {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.folio-item:hover .folio-item__info {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

/* ------------------------------------------------------------------- 
 * responsive:
 * portfolio
 * ------------------------------------------------------------------- */
@media screen and (max-width: 1200px) {
  .s-portfolio::before {
    display: none;
  }

  .folio-item__thumb a::after {
    font-size: 2rem;
  }

  .folio-item__title {
    font-size: 1.8rem;
  }

  .folio-item__cat {
    font-size: 1.2rem;
  }
}

@media screen and (max-width: 800px) {
  .s-portfolio {
    padding-top: 20rem;
  }

  .folio-item__thumb a::after {
    font-size: 3rem;
  }

  .folio-item__title {
    font-size: 2.1rem;
  }

  .folio-item__cat {
    font-size: 1.4rem;
  }
}

@media screen and (max-width: 600px) {
  .folio-item__thumb a::after {
    font-size: 2rem;
  }

  .folio-item__title {
    font-size: 1.8rem;
  }

  .folio-item__cat {
    font-size: 1.2rem;
  }
}

/* ===================================================================
 * # footer
 *
 * ------------------------------------------------------------------- */
.s-footer {
  padding-top: 24rem;
  padding-bottom: 8rem;
  background-color: #0b0a15;
  position: relative;
}

.s-footer .right-vert-line {
  background-color: var(--primary-color);
}

.s-footer__bottom {
  /* font-family: "Gothic A1", sans-serif; */
  font-family: "Roboto Mono", monospace;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 8rem;
}

.s-footer .footer-email-us .btn:hover,
.s-footer .footer-email-us .btn:focus {
  background-color: #ffffff;
  border-color: #ffffff;
  color: #000000;
}

.s-footer .footer-contacts {
  margin-top: 7.2rem;
  margin-left: 8.33333%;
}

/* ------------------------------------------------------------------- 
 * ## contact block
 * ------------------------------------------------------------------- */
.footer-contact-block {
  /* font-family: "Gothic A1", sans-serif; */
  font-family: "Roboto Mono", monospace;
  font-weight: 400;
  font-size: 3rem;
  line-height: 1.2;
}

.footer-contact-block a {
  color: #ffffff;
}

.footer-contact-block a:hover,
.footer-contact-block a:focus {
  color: var(--primary-color);
}

.footer-contact-block__content,
.footer-contact-block__list li {
  padding: .8rem 0;
}

.footer-contact-block__list {
  list-style: none;
  margin-top: .4rem;
  margin-left: 0;
}

.footer-contact-block__list li {
  padding-left: 0;
}

.footer-contact-block__header {
  color: rgba(255, 255, 255, 0.4);
  margin: 0;
}

/* ------------------------------------------------------------------- 
 * ## copyright
 * ------------------------------------------------------------------- */
.ss-copyright {
  z-index: 2;
  position: relative;
}

.ss-copyright a {
  color: #ffffff;
}

.ss-copyright a:hover,
.ss-copyright a:focus {
  color: var(--primary-color);
}

.ss-copyright span {
  font-size: 1.5rem;
  display: inline-block;
}

.ss-copyright span::after {
  content: "|";
  display: inline-block;
  padding: 0 .8rem 0 1rem;
  color: rgba(255, 255, 255, 0.1);
}

.ss-copyright span:last-child::after {
  display: none;
}

/* ------------------------------------------------------------------- 
 * ## go top
 * ------------------------------------------------------------------- */
.ss-go-top {
  z-index: 2;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translate3d(0, 200%, 0);
  transform: translate3d(0, 200%, 0);
  -webkit-transition: all 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: all 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
  position: fixed;
  bottom: 8.4rem;
  right: 8rem;
}

.ss-go-top a {
  text-decoration: none;
  border: 0 none;
  display: block;
  height: 6.4rem;
  width: 6.4rem;
  border-radius: 50%;
  background-color: #000000;
  -webkit-transition: all .3s;
  transition: all .3s;
  position: relative;
}

.ss-go-top a:hover,
.ss-go-top a:focus {
  background-color: var(--primary-color);
}

.ss-go-top svg {
  height: 3rem;
  width: 2.5rem;
  position: absolute;
  -webkit-transform: translate3d(-50%, -50%, 0);
  transform: translate3d(-50%, -50%, 0);
  left: 50%;
  top: 50%;
}

.ss-go-top svg path {
  fill: #ffffff;
}

.ss-go-top.link-is-visible {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

/* ------------------------------------------------------------------- 
 * responsive:
 * footer
 * ------------------------------------------------------------------- */
@media screen and (max-width: 1200px) {
  .ss-go-top {
    right: 6rem;
  }

  .ss-go-top a {
    height: 6rem;
    width: 6rem;
  }
}

@media screen and (max-width: 900px) {
  .s-footer .footer-contacts {
    margin-left: 0;
  }

  .s-footer__main .column {
    -ms-flex: 0 0 100%;
    -webkit-box-flex: 0;
    flex: 0 0 100%;
    max-width: 100%;
  }
}

@media screen and (max-width: 800px) {
  .s-footer {
    padding-top: 20rem;
  }

  .ss-copyright {
    padding-right: 10rem;
  }

  .ss-go-top {
    right: 3.6rem;
  }

  .ss-go-top a {
    height: 5.2rem;
    width: 5.2rem;
  }
}

@media screen and (max-width: 600px) {
  .ss-copyright {
    padding-right: 8rem;
  }

  .ss-copyright span {
    display: block;
  }

  .ss-copyright span::after {
    display: none;
  }

  .ss-go-top {
    right: 2.4rem;
    bottom: 4rem;
  }
}

/* ===================================================================
 * # about section
 *
 * ------------------------------------------------------------------- */
.s-about {
  padding-top: 24rem;
  padding-bottom: 24rem;
  background-color: #ffffff;
  position: relative;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4rem;
  margin-top: 4rem;
}

.stat-item {
  text-align: center;
}

.stat-count {
  font-family: "Roboto Mono", monospace;
  font-size: 4.8rem;
  font-weight: 700;
  color: var(--primary-color);
  display: block;
  line-height: 1;
}

.stat-label {
  font-family: "Roboto Mono", monospace;
  font-size: 1.4rem;
  font-weight: 400;
  color: #7e7e7e;
  text-transform: uppercase;
  letter-spacing: .2rem;
  margin-top: .8rem;
  display: block;
}

/* ===================================================================
 * # services section
 *
 * ------------------------------------------------------------------- */
.s-services {
  padding-top: 24rem;
  padding-bottom: 24rem;
  background-color: #0b0a15;
  position: relative;
}

.services-list {
  margin-top: 8rem;
}

.service-item {
  margin-bottom: 6rem;
}

.service-icon {
  margin-bottom: 2.4rem;
}

.service-icon svg {
  width: 4.8rem;
  height: 4.8rem;
  stroke: var(--primary-color);
}

.service-title {
  font-family: "Roboto Mono", monospace;
  font-size: 2.4rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1.6rem;
}

.service-content p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.6rem;
  line-height: 1.6;
}

/* ===================================================================
 * # skills section
 *
 * ------------------------------------------------------------------- */
.s-skills {
  padding-top: 24rem;
  padding-bottom: 24rem;
  background-color: #ffffff;
  position: relative;
}

.skills-content {
  margin-top: 8rem;
}

.skills-content h3 {
  font-family: "Roboto Mono", monospace;
  font-size: 2.4rem;
  font-weight: 700;
  color: #000000;
  margin-bottom: 3.2rem;
}

.skill-bars {
  margin-bottom: 4rem;
}

.skill-bar {
  margin-bottom: 3.2rem;
}

.skill-label {
  font-family: "Roboto Mono", monospace;
  font-size: 1.4rem;
  font-weight: 600;
  color: #000000;
  margin-bottom: .8rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.skill-label::after {
  content: attr(data-percent) "%";
  color: var(--primary-color);
}

.skill-progress {
  height: 8px;
  background-color: #e0e0e0;
  border-radius: 4px;
  overflow: hidden;
}

.skill-fill {
  height: 100%;
  background-color: var(--primary-color);
  border-radius: 4px;
  width: 0;
  transition: width 2s ease-in-out;
}

/* ===================================================================
 * # experience section
 *
 * ------------------------------------------------------------------- */
.s-experience {
  padding-top: 24rem;
  padding-bottom: 24rem;
  background-color: #0b0a15;
  position: relative;
}

.experience-content {
  margin-top: 8rem;
}

.timeline {
  position: relative;
  padding-left: 4rem;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 2rem;
  top: 0;
  bottom: 0;
  width: 2px;
  background-color: var(--primary-color);
}

.timeline-item {
  position: relative;
  margin-bottom: 6rem;
  padding-left: 4rem;
}

.timeline-item::before {
  content: "";
  position: absolute;
  left: -6px;
  top: 0;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: var(--primary-color);
}

.timeline-date {
  font-family: "Roboto Mono", monospace;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--primary-color);
  text-transform: uppercase;
  letter-spacing: .2rem;
  margin-bottom: 1.2rem;
}

.timeline-content h3 {
  font-family: "Roboto Mono", monospace;
  font-size: 2.4rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: .8rem;
}

.timeline-content h4 {
  font-family: "Roboto Mono", monospace;
  font-size: 1.8rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 1.6rem;
}

.timeline-content p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.6rem;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.timeline-skills {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.timeline-skills li {
  background-color: rgba(255, 108, 77, 0.1);
  color: var(--primary-color);
  padding: .4rem 1.2rem;
  border-radius: 20px;
  font-size: 1.2rem;
  font-weight: 600;
}

/* ===================================================================
 * # education section
 *
 * ------------------------------------------------------------------- */
.s-education {
  padding-top: 24rem;
  padding-bottom: 24rem;
  background-color: #ffffff;
  position: relative;
}

.education-content {
  margin-top: 8rem;
}

.education-item {
  margin-bottom: 4rem;
}

.education-header {
  margin-bottom: 1.6rem;
}

.education-header h3 {
  font-family: "Roboto Mono", monospace;
  font-size: 2.4rem;
  font-weight: 700;
  color: #000000;
  margin-bottom: .8rem;
}

.education-meta {
  display: flex;
  flex-direction: column;
  gap: .4rem;
}

.education-school {
  font-family: "Roboto Mono", monospace;
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--primary-color);
}

.education-date {
  font-family: "Roboto Mono", monospace;
  font-size: 1.4rem;
  font-weight: 400;
  color: #7e7e7e;
}

.education-item p {
  color: #666666;
  font-size: 1.6rem;
  line-height: 1.6;
}

.certification-list {
  list-style: none;
  margin: 2rem 0 0 0;
  padding: 0;
}

.certification-list li {
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid #e0e0e0;
}

.certification-list li:last-child {
  border-bottom: none;
}

.certification-list strong {
  font-family: "Roboto Mono", monospace;
  font-size: 1.6rem;
  font-weight: 600;
  color: #000000;
  display: block;
  margin-bottom: .4rem;
}

.certification-list span {
  font-family: "Roboto Mono", monospace;
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--primary-color);
}

/* ===================================================================
 * # contact section
 *
 * ------------------------------------------------------------------- */
.s-contact {
  padding-top: 24rem;
  padding-bottom: 8rem;
  background-color: #0b0a15;
  position: relative;
}

.contact-content {
  margin-top: 8rem;
}

.contact-form {
  margin-bottom: 4rem;
}

.contact-form .form-field {
  margin-bottom: 3.2rem;
}

.contact-form input[type="email"],
.contact-form input[type="text"],
.contact-form textarea {
  background-color: transparent;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  color: #ffffff;
  font-family: "Roboto Mono", monospace;
}

.contact-form input[type="email"]:focus,
.contact-form input[type="text"]:focus,
.contact-form textarea:focus {
  border-bottom-color: var(--primary-color);
  color: #ffffff;
}

.contact-form ::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.message-warning,
.message-success {
  display: none;
  background-color: var(--primary-color);
  color: #ffffff;
  padding: 2rem;
  margin-top: 2rem;
  border-radius: 4px;
  font-family: "Roboto Mono", monospace;
  font-weight: 600;
}

.message-success {
  background-color: #28a745;
}

.submit-loader {
  display: none;
  margin-top: 2rem;
}

.text-loader {
  color: #ffffff;
  font-family: "Roboto Mono", monospace;
  margin-bottom: 1rem;
}

.s-loader {
  display: flex;
  gap: .5rem;
}

.s-loader > div {
  width: 8px;
  height: 8px;
  background-color: var(--primary-color);
  border-radius: 50%;
  animation: sk-bouncedelay 1.4s infinite ease-in-out both;
}

.s-loader .bounce1 {
  animation-delay: -0.32s;
}

.s-loader .bounce2 {
  animation-delay: -0.16s;
}

@keyframes sk-bouncedelay {
  0%,
  80%,
  100% {
    transform: scale(0);
  }
  40% {
    transform: scale(1.0);
  }
}

.contact-info {
  padding-left: 4rem;
}

.contact-info-group {
  margin-bottom: 4rem;
}

.contact-info-group h3 {
  font-family: "Roboto Mono", monospace;
  font-size: 2.4rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1.6rem;
}

.contact-info-group h4 {
  font-family: "Roboto Mono", monospace;
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: .8rem;
}

.contact-info-group p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.6rem;
  line-height: 1.6;
}

.contact-social {
  display: flex;
  gap: 1.6rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.contact-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: 4rem;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  transition: all 0.3s ease;
}

.contact-social a:hover {
  background-color: var(--primary-color);
  transform: translateY(-2px);
}

.contact-social svg {
  width: 2rem;
  height: 2rem;
  fill: #ffffff;
}

/* ------------------------------------------------------------------- 
 * responsive:
 * new sections
 * ------------------------------------------------------------------- */
@media screen and (max-width: 800px) {
  .s-about,
  .s-services,
  .s-skills,
  .s-experience,
  .s-education,
  .s-contact {
    padding-top: 20rem;
  }

  .about-stats {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .stat-count {
    font-size: 3.6rem;
  }

  .timeline {
    padding-left: 2rem;
  }

  .timeline::before {
    left: 1rem;
  }

  .timeline-item {
    padding-left: 2rem;
  }

  .timeline-skills {
    gap: .8rem;
  }

  .contact-info {
    padding-left: 0;
    margin-top: 4rem;
  }
}

@media screen and (max-width: 600px) {
  .education-meta {
    flex-direction: column;
  }

  .timeline-content h3 {
    font-size: 2rem;
  }

  .timeline-content h4 {
    font-size: 1.6rem;
  }

  .service-title {
    font-size: 2rem;
  }

  .skills-content h3 {
    font-size: 2rem;
  }
}
