@import url(https://fonts.googleapis.com/css?family=Varela+Round);
@import url(https://fonts.googleapis.com/css?family=Open+Sans:400,300,600,700);

/* Variables converted to regular CSS */
:root {
  --profileBg: #fff;
  --skillsBg: #3d3e42;
  --profileColor: #9099a0;
  --skillsColor: #9099a0;
  --linkColor: #66cc99;
  --boldColor: #4a4e51;
  --time: 0.6s;
}

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

html, body {
  height: 100%;
}

body {
  font-family: 'Open Sans', sans-serif;
  font-size: 16px;
  line-height: 1.5em;
  margin: 0;
  padding: 0;
}

a {
  color: var(--linkColor);
  text-decoration: none;
}

.clearfix::after, .clearfix::before {
  content: " ";
  display: table;
}

.clearfix::after {
  clear: both;
}

.bold {
  color: var(--boldColor);
  font-weight: 400;
}

.resume-wrapper {
  position: relative;
  text-align: center;
  height: 100%;
}

.container {
  min-height: 600px;
}

.profile {
  background: var(--profileBg);
  width: 40%;
  float: left;
  color: var(--profileColor);
}

.profile .name-wrapper {
  float: left;
  width: 60%;
}

.profile h1 {
  font-size: 2.5em;
  text-align: left;
  font-family: 'Varela Round', sans-serif;
  color: var(--boldColor);
  text-transform: uppercase;
  line-height: 1em;
  padding-top: 40px;
  margin: 0;
}

.profile li {
  margin-bottom: 10px;
  list-style: none;
}

.profile ul {
  margin: 0;
  padding: 0;
}

.profile .picture-resume-wrapper {
  width: 40%;
  display: block;
  float: left;
}

.profile .picture-resume {
  width: 220px;
  height: 220px;
  background-size: cover;
  border-radius: 50%;
  margin-right: 0px;
  display: table;
  position: relative;
  vertical-align: middle;
  margin-top: -15px;
}

.profile .picture-resume span {
  display: table-cell;
  vertical-align: middle;
  position: relative;
  margin: 0 auto;
  z-index: 10;
  text-align: center;
}

.profile .picture-resume img {
  border-radius: 50%;
  width: 130px;
  height: 130px;
}

.profile .contact-info {
  margin-top: 100px;
  font-weight: 300;
}

.profile .list-titles {
  float: left;
  text-align: left;
  font-weight: 600;
  width: 40%;
  color: var(--boldColor);
}

.profile .list-content {
  float: left;
  width: 60%;
  text-align: left;
  font-weight: 300;
}

.profile .contact-presentation {
  text-align: left;
  font-weight: 300;
  margin-top: 100px;
  margin-bottom: 100px;
}

.profile svg {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.profile .st0, .profile .st1 {
  fill: #66cc99;
}

.experience {
  background: var(--skillsBg);
  width: 60%;
  float: left;
  position: relative;
  color: var(--skillsColor);
  font-weight: 300;
  min-height: 100%;
  min-height: 100vh;
}

.experience h3.experience-title {
  color: var(--linkColor);
  text-align: left;
  text-transform: uppercase;
  font-size: 1.2em;
  margin-bottom: 20px;
  font-weight: 400;
}

.experience .company-wrapper {
  width: 30%;
  float: left;
  text-align: left;
  padding-right: 5%;
  margin-bottom: 60px;
}

.experience .job-wrapper {
  width: 70%;
  float: left;
  text-align: left;
  padding-right: 5%;
  margin-bottom: 60px;
}

.experience .experience-title {
  color: white;
  margin-bottom: 15px;
}

.section-padding {
  padding: 60px 60px 40px 40px;
}

.section-wrapper {
  width: 45%;
  float: left;
  text-align: left;
  color: var(--skillsColor);
  font-weight: 300;
  margin-bottom: 20px;
  margin-right: 5%;
}

.section-wrapper:nth-child(3) {
  padding-right: 0%;
}

.section-wrapper h3.section-title {
  color: var(--linkColor);
  text-align: left;
  text-transform: uppercase;
  font-size: 1.2em;
  margin-bottom: 20px;
  font-weight: 400;
}

.section-wrapper .skill-percentage {
  margin-bottom: 10px;
  position: relative;
}

.section-wrapper .skill-percentage::after {
  content: "";
  width: 100%;
  height: 6px;
  background: var(--boldColor);
  display: block;
  margin-top: 3px;
}

.section-wrapper .skill-percentage::before {
  content: "";
  height: 6px;
  background: var(--linkColor);
  position: absolute;
  margin-top: 3px;
  bottom: 0;
}

.section-wrapper .skill-percentage:nth-child(1)::before {
  width: 90%;
  animation: skill_1 var(--time) ease;
}

.section-wrapper .skill-percentage:nth-child(2)::before {
  width: 76%;
  animation: skill_2 var(--time) ease;
}

.section-wrapper .skill-percentage:nth-child(3)::before {
  width: 90%;
  animation: skill_3 var(--time) ease;
}

.section-wrapper .skill-percentage:nth-child(4)::before {
  width: 80%;
  animation: skill_4 var(--time) ease;
}

.section-wrapper .skill-percentage:nth-child(5)::before {
  width: 85%;
  animation: skill_5 var(--time) ease;
}

.section-wrapper .skill-percentage:nth-child(6)::before {
  width: 85%;
  animation: skill_6 var(--time) ease;
}

.section-wrapper .skill-percentage:nth-child(7)::before {
  width: 70%;
  animation: skill_7 var(--time) ease;
}

.section-wrapper .skill-percentage:nth-child(8)::before {
  width: 80%;
  animation: skill_8 var(--time) ease;
}

/* Animations */
@keyframes skill_1 {
  from { width: 0%; }
  to { width: 90%; }
}

@keyframes skill_2 {
  from { width: 0%; }
  to { width: 76%; }
}

@keyframes skill_3 {
  from { width: 0%; }
  to { width: 90%; }
}

@keyframes skill_4 {
  from { width: 0%; }
  to { width: 80%; }
}

@keyframes skill_5 {
  from { width: 0%; }
  to { width: 85%; }
}

@keyframes skill_6 {
  from { width: 0%; }
  to { width: 85%; }
}

@keyframes skill_7 {
  from { width: 0%; }
  to { width: 70%; }
}

@keyframes skill_8 {
  from { width: 0%; }
  to { width: 80%; }
}

/* Media Queries for Responsiveness */
@media (max-width: 1200px) {
  .profile .name-wrapper {
    padding-top: 20px;
  }
  
  .profile .picture-resume-wrapper {
    width: 100%;
  }
  
  .profile .picture-resume img {
    width: 120px;
    height: 120px;
  }
  
  .profile .picture-resume {
    width: 200px;
    height: 200px;
  }
  
  .profile .contact-info {
    margin-top: 70px;
  }
  
  .profile .contact-presentation {
    margin-top: 70px;
    margin-bottom: 70px;
  }
}

@media (max-width: 850px) {
  .profile {
    width: 100%;
  }
  
  .experience {
    width: 100%;
  }
  
  .section-padding {
    padding: 80px 15% 40px 10%;
  }
  
  .profile .contact-presentation {
    margin-top: 50px;
    margin-bottom: 50px;
  }
}

@media (max-width: 450px) {
  .profile h1 {
    font-size: 1.8em;
    padding-top: 20px;
  }
  
  .profile .picture-resume {
    width: 180px;
    height: 180px;
  }
  
  .profile .contact-info {
    margin-top: 50px;
  }
  
  .section-padding {
    padding: 40px 10% 20px 5%;
  }
  
  .experience .company-wrapper {
    width: 100%;
    margin-bottom: 20px;
  }
  
  .experience .job-wrapper {
    width: 100%;
    margin-bottom: 40px;
  }
  
  .section-wrapper {
    width: 100%;
  }
}