/*********************************/
/* ------  ABOUT ME BLOCK ------ */
/*********************************/
#aboutMe {
  min-height: 100vh;
  position: relative;
  color: #222222;
  display: flex;
  justify-content: center;
  align-items: center;
  /* background-color: red; */
}
#aboutMe.flipped {
  background-color: #222222;
  color: white;
  -webkit-transition: background-color 1s ease-out;
  -moz-transition: background-color 1s ease-out;
  -o-transition: background-color 1s ease-out;
  transition: background-color 1s ease-out;
}

#aboutMe .container {
  text-align: center;
  /* position: relative; */
  margin: 60px 0 70px 0;
}

#aboutMe .columnsContainer {
  grid-template-columns: 1fr 1fr;
  grid-gap: 100px;
  padding-bottom: 100px;
}
@media (max-width: 660px) {
  #aboutMe .columnsContainer {
    grid-gap: 30px;
  }
  #aboutMe .container {
    margin: 50px 0 50px 0;
  }
}

/* #aboutMe:before {
  content: "<section>";
  position: absolute;
  top: 5px;
  left: 5px;
  display: inline-block;
  font-size: 20px;
  line-height: 20px;
  color: rgb(61, 61, 61);
  opacity: 0.5;
}
#aboutMe:after {
  content: "</section>";
  position: absolute;
  bottom: 5px;
  right: 5px;
  display: inline-block;
  font-size: 20px;
  line-height: 20px;
  color: rgb(61, 61, 61);
  opacity: 0.5;
} */

#aboutMe h2 {
  margin: 0;
  position: relative;
  display: inline-block;
}
/* #aboutMe h2:before {
  content: "<h2>";
  position: absolute;
  top: -10px;
  left: -33px;
  display: inline-block;
  font-size: 15px;
  line-height: 15px;
  color: grey;
  opacity: 0.3;
  transform: rotate(-14deg);
}

#aboutMe h2:after {
  content: "</h2>";
  position: absolute;
  bottom: -10px;
  right: -44px;
  display: inline-block;
  font-size: 15px;
  line-height: 15px;
  color: grey;
  opacity: 0.3;
  transform: rotate(15deg);
} */

/* #aboutMe .columnsContainer {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 30px;
} */

/* #aboutMe .columnsContainer:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 2px;
  height: 50px;
  background-color: black;
} */

/* #aboutMe .myImage {
  -webkit-transform: rotate(5deg);
  -ms-transform: rotate(5deg);
  transform: rotate(5deg);
  -webkit-transition: 200ms all ease;
  -o-transition: 200ms all ease;
  transition: 200ms all ease;
  border: 4px double #29bbb4;
  width: 200px;
}
#aboutMe .myImage:hover {
  -webkit-transform: rotate(10deg);
  -ms-transform: rotate(10deg);
  transform: rotate(10deg);
  -webkit-transition: 200ms all ease;
  -o-transition: 200ms all ease;
  transition: 200ms all ease;
} */

/* flip test*/
#aboutMe .flip-card {
  background-color: transparent;
  /* width: 250px;
  height: 250px; */
  perspective: 10000px;
  margin: 0 auto;
}

#aboutMe .flip-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  text-align: center;
  transition: transform 0.6s;
  transform-style: preserve-3d;
  /* box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2); */
}

#aboutMe.flipped .flip-card .flip-card-inner.flip-card-x {
  /* transform: rotateX(360deg); */
  animation-name: animacionHeaderss;
  animation-duration: 6s;
}
@keyframes animacionHeaders {
  0% {
    /* background-color: red; */
    transform: rotateY(180deg);
  }
}

#aboutMe.flipped .flip-card .flip-card-inner.flip-card-y {
  /* OK */
  transform: rotateY(180deg);
}

#aboutMe .flip-card-front,
#aboutMe .flip-card-back {
  backface-visibility: hidden;
}

#aboutMe .flip-card-front {
  /* background-color: #bbb; */
  /* color: black; */
}

#aboutMe .flip-card-back {
  /* background-color: #2980b9; */
  /* color: white; */
  transform: rotateY(180deg);
  display: none;
}

#aboutMe .flip-card-dummy {
  position: initial;
  visibility: hidden;
}

#aboutMe.flipped .column:nth-child(1) .flip-card:nth-child(2) .flip-card-inner {
  transition-delay: 0.3s;
  /* transform: rotate(2deg); */
}
#aboutMe.flipped .column:nth-child(1) .flip-card:nth-child(3) .flip-card-inner {
  transition-delay: 0.5s;
}
#aboutMe.flipped .column:nth-child(2) .flip-card:nth-child(1) .flip-card-inner {
  transition-delay: 0.6s;
}
#aboutMe.flipped .column:nth-child(2) .flip-card:nth-child(2) .flip-card-inner {
  transition-delay: 0.4s;
}

/* ROTATIONS */
#aboutMe.flipped .column:nth-child(1) .flip-card:nth-child(1) {
  transform: rotate(4deg);
  transition-duration: 0.5s;
  transition-timing-function: cubic-bezier(1, 0, 1, 1);
  transition-delay: 0.8s;
}
#aboutMe.flipped .column:nth-child(1) .flip-card:nth-child(2) {
  transform: rotate(-3deg);
  transition-duration: 0.5s;
  transition-delay: 1s;
}
#aboutMe.flipped .column:nth-child(1) .flip-card:nth-child(3) {
  transform: rotate(3deg);
  transition-duration: 0.5s;
  transition-delay: 1.2s;
}
#aboutMe.flipped .column:nth-child(2) .flip-card:nth-child(1) {
  transform: rotate(3deg);
  transition-duration: 0.5s;
  transition-delay: 1.4s;
}
#aboutMe.flipped .column:nth-child(2) .flip-card:nth-child(2) {
  transform: rotate(-3deg);
  transition-duration: 0.5s;
  transition-delay: 1.6s;
}

