@charset "UTF-8";
html {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box; }

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

*:hover {
  transition: 0.25s all ease-in-out; }

::-moz-selection {
  background-color: #050505;
  color: #f33; }

::-o-selection {
  background-color: #050505;
  color: #f33; }

::selection {
  background-color: #050505;
  color: #f33; }

body {
  color: #f5f5f5;
  background: #0F0C29;
  font-size: 100%;
  font-family: "Muli", serif;
  font-weight: normal;
  text-align: center;
  margin: 0; }

.container {
  max-width: 64em;
  margin: 0 auto;
  padding: 0 1em; }

a {
  color: #f33;
  text-decoration: none;
  transition: 0.25s all ease-in-out; }

img {
  width: 100%;
  max-width: 100%;
  vertical-align: middle; }

.menu {
  margin: 0;
  padding-left: 0;
  list-style: none; }
  .menu li, .menu a {
    display: inline-block; }

h1, h2 {
  margin: 0;
  line-height: 1; }

h1 {
  font-size: 3em;
  font-family: "Lobster", cursive;
  font-weight: normal;
  text-transform: capitalize;
  text-align: center;
  margin-bottom: 0.1666666667em; }

h2 {
  font-size: 1.5em;
  font-family: "Work Sans", sans-serif;
  font-weight: 200;
  text-align: center;
  margin-bottom: 0.9166666667em; }

h3 {
  font-family: "Lobster", cursive;
  font-size: 1.5625em;
  margin-bottom: 0.2em; }

h4 {
  font-family: "Work Sans", sans-serif;
  font-weight: 200;
  padding-bottom: 0;
  margin: 0;
  font-size: 1.25em; }

.h34 {
  margin-top: 3.125em; }

header h1 {
  font-size: 4.5em;
  margin-bottom: 0.1666666667em; }

header h2 {
  font-size: 2.25em;
  margin-bottom: 1.5277777778em; }

.small {
  font-size: 75%;
  line-height: 1.5;
  margin: 0; }

.positive-bg {
  background-color: #f5f5f5;
  color: #0F0C29;
  position: relative; }
  .positive-bg:before {
    content: "";
    width: 50%;
    height: 88px;
    top: -44px;
    left: 0;
    position: absolute;
    transform: skewY(7deg);
    background-color: #f5f5f5; }
  .positive-bg:after {
    content: "";
    width: 50%;
    height: 88px;
    top: -44px;
    right: 0;
    position: absolute;
    transform: skewY(-7deg);
    background-color: #f5f5f5; }

.negative-bg {
  background-color: #0F0C29;
  color: #f5f5f5;
  position: relative; }
  .negative-bg:before {
    content: "";
    width: 50%;
    height: 88px;
    top: -44px;
    left: 0;
    position: absolute;
    transform: skewY(7deg);
    background-color: #0F0C29; }
  .negative-bg:after {
    content: "";
    width: 50%;
    height: 88px;
    top: -44px;
    right: 0;
    position: absolute;
    transform: skewY(-7deg);
    background-color: #0F0C29; }

.positive_bottom_bg {
  color: #f5f5f5;
  position: relative;
  padding-top: 5.5em; }
  .positive_bottom_bg:before {
    content: "";
    width: 50%;
    height: 88px;
    bottom: -44px;
    left: 0;
    position: absolute;
    transform: skewY(7deg);
    background-color: #f5f5f5; }
  .positive_bottom_bg:after {
    content: "";
    width: 50%;
    height: 88px;
    bottom: -44px;
    right: 0;
    position: absolute;
    transform: skewY(-7deg);
    background-color: #f5f5f5; }

.negative_bottom_bg {
  color: #f5f5f5;
  position: relative;
  padding-top: 5.5em; }
  .negative_bottom_bg:before {
    content: "";
    width: 50%;
    height: 88px;
    bottom: -44px;
    left: 0;
    position: absolute;
    transform: skewY(7deg);
    background-color: #0F0C29; }
  .negative_bottom_bg:after {
    content: "";
    width: 50%;
    height: 88px;
    bottom: -44px;
    right: 0;
    position: absolute;
    transform: skewY(-7deg);
    background-color: #0F0C29; }

header {
  background: url("../img/road-min.png") no-repeat;
  background-color: #f5f5f5;
  background-size: cover;
  background-position: 50% 50%;
  width: auto;
  padding-bottom: 9.375em; }

.rails {
  background: url("../img/rails-min.jpg") fixed center center no-repeat; }

.computer {
  background: url("../img/computer-min.jpg") fixed center center no-repeat; }

.handshake {
  background: url("../img/handshake-min.jpg") fixed center center no-repeat; }

.gallery {
  background: url("../img/gallery-min.jpg") fixed center center no-repeat; }

.img-cover {
  height: 450px;
  max-width: 100%;
  background-size: cover;
  background-attachment: fixed;
  background-position: 50% 50%;
  width: auto; }

@media only screen and (max-width: 600px) {
  .img-cover {
    background-attachment: scroll; } }
.avatar {
  border-radius: 50%;
  height: 150px;
  width: 150px;
  margin-bottom: 2.8125em;
  box-shadow: 0.125em 0.25em 0.5em 0 rgba(0, 0, 0, 0.5); }

@-webkit-keyframes rotating /* Safari and Chrome */ {
  from {
    -webkit-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg); }
  to {
    -webkit-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg); } }
@keyframes rotating {
  from {
    -ms-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg); }
  to {
    -ms-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg); } }
.avatar:hover {
  -webkit-animation: rotating 2s linear infinite;
  -moz-animation: rotating 2s linear infinite;
  -ms-animation: rotating 2s linear infinite;
  -o-animation: rotating 2s linear infinite;
  animation: rotating 2s linear infinite; }

.btn {
  height: 3.125em;
  width: 12.5em;
  background: #f5f5f5;
  color: #0F0C29;
  font-family: "Work Sans", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  display: block;
  margin: 0 auto;
  border-radius: 1.5625em;
  display: flex;
  flex-direction: column;
  justify-content: center; }
  .btn:hover, .btn:focus {
    background-color: #0F0C29;
    color: #f5f5f5; }

header, section {
  padding-top: 6.25em; }

.positive-bg h2, .negative-bg h2 {
  padding-top: 0.5555555556em;
  display: inline-block; }

.positive-bg h2 {
  border-top: 0.1111111111em solid #0F0C29; }

.negative-bg h2 {
  border-top: 0.1111111111em solid #f5f5f5; }

.skills {
  margin: 0;
  padding-left: 0;
  list-style: none;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between; }

.skills li {
  width: 45%; }

.progress {
  margin-left: 15px; }

.progress-label h5 {
  margin-bottom: 0.1875em;
  font-size: 1.125em; }

.progress-label i {
  font-size: 0.75em;
  color: rgba(245, 245, 245, 0.8); }

.progress-label {
  display: block;
  text-align: left; }

.progress-main {
  background-color: red;
  display: block;
  width: 100%;
  height: 0.75em;
  margin-top: 0.25em;
  animation-timing-function: ease-in-out;
  animation: animate_bars 7s; }

.progress-main::-moz-progress-bar {
  background-image: linear-gradient(90deg, #B5EB45 0%, #7ED321 100%); }

.progress-main::-webkit-progress-bar {
  background: #16123d;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2) inset; }

.progress-main::-webkit-progress-value {
  background-image: linear-gradient(90deg, #B5EB45 0%, #7ED321 100%); }

.progress-main::-ms-fill {
  background-image: linear-gradient(90deg, #B5EB45 0%, #7ED321 100%);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2) inset; }

.progress-bar {
  margin-top: 0.95em;
  background-color: #16123d;
  height: 0.75em; }

.progress-value {
  background-image: linear-gradient(90deg, #B5EB45 0%, #7ED321 100%);
  display: block;
  height: 0.75em; }

.pb-99 .progress-value {
  background-image: linear-gradient(-90deg, #3023AE 0%, #C86DD7 250%); }

.pb-99 .progress-main::-webkit-progress-value {
  background-image: linear-gradient(-90deg, #3023AE 0%, #C86DD7 250%); }

.pb-99 .progress-main::-moz-progress-bar {
  background-image: linear-gradient(-90deg, #3023AE 0%, #C86DD7 250%); }

.pb-75 .progress-value {
  background-image: linear-gradient(90deg, #B5EB45 0%, #7ED321 100%); }

.pb-75 .progress-main::-webkit-progress-value {
  background-image: linear-gradient(90deg, #B5EB45 0%, #7ED321 100%); }

.pb-75 .progress-main::-moz-progress-bar {
  background-image: linear-gradient(90deg, #B5EB45 0%, #7ED321 100%); }

.pb-50 .progress-value {
  background-image: linear-gradient(-90deg, #F39B1C1 0%, #F76B1C 50%); }

.pb-50 .progress-main::-webkit-progress-value {
  background-image: linear-gradient(-90deg, #F39B1C 0%, #F76B1C 50%); }

.pb-50 .progress-main::-moz-progress-bar {
  background-image: linear-gradient(-90deg, #F39B1C 0%, #F76B1C 50%); }

.pb-25 .progress-value {
  background-image: linear-gradient(-180deg, #F5515F 0%, #9F041B 100%); }

.pb-25 .progress-main::-webkit-progress-value {
  background-image: linear-gradient(-180deg, #F5515F 0%, #9F041B 100%); }

.pb-25 .progress-main::-moz-progress-bar {
  background-image: linear-gradient(-180deg, #F5515F 0%, #9F041B 100%); }

.progress-bar {
  animation: example 14s;
  width: 600px; }

@keyframes animate_bars {
  from {
    width: 0%; }
  to {
    width: 100%; } }
form {
  margin-top: 3.125em; }

.inputs {
  display: flex;
  justify-content: space-around;
  flex-direction: row;
  flex-wrap: wrap; }

.mail, .name {
  width: 35%; }

input, textarea {
  background-color: rgba(245, 245, 245, 0.02);
  box-shadow: 0.125em -0.125em 0.25em 0 black;
  border: none;
  border-bottom: 0.0625em solid black;
  margin-bottom: 1.5625em;
  margin-top: 0.3125em; }

textarea {
  height: 12.5em;
  margin-bottom: 1.25em; }

input {
  width: 100%; }

textarea {
  width: 85%; }

.btn-send {
  font-size: 0.875em;
  flex-direction: row;
  margin-bottom: -3.125em;
  position: relative;
  z-index: 9999; }

::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: #1d1850;
  padding-left: 0.625em;
  font-size: 0.75em; }

::-moz-placeholder {
  /* Firefox 19+ */
  color: #1d1850;
  padding-left: 0.625em;
  font-size: 0.75em; }

:-ms-input-placeholder {
  /* IE 10+ */
  color: #1d1850;
  padding-left: 0.625em;
  font-size: 0.75em; }

:-moz-placeholder {
  /* Firefox 18- */
  color: #1d1850;
  padding-left: 0.625em;
  font-size: 0.75em; }

footer {
  background-color: #0c0a21;
  padding: 0.625em; }

.copyright {
  font-family: "Work Sans", sans-serif;
  font-weight: 200;
  color: rgba(245, 245, 245, 0.7);
  font-size: 0.75em; }

.icon {
  font-style: normal;
  width: 150%; }

.icon-heart {
  color: #F3252E;
  animation: heartbeat 1s infinite;
  font-size: 12px;
  display: inline-block;
  width: 15px;
  text-align: center; }

@keyframes heartbeat {
  0% {
    font-size: 10px; }
  20% {
    font-size: 12px; }
  40% {
    font-size: 10px; }
  60% {
    font-size: 12px; }
  80% {
    font-size: 10px; }
  100% {
    font-size: 10px; } }
.menu-down li {
  margin: 0.625em 0; }
  .menu-down li:after {
    content: " ⋅";
    color: rgba(245, 245, 245, 0.65); }
  .menu-down li:last-child:after {
    content: ""; }
  .menu-down li a {
    color: rgba(245, 245, 245, 0.65); }
    .menu-down li a:hover {
      color: #f33; }

.flex-work {
  margin: 0;
  padding-left: 0;
  list-style: none;
  column-count: 2;
  column-gap: 0;
  margin: 0 -2.9%;
  max-height: 100%; }

.work-item {
  margin-bottom: 10px;
  break-inside: avoid;
  margin: 0 2.5% 5%;
  background-color: #0F0C29; }

.work {
  width: 100%;
  margin: 0;
  padding: 0; }

.work a {
  display: inline-block;
  overflow: hidden; }

.work img:hover {
  transform: scale(1.2);
  filter: blur(1px);
  transition: transform .2s; }

figcaption {
  padding: 0 1.25em 0.625em;
  text-align: left;
  color: #f5f5f5; }
  figcaption h3 {
    font-family: "Work Sans", sans-serif; }
  figcaption .tags {
    margin: 0;
    padding-left: 0;
    list-style: none;
    margin-bottom: 0.625em; }
    figcaption .tags li {
      display: inline-block;
      color: #0F0C29;
      background-color: #f5f5f5;
      border-radius: 1.25em;
      padding: 0.3125em 0.9375em;
      font-size: 0.625em;
      font-style: italic; }
      figcaption .tags li:before {
        font-size: 150%;
        content: "# ";
        color: #f33;
        font-style: normal; }
      figcaption .tags li:hover, figcaption .tags li:focus {
        background-color: gainsboro; }

.biography {
  transition: 0.25s all ease-in-out;
  display: block !important;
  width: 17.03125em;
  margin: 0 auto;
  margin-top: 0.25em; }
  .biography a {
    color: #f5f5f5;
    display: block !important;
    transition: 0.25s all ease-in-out; }

.social-menu {
  margin-top: 1.5625em;
  margin-bottom: -2.5em;
  position: relative;
  z-index: 99; }

.social-menu li {
  min-width: 4.0625em;
  background-color: #16123d; }

a .fab, a .fas {
  font-size: 1.5625em;
  color: white;
  padding: 0.8em; }

.social-menu li:first-child:hover {
  background-color: #3B5998; }

a .fa-instagram:hover {
  background: #d6249f;
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%); }

a .fa-linkedin-in:hover {
  background-color: #0077B5; }

a .fa-at:hover {
  background-color: #DB4437; }

.social-menu li:last-child a:hover {
  background: #FF512F;
  background: -webkit-linear-gradient(to right, #F09819, #FF512F);
  background: linear-gradient(to right, #F09819, #FF512F); }

.about-icon {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between; }

.about-icon::before, .about-icon::after {
  content: '';
  width: 100%;
  order: 1; }

.about-icon i {
  font-size: 3.125em;
  margin-top: 0.625em; }
  .about-icon i:hover {
    color: #f33; }

.about-icon b {
  margin-right: 0.3125em; }

.about-icon p {
  margin-bottom: 0; }

.about-icon li p:last-child {
  font-size: 0.625em;
  margin-top: 0;
  color: rgba(15, 12, 41, 0.45); }

.about-icon li p:last-child:before {
  font-size: 1.25em;
  content: "*";
  margin-right: 0.0625em; }

@media only screen and (max-width: 600px) {
  header, section {
    padding-top: 4.375em; }

  .skills li {
    width: 100%; }

  .skills:last-child {
    margin-bottom: -2.1875em; }

  .mail, .name, textarea {
    width: 100%; }

  .flex-work {
    column-count: 1;
    margin: 0; }

  .work-item {
    margin: 0;
    padding-bottom: 1.875em; }

  .about-icon li:nth-child(n + 4) {
    order: 1; }

  .about-icon li:nth-child(n + 7) {
    order: 2; }

  .about-icon li {
    margin-bottom: 1.5625em; } }
@media only screen and (min-width: 600px) {
  .flex-work {
    max-width: 64em;
    margin: 0 auto;
    padding: 0 1em; } }
@media only screen and (max-width: 350px) {
  .about-icon {
    flex-flow: column wrap; }
    .about-icon li:last-child {
      margin-bottom: -4.6875em;
      z-index: 99; } }

/*# sourceMappingURL=style.css.map */
