/*!
 * Template Name: Developer - Portfolio Landing Page Template for Developers
 * Version: 2.5
 * Author: Xiaoying Riley
 * Twitter: @3rdwave_themes
 * Copyright: 3rd Wave Media Ltd.
 * Website: https://themes.3rdwavemedia.com/
*/
body {
  font-family: "Roboto", arial, sans-serif;
  background: #484848;
  font-size: 24px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  margin-top: 2%;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  color: #ffffff;
}

/* a {
  color: pink;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
} */

 .btn, a.btn {
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  font-family: 'Montserrat', arial, sans-serif;
}

/* .btn .svg-inline--fa, a.btn .svg-inline--fa {
  margin-right: 5px;
  position: relative;
  top: -2px;
}

.btn:focus, a.btn:focus {
  color: #fff;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
}

a.btn-cta-primary, .btn-cta-primary {
  background: #54ba4e;
  border: 1px solid #54ba4e;
  color: #fff;
  font-weight: 600;
  text-transform: uppercase;
}

a.btn-cta-primary:hover, .btn-cta-primary:hover {
  background: #49ac43;
  border: 1px solid #49ac43;
  color: #fff;
} */

a.btn-cta-secondary, .btn-cta-secondary {
  background: pink;
  border: 1px solid white;
  color: #fff;
  font-weight: 600;
  text-transform: uppercase;
}

a.btn-cta-secondary:hover, a.btn-cta-secondary:not(:disabled):not(.disabled):active:focus, .btn-cta-secondary:hover, .btn-cta-secondary:not(:disabled):not(.disabled):active:focus {
  background: #484848;
  border: 1px solid white;
  color: #fff;
}
/*
.text-highlight {
  color: pink;
} */

.badge-theme {
  background: pink;
  font-size: 14px;
  color: #fff;
  margin-left: 10px;
  margin-bottom: 2px;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  -ms-border-radius: 2px;
  -o-border-radius: 2px;
  border-radius: 2px;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
}

/* a.dotted-link {
  border-bottom: 1px dotted #778492;
  color: #778492;
}

a.dotted-link:hover {
  text-decoration: none;
  color: pink;
} */

/* ======= Header ======= */
.header {
  padding: 30px 0;
  background: #484848;
  margin-top: 8%;
}

.header .profile-image {
  margin-right: 30px;
  margin-top: 25px;
}

.header .profile-content .name {
  color: #fff;
  font-size: 50px;
  font-weight: 300;
  margin-bottom: 5px;
  margin-top: 30px;
}

.header .profile-content .desc {
  color: #fff;
  font-family: "Roboto", arial, sans-serif;
  font-weight: 400;
  font-size: 24px;
  margin-top: 0;
  margin-bottom: 15px;
}

/* ======= TypeWriting ======= */

.typewriter {
  display: inline-block;
}

.typewriter h3 {
  font-family: "Montserrat", sans-serif;
  overflow: hidden; /* Ensures the content is not revealed until the animation */
  border-right: 0.15em solid pink; /* The typwriter cursor */
  white-space: nowrap; /* Keeps the content on a single line */
  margin: 0 auto; /* Gives that scrolling effect as the typing happens */
  letter-spacing: 0.15em; /* Adjust as needed */
  padding-top: 10px;
  animation: typing 1.3s steps(10, end),
    blink-caret 0.75s steps(50, end) infinite;
}

/* The typing effect */
@keyframes typing {
  from {
    width: 10%;
  }
  to {
    width: 100%;
  }
}

/* The typewriter cursor effect */
@keyframes blink-caret {
  from,
  to {
    border-color: transparent;
  }
  50% {
    border-color: pink;
  }
}

/* ======= Header ======= */

.header .profile-content .social a {
  background: #b0b7bf;
  width: 36px;
  height: 36px;
  display: inline-block;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  border-radius: 50%;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  color: #fff;
  text-align: center;
}

