@import url("https://fonts.googleapis.com/css?family=Open+Sans:300,400,700|Montserrat|Roboto+Slab&display=swap|Arimo:400,700&display=swap");
body {
  font-family: sans-serif;
  overflow-x: hidden;
  font-family: 'Open Sans', sans-serif;
}

h1 {
  font-family: "Arimo", sans-serif;
}

.nav-container {
  max-width: 1400px;
}

nav {
  position: fixed;
  z-index: 100;
  background-color: #ffffff00;
  height: 75px;
  width: 100vw;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}

nav .navInContainer {
  width: 1200px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 auto;
}

nav .brandContainer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-line-pack: center;
      align-content: center;
}

nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 0;
  list-style: none;
  margin: 0 0 0 auto;
}

nav li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-item-align: center;
      align-self: center;
  margin: 0 15px;
}

nav .borderLink {
  border: solid 1px #74C7D1;
}

nav .navLink {
  text-decoration: none;
  color: #ffffff;
  -webkit-transition: color .15s ease-in-out;
  transition: color .15s ease-in-out;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-item-align: center;
      align-self: center;
  padding: 5px 10px;
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}

nav .navLink:hover {
  color: #74C7D1;
  text-decoration: none;
  background-color: #74C7D113;
}

nav .languageList {
  position: relative;
  display: block;
  overflow: hidden;
  top: 60px;
  left: -60px;
  -webkit-transition: all .4s ease-in-out;
  transition: all .4s ease-in-out;
  opacity: 0;
  height: 0;
}

nav .languageList a {
  color: white;
  text-decoration: none;
  padding: 10px 5px;
}

nav .languageList a:hover {
  color: #ffffffc4;
}

nav .navLanguage {
  text-decoration: none;
  color: #ffffff;
  -webkit-transition: color .15s ease-in-out;
  transition: color .15s ease-in-out;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-item-align: center;
      align-self: center;
  padding: 5px 5px;
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
  cursor: pointer;
}

nav .navLanguage:hover {
  background-color: #74C7D113;
}

nav .brandName {
  font-size: 1.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-item-align: center;
      align-self: center;
  margin: 0 0 0 25px;
  font-family: "Arimo", sans-serif;
}

nav .brandNameLogo {
  height: 40px;
  width: 40px;
  margin: 15px 0;
}

.navMobile {
  position: fixed;
  z-index: 100;
  background-color: #ffffff00;
  width: 100vw;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}

.navMobile .navInContainer {
  width: 100vw;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.navMobile a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.navMobile .brandContainer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-line-pack: center;
      align-content: center;
}

.navMobile .brandNameLogo {
  height: 50%;
  width: auto;
  margin: auto 20px;
}

.navMobile #hamburger {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  justify-self: center;
  -ms-flex-item-align: center;
      align-self: center;
  margin-left: auto;
  margin-right: 25px;
}

.navMobile #hamburger .line1 {
  height: 2px;
  width: 20px;
  background: white;
}

.navMobile #hamburger .line2 {
  height: 2px;
  width: 15px;
  background: white;
  margin: 5px 0;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

.navMobile #hamburger .line3 {
  height: 2px;
  width: 20px;
  background: white;
}

.mobileMenu {
  width: 75vw;
  height: 100vh;
  position: fixed;
  background: #1c164b;
  z-index: 99;
  top: 0;
  right: -75vw;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.mobileMenu ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 0;
  margin: auto 0;
  width: 100%;
  list-style: none;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
}

.mobileMenu li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-item-align: center;
      align-self: center;
  margin: 20px 0px;
  font-size: 1.5rem;
  color: white;
}

.mobileMenu li span {
  padding: 0px 100px 0 100px;
  border-top: 2px solid;
}

.mobileMenu .borderLink {
  border: solid 1px #74C7D1;
}

.mobileMenu .navLink {
  text-decoration: none;
  color: #ffffff;
  -webkit-transition: color .15s ease-in-out;
  transition: color .15s ease-in-out;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-item-align: center;
      align-self: center;
  padding: 5px 10px;
}

