@import url('https://fonts.googleapis.com/css2?family=PT+Serif:ital@0;1&display=swap');:root{
  --primary: #00cf5d;
}
::selection {
  background: #1d293a;
}
::-webkit-input-placeholder {
  color: inherit;
  opacity: 0.54;
}
::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit;
}
*,
:after,
:before {
  box-sizing: inherit;
}
html {
  box-sizing: border-box;
  overflow-y: scroll;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}
body {
  margin: 0;
  scroll-behavior: smooth;
  font-family: 'PT Serif', serif;
  color: #fff;
  background-color: #111a28;
  word-wrap: break-word;
}
@import url(https://fonts.googleapis.com/css?family=Lato:300,400,900&display=swap);
.container {
  width: 1200px;
  padding: 100px 25px;
  margin: 0 auto;
}
@media only screen and (max-width: 1199px) {
  .container {
    width: 100%;
  }
}
@media only screen and (max-width: 991px) {
  .container {
    padding: 80px 15px;
  }
}
@media only screen and (max-width: 768px) {
  .container {
    padding: 60px 15px;
  }
}
@media only screen and (max-width: 481px) {
  .container {
    padding: 40px 15px;
  }
}
header {
  position: fixed;
  width: 100%;
  z-index: 10;
  transform: translateY(0);
  transition: all 0.5s;
}
header.compaq {
  background-color: #1d293a;
}
header.hide {
  transform: translateY(-120px);
}
header.compaq .container {
  padding-top: 15px !important;
  padding-bottom: 15px !important;
}
.header {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.5s;
}
.header > * {
  flex: 1 1;
}
.header .logo {
  position: relative;
}
.header .logo svg {
  width: 45px;
}
.menubar {
  display: flex;
  align-items: center;
  justify-content: end;
}
.menubar li {
  margin: 0 15px;
}
.menubar li:last-child {
  margin-right: 0;
}
.menubar li a {
  font-size: 16px;
  text-transform: uppercase;
  font-weight: 400;
  color: hsla(0, 0%, 100%, 0.85);
  text-decoration: none;
}
.menubar li a.btn-download {
  display: inline-block;
  border: 2px solid var(--primary);
  padding: 5px 15px;
  border-radius: 4px;
}
.mobile-nav {
  position: absolute;
  background: var(--primary);
  right: 0;
  top: 8px;
  padding: 10px;
  line-height: 1;
  border-radius: 4px;
  color: #111a28;
  display: none;
}
@media only screen and (max-width: 768px) {
  .header {
    flex-direction: column;
    align-items: flex-start;
  }
  .mobile-nav {
    display: initial;
  }
  .menubar {
    flex-direction: column;
    background-color: #1d293a;
    align-items: flex-start;
    width: 100%;
    padding: 25px;
    border-radius: 4px;
    display: none;
  }
  .menubar.mobilenav-activate {
    display: initial;
  }
  .menubar > * {
    flex: 1 1 100%;
  }
  .menubar li {
    margin: 5px 0;
    padding: 5px 0;
  }
}
.footer-area {
  background-color: #1d293a;
}
.footer {
  align-items: center;
  justify-content: space-between;
}
.footer,
.footer .language ul {
  display: flex;
  flex-wrap: wrap;
}
.footer .language ul li {
  position: relative;
  background-color: #111a28;
  margin-right: 15px;
  padding: 3px 10px;
  font-weight: 900;
  border-radius: 4px;
}
.footer .language ul li p {
  margin-bottom: 3px;
  text-transform: uppercase;
}
.footer .language ul li .progress {
  position: absolute;
  content: "";
  left: 0;
  background-color: var(--primary);
  height: 3px;
  width: 100%;
  bottom: 0;
  border-radius: 4px;
}
.footer .copyright {
  display: flex;
  align-items: center;
}
.footer .copyright .github {
  display: flex;
  margin-right: 15px;
}
.footer .copyright .github li {
  margin-left: 5px;
}
.footer .copyright .github li a {
  text-decoration: none;
}
.footer .copyright .github li a p {
  font-weight: 300;
  font-size: 14px;
}
.footer .copyright p {
  text-transform: uppercase;
  font-weight: 900;
}
.footer .copyright p span {
  display: inline-block;
  cursor: pointer;
  margin-left: 15px;
  background-color: var(--primary);
  padding: 2px 5px;
  border-radius: 4px;
}
@media only screen and (max-width: 768px) {
  .footer > * {
    flex: 1 1 100%;
    justify-content: center;
  }
  .footer .language ul {
    justify-content: center;
    margin-bottom: 30px;
  }
  .footer .language ul li {
    margin-bottom: 15px;
  }
}
article,
aside,
details,
figcaption,
figure,
footer,
header,
main,
menu,
nav,
section,
summary {
  display: block;
}
audio,
canvas,
progress,
video {
  display: inline-block;
}
audio:not([controls]) {
  display: none;
  height: 0;
}
progress {
  vertical-align: baseline;
}
[hidden],
template {
  display: none;
}
a {
  background-color: transparent;
  -webkit-text-decoration-skip: objects;
}
a:active,
a:hover {
  outline-width: 0;
}
abbr[title] {
  border-bottom: none;
  text-decoration: underline;
  -webkit-text-decoration: underline dotted;
  text-decoration: underline dotted;
}
b,
strong {
  font-weight: inherit;
  font-weight: bolder;
}
dfn {
  font-style: italic;
}
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}
mark {
  background-color: #ff0;
  color: #000;
}
small {
  font-size: 80%;
}
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}
sub {
  bottom: -0.25em;
}
sup {
  top: -0.5em;
}
img {
  border-style: none;
}
svg:not(:root) {
  overflow: hidden;
}
code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
  font-size: 1em;
}
figure {
  margin: 1em 40px;
}
hr {
  box-sizing: content-box;
  height: 0;
  overflow: visible;
}
button,
input,
optgroup,
select,
textarea {
  font: inherit;
  margin: 0;
}
optgroup {
  font-weight: 700;
}
button,
input {
  overflow: visible;
}
button,
select {
  text-transform: none;
}
[type="reset"],
[type="submit"],
button,
html [type="button"] {
  -webkit-appearance: button;
}
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner,
button::-moz-focus-inner {
  border-style: none;
  padding: 0;
}
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring,
button:-moz-focusring {
  outline: 1px dotted ButtonText;
}
fieldset {
  border: 1px solid silver;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}