#aboutMe.flipped .flip-card-back {
  color: white;
  display: block;
}

#aboutMe.flipped .flip-card-front {
  display: none;
}

#aboutMe.flipped .separator.separator-dark {
  border: 1px solid white;
}

/* BUTTON */
#aboutMe .toggleAboutMe {
  margin-top: 30px !important;
  border-color: #3498db;
  color: #fff;
  box-shadow: 0 0 40px 40px #3498db inset, 0 0 0 0 #3498db;
  transition: all 150ms ease-in-out;
  background-color: transparent;
  border-radius: 0.6em;
  cursor: pointer;
  display: flex;
  align-self: center;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1;
  padding: 1.2em 2.8em;
  text-decoration: none;
  text-align: center;
  text-transform: uppercase;
  font-weight: 700;
  margin: 0 auto;
  line-height: 23px;
}
#aboutMe .toggleAboutMe i {
  padding-right: 6px;
  font-size: 20px;
}

#aboutMe .toggleAboutMe:focus {
  outline: 0;
}

#aboutMe.flipped .toggleAboutMe {
  border-color: #06af22;
  color: #fff;
  box-shadow: 0 0 40px 40px #06af22 inset, 0 0 0 0 #06af22;
}

#aboutMe .toggleAboutMe:hover {
  box-shadow: 0 0 10px 0 #3498db inset, 0 0 10px 4px #3498db;
  color: #3498db;
  outline: 0;
}

#aboutMe.flipped .toggleAboutMe:hover {
  box-shadow: 0 0 10px 0 #06af22 inset, 0 0 10px 4px #06af22;
  color: #06af22;
  outline: 0;
}

/* Handnote */
#aboutMe .handNote {
  position: relative;
  top: -6px;
  left: -152px;
  transform: rotate(17deg);
  font-size: 18px;
}
#aboutMe .handNote img {
  height: 20px;
  padding: 0 7px 0 0px;
  transform: rotate(-221deg);
}
@media (max-width: 660px) {
  #aboutMe .handNote {
    left: -130px;
  }
}

/* Quote*/
#aboutMe .quote {
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 25px;
}

#aboutMe .quote i {
  font-size: 25px;
  padding-left: 10px;
}

/* SVG */
#aboutMe svg {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 100px;
}
@media (max-width: 660px) {
  #aboutMe svg {
    height: 50px;
  }
}

/* Notepad*/
.notepad {
  position: relative;
}
.noteContainer {
  position: absolute;
  display: flex;
  align-items: center;
}
.noteCapoeira {
  top: 33px;
  left: 20%;
  transform: rotate(5deg);
}
.noteFormula1 {
  top: 165px;
  left: 24%;
  transform: rotate(-5deg);
}
.noteVideogames {
  top: 288px;
  left: 17%;
  transform: rotate(7deg);
}
.notePizza {
  top: 422px;
  left: 19%;
  transform: rotate(-2deg);
}

.noteContainer label {
  font-family: "Shadows Into Light", cursive;
  color: #414193;
  font-size: 41px;
  padding: 35px;
}
.noteIcon {
  width: 100px;
}
@media (max-width: 660px) {
  .notepad {
    /* max-width: 450px; */
  }
  img.notepadBackground {
    width: 100%;
  }
  .noteContainer label {
    font-size: 30px;
    padding: 0 20px;
  }
  .noteIcon {
    width: 80px;
    /* width: calc(32vh); */
  }
  .noteCapoeira {
    top: 10%;
    left: 23%;
  }
  .noteFormula1 {
    top: 30%;
    left: 27%;
  }
  .noteVideogames {
    top: 51%;
    left: 15%;
  }
  .notePizza {
    top: 75%;
    left: 25%;
  }
}

/* SKILL LIST*/
#aboutMe .skillList {
  font-size: 15px;
  line-height: 18px;
  margin: 0;
  padding: 0;
}

#aboutMe .skillList li {
  margin-bottom: 15px;
  padding: 5px 0;
  background-color: rgb(233, 233, 233);
  text-align: right;
  position: relative;
  list-style-type: none;
  padding-right: 10px;
}

#aboutMe .skillBar {
  position: absolute;
  top: 0;
  height: 100%;
  background-color: #00a1a7;
  display: flex;
  align-items: flex-start;
}

.skillTitle {
  width: 150px;
  font-size: 16px;
  height: 100%;
  background-color: #04c2c9;
  color: white;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600; /* FONT WEIGHT 600 */
}
.width95 {
  width: 95%;
}
.width90 {
  width: 90%;
}
.width85 {
  width: 85%;
}
.width80 {
  width: 80%;
}
.width75 {
  width: 75%;
}
.width70 {
  width: 70%;
}
/* END SKILLS */

/* TALENTS */
.talentsContainer {
  display: flex;
}
.talentContainer {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.talentContainer h3 {
  margin: 30px 0 0px 0;
}
.talentContainer p {
  margin: 5px 0 5px 0;
}

.talentIcon {
  transform: rotate(45deg);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  background-color: #00a1a7;
  border-radius: 10px;
}
.talentIcon i {
  transform: rotate(-45deg);
  color: white;
  font-size: 30px;
}
#aboutMe.flipped .talentsContainer {
  display: none;
}

@media (max-width: 660px) {
  .talentsContainer {
    flex-direction: column;
  }
  .talentContainer {
    margin-bottom: 50px;
  }
}
