@import url("https://fonts.googleapis.com/css2?family=Secular+One&family=Suez+One&display=swap");
@import url(https://fonts.googleapis.com/css?family=Open+Sans:400,300,600,700);
/* Variable Declarations */
:root {
  --profileBg: #E3DABB;
  --profileColor: #172825;
  --linkColor: #F12F14;
  --boldColor: #172825;
  --left-picture-wrapperColor: #E3DABB;
  --time: 0.6s;
}

/* Mixin Definition */
/* Global Styles */
*, *::after, *::before {
  box-sizing: border-box;
}

html, body {
  background: #E3DABB;
  height: 100%;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Open Sans", sans-serif;
  font-size: 16px;
  line-height: 1.5em;
  background-color: var(--pageBackground);
}

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

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

.clearfix::after {
  clear: both;
}

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

/* Resume Wrapper Styles */
.resume-wrapper {
  position: relative;
  text-align: center;
  height: 100%;
}

.container {
  min-height: 778px;
}

/* Profile Section Styles */
.profile {
  background: var(--profileBg);
  width: 40%;
  float: left;
  color: var(--profileColor);
  /* Breakpoints */
}
@media (max-width: 850px) {
  .profile {
    width: 100%;
  }
}
.profile .name-wrapper {
  float: left;
  width: 60%;
}
.profile h1 {
  font-size: 3em;
  text-align: left;
  font-family: "Suez One", serif;
  color: var(--boldColor);
  text-transform: uppercase;
  line-height: 1em;
  padding-top: 50px;
}
.profile .picture-resume-wrapper {
  width: 40%;
  display: block;
  float: left;
  /* Breakpoints */
}
@media (max-width: 1200px) {
  .profile .picture-resume-wrapper {
    width: 100%;
  }
}
.profile .picture-resume {
  width: 220px;
  height: 220px;
  background-size: cover;
  border-radius: 50%;
  margin-right: 0px;
  display: table;
  position: relative;
  vertical-align: middle;
  /* Breakpoints */
}
.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: 140px;
}
@media (max-width: 1500px) {
  .profile .picture-resume {
    width: 150px;
    height: 150px;
  }
}
@media (max-width: 1200px) {
  .profile .picture-resume {
    width: 200px;
    height: 200px;
  }
}
@media (max-width: 450px) {
  .profile .picture-resume {
    width: 180px;
    height: 180px;
  }
}
.profile .contact-info {
  margin-top: 60px;
  font-weight: 300;
  /* Breakpoints */
}
@media (max-width: 1200px) {
  .profile .contact-info {
    margin-top: 50px;
  }
}
@media (max-width: 450px) {
  .profile .contact-info {
    margin-top: 50px;
  }
}
.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;
  /* Breakpoints */
}
@media (max-width: 1200px) {
  .profile .contact-presentation {
    margin-top: 30px;
    margin-bottom: 30px;
  }
}
@media (max-width: 850px) {
  .profile .contact-presentation {
    margin-top: 30px;
    margin-bottom: 50px;
  }
}
.profile svg {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  /* display: none; */
}
.profile .st0, .profile .st1 {
  fill: var(--linkColor);
}

/* Section Padding Styles */
.section-padding {
  padding: 60px 60px 40px 40px;
  /* Breakpoints */
}
@media (max-width: 850px) {
  .section-padding {
    padding: 80px 15% 40px 10%;
  }
}

/* Section Wrapper Styles */
.section-wrapper {
  width: 50%;
  float: left;
  text-align: left;
  color: var(--skillsColor);
  font-weight: 300;
  margin-bottom: 0px;
  /* Breakpoints */
}
@media (max-width: 450px) {
  .section-wrapper {
    width: 100%;
  }
}
.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: 0px;
  font-weight: 400;
}

/* Additional Styles for Left Picture Section */
.left-picture-section {
  width: 60%;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 20px;
  background-color: var(--left-picture-wrapperColor);
  /* Added background color */
  /* Breakpoints */
}
@media (max-width: 850px) {
  .left-picture-section {
    width: 100%;
    flex-direction: column;
  }
}

.left-picture-wrapper {
  max-width: 30%;
  flex-shrink: 0;
  /* Breakpoints */
}
@media (max-width: 850px) {
  .left-picture-wrapper {
    max-width: 100%;
    margin-right: 0;
    margin-bottom: 20px;
  }
}

.left-content {
  flex-grow: 1;
  /* Breakpoints */
}
@media (max-width: 850px) {
  .left-content {
    margin-top: 20px;
  }
}

.skill-percentage {
  margin-bottom: 2px;
  position: relative;
}