.header .profile-content .social a:hover {
  text-decoration: wavy;
  background: pink;
}

.header .profile-content .social a .svg-inline--fa {
  font-size: 20px;
  margin-top: 8px;
}

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

.navbar {
  padding: 2rem;
  font-weight: 600;
  color: #7c7c7d;
}

.navbar-nav .nav-link:hover {
  color: pink !important;
}

.navbar-nav.navbar-center .active {
  border-left: 4px solid pink;
}

.navbar-nav.navbar-center {
  position: absolute;
  left: 50%;
  transform: translatex(-50%);
}

/* ======= Sidebar ======= */

.wrapper {
  display: block;
  width: 100%;
}

#sidebar {
  width: 250px;
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  z-index: 999;
  background: #535353;
  color: #fff;
}

#sidebar .sidebar-header {
  padding: 30px;
  background: #535353;
}

#sidebar .sidebar-header .typewriter h3 {
  animation: typing 1.3s steps(10, end), blink-caret 0.75s steps(50, end);
}

#sidebar ul.components {
  padding: 20px 0;
}

#sidebar ul li a {
  padding: 10px;
  font-size: 1.1em;
  display: block;
  color: #fff;
  font-weight: 500;
}
#sidebar ul li a:hover {
  color: white;
  background: pink;
  text-decoration: none;
}

#sidebar ul li.active > a,
a[aria-expanded="true"] {
  border-left: 4px solid pink;
  color: black;
  font-weight: 600;
}

/* ======= Sections======= */
.sections-wrapper {
  padding-top: 60px;
  padding-bottom: 60px;
}

.section {
  margin-bottom: 30px;
  background-color: #242424;
  color: white;
  border-radius: 0.5rem;
}

.section .section-inner {
  padding: 30px;
}

.section .heading {
  margin-top: 0;
  margin-bottom: 30px;
  color: white;
  font-size: 26px;
  text-transform: uppercase;
}

#hobbies .content a {
  color: pink;
  font-size: 16px;
}

#hobbies .content a:hover {
  color: pink;
}

#hobbies .content .summary {
  font-size: 16px;
}

.section .content .more-link .svg-inline--fa {
  margin-right: 5px;
  font-size: 14px;
  position: relative;
  top: -2px;
}

.main-content {
  margin-left: 250px;
}

.main-content .typewriter {
  padding-left: 30px;
}

/* Projects Section */
.projects .item {
  margin-bottom: 30px;
}

.projects .item .title {
  font-size: 16px;
  margin-top: 0;
  margin-bottom: 5px;
  line-height: 1.5;
}

.projects .item .summary {
  font-size: 16px;
}

.projects .item .title, a {
  color: #778492;
}

.projects .item .title a:hover{
  color: pink;
}

/* Certifications Section */
.certifications .item {
  margin-bottom: 30px;
}

.certifications .item .title {
  font-size: 16px;
  margin-top: 0;
  margin-bottom: 5px;
  line-height: 1.5;
}

.certifications .item .summary {
  font-size: 16px;
}

.certifications .item .title, a {
  color: #778492;
}

.certifications .item .title a:hover{
  color: pink;
}

/* Work Section */
.experience .item {
  margin-bottom: 30px;
}

.experience .item .title {
  font-size: 22px;
  margin-top: 0;
  margin-bottom: 5px;
  line-height: 1.5;
}

.experience .item .title .place {
  color: pink;
  font-weight: normal;
  font-size: 18px;
}

.experience .item .title .year {
  color: #999;
  font-weight: normal;
}

.experience .item details {
  color: #999;
  font-weight: normal;
  font-size: 20px;
}

.experience .item li {
  color: #999;
  font-weight: normal;
  font-size: 18px;
}

/* Git section */
/* .github-graph {
  margin-bottom: 30px;
}

.github-graph .js-calendar-graph-svg {
  max-width: 100%;
}

.github-graph h2 {
  font-size: 18px;
}

.ghfeed {
  height: 500px;
}

.ghfeed,
.ghfeed *,
.ghfeed *:before,
.ghfeed *:after {
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
} */