.backgroundWrapper {
  background: #2f286f;
  background: linear-gradient(135deg, #352e75 0%, #262054 100%);
}

.aboutMe {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.aboutMe img {
  height: 100%;
  width: 100%;
}

.aboutMe h3 {
  font-weight: 500;
  font-family: "Montserrat", sans-serif;
  font-size: 3rem;
  color: #74C7D1;
}

@media (max-width: 599px) {
  .aboutMe h3 {
    font-size: 2rem;
  }
}

.aboutMe p {
  color: #ffffff;
}

.skills {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  justify-items: center;
}

.skills .cardContent {
  display: block;
}

.skills .imgAndHeader {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 1.5rem;
  height: 100px;
}

.skills .cardImg {
  width: 50px;
}

.skills .header {
  font-weight: 500;
  font-family: "Montserrat", sans-serif;
  font-size: 3rem;
  color: #74C7D1;
  margin-bottom: 2rem;
}

@media (max-width: 599px) {
  .skills .header {
    font-size: 2rem;
  }
}

.skills .cardContainer {
  height: 350px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
}

.skills .card {
  background-color: #c7c7c71e;
  border: none;
  padding: 25px;
  border-radius: 0;
  height: 350px;
}

@media (max-width: 599px) {
  .skills .card {
    width: 100%;
    height: 100%;
  }
}

.skills h3 {
  color: white;
}

.skills ul {
  color: white;
}

.curriculumVitae {
  padding: 100px 0;
}

.curriculumVitae h3 {
  font-weight: 500;
  font-family: "Montserrat", sans-serif;
  font-size: 3rem;
  color: #74C7D1;
  margin-bottom: 3rem;
}

.curriculumVitae h2 {
  font-size: 1.5rem;
  margin-right: 15px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 100%;
          flex: 0 0 100%;
}

.curriculumVitae img {
  height: 50px;
  margin-right: 15px;
}

.curriculumVitae .timeline {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
}

.curriculumVitae .timeline::after {
  content: '';
  position: absolute;
  width: 6px;
  background-color: white;
  top: 0;
  bottom: 0;
  left: 50%;
  margin-left: -3px;
}

.curriculumVitae .containerTL {
  padding: 10px 40px;
  position: relative;
  background-color: inherit;
  width: 50%;
}

.curriculumVitae .containerTL::after {
  content: '';
  position: absolute;
  width: 25px;
  height: 25px;
  right: -17px;
  background-color: white;
  border: 4px solid #74C7D1;
  top: 15px;
  border-radius: 50%;
  z-index: 1;
}

.curriculumVitae .left {
  left: -0.3%;
}

.curriculumVitae .right {
  left: 50.3%;
}

.curriculumVitae .left:before {
  content: " ";
  height: 0;
  position: absolute;
  top: 22px;
  width: 0;
  z-index: 1;
  right: 30px;
  border: medium solid white;
  border-width: 10px 0 10px 10px;
  border-color: transparent transparent transparent white;
}

.curriculumVitae .right::before {
  content: " ";
  height: 0;
  position: absolute;
  top: 22px;
  width: 0;
  z-index: 1;
  left: 30px;
  border: medium solid white;
  border-width: 10px 10px 10px 0;
  border-color: transparent white transparent transparent;
}

.curriculumVitae .right::after {
  left: -16px;
}

.curriculumVitae .content {
  padding: 20px 30px;
  background-color: white;
  position: relative;
  border-radius: 6px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.curriculumVitaeMobile {
  padding: 100px 0;
}

.curriculumVitaeMobile h3 {
  font-weight: 500;
  font-family: "Montserrat", sans-serif;
  font-size: 2rem;
  padding-left: 15px;
  color: #74C7D1;
  margin-bottom: 3rem;
}

.curriculumVitaeMobile h2 {
  font-size: 1.5rem;
  margin-right: 15px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 100%;
          flex: 0 0 100%;
}

.curriculumVitaeMobile img {
  height: 50px;
  margin-right: 15px;
}

.curriculumVitaeMobile .timeline {
  position: relative;
  max-width: 400px;
  margin: 0 0;
}

.curriculumVitaeMobile .timeline::after {
  content: '';
  position: absolute;
  width: 6px;
  background-color: white;
  top: 0;
  bottom: 0;
  left: 7.5%;
  margin-left: -3px;
}

.curriculumVitaeMobile .containerTL {
  padding: 10px 40px;
  position: relative;
  background-color: inherit;
  width: 100%;
}

.curriculumVitaeMobile .containerTL::after {
  content: '';
  position: absolute;
  width: 25px;
  height: 25px;
  right: -17px;
  background-color: white;
  border: 4px solid #74C7D1;
  top: 15px;
  border-radius: 50%;
  z-index: 1;
}

.curriculumVitaeMobile .right {
  left: 7.5%;
}

.curriculumVitaeMobile .right::before {
  content: " ";
  height: 0;
  position: absolute;
  top: 22px;
  width: 0;
  z-index: 1;
  left: 30px;
  border: medium solid white;
  border-width: 10px 10px 10px 0;
  border-color: transparent white transparent transparent;
}

.curriculumVitaeMobile .right::after {
  left: -13px;
}

.curriculumVitaeMobile .content {
  padding: 20px 30px;
  background-color: white;
  position: relative;
  border-radius: 6px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

footer {
  color: #ffffff7a;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 0.8rem;
}
/*# sourceMappingURL=aboutMe.css.map */