@import url("https://fonts.googleapis.com/css?family=Maven+Pro:400,700");
body {
  font-family: "Maven Pro", sans-serif;
  padding-top: 70px;
}

.full-screen {
  padding: 8rem 0;
}

.small-text {
  color: #747474;
  font-size: 14px;
  font-weight: bold;
  padding: 8px 16px;
  border-radius: 50px;
  letter-spacing: 0.2px;
}

ul {
  margin: 0;
  padding: 0;
}
ul li {
  list-style: none;
}

a {
  font-size: 16px;
  font-weight: normal;
  text-decoration: none !important;
  transition: all 0.4s ease;
}
a:hover {
  color: #ffc200 !important;
}

.navbar-brand .uil {
  font-size: 40px;
}

p {
  font-size: 18px;
  font-weight: 300;
  line-height: 1.5;
  color: #747474;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: bold;
  letter-spacing: -1px;
}

h1 {
  color: #212121;
  font-size: 2.8em;
  margin: 24px 0;
}

h2 {
  color: #353535;
  font-size: 2.4em;
  font-weight: bold;
}

h3 {
  color: #484848;
}

h3,
b, strong {
  font-weight: bold;
}

.animated {
  position: relative;
}

.animated-info {
  display: inline-block;
  vertical-align: top;
  margin-top: 10px;
  width: 300px;
  position: relative;
}

.animated-item {
  color: #ffc200;
}

.animated-item {
  font-size: 35px;
  line-height: inherit;
  display: block;
  opacity: 0;
  overflow: hidden;
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  animation: BottomTotop 6s linear infinite 0s;
}
.animated-item:nth-child(1) {
  animation-delay: 0s;
}
.animated-item:nth-child(2) {
  animation-delay: 3s;
}