/* Info Section */
.info .svg-inline--fa {
  margin-right: 15px;
  color: pink;
}

.info .svg-inline--fa.fa-envelope-o {
  font-size: 14px;
}

.info .heading {
  margin-top: 0;
  margin-bottom: 30px;
  color: white;
  font-size: 26px;
  text-transform: uppercase;
}

.info ul {
  margin-bottom: 0;
}

.info li {
  margin-bottom: 15px;
  font-size: 16px;
}

.info li a {
  color: white;
  text-decoration: underline;
}

.info li:last-child {
  margin-bottom: 0;
}

/* Skills Section */
.skills .intro {
  margin-bottom: 30px;
}

.skills .skillset .item {
  margin-bottom: 30px;
}

.skills .skillset .level-title {
  font-size: 16px;
  position: relative;
  margin-top: 0;
  margin-bottom: 10;
}

.skills .skillset .level-title .level-label {
  color: #ccd1d6;
  font-size: 14px;
  font-weight: 400;
  font-family: "Roboto", arial, sans-serif;
  position: absolute;
  right: 0;
  top: 0;
}

.skills .skillset .level-bar {
  height: 15px;
  background: #e8e8e8;
}

.skills .skillset .level-bar-inner {
  height: 15px;
  background: pink;
}

.skills .svg-inline--fa {
  margin-right: 3px;
  position: relative;
  top: -1px;
}
/* Education section */
.education .item {
  margin-bottom: 30px;
}

.education .item:last-child {
  margin-bottom: 0;
}

.education .item .title {
  font-size: 16px;
  margin-top: 0;
}

.education .item .university {
  font-family: "Lato", arial, sans-serif;
  font-size: 13px;
  color: pink;
  font-weight: 600;
  padding-left: 25px;
}

.education .item .university .year {
  color: #b0b7bf;
  font-weight: 500;
}

/* List section */

.list p {
  font-size: 16px;
}
.list ul li {
  margin-bottom: 10px;
}

.list ul li .svg-inline--fa {
  margin-right: 5px;
}

.list ul li a {
  font-size: 16px;
  color: pink;
}

.list ul li a:hover {
  color: #49515a;
}

.aside .subheading {
  font-size: 18px;
  color: #545e69;
}

@media (max-width: 767.98px) {
  .header {
    text-align: center;
  }
  .header .profile-image {
    float: none !important;
    margin: 0 auto;
  }
  .header .profile-content {
    float: none !important;
    text-align: center;
  }
  .header .btn {
    margin-top: 30px;
    float: none !important;
  }
  .project-image {
    margin-bottom: 15px;
  }

  .main-content {
    margin-left: 0px;
  }

  .sidebar {
    opacity: 0;
    z-index: 9999;
    transition: all 0.5s ease-in-out;
  }

  .overlay {
    display: none;
    position: fixed;
    /* full screen */
    width: 100vw;
    height: 100vh;
    /* transparent black */
    background: rgba(0, 0, 0, 0.7);
    /* middle layer, i.e. appears below the sidebar */
    z-index: 998;
    /* animate the transition */
    transition: all 0.5s ease-in-out;
  }

  .sidebar.active {
    opacity: 1;
  }

  #sideBarButton{
    margin-bottom: 25px;
    margin-left: 10px;
    background-color: pink;
    border: none;
  }

  #dismiss {
    width: 35px;
    height: 35px;
    position: absolute;
    /* top right corner of the sidebar */
    top: 10px;
    right: 10px;
}
}

@media (min-width: 767.98px) {
  #dismiss {
    display: none;
  }

  #sideBarButton {
    display:none;
  }
}

@media (min-width: 1400px) {
  .container {
    width: 1360px;
    max-width: inherit;
  }
}