legend {
  box-sizing: border-box;
  color: inherit;
  display: table;
  max-width: 100%;
  padding: 0;
  white-space: normal;
}
textarea {
  overflow: auto;
}
[type="checkbox"],
[type="radio"] {
  box-sizing: border-box;
  padding: 0;
}
[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto;
}
[type="search"] {
  -webkit-appearance: textfield;
  outline-offset: -2px;
}
[type="search"]::-webkit-search-cancel-button,
[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}
img {
  max-width: 100%;
  padding: 0;
  margin: 0;
}
h1 {
  font-size: 2.25rem;
}
h1,
h2 {
  padding: 0;
  margin: 0;
  color: inherit;
  font-weight: 700;
  text-rendering: optimizeLegibility;
  line-height: 1.1;
}
h2 {
  font-size: 1.62671rem;
}
h3 {
  font-size: 1.38316rem;
}
h3,
h4 {
  padding: 0;
  margin: 0;
  color: inherit;
  font-weight: 700;
  text-rendering: optimizeLegibility;
  line-height: 1.1;
}
h4 {
  font-size: 1rem;
}
h5 {
  font-size: 0.85028rem;
}
h5,
h6 {
  padding: 0;
  margin: 0;
  color: inherit;
  font-weight: 700;
  text-rendering: optimizeLegibility;
  line-height: 1.1;
}
h6 {
  font-size: 0.78405rem;
}
hgroup {
  padding: 0;
  margin: 0 0 1.45rem;
}
ul {
  margin: 0;
  list-style: none;
}
ol,
ul {
  padding: 0;
}
ol {
  margin: 0 0 1.45rem 1.45rem;
  list-style-position: outside;
  list-style-image: none;
}
dd,
dl {
  margin: 0 0 1.45rem;
}
dd,
dl,
p {
  padding: 0;
}
p {
  margin: 0;
  font-weight: 400px;
  color: hsla(0, 0%, 100%, 0.85);
}
figure {
  padding: 0;
}
figure,
pre {
  margin: 0 0 1.45rem;
}
pre {
  font-size: 0.85rem;
  line-height: 1.42;
  background: rgba(0, 0, 0, 0.04);
  border-radius: 3px;
  overflow: auto;
  word-wrap: normal;
  padding: 1.45rem;
}
table {
  font-size: 1rem;
  line-height: 1.45rem;
  border-collapse: collapse;
  width: 100%;
}
fieldset,
table {
  padding: 0;
  margin: 0 0 1.45rem;
}
blockquote {
  padding: 0;
  margin: 0 1.45rem 1.45rem;
}
form,
iframe,
noscript {
  padding: 0;
  margin: 0 0 1.45rem;
}
hr {
  padding: 0;
  margin: 0 0 calc(1.45rem - 1px);
  background: rgba(0, 0, 0, 0.2);
  border: none;
  height: 1px;
}
address {
  padding: 0;
  margin: 0 0 1.45rem;
}
b,
dt,
strong,
th {
  font-weight: 700;
}
li {
  margin-bottom: 0;
}
ol li,
ul li {
  padding-left: 0;
}
li > ol,
li > ul {
  margin-left: 1.45rem;
  margin-bottom: 0.725rem;
  margin-top: 0.725rem;
}
blockquote :last-child,
li :last-child,
p :last-child {
  margin-bottom: 0;
}
li > p {
  margin-bottom: 0.725rem;
}
code,
kbd,
samp {
  font-size: 0.85rem;
  line-height: 1.45rem;
}
abbr,
abbr[title],
acronym {
  border-bottom: 1px dotted rgba(0, 0, 0, 0.5);
  cursor: help;
}
abbr[title] {
  text-decoration: none;
}
td,
th,
thead {
  text-align: left;
}
td,
th {
  border-bottom: 1px solid rgba(0, 0, 0, 0.12);
  font-feature-settings: "tnum";
  -moz-font-feature-settings: "tnum";
  -ms-font-feature-settings: "tnum";
  -webkit-font-feature-settings: "tnum";
  padding: 0.725rem 0.96667rem calc(0.725rem - 1px);
}
td:first-child,
th:first-child {
  padding-left: 0;
}
td:last-child,
th:last-child {
  padding-right: 0;
}
code,
tt {
  background-color: rgba(0, 0, 0, 0.04);
  border-radius: 3px;
  font-family: SFMono-Regular, Consolas, Roboto Mono, Droid Sans Mono,
    Liberation Mono, Menlo, Courier, monospace;
  padding: 0.2em 0;
}
pre code {
  background: none;
  line-height: 1.42;
}
code:after,
code:before,
tt:after,
tt:before {
  letter-spacing: -0.2em;
  content: " ";
}
pre code:after,
pre code:before,
pre tt:after,
pre tt:before {
  content: "";
}
@media only screen and (max-width: 480px) {
  html {
    font-size: 100%;
  }
}
.title {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.title.left {
  justify-content: flex-end;
}
.title.left.social {
  justify-content: space-between;
}
.title.left {
  left: 35px;
}
.title.right {
  right: 35px;
}
.title:after {
  content: "";
  position: absolute;
  height: 100%;
  width: 2px;
  margin: 15px 0;
  background: hsla(0, 0%, 100%, 0.85);
  z-index: -1;
}
.title ul {
  padding: 5px;
  background-color: #111a28;
}
.title ul li {
  margin-bottom: 10px;
}
.title p,
.title ul li a {
  color: hsla(0, 0%, 100%, 0.85);
}
.title p {
  padding: 5px 10px;
  font-weight: 900;
  text-transform: uppercase;
  background-color: #1d293a;
  transform-origin: 50%;
  border-radius: 4px;
}
.title.left p {
  transform: rotate(-90deg);
}
.title.title.right p {
  transform: rotate(90deg);
}
@media only screen and (max-width: 1199px) {
  .title.left {
    left: 0;
  }
  .title.right {
    right: 0;
  }
}
@media only screen and (max-width: 768px) {
  .title {
    position: relative;
    height: auto !important;
    padding-bottom: 50px;
    flex-direction: column-reverse;
  }
  .title.left p,
  .title.title.right p {
    transform: rotate(0);
  }
  .title:after {
    top: 0;
    height: 2px;
    width: 260px;
  }
  .title ul {
    display: flex;
    margin-top: 15px;
  }
  .title ul li {
    margin: 0 15px;
  }
}
@media only screen and (max-width: 481px) {
  .title:after {
    width: 180px;
  }
  .title {
    padding-bottom: 25px;
  }
}
.btn {
  display: inline-block;
  border-style: solid;
  border-width: 2px;
  padding: 15px 25px;
  border-radius: 4px;
  text-decoration: none;
}
@media only screen and (max-width: 768px) {
  .btn {
    padding: 10px 20px;
  }
}
.intro-area {
  min-height: 100vh;
  display: flex;
  align-items: center;
}
.intro-area .bg {
  position: absolute;
  opacity: 0.5;
  z-index: -1;
}
.intro {
  padding-left: 100px;
  padding-top: 50px;
}
.intro p {
  font-size: 22px;
  color: var(--primary);
}
.intro h1 {
  font-size: 78px;
  font-weight: 900;
  margin-bottom: 25px;
}
.intro h3 {
  color: var(--primary);
}
.intro ul {
  display: flex;
  margin-bottom: 25px;
}
.intro ul li {
  position: relative;
  margin-right: 25px;
  color: hsla(0, 0%, 100%, 0.85);
}
.intro ul li:before {
  position: absolute;
  content: "";
  left: -15px;
  top: 10px;
  background-color: var(--primary);
  width: 8px;
  height: 8px;
  border-radius: 10px;
}
.intro ul li:first-child:before {
  display: none;
}
@media only screen and (max-width: 991px) {
  .intro h1 {
    font-size: 62px;
  }
}
@media only screen and (max-width: 768px) {
  .intro-area {
    flex-direction: column-reverse;
    justify-content: center;
  }
  .intro {
    padding-left: 0;
    text-align: center;
  }
  .intro p {
    font-size: 21px;
  }
  .intro h1 {
    font-size: 52px;
  }
  .intro h3 {
    font-size: 22px;
  }
  .intro ul {
    justify-content: center;
  }
  .intro ul li {
    font-size: 16px;
  }
}
@media only screen and (max-width: 481px) {
  .intro p {
    font-size: 18px;
  }
  .intro h1 {
    font-size: 36px;
  }
  .intro h3 {
    font-size: 20px;
  }
  .intro ul {
    flex-direction: column;
  }
  .intro ul li {
    font-size: 14px;
    margin-right: 0;
  }
  .intro ul li:before {
    display: none;
  }
}
.about-area {
  position: relative;
}
.about {
  padding-right: 100px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.about > * {
  flex: 1 1;
}
.about-details p {
  line-height: 2;
}
.about-action {
  margin-top: 25px;
}
.about-image {
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-image img {
  width: 320px;
  border-radius: 10px;
  transform: scale(0.95);
  -webkit-filter: grayscale(1);
  filter: grayscale(1);
  transition: all 1s;
}
.about-image:hover img {
  transform: scale(1);
  -webkit-filter: grayscale(0);
  filter: grayscale(0);
}
@media only screen and (max-width: 768px) {
  .about {
    padding-right: 0;
    flex-direction: column-reverse;
  }
  .about > * {
    flex: 1 1 100%;
    margin-bottom: 30px;
  }
}
.skill-area {
  position: relative;
}
.skills {
  padding-right: 100px;
}
.skill-nav {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 25px;
}
.skill-nav li {
  border: 2px solid var(--primary);
  color: hsla(0, 0%, 100%, 0.85);
  padding: 5px 25px;
  margin-right: 15px;
  cursor: pointer;
  border-radius: 4px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.skill-nav li:last-child {
  margin-right: 0;
}
.skill-nav li.active {
  background-color: var(--primary);
}
.skill {
  display: flex;
  flex-wrap: wrap;
}
.skill > * {
  width: 50%;
  flex-grow: 1;
  flex-shrink: 1;
  flex-basis: calc(50% - 30px);
}
.skill .card {
  position: relative;
  background-color: #1d293a;
  padding: 25px 25px 35px;
  margin: 15px;
  border-radius: 4px;
}
.skill .card h4 {
  font-size: 22px;
  font-weight: 900;
  color: hsla(0, 0%, 100%, 0.85);
}
.skill .card p {
  padding: 3px 5px;
  top: 25px;
  font-weight: 900;
  color: #fff;
  right: 15px;
}
.skill .card .progress-ar,
.skill .card p {
  position: absolute;
  background-color: var(--primary);
  border-radius: 4px;
}
.skill .card .progress-ar {
  bottom: 0;
  left: 0;
  height: 10px;
}
.skill > :first-child,
.skill > :nth-child(2) {
  margin-top: 0;
}
.skill > :nth-child(2n - 1) {
  margin-left: 0;
}
.skill > :nth-child(2n) {
  margin-right: 0;
}
.skill > :last-child {
  margin-right: 0;
  flex-grow: 0;
  flex-shrink: 0;
  flex-basis: calc(50% - 15px);
}
@media only screen and (max-width: 768px) {
  .skills {
    padding-left: 0;
  }
  .skill-nav {
    justify-content: center;
  }
  .skill-nav li {
    padding: 5px 15px;
    margin-right: 10px;
  }
  .skill > * {
    width: 100%;
    flex: 1 1 100%;
    margin-left: 0;
    margin-right: 0;
  }
  .skill > :last-child {
    flex-basis: 100%;
    margin-bottom: 0;
  }
}
@media only screen and (max-width: 481px) {
  .skill-nav {
    margin-bottom: 0;
  }
  .skill-nav li {
    margin: 0 5px 15px;
  }
  .skill .card {
    margin-bottom: 15px;
  }
}
.love-to-do {
  padding-left: 100px;
  display: flex;
  flex-wrap: wrap;
}
.love-to-do > * {
  flex-grow: 1;
  flex-shrink: 1;
  flex-basis: calc(15% - 30px);
}
.love-to-do .stickpad {
  background-color: #1d293a;
  padding: 45px 25px;
  margin: 0 15px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  border-radius: 4px;
}
.love-to-do > :first-of-type {
  margin-left: 0;
}
.love-to-do > :last-of-type {
  margin-right: 0;
}
.love-to-do .stickpad img {
  display: inline-block;
  width: 65px;
  margin-bottom: 15px;
}

.love-to-do .stickpad h4 {
  font-weight: 900;
  color: hsla(0, 0%, 100%, 0.85);
  font-size: 22px;
}
@media only screen and (max-width: 991px) {
  .love-to-do > * {
    flex-grow: 1;
    flex-shrink: 1;
    flex-basis: calc(50% - 30px);
  }
  .love-to-do .stickpad {
    margin-bottom: 30px;
  }
  .love-to-do > :nth-child(2n - 1) {
    margin-left: 0;
  }
  .love-to-do > :nth-child(2n - 2) {
    margin-right: 0;
  }
}
@media only screen and (max-width: 991px) {
  .love-to-do {
    padding-right: 0;
  }
}
@media only screen and (max-width: 481px) {
  .love-to-do > * {
    flex-basis: 100%;
  }
  .love-to-do .stickpad {
    margin: 0 0 15px;
    align-items: center;
  }
}
.portfolio-area {
  position: relative;
}
.portfolios {
  padding-right: 100px;
}
.portfolio-nav {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 25px;
}
.portfolio-nav li {
  border: 2px solid var(--primary);
  color: hsla(0, 0%, 100%, 0.85);
  padding: 5px 25px;
  margin-right: 15px;
  cursor: pointer;
  border-radius: 4px;
}
.portfolio-nav li.active {
  background-color: var(--primary);
  font-weight: 900;
}
.portfolio-items {
  display: flex;
  flex-wrap: wrap;
}
.portfolio-items > * {
  margin: 15px;
  flex-grow: 1;
  flex-shrink: 1;
  flex-basis: calc(33.33333% - 30px);
  background-color: #1d293a;
  color: hsla(0, 0%, 100%, 0.85);
  border-radius: 4px;
}
.portfolio-items .details {
  padding: 25px;
}
.portfolio-items .details h4 {
  font-size: 26px;
  font-weight: 900;
  margin-bottom: 15px;
}
.portfolio-items .portfolio-img {
  position: relative;
}
.portfolio-items .portfolio .links {
  margin-top: 15px;
}
.portfolio-items .portfolio .links ul {
  display: flex;
  font-size: 22px;
}
.portfolio-items .portfolio .links ul li {
  margin-right: 10px;
}
.portfolio-items .portfolio .links ul li a {
  color: hsla(0, 0%, 100%, 0.65);
  transition: all 0.2s;
}
.portfolio-items .portfolio .links ul li a:hover {
  color: var(--primary);
}
.portfolio-items .portfolio-img:after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 1;
  background: #1d293a;
  mix-blend-mode: color;
  transition: all 0.5s;
}
.portfolio-items .portfolio:hover .portfolio-img:after {
  opacity: 0;
}
.portfolio-items .portfolio.small h4 {
  font-size: 22px;
}
.portfolio-items .portfolio-img img {
  border-radius: 4px;
}
.portfolio-items .details h4 a {
  text-decoration: none;
  color: inherit;
}
.portfolio-items .portfolio-tools {
  display: flex;
  margin-top: 15px;
}
.portfolio-items .portfolio-tools li {
  margin-right: 5px;
  text-decoration: none;
  font-weight: 300;
  color: #fff;
  background-color: #00cf5d;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 5px;
  font-size: 14px;
}
@media only screen and (max-width: 991px) {
  .portfolio-items > * {
    flex-grow: 1;
    flex-shrink: 1;
    flex-basis: calc(50% - 30px);
  }
  .portfolios {
    padding-left: 0;
  }
  .portfolio-nav {
    justify-content: center;
  }
  .portfolio-items > :last-child {
    margin-bottom: 0;
  }
}
@media only screen and (max-width: 768px) {
  .portfolios-regular {
    margin-top: 25px;
  }
}
@media only screen and (max-width: 481px) {
  .portfolio-nav {
    margin-bottom: 0;
  }
  .portfolio-nav li {
    margin: 0 5px 15px;
  }
  .portfolio-items > * {
    margin-bottom: 15px;
  }
  .portfolios-regular {
    margin-top: 15px;
  }
}
.portfolio-action {
  text-align: center;
}
.contact {
  display: flex;
  flex-wrap: wrap;
  padding-right: 100px;
}
.contact > * {
  flex-grow: 1;
  flex-shrink: 1;
  flex-basis: calc(50% - 30px);
}
.contact > :first-of-type {
  margin-right: 15px;
}
.contact > :last-of-type {
  margin-left: 15px;
}
.contact-status p {
  line-height: 2;
}
.contact-details li {
  margin-bottom: 15px;
}
.contact-details h5 {
  font-size: 26px;
  font-weight: 900;
}
.contact-details p span {
  font-weight: 300;
  color: hsla(0, 0%, 100%, 0.65);
}
@media only screen and (max-width: 768px) {
  .contact {
    padding-right: 0;
  }
  .contact > * {
    flex-basis: 100%;
  }
  .contact > :first-of-type {
    margin-right: 0;
    margin-bottom: 30px;
    text-align: center;
  }
  .contact > :last-of-type {
    margin-left: 0;
    text-align: center;
  }
}

@keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-moz-keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@-webkit-keyframes rubberBand {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }

  30% {
    -webkit-transform: scale3d(1.25, 0.75, 1);
    transform: scale3d(1.25, 0.75, 1);
  }

  40% {
    -webkit-transform: scale3d(0.75, 1.25, 1);
    transform: scale3d(0.75, 1.25, 1);
  }

  50% {
    -webkit-transform: scale3d(1.15, 0.85, 1);
    transform: scale3d(1.15, 0.85, 1);
  }

  65% {
    -webkit-transform: scale3d(0.95, 1.05, 1);
    transform: scale3d(0.95, 1.05, 1);
  }

  75% {
    -webkit-transform: scale3d(1.05, 0.95, 1);
    transform: scale3d(1.05, 0.95, 1);
  }

  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
@keyframes rubberBand {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }

  30% {
    -webkit-transform: scale3d(1.25, 0.75, 1);
    transform: scale3d(1.25, 0.75, 1);
  }

  40% {
    -webkit-transform: scale3d(0.75, 1.25, 1);
    transform: scale3d(0.75, 1.25, 1);
  }

  50% {
    -webkit-transform: scale3d(1.15, 0.85, 1);
    transform: scale3d(1.15, 0.85, 1);
  }

  65% {
    -webkit-transform: scale3d(0.95, 1.05, 1);
    transform: scale3d(0.95, 1.05, 1);
  }

  75% {
    -webkit-transform: scale3d(1.05, 0.95, 1);
    transform: scale3d(1.05, 0.95, 1);
  }

  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
@-webkit-keyframes fadeInLeftBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInLeftBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@-webkit-keyframes fadeInRightBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInRightBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }

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

.fadeInLeftBig {
  -webkit-animation-name: fadeInLeftBig;
  animation-name: fadeInLeftBig;
  animation-delay: 1300ms;
}
.fadeInRightBig {
  -webkit-animation-name: fadeInRightBig;
  animation-name: fadeInRightBig;
  animation-delay: 800ms;
}

.rubberBand {
  -webkit-animation-name: rubberBand;
  animation-name: rubberBand;
}

.animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}
.intro-text h1 span {
  display: inline-block;
  transition: all 0.3s ease-in-out;
}
.intro-area h1 span:hover{
  color: var(--primary)
}
.autograph__path {
  animation-timing-function: linear;
  animation-fill-mode: forwards;
}
.animated .autograph__path {
  opacity: 1;
  animation-name: line;
}
@keyframes line {
  100% {
    stroke-dashoffset: 0;
 }
}