@keyframes BottomTotop {
  0% {
    opacity: 0;
  }
  5% {
    opacity: 0;
    transform: translateY(5px);
  }
  10% {
    opacity: 1;
    transform: translateY(0px);
  }
  45% {
    opacity: 1;
    transform: translateY(0px);
  }
  50% {
    opacity: 0;
    transform: translateY(5px);
  }
  80% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
.navbar {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 999999;
  will-change: transform;
  transition: transform 200ms linear;
}
.navbar[class*=-unpinned] {
  transform: translate(0, -150%);
}
.navbar[class*=-pinned] {
  transform: translate(0, 0);
}
.navbar[class*=headroom--not-top] {
  background: #ffffff;
  border-bottom: 1px solid #f0f0f0;
  padding-top: 0;
  padding-bottom: 0;
}

.navbar-brand {
  padding: 0;
  font-weight: bold;
  text-align: center;
  vertical-align: middle;
}

.navbar-expand-sm .navbar-nav .nav-link {
  padding: 0 20px;
}

.nav-link {
  font-weight: bold;
  font-size: 16px;
  overflow: hidden;
}
.nav-link span {
  position: relative;
  display: inline-block;
  transition: transform 0.3s;
}
.nav-link span:before {
  position: absolute;
  top: 100%;
  content: attr(data-hover);
  transform: translate3d(0, 0, 0);
}

.navbar-light .navbar-nav .nav-link:focus,
.navbar-light .navbar-nav .nav-link:hover {
  color: #ffc200;
  font-weight: bold;
}
.navbar-light .navbar-nav .nav-link:focus span,
.navbar-light .navbar-nav .nav-link:hover span {
  transform: translateY(-100%);
}

.navbar-light .navbar-toggler-icon {
  background: none;
}

.navbar-toggler {
  border: 0;
  padding: 0;
  width: 32px;
  height: 32px;
  line-height: 32px;
  outline: none;
  cursor: pointer;
  margin-right: 10px;
}
.navbar-toggler:focus {
  outline: none;
}
.navbar-toggler[aria-expanded=true] .navbar-toggler-icon:first-child {
  transform: rotate(45deg);
  top: 6px;
}
.navbar-toggler[aria-expanded=true] .navbar-toggler-icon:nth-child(2) {
  display: none;
}
.navbar-toggler[aria-expanded=true] .navbar-toggler-icon:last-child {
  transform: rotate(-45deg);
  bottom: 1px;
}
.navbar-toggler .navbar-toggler-icon {
  background: #212121;
  display: block;
  width: 100%;
  height: 2px;
  margin: 5px 0;
  transition: all 0.4s ease;
  position: relative;
}

.copyright-text {
  font-size: 16px;
  font-weight: normal;
  display: block;
}

.color-mode {
  font-weight: bold;
  cursor: pointer;
}

.color-mode-icon {
  position: relative;
  right: 6px;
}
.color-mode-icon:after {
  font-family: "unicons";
  content: "\ea9f";
  font-size: 30px;
  font-weight: 300;
  font-style: normal;
}
.color-mode-icon.active:after {
  font-family: "unicons";
  content: "\eb65";
  font-size: 30px;
  color: #ffffff;
}

.dark-mode {
  background: #0c0c0d;
}
.dark-mode .navbar-light .navbar-nav .nav-link {
  color: rgba(255, 255, 255, 0.8);
}
.dark-mode .navbar-light .navbar-nav .nav-link:hover {
  color: #ffc200;
}
.dark-mode .navbar[class*=headroom--not-top] {
  background: #0c0c0d;
  border-bottom: 1px solid #1f1f1f;
}
.dark-mode .small-text {
  background: #0d0c15;
  color: #ffffff;
}
.dark-mode .feature-card .uil,
.dark-mode .navbar-light .navbar-brand,
.dark-mode h1, .dark-mode h2, .dark-mode h3, .dark-mode h4, .dark-mode h5, .dark-mode h6,
.dark-mode .color-mode {
  color: #ffffff;
}
.dark-mode .img-shadow {
  animation: imgColorDark 6s linear infinite 0s;
}
.dark-mode .hard-skills .progress {
  background-color: #353535;
}
.dark-mode .git-link a .github-logo {
  fill: rgba(255, 255, 255, 0.8);
}
.dark-mode .git-link a .octocat-arm {
  fill: #0c0c0d;
}
.dark-mode .social-link a {
  box-shadow: 0 10px 15px rgba(255, 255, 255, 0.3);
  background: linear-gradient(0deg, #000000, #111111);
}
.dark-mode .social-link a:hover {
  box-shadow: 0 2px 5px rgba(255, 255, 255, 0.3);
}
.dark-mode .social-link a:hover span {
  color: #ffc200;
}
.dark-mode .social-link a .cos-link {
  background: linear-gradient(0deg, #111111, #000000);
  fill: rgba(255, 255, 255, 0.8);
  color: rgba(255, 255, 255, 0.8);
}
.dark-mode .skills .technology {
  box-shadow: 0 8px 12px rgba(255, 255, 255, 0.3);
  background: linear-gradient(0deg, #000000, #222222);
}
.dark-mode .skills .technology:hover {
  box-shadow: 0 2px 5px rgba(255, 255, 255, 0.3);
}
.dark-mode .skills .technology .shadow {
  background: linear-gradient(0deg, #222222, #000000);
  color: rgba(255, 255, 255, 0.8);
}

.img-shadow {
  animation: imgColorLight 6s linear infinite 0s;
}

@keyframes imgColorLight {
  0% {
    filter: drop-shadow(1px 1px 20px #f6ff00);
  }
  50% {
    filter: drop-shadow(1px 1px 20px #ffc200);
  }
  100% {
    filter: drop-shadow(1px 1px 20px #f6ff00);
  }
}
@keyframes imgColorDark {
  0% {
    filter: drop-shadow(1px 1px 20px #e600ff);
  }
  50% {
    filter: drop-shadow(1px 1px 20px #8c00a9);
  }
  100% {
    filter: drop-shadow(1px 1px 20px #e600ff);
  }
}
.custom-btn {
  border-radius: 1.5rem;
  height: 3rem;
  background-color: #ffc200;
  display: flex;
  align-items: center;
  margin-left: 2rem;
  padding: 1rem;
}
.custom-btn * {
  color: #ffffff;
  font-weight: bold;
  transition: 0.5s;
}
.custom-btn:hover .download, .custom-btn:hover .uil-arrow-to-bottom {
  color: #000000;
}

.about-me {
  margin-bottom: 1rem;
}
.about-me > div {
  display: flex;
  flex-wrap: nowrap;
}
.about-me .key {
  display: block;
  text-align: right;
  min-width: 9rem;
}
.about-me .value {
  display: flex;
  justify-content: left;
}
.about-me p {
  margin: 0 0.5rem 0 0;
}

.timeline-wrapper {
  position: relative;
  padding-bottom: 10px;
}
.timeline-wrapper:last-child:before {
  height: 0;
}
.timeline-wrapper:before {
  content: "";
  background: #474559;
  width: 3px;
  height: 100%;
  position: absolute;
  left: 38px;
}

.timeline-yr {
  background: #474559;
  border-radius: 100%;
  position: absolute;
  width: 75px;
  height: 75px;
  line-height: 75px;
  text-align: center;
}
.timeline-yr span {
  color: #ffffff;
  font-size: 16px;
  font-weight: bold;
  display: block;
  line-height: 75px;
}

.timeline-info {
  display: inline-block;
  vertical-align: top;
  margin-left: 6em;
}
.timeline-info small {
  color: #474559;
  font-size: 16px;
  font-weight: bold;
  display: inline-block;
  vertical-align: middle;
  margin-left: 15px;
}

.hard-skills .skill {
  margin-bottom: 1rem;
}
.hard-skills .skill:hover p {
  color: #ffc200;
  transition: 0.5s;
}
.hard-skills .skill:hover .progress-bar {
  background-color: #f2ff00;
  transition: 0.5s;
}
.hard-skills .skill .progress-bar {
  background-color: #00ff04;
}

.skills {
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  white-space: nowrap;
  justify-content: center;
}
.skills .technology {
  position: relative;
  height: 3rem;
  display: block;
  border-radius: 1.5rem;
  margin: 0.25rem 0.25rem;
  padding: 0.5rem;
  box-sizing: border-box;
  text-decoration: none;
  box-shadow: 0 8px 12px rgba(0, 0, 0, 0.3);
  background: linear-gradient(0deg, #ddd, #fff);
  transition: 0.5s;
  color: rgba(0, 0, 0, 0.3);
  font-weight: bold;
}
.skills .technology:hover {
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
  font-weight: bold;
  padding: 0.3rem;
}
.skills .technology:hover .git {
  color: #ff5100;
}
.skills .technology:hover .asp {
  color: #d400ff;
}
.skills .technology:hover .docker {
  color: #0022ff;
}
.skills .technology:hover .type-script {
  color: #00c3ff;
}
.skills .technology:hover .react {
  color: #06c300;
}
.skills .technology:hover .bootstrap {
  color: #750077;
}
.skills .technology:hover .ant {
  color: #0099ff;
}
.skills .technology:hover .sass {
  color: #df24d9;
}
.skills .technology:hover .vb {
  color: #003c65;
}
.skills .technology:hover .entity {
  color: #ea00ff;
}
.skills .technology:hover .sql-server {
  color: #a30000;
}
.skills .technology:hover .sql-postgre {
  color: #002bd7;
}
.skills .technology:hover .sqlite {
  color: #0090d8;
}
.skills .technology:hover .nunit {
  color: #059800;
}
.skills .shadow {
  width: 100%;
  height: 100%;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  background: linear-gradient(0deg, #fff, #ddd);
  border-radius: 1rem;
  font-size: 1.3rem;
  fill: #0c0c0d;
  transition: 0.5s;
  padding: 0.5rem;
}
.skills .shadow span {
  transition: 0.5s;
}

.soft-skill {
  background: linear-gradient(to right, rgba(0, 0, 0, 0), #00ff04 1rem, rgba(0, 0, 0, 0) 1rem);
  padding-left: 1.2rem;
}

.progress-back {
  display: flex;
  justify-content: space-between;
}
.progress-back:nth-child(1) {
  text-align: left;
}
.progress-back:nth-child(2) {
  text-align: right;
}
.progress-back p {
  margin: 0;
}

.git-link {
  margin: auto;
}
.git-link a {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}
.git-link a .git-name {
  color: #747474;
  font-size: 3rem;
  transition: 1s;
  font-weight: bolder;
}
.git-link a .github-logo {
  width: 5rem;
  height: 5rem;
  fill: #0c0c0d;
  transition: 1s;
}
.git-link a .octocat-arm {
  transform-origin: 41px 81px;
  fill: #ffffff;
  animation: wave 2s infinite;
}
.git-link a:hover .github-logo {
  fill: #ffc200;
}
.git-link a:hover .git-name {
  color: #ffc200;
}

@keyframes wave {
  0% {
    transform: rotate(10deg);
  }
  50% {
    transform: rotate(-10deg);
  }
  100% {
    transform: rotate(10deg);
  }
}
@media (max-width: 500px) {
  .octocat-arm {
    animation: none;
  }
}
.social-link {
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  white-space: nowrap;
}
.social-link a {
  position: relative;
  height: 4rem;
  display: block;
  margin: 0 10px;
  border-radius: 2rem;
  padding: 0.5rem;
  box-sizing: border-box;
  text-decoration: none;
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.3);
  background: linear-gradient(0deg, #ddd, #fff);
  transition: 0.5s;
  color: rgba(0, 0, 0, 0.3);
}
.social-link a:hover {
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}
.social-link a:hover .tg-link {
  fill: #0084ff;
}
.social-link a:hover .mail-link {
  fill: #d000ff;
}
.social-link a:hover .phone-link {
  fill: #00ff04;
}
.social-link a .cos-link {
  width: 100%;
  height: 100%;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  background: linear-gradient(0deg, #fff, #ddd);
  border-radius: 1.5rem;
  font-size: 1.5rem;
  fill: #0c0c0d;
  transition: 0.5s;
  padding-left: 0.3rem;
  padding-right: 0.3rem;
}
.social-link a svg {
  margin: 0.5rem;
  width: 2rem;
  height: 2rem;
}
.social-link a span {
  padding-right: 5px;
}

@media (max-width: 991px) {
  .full-screen {
    padding-bottom: 4rem;
  }
  .color-mode-text {
    display: none;
  }
  .about-image {
    margin-top: 4em;
  }
}
@media (max-width: 767px) {
  h1 {
    font-size: 2.4em;
  }
  h2 {
    font-size: 2em;
  }
  .animated-item {
    font-size: 28px;
  }
  .navbar-collapse {
    color: #ffffff;
    text-align: center;
  }
  html {
    font-size: 16px;
  }
}
@media (max-width: 580px) {
  .animated-item {
    font-size: 24px;
  }
  .timeline-info small {
    display: block;
    margin: 10px 0 0 0;
  }
  h1 {
    font-size: 2.2em;
  }
  h2 {
    font-size: 1.8em;
  }
  html {
    font-size: 14px;
  }
}
@media (max-width: 420px) {
  .mobile-block {
    display: block;
    padding: 0 16px;
  }
  .value {
    flex-direction: column;
  }
  .download {
    display: none;
  }
}/*# sourceMappingURL=style.css.map */