@import url("https://fonts.googleapis.com/css2?family=Berkshire+Swash&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@200&display=swap");
#hidden {
  display: none !important;
}

@font-face {
  font-family: china;
  src: url(fonts/osaka-re.ttf) format("truetype");
}
@font-face {
  font-family: susto;
  src: url(fonts/Son\ Of\ A\ Glitch.ttf) format("truetype");
}
@font-face {
  font-family: logo;
  src: url(fonts/Accuratist.ttf) format("truetype");
}
@font-face {
  font-family: teste1;
  src: url(fonts/Painter_PERSONAL_USE_ONLY.ttf) format("truetype");
}
@font-face {
  font-family: teste2;
  src: url(fonts/Thalib.otf) format("opentype");
}
@font-face {
  font-family: star;
  src: url(fonts/soloistacad.ttf) format("truetype");
}
#preloader {
  background-color: #212121;
  height: 100vh;
  width: 100%;
  position: fixed;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
}

.loader {
  width: 18em;
  height: 18em;
}

.loader path {
  stroke: #000;
  stroke-width: 0.6px;
  animation: dashArray 4s ease-in-out infinite, dashOffset 4s linear infinite;
}

@keyframes dashArray {
  0% {
    stroke-dasharray: 0 1 359 0;
  }
  50% {
    stroke-dasharray: 0 359 1 0;
  }
  100% {
    stroke-dasharray: 359 1 0 0;
  }
}
@keyframes dashOffset {
  0% {
    stroke-dashoffset: 365;
  }
  100% {
    stroke-dashoffset: 5;
  }
}
* {
  margin: 0;
  padding: 0;
}

#pp-nav li .active span,
.pp-slidesNav .active span {
  background-color: white !important;
}

.welcome {
  font-family: star;
  color: rgb(0, 0, 0);
  text-shadow: 2px 2px 0px rgb(221, 255, 0), 2px -2px 0px rgb(221, 255, 0), -2px 2px 0px rgb(221, 255, 0), -2px -2px 0px rgb(221, 255, 0), 2px 0px 0px rgb(64, 116, 181), 0px 2px 0px rgb(64, 116, 181), -2px 0px 0px rgb(64, 116, 181), 0px -2px 0px rgb(64, 116, 181);
  font-weight: 600;
  left: 33%;
  top: 2.8%;
  position: absolute;
  font-size: 60px;
  opacity: 0;
  animation: descendo 0.5s ease forwards;
  animation-delay: 1s;
}
@media (max-width: 1024px) {
  .welcome {
    scale: 0.9;
    left: 262px;
  }
}
@media (max-width: 768px) {
  .welcome {
    left: 23px;
  }
}
@media (max-width: 426px) {
  .welcome {
    scale: 0.8;
    left: -15px;
  }
}
@media (max-width: 376px) {
  .welcome {
    left: -21px;
  }
}
@media (max-width: 320px) {
  .welcome {
    scale: 0.6;
    width: 358px;
    left: -57px;
  }
}

#c {
  height: 100%;
  width: 100%;
}

.div1 {
  position: relative;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  display: flex;
  justify-content: space-around;
  align-items: center;
  /* background-color: aqua; */
  font-family: logo;
}
@media (max-width: 1024px) {
  .header {
    scale: 0.9;
  }
}
@media (max-width: 768px) {
  .header {
    top: 22px;
    left: 157px;
  }
}
@media (max-width: 426px) {
  .header {
    display: block;
    background-color: transparent;
    border: none;
    top: 6px;
    left: 383px;
  }
  .header .show {
    display: block;
  }
  .header .hamburger {
    display: block;
    width: 24px;
    height: 2px;
    background-color: white;
    position: relative;
    top: 10px;
    left: 20px;
  }
  .header .hamburger:before {
    content: "";
    display: block;
    width: 24px;
    height: 2px;
    background-color: white;
    position: absolute;
    top: -8px;
    left: 0;
  }
  .header .hamburger:after {
    content: "";
    display: block;
    width: 24px;
    height: 2px;
    background-color: white;
    position: absolute;
    top: 8px;
    left: 0;
  }
}
@media (max-width: 320px) {
  .header {
    left: 321px;
  }
}

header img {
  padding-top: 5px;
  max-height: 88px;
  cursor: pointer;
}
@media (max-width: 1440px) {
  header img {
    padding-right: 210px;
    padding-top: 0px;
  }
}
@media (max-width: 1024px) {
  header img {
    padding: 0px 331px 0px 0px;
  }
}
@media (max-width: 768px) {
  header img {
    display: none;
  }
}

.menu-button {
  display: none;
}
@media (max-width: 426px) {
  .menu-button {
    display: block;
    background-color: transparent;
    border: none;
    cursor: pointer;
    height: 33px;
    width: 54px;
    position: relative;
    left: -76px;
    top: 20px;
  }
}
@media (max-width: 376px) {
  .menu-button {
    left: -99px;
  }
}

.overlay {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  height: 0%;
  width: 0%;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}
.overlay.show {
  height: 100%;
  width: 100%;
  z-index: 998;
  opacity: 1;
}

.navbar {
  margin-top: 15px;
}
@media (max-width: 1024px) {
  .navbar {
    margin-top: 15px;
    margin-left: 60px;
  }
}
@media (min-width: 427px) {
  .navbar {
    display: flex !important;
  }
}
@media (max-width: 426px) {
  .navbar {
    z-index: 999;
    display: none;
    position: absolute;
    right: 94%;
    flex-direction: column;
    left: -459px;
    scale: 1.3;
    top: 203px;
  }
  .navbar ul {
    display: flex;
    flex-direction: column;
    gap: 19px;
  }
}
@media (max-width: 376px) {
  .navbar {
    left: -515px;
  }
}
@media (max-width: 320px) {
  .navbar {
    left: -426px;
  }
}

.navbar_menu {
  display: flex;
  justify-content: space-around;
  align-items: center;
  list-style-type: none;
  height: 100%;
  width: 100%;
}

@media (max-width: 1024px) {
  .navbar_menu li {
    display: flex;
    align-items: center;
  }
}

.navbar_menu li a {
  position: relative;
  font-size: 20px;
  color: white;
  text-decoration: none;
  font-weight: 500;
  margin-right: 30px;
  list-style-type: none;
}

.navbar_menu li ::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 2px;
  background: aqua;
  border-radius: 5px;
  transform: translateY(10px);
  opacity: 0;
  transition: 0.5s;
}

.navbar_menu li:hover ::before {
  transform: translateY(0);
  opacity: 1;
}

.navbar_menu .active ::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 2px;
  background: aqua;
  border-radius: 5px;
  transform: translateY(0px);
  opacity: 1;
  transition: 0.5s;
}

#home {
  opacity: 0;
  animation: descendo 0.5s ease forwards;
  animation-delay: 1s;
}

#about {
  opacity: 0;
  animation: descendo 0.5s ease forwards;
  animation-delay: 1.2s;
}

#projects {
  opacity: 0;
  animation: descendo 0.5s ease forwards;
  animation-delay: 1.4s;
}

#skills {
  opacity: 0;
  animation: descendo 0.5s ease forwards;
  animation-delay: 1.6s;
}

#contact {
  opacity: 0;
  animation: descendo 0.5s ease forwards;
  animation-delay: 1.8s;
}

#pagepiling .section.sec1 {
  /* background-image: url(1\ div.jpg); */
  /* background-position: center;
  background-repeat: no-repeat;
  background-size: cover; */
}

.container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 75%;
  height: 550px;
  background-size: cover;
  background-position: center;
  border-radius: 10px;
  margin-top: 20px;
  border: 2px solid rgb(221, 255, 0);
}
@media (max-width: 1440px) {
  .container {
    height: 469px;
    width: 1192px;
  }
}
@media (max-width: 1024px) {
  .container {
    width: 919px;
  }
}
@media (max-width: 768px) {
  .container {
    width: 685px;
    height: 438px;
    padding: 18px 0px 0px 0px;
  }
}
@media (max-width: 426px) {
  .container {
    width: 379px;
    height: 460px;
    padding: 1px 0px 0px 0px;
  }
}
@media (max-width: 376px) {
  .container {
    width: 338px;
  }
}
@media (max-width: 320px) {
  .container {
    width: 289px;
  }
}

.container .content {
  position: absolute;
  top: 0;
  left: 0;
  width: 65%;
  height: 100%;
  display: flex;
  flex-direction: column;
}
@media (max-width: 426px) {
  .container .content {
    width: 100%;
  }
}

.container .content .text1 {
  display: flex;
  flex-direction: column;
  padding-top: 30px;
  padding-left: 20px;
  font-family: star;
  color: rgb(0, 0, 0);
  text-shadow: 2px 2px 0px rgb(221, 255, 0), 2px -2px 0px rgb(221, 255, 0), -2px 2px 0px rgb(221, 255, 0), -2px -2px 0px rgb(221, 255, 0), 2px 0px 0px rgb(64, 116, 181), 0px 2px 0px rgb(64, 116, 181), -2px 0px 0px rgb(64, 116, 181), 0px -2px 0px rgb(64, 116, 181);
}
@media (max-width: 1440px) {
  .container .content .text1 {
    scale: 0.9;
    padding: 0px 0px 0px 0px;
  }
}
@media (max-width: 426px) {
  .container .content .text1 {
    max-width: 425px;
  }
}

.text1 p {
  margin-top: 90px;
}

.container .logreg-box {
  position: absolute;
  top: 0;
  right: 0;
  width: 35%;
  height: 100%;
  /* background: red; */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
@media (max-width: 1024px) {
  .container .logreg-box {
    scale: 0.9;
    right: -63px;
  }
}
@media (max-width: 768px) {
  .container .logreg-box {
    right: 0px;
  }
}
@media (max-width: 768px) {
  .container .logreg-box {
    scale: 0.8;
    top: 63px;
  }
}
@media (max-width: 426px) {
  .container .logreg-box {
    display: none;
  }
}

.container .logreg-box img {
  display: flex;
  max-height: 300px;
  width: 300px;
  margin-right: 30px;
  -o-object-fit: cover;
     object-fit: cover;
  opacity: 0;
  animation: dentroPfora 1s ease forwards, voar 4s ease-in-out infinite;
  animation-delay: 2s, 3s;
}

@keyframes voar {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-24px);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes dentroPfora {
  0% {
    transform: scale(0);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes descendo {
  0% {
    transform: translateY(-100px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
.primeira_linha {
  display: flex;
  max-width: 120px;
}
@media (max-width: 320px) {
  .primeira_linha {
    scale: 0.9;
  }
}

.hi {
  display: flex;
}

.segunda_linha {
  display: flex;
  align-items: flex-start;
}
@media (max-width: 426px) {
  .segunda_linha {
    scale: 0.55;
    margin-right: 388px;
  }
}
@media (max-width: 376px) {
  .segunda_linha {
    scale: 0.47;
  }
}
@media (max-width: 320px) {
  .segunda_linha {
    scale: 0.4;
  }
}

.my {
  display: flex;
  margin-right: 19px;
}

.name {
  display: flex;
  margin-right: 19px;
}

.is {
  display: flex;
  margin-right: 19px;
}

.arthur {
  display: flex;
  margin-right: 19px;
}

.terceira_linha {
  display: flex;
  height: 20px;
  min-height: 57px;
}
@media (max-width: 376px) {
  .terceira_linha {
    scale: 0.9;
    margin-right: 348px;
  }
}
@media (max-width: 320px) {
  .terceira_linha {
    scale: 0.7;
  }
}

.and {
  display: flex;
  margin-right: 10px;
}

.im {
  display: flex;
  margin-right: 10px;
}

.front {
  display: flex;
  margin-right: 10px;
}

span {
  display: flex;
  text-align: center;
  font-weight: 600;
  height: 80px;
}

span:hover {
  color: rgb(0, 0, 0);
  text-shadow: 2px 2px 0px rgb(0, 225, 255), 2px -2px 0px rgb(221, 255, 0), -2px 2px 0px rgb(221, 255, 0), -2px -2px 0px rgb(221, 255, 0), 2px 0px 0px rgb(64, 116, 181), 0px 2px 0px rgb(64, 116, 181), -2px 0px 0px rgb(64, 116, 181), 0px -2px 0px rgb(64, 116, 181);
}

#primeiro {
  font-size: 70px;
  opacity: 0;
  animation: descendo 1s ease forwards;
  animation-delay: 1s;
}

#segundo {
  font-size: 70px;
  opacity: 0;
  animation: descendo 1.2s ease forwards;
  animation-delay: 1s;
}

#terceiro {
  font-size: 70px;
  opacity: 0;
  animation: descendo 1.4s ease forwards;
  animation-delay: 1s;
}

#quarto {
  font-size: 60px;
  opacity: 0;
  animation: descendo 1.6s ease forwards;
  animation-delay: 1s;
}

#quinto {
  font-size: 60px;
  opacity: 0;
  animation: descendo 1.7s ease forwards;
  animation-delay: 1s;
}

#sexto {
  font-size: 60px;
  opacity: 0;
  animation: descendo 1.8s ease forwards;
  animation-delay: 1s;
}

#sete {
  font-size: 60px;
  opacity: 0;
  animation: descendo 1.9s ease forwards;
  animation-delay: 1s;
}

#oito {
  font-size: 60px;
  opacity: 0;
  animation: descendo 2s ease forwards;
  animation-delay: 1s;
}

#nove {
  font-size: 60px;
  opacity: 0;
  animation: descendo 2.1s ease forwards;
  animation-delay: 1s;
}

#dez {
  font-size: 60px;
  opacity: 0;
  animation: descendo 2.2s ease forwards;
  animation-delay: 1s;
}

#onze {
  font-size: 60px;
  opacity: 0;
  animation: descendo 2.3s ease forwards;
  animation-delay: 1s;
}

#doze {
  font-size: 60px;
  opacity: 0;
  animation: descendo 2.4s ease forwards;
  animation-delay: 1s;
}

#treze {
  font-size: 60px;
  opacity: 0;
  animation: descendo 2.5s ease forwards;
  animation-delay: 1s;
}

#quatorze {
  font-size: 60px;
  opacity: 0;
  animation: descendo 2.6s ease forwards;
  animation-delay: 1s;
}

#quize {
  font-size: 60px;
  opacity: 0;
  animation: descendo 2.7s ease forwards;
  animation-delay: 1s;
}

#dezesseis {
  font-size: 60px;
  opacity: 0;
  animation: descendo 2.8s ease forwards;
  animation-delay: 1s;
}

#dezesete {
  font-size: 60px;
  opacity: 0;
  animation: descendo 2.9s ease forwards;
  animation-delay: 1s;
}

#dezoito {
  font-size: 60px;
  opacity: 0;
  animation: descendo 3s ease forwards;
  animation-delay: 1s;
}

#dezenove {
  font-size: 40px;
  opacity: 0;
  animation: descendo 3.1s ease forwards;
  animation-delay: 1s;
}

#vinte {
  font-size: 40px;
  opacity: 0;
  animation: descendo 3.2s ease forwards;
  animation-delay: 1s;
}

#vinteum {
  font-size: 40px;
  opacity: 0;
  animation: descendo 3.3s ease forwards;
  animation-delay: 1s;
}

#vintedois {
  font-size: 40px;
  opacity: 0;
  animation: descendo 3.4s ease forwards;
  animation-delay: 1s;
}

#vintetres {
  font-size: 40px;
  opacity: 0;
  animation: descendo 3.5s ease forwards;
  animation-delay: 1s;
}

#vintequatro {
  font-size: 40px;
  opacity: 0;
  animation: descendo 3.6s ease forwards;
  animation-delay: 1s;
}

#vintecinco {
  font-size: 40px;
  opacity: 0;
  animation: descendo 3.7s ease forwards;
  animation-delay: 1s;
}

.multiple {
  font-size: 40px;
  margin-left: 10px;
  font-family: teste1;
  margin-top: -6px;
  color: rgb(0, 0, 0);
  text-shadow: 2px 2px 0px rgb(0, 225, 255), 2px -2px 0px rgb(221, 255, 0), -2px 2px 0px rgb(221, 255, 0), -2px -2px 0px rgb(221, 255, 0), 2px 0px 0px rgb(64, 116, 181), 0px 2px 0px rgb(64, 116, 181), -2px 0px 0px rgb(64, 116, 181), 0px -2px 0px rgb(64, 116, 181);
  opacity: 0;
  animation: descendo 6s ease forwards;
  animation-delay: 0.9s;
}

.blast,
.blast1,
.blast2 {
  font-size: 70px;
}

.blast3,
.blast4,
.blast5,
.blast6,
.blast7,
.blast8,
.blast9,
.blast10,
.blast12,
.blast13,
.blast14,
.blast15,
.blast16,
.blast17 {
  font-size: 60px;
}

.blast18,
.blast19,
.blast20,
.blast21,
.blast22,
.blast23,
.blast24 {
  font-size: 40px;
}

.blast11 {
  font-family: teste1;
  height: -moz-fit-content;
  height: fit-content;
  font-size: 60px;
  color: rgb(0, 0, 0);
  text-shadow: 2px 2px 0px rgb(0, 225, 255), 2px -2px 0px rgb(221, 255, 0), -2px 2px 0px rgb(221, 255, 0), -2px -2px 0px rgb(221, 255, 0), 2px 0px 0px rgb(64, 116, 181), 0px 2px 0px rgb(64, 116, 181), -2px 0px 0px rgb(64, 116, 181), 0px -2px 0px rgb(64, 116, 181);
}

.aaa {
  margin-top: -10px;
}

.blast11:hover {
  color: rgb(0, 0, 0);
  text-shadow: 2px 2px 0px rgb(221, 255, 0), 2px -2px 0px rgb(221, 255, 0), -2px 2px 0px rgb(221, 255, 0), -2px -2px 0px rgb(221, 255, 0), 2px 0px 0px rgb(64, 116, 181), 0px 2px 0px rgb(64, 116, 181), -2px 0px 0px rgb(64, 116, 181), 0px -2px 0px rgb(64, 116, 181);
}

.content .text1 p {
  font-size: 21px;
  color: rgb(0, 0, 0);
  font-weight: 400;
  margin-top: 10px;
}
@media (max-width: 426px) {
  .content .text1 p {
    margin-top: 116px;
  }
}
@media (max-width: 376px) {
  .content .text1 p {
    margin-top: 56px;
  }
}

.animate__rubberBand {
  animation: 1s;
  color: rgb(0, 0, 0);
  text-shadow: 2px 2px 0px rgb(0, 225, 255), 2px -2px 0px rgb(221, 255, 0), -2px 2px 0px rgb(221, 255, 0), -2px -2px 0px rgb(221, 255, 0), 2px 0px 0px rgb(64, 116, 181), 0px 2px 0px rgb(64, 116, 181), -2px 0px 0px rgb(64, 116, 181), 0px -2px 0px rgb(64, 116, 181);
}

.scrolldown {
  position: absolute;
  font-size: 14px;
  bottom: 111px;
  left: -30px;
  color: white;
  font-family: Helvetica Neue, Helvetica, Arial, sans-serif;
  transform-origin: center;
  transform: perspective(0px) rotateY(0deg) rotateX(0deg) rotate(90deg) skew(0deg, 0deg);
  animation: voar2 4s ease-in-out infinite;
}
@media (max-width: 1024px) {
  .scrolldown {
    bottom: 85px;
  }
}
@media (max-width: 768px) {
  .scrolldown {
    left: -35px;
  }
}
@media (max-width: 426px) {
  .scrolldown {
    display: none;
  }
}

.welcome::after {
  content: "";
  position: absolute;
  left: -590px;
  bottom: -539px;
  width: 185px;
  height: 2px;
  background: aqua;
  border-radius: 5px;
  opacity: 1;
  transition: 0.5s;
  transform: perspective(0px) rotateY(0deg) rotateX(0deg) rotate(90deg) skew(0deg, 0deg);
}
@media (max-width: 1440px) {
  .welcome::after {
    left: -559px;
    bottom: -453px;
  }
}
@media (max-width: 1024px) {
  .welcome::after {
    left: -391px;
    bottom: -514px;
  }
}
@media (max-width: 768px) {
  .welcome::after {
    left: -131px;
  }
}

@keyframes voar2 {
  0% {
    transform: translateY(0) rotate(90deg);
  }
  50% {
    transform: translateY(-24px) rotate(90deg);
  }
  100% {
    transform: translateY(0) rotate(90deg);
  }
}
.bob {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  position: absolute;
  top: 371px;
  left: -47px;
  height: 246px;
  width: 761px;
  z-index: 999;
  transform-origin: center center;
  transform: scale(0.7);
  font-weight: 0;
  font-family: star;
  color: rgb(221, 255, 0);
  letter-spacing: 5px;
}
@media (max-width: 1440px) {
  .bob {
    scale: 0.9;
    top: 305px;
  }
}
@media (max-width: 1024px) {
  .bob {
    left: -77px;
    top: 290px;
  }
}
@media (max-width: 768px) {
  .bob {
    display: none;
  }
}

.bob .prm {
  color: rgb(252, 252, 252);
  opacity: 0;
  animation: dentroPfora 1s ease forwards;
  animation-delay: 2s;
}

.bob .seg {
  color: rgb(0, 225, 255);
  opacity: 0;
  animation: dentroPfora 1s ease forwards;
  animation-delay: 2s;
}

.bob .ter {
  color: rgb(221, 255, 0);
  opacity: 0;
  animation: dentroPfora 1s ease forwards;
  animation-delay: 2s;
}

.bob ul {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 800px;
  list-style: none;
}

.bob ul li {
  position: relative;
  display: grid;
  place-items: center;
  width: 200px;
  height: 200px;
}

.bob li .base1 {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 8px solid rgb(252, 252, 252);
  border-left: 8px solid transparent;
  filter: drop-shadow(0 0 10px rgb(252, 252, 252));
  animation: spin 8s linear infinite;
}

.bob li .base2 {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 8px solid rgb(0, 225, 255);
  border-left: 8px solid transparent;
  filter: drop-shadow(0 0 10px rgb(0, 225, 255));
  animation: spin 8s linear infinite;
}

.bob li .base3 {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 8px solid rgb(221, 255, 0);
  border-left: 8px solid transparent;
  filter: drop-shadow(0 0 10px rgb(221, 255, 0));
  animation: spin 8s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotateX(60deg) rotateZ(0);
  }
  100% {
    transform: rotateX(60deg) rotateZ(-360deg);
  }
}
.bob li .base1::after {
  position: absolute;
  content: "";
  width: 30px;
  height: 30px;
  top: 9px;
  left: 9px;
  border-radius: 50%;
  background-color: rgb(252, 252, 252);
}

.bob li .base2::after {
  position: absolute;
  content: "";
  width: 30px;
  height: 30px;
  top: 9px;
  left: 9px;
  border-radius: 50%;
  background-color: rgb(0, 225, 255);
}

.bob li .base3::after {
  position: absolute;
  content: "";
  width: 30px;
  height: 30px;
  top: 9px;
  left: 9px;
  border-radius: 50%;
  background-color: rgb(221, 255, 0);
}

.bob li .zk,
.bob li .title,
.bob li .icon {
  position: absolute;
  color: white;
  transform: rotateX(60deg) rotateZ(-45deg);
  cursor: pointer;
  transition: 0.5s ease-in-out;
}

.bob li .title {
  text-transform: uppercase;
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 2px;
  transform: rotateY(30deg) skewY(-24deg) translateY(0px);
  pointer-events: none;
  opacity: 0;
}

.bob li .icon {
  display: grid;
  place-items: center;
  font-size: 80px;
  height: 100%;
  pointer-events: none;
}

.bob .base1:hover {
  filter: drop-shadow(0 0 10px rgb(252, 252, 252));
  animation-play-state: paused;
}

.bob .base2:hover {
  filter: drop-shadow(0 0 10px rgb(0, 225, 255));
  animation-play-state: paused;
}

.bob .base3:hover {
  filter: drop-shadow(0 0 10px rgb(221, 255, 0));
  animation-play-state: paused;
}

.base1:hover + .title + .icon {
  transform: rotateY(30deg) skewY(-24deg) translateY(-160px);
  color: rgb(252, 252, 252);
  filter: drop-shadow(0 0 3px rgb(252, 252, 252));
  animation: wave 1s ease-in-out infinite;
}

.base2:hover + .title + .icon {
  transform: rotateY(30deg) skewY(-24deg) translateY(-160px);
  color: rgb(0, 225, 255);
  filter: drop-shadow(0 0 3px rgb(0, 225, 255));
  animation: wave 1s ease-in-out infinite;
}

.base3:hover + .title + .icon {
  transform: rotateY(30deg) skewY(-24deg) translateY(-160px);
  color: rgb(221, 255, 0);
  filter: drop-shadow(0 0 3px rgb(221, 255, 0));
  animation: wave 1s ease-in-out infinite;
}

.base1:hover + .title {
  transform: rotateY(30deg) skewY(-24deg) translateY(-90px);
  color: rgb(252, 252, 252);
  text-shadow: 0 0 3px rgb(252, 252, 252);
  transition-delay: 0.1s;
  opacity: 1;
}

.base2:hover + .title {
  transform: rotateY(30deg) skewY(-24deg) translateY(-90px);
  color: rgb(0, 225, 255);
  text-shadow: 0 0 3px rgb(0, 225, 255);
  transition-delay: 0.1s;
  opacity: 1;
}

.base3:hover + .title {
  transform: rotateY(30deg) skewY(-24deg) translateY(-90px);
  color: rgb(221, 255, 0);
  text-shadow: 0 0 3px rgb(221, 255, 0);
  transition-delay: 0.1s;
  opacity: 1;
}

@keyframes wave {
  0%, 100% {
    margin-bottom: 0;
  }
  50% {
    margin-bottom: 15px;
  }
}
#pagepiling .section.sec2 {
  background-image: url(./assets/projetosss.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

#about1 h2 {
  color: #bbf1fd;
  position: absolute;
  left: 536px;
  top: 10px;
  font-size: 75px;
  font-family: "Berkshire Swash", cursive;
  /* color: rgb(0, 0, 0); */
  text-shadow: 2px 2px 0px rgb(0, 225, 255), 2px -2px 0px rgb(0, 0, 0), -2px 2px 0px rgb(0, 0, 0), -2px -2px 0px rgb(0, 0, 0), 2px 0px 0px rgb(0, 0, 0), 0px 2px 0px rgb(0, 0, 0), -2px 0px 0px rgb(0, 0, 0), 0px -2px 0px rgb(0, 0, 0);
}
@media (max-width: 1440px) {
  #about1 h2 {
    left: 464px;
    top: 3px;
  }
}
@media (max-width: 1024px) {
  #about1 h2 {
    scale: 0.9;
    left: 277px;
  }
}
@media (max-width: 768px) {
  #about1 h2 {
    left: 23px;
  }
}
@media (max-width: 426px) {
  #about1 h2 {
    scale: 0.8;
    left: -7px;
  }
}
@media (max-width: 376px) {
  #about1 h2 {
    left: -21px;
  }
}
@media (max-width: 320px) {
  #about1 h2 {
    scale: 0.6;
    width: 358px;
    left: -57px;
  }
}

.atras {
  font-family: logo;
  color: #bbf1fd;
  position: absolute;
  font-weight: 600;
  font-size: 600px;
  top: 145px;
  left: -3px;
  letter-spacing: -90px;
  cursor: context-menu;
  animation: LadoSecao 1s ease forwards;
}
@media (max-width: 1440px) {
  .atras {
    top: 55px;
    left: 21px;
  }
}
@media (max-width: 1024px) {
  .atras {
    scale: 0.8;
    top: 94px;
    left: -77px;
  }
}
@media (max-width: 768px) {
  .atras {
    scale: 0.7;
    top: 120px;
    left: -151px;
  }
}
@media (max-width: 426px) {
  .atras {
    scale: 0.4;
    top: 182px;
    left: -276px;
  }
}
@media (max-width: 376px) {
  .atras {
    scale: 0.35;
    top: 197px;
    left: -300px;
  }
}
@media (max-width: 320px) {
  .atras {
    scale: 0.3;
    top: 207px;
    left: -327px;
  }
}

.sobre_mim {
  width: 100%;
  margin: 0 auto;
  max-width: 1300px;
  padding-top: 40px;
  display: flex;
  flex-direction: row-reverse;
  color: #707070;
  color: white;
  background-color: rgba(9, 9, 9, 0.8862745098);
  height: 500px;
  border: 2px solid #bbf1fd;
  border-radius: 10px;
  position: relative;
  top: 20px;
  font-family: logo;
  letter-spacing: 2px;
  word-spacing: 5px;
}
@media (max-width: 1440px) {
  .sobre_mim {
    height: 465px;
    width: 100%;
    max-width: 1325px;
    top: 37px;
  }
}
@media (max-width: 1024px) {
  .sobre_mim {
    height: 465px;
    max-width: 947px;
    padding: 20px 0px;
    top: 43px;
  }
}
@media (max-width: 768px) {
  .sobre_mim {
    height: 475px;
    max-width: 707px;
    padding: 19px 0px;
    top: 42px;
  }
}
@media (max-width: 426px) {
  .sobre_mim {
    height: 450px;
    max-width: 409px;
  }
}
@media (max-width: 376px) {
  .sobre_mim {
    height: 465px;
    max-width: 356px;
  }
}
@media (max-width: 320px) {
  .sobre_mim {
    height: 408px;
    max-width: 305px;
  }
}

.sobre_mim img {
  display: flex;
  max-height: 300px;
  width: 300px;
  border-radius: 100%;
  border: 2px solid #ff5d56;
  border: 2px solid #bbf1fd;
  image-rendering: optimizeQuality;
  -o-object-fit: cover;
     object-fit: cover;
  /* padding-right: 20px; */
  margin-top: 20px;
  padding: 40px 40px;
}
.imagem {
  margin-right: 20px;
}
@media (max-width: 768px) {
  .imagem {
    scale: 0.8;
    margin: 0px -32px 0px 0px;
  }
}
@media (max-width: 426px) {
  .imagem {
    display: none;
  }
}

#myCanvas {
  position: absolute;
  right: 0;
  top: 0;
  cursor: move;
}
@media (max-width: 768px) {
  #myCanvas {
    scale: 0.9;
    top: -32px;
    right: -30px;
  }
}

.direita_imagem {
  animation: dentroPfora 1s ease forwards;
  padding-left: 20px;
}
@media (max-width: 1024px) {
  .direita_imagem {
    scale: 0.9;
    padding: 0px;
  }
}
@media (max-width: 1024px) {
  .direita_imagem {
    margin-bottom: 321px;
  }
}
@media (max-width: 768px) {
  .direita_imagem {
    margin: -34px -149px 0px 0px;
  }
}
@media (max-width: 426px) {
  .direita_imagem {
    margin: -54px -84px 0px 0px;
  }
}
@media (max-width: 376px) {
  .direita_imagem {
    scale: 0.77;
    margin: -54px -107px 0px 0px;
  }
}
@media (max-width: 320px) {
  .direita_imagem {
    scale: 0.67;
    margin: -54px -131px 0px 0px;
  }
}

@media (max-width: 768px) {
  .sobre_texto {
    width: 416px;
    scale: 0.9;
  }
}

.sobre_texto h1 {
  color: white;
  font-size: 2.3rem;
}

.sobre_texto h1::after {
  background-color: #ff5d56;
  background-color: #bbf1fd;
  height: 6px;
  width: 60px;
  margin: 20px 0;
  content: "";
  display: block;
  border-radius: 5px;
}

.sobre_texto p {
  font-size: 1.3rem;
  display: grid;
  grid-row: 2;
  grid-column: 1/-1;
}

@media (max-width: 1024px) {
  .sobre_texto_p2 {
    display: none !important;
  }
}

.sobre_info {
  display: grid;
  grid-column: 1/-1;
  grid-template-columns: 1fr 1fr;
  margin-top: 30px;
  gap: 15px;
  /* text-align: center; */
}
.sobre_info a {
  padding: 0px 15px;
  font-size: 1.2rem;
  font-family: logo;
  color: rgb(255, 255, 255);
  letter-spacing: 2px;
  word-spacing: 5px;
  font-weight: 500;
}
@media (max-width: 1024px) {
  .sobre_info {
    scale: 0.9;
    gap: 9px 23px;
    margin: -30px 0px 3px -30px;
    width: 559px;
  }
}
@media (max-width: 768px) {
  .sobre_info {
    scale: 0.8;
  }
}

.sobre_info i {
  color: #dc3545;
  color: #bbf1fd;
  display: inline-block;
  padding-right: 15px;
  font-size: 1.5rem;
}

.sobre_info p {
  font-size: 1.2rem;
}

@keyframes sobreSecao {
  from {
    transition: 0.5s;
    transform: translate3d(1400px, 0, 0);
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
@keyframes LadoSecao {
  from {
    transition: 0.5s;
    transform: translate3d(-1400px, 0, 0);
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
#pagepiling .section.sec3 {
  background-image: url(./assets/cinema\ 5.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

#projects1 h2 {
  color: rgb(0, 0, 0);
  text-shadow: 2px 2px 0px rgb(0, 225, 255), 2px -2px 0px rgb(255, 255, 255), -2px 2px 0px rgb(255, 255, 255), -2px -2px 0px rgb(255, 255, 255), 2px 0px 0px rgb(64, 116, 181), 0px 2px 0px rgb(64, 116, 181), -2px 0px 0px rgb(64, 116, 181), 0px -2px 0px rgb(64, 116, 181);
  position: absolute;
  left: 547px;
  top: 7px;
  font-size: 70px;
  font-family: teste1;
}
@media (max-width: 1440px) {
  #projects1 h2 {
    left: 516px;
  }
}
@media (max-width: 1024px) {
  #projects1 h2 {
    scale: 1;
    left: 288px;
  }
}
@media (max-width: 768px) {
  #projects1 h2 {
    left: 23px;
  }
}
@media (max-width: 426px) {
  #projects1 h2 {
    scale: 0.8;
    left: -7px;
  }
}
@media (max-width: 376px) {
  #projects1 h2 {
    left: -21px;
  }
}
@media (max-width: 320px) {
  #projects1 h2 {
    scale: 0.6;
    width: 358px;
    left: -57px;
  }
}

#main-carousel img {
  height: 250px;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 426px) {
  #main-carousel img {
    height: 475px;
  }
}
@media (max-width: 376px) {
  #main-carousel img {
    height: 588px;
  }
}
@media (max-width: 320px) {
  #main-carousel img {
    height: 815px;
  }
}

#thumbnail-carousel img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

#main-carousel {
  width: 750px;
  height: 230px;
  border: 8px solid rgb(0, 0, 0);
}
@media (max-width: 426px) {
  #main-carousel {
    min-height: 460px;
  }
}
@media (max-width: 376px) {
  #main-carousel {
    min-height: 583px;
  }
}
@media (max-width: 320px) {
  #main-carousel {
    min-height: 815px;
  }
}

#thumbnail-carousel {
  width: 750px;
  height: 200px;
  border: 8px solid rgb(0, 0, 0);
  border-radius: 8px;
}
@media (max-width: 426px) {
  #thumbnail-carousel {
    min-height: 117px;
  }
}

.splide__track {
  background-color: black;
}

.splide__slide {
  opacity: 0.6;
}
.splide__slide div {
  background-color: aqua;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}

@media (max-width: 426px) {
  .splide__slide.is-visible {
    height: 100px !important;
  }
}

@media (max-width: 426px) {
  #thumbnail-carousel-slide01 {
    width: 119px !important;
  }
}

@media (max-width: 426px) {
  #thumbnail-carousel-slide02 {
    width: 119px !important;
  }
}

@media (max-width: 426px) {
  #thumbnail-carousel-slide03 {
    width: 119px !important;
  }
}

@media (max-width: 426px) {
  #thumbnail-carousel-slide04 {
    width: 119px !important;
  }
}

@media (max-width: 426px) {
  #thumbnail-carousel-slide05 {
    width: 119px !important;
  }
}

.splide__slide.is-active {
  opacity: 1;
}

@media (max-width: 426px) {
  .splide__track--nav {
    height: 100%;
  }
}

.march {
  position: relative;
  left: -245px;
  top: -30px;
  height: 100px;
  display: flex;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  align-items: center;
  transform-origin: center;
  transform: perspective(822px) rotateY(20deg) rotateX(0deg) rotate(1deg) skew(360deg, 0deg);
}
@media (max-width: 1024px) {
  .march {
    left: -162px;
    top: -16px;
    scale: 0.7;
    transform: perspective(848px) rotateY(20deg) rotateX(0deg) rotate(1deg) skew(360deg, 0deg);
  }
}
@media (max-width: 768px) {
  .march {
    left: -91px;
    top: -16px;
    scale: 0.7;
  }
}
@media (max-width: 426px) {
  .march {
    height: 42px;
    width: 40px;
    scale: 0.54;
    left: 198px;
    top: -16px;
    transform: perspective(629px) rotateY(3deg) rotateX(0deg) rotate(0deg) skew(0deg, 0deg);
  }
}
@media (max-width: 376px) {
  .march {
    left: 171px;
    scale: 0.45;
    transform: perspective(629px) rotateY(2deg) rotateX(0deg) rotate(0deg) skew(0deg, 0deg);
  }
}
@media (max-width: 320px) {
  .march {
    scale: 0.4;
    left: 142px;
    top: 18px;
    transform: perspective(629px) rotateY(1deg) rotateX(0deg) rotate(0deg) skew(0deg, 0deg);
  }
}

#e_commerce_link0 {
  font-family: "teste1";
  font-size: 22px;
  font-weight: 600;
  position: absolute;
  top: 178px;
  left: 5px;
  text-decoration: none;
  display: flex;
  border-radius: 17px;
  border: 2px solid white;
  padding: 17px 0px 4px 10px;
  text-align: center;
  transition: 0.5s;
  background-size: 200% auto;
  color: rgb(0, 0, 0);
  background-image: linear-gradient(45deg, #fcfcfc 0%, rgb(0, 249, 17) 51%, #000000 100%);
  -moz-user-select: none;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
}
#e_commerce_link0 div {
  display: flex;
  flex-direction: row;
  background-color: white;
  padding: 4px 6px;
  border-radius: 17px;
  height: 12px;
  width: 43px;
  position: relative;
  left: -12px;
  top: -10px;
}
#e_commerce_link0 div i {
  color: black;
  font-size: 13.3px;
}
#e_commerce_link0:hover {
  background-position: right center;
  color: #fff;
  text-decoration: none;
}
@media (max-width: 426px) {
  #e_commerce_link0 {
    top: 399px;
  }
}
@media (max-width: 376px) {
  #e_commerce_link0 {
    top: 515px;
  }
}
@media (max-width: 320px) {
  #e_commerce_link0 {
    top: 739px;
  }
}

#e_commerce_link8 {
  font-family: "teste1";
  font-size: 22px;
  font-weight: 600;
  position: absolute;
  top: 178px;
  left: 5px;
  text-decoration: none;
  display: flex;
  border-radius: 17px;
  border: 2px solid white;
  padding: 17px 0px 4px 10px;
  text-align: center;
  transition: 0.5s;
  background-size: 200% auto;
  color: rgb(0, 0, 0);
  background-image: linear-gradient(45deg, #fcfcfc 0%, aqua 51%, #000000 100%);
  -moz-user-select: none;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
}
#e_commerce_link8 div {
  display: flex;
  flex-direction: row;
  background-color: white;
  padding: 4px 6px;
  border-radius: 17px;
  height: 12px;
  width: 43px;
  position: relative;
  left: -12px;
  top: -10px;
}
#e_commerce_link8 div i {
  color: black;
  font-size: 13.3px;
}
#e_commerce_link8:hover {
  background-position: right center;
  color: #fff;
  text-decoration: none;
}
@media (max-width: 426px) {
  #e_commerce_link8 {
    top: 399px;
  }
}
@media (max-width: 376px) {
  #e_commerce_link8 {
    top: 515px;
  }
}
@media (max-width: 320px) {
  #e_commerce_link8 {
    top: 739px;
  }
}

#e_commerce_link9 {
  font-family: "teste1";
  font-size: 22px;
  font-weight: 600;
  position: absolute;
  top: 178px;
  left: 5px;
  text-decoration: none;
  display: flex;
  border-radius: 17px;
  border: 2px solid white;
  padding: 17px 0px 4px 10px;
  text-align: center;
  transition: 0.5s;
  background-size: 200% auto;
  color: rgb(0, 0, 0);
  background-image: linear-gradient(45deg, #fcfcfc 0%, rgb(0, 249, 149) 51%, #000000 100%);
  -moz-user-select: none;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
}
#e_commerce_link9 div {
  display: flex;
  flex-direction: row;
  background-color: white;
  padding: 4px 6px;
  border-radius: 17px;
  height: 12px;
  width: 43px;
  position: relative;
  left: -12px;
  top: -10px;
}
#e_commerce_link9 div i {
  color: black;
  font-size: 13.3px;
}
#e_commerce_link9:hover {
  background-position: right center;
  color: #fff;
  text-decoration: none;
}
@media (max-width: 426px) {
  #e_commerce_link9 {
    top: 399px;
  }
}
@media (max-width: 376px) {
  #e_commerce_link9 {
    top: 515px;
  }
}
@media (max-width: 320px) {
  #e_commerce_link9 {
    top: 739px;
  }
}

#e_commerce_link10 {
  font-family: "teste1";
  font-size: 22px;
  font-weight: 600;
  position: absolute;
  top: 178px;
  left: 5px;
  text-decoration: none;
  display: flex;
  border-radius: 17px;
  border: 2px solid white;
  padding: 17px 0px 4px 10px;
  text-align: center;
  transition: 0.5s;
  background-size: 200% auto;
  color: rgb(0, 0, 0);
  background-image: linear-gradient(45deg, #fcfcfc 0%, rgba(0, 249, 149, 0.746) 51%, #000000 100%);
  -moz-user-select: none;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
}
#e_commerce_link10 div {
  display: flex;
  flex-direction: row;
  background-color: white;
  padding: 4px 6px;
  border-radius: 17px;
  height: 12px;
  width: 43px;
  position: relative;
  left: -12px;
  top: -10px;
}
#e_commerce_link10 div i {
  color: black;
  font-size: 13.3px;
}
#e_commerce_link10:hover {
  background-position: right center;
  color: #fff;
  text-decoration: none;
}
@media (max-width: 426px) {
  #e_commerce_link10 {
    top: 399px;
  }
}
@media (max-width: 376px) {
  #e_commerce_link10 {
    top: 515px;
  }
}
@media (max-width: 320px) {
  #e_commerce_link10 {
    top: 739px;
  }
}

#e_commerce_link1 {
  font-family: "teste1";
  font-size: 22px;
  font-weight: 600;
  position: absolute;
  top: 178px;
  left: 5px;
  text-decoration: none;
  display: flex;
  border-radius: 17px;
  border: 2px solid white;
  padding: 17px 0px 4px 10px;
  text-align: center;
  transition: 0.5s;
  background-size: 200% auto;
  color: aqua;
  background-image: linear-gradient(45deg, #fcfcfc 0%, rgb(25, 0, 255) 51%, #000000 100%);
  -moz-user-select: none;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
}
#e_commerce_link1 div {
  display: flex;
  flex-direction: row;
  background-color: white;
  padding: 4px 6px;
  border-radius: 17px;
  height: 12px;
  width: 43px;
  position: relative;
  left: -12px;
  top: -10px;
}
#e_commerce_link1 div i {
  color: black;
  font-size: 13.3px;
}
#e_commerce_link1:hover {
  background-position: right center;
  color: #fff;
  text-decoration: none;
}
@media (max-width: 426px) {
  #e_commerce_link1 {
    top: 399px;
  }
}
@media (max-width: 376px) {
  #e_commerce_link1 {
    top: 515px;
  }
}
@media (max-width: 320px) {
  #e_commerce_link1 {
    top: 739px;
  }
}

#e_commerce_link2 {
  font-family: "teste1";
  font-size: 22px;
  font-weight: 600;
  position: absolute;
  top: 178px;
  left: 5px;
  text-decoration: none;
  display: flex;
  border-radius: 17px;
  border: 2px solid white;
  padding: 17px 0px 4px 10px;
  text-align: center;
  transition: 0.5s;
  background-size: 200% auto;
  color: rgb(0, 0, 0);
  background-image: linear-gradient(45deg, #fcfcfc 0%, rgb(25, 0, 255) 51%, #000000 100%);
  -moz-user-select: none;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
}
#e_commerce_link2 div {
  display: flex;
  flex-direction: row;
  background-color: white;
  padding: 4px 6px;
  border-radius: 17px;
  height: 12px;
  width: 43px;
  position: relative;
  left: -12px;
  top: -10px;
}
#e_commerce_link2 div i {
  color: black;
  font-size: 13.3px;
}
#e_commerce_link2:hover {
  background-position: right center;
  color: #fff;
  text-decoration: none;
}
@media (max-width: 426px) {
  #e_commerce_link2 {
    top: 399px;
  }
}
@media (max-width: 376px) {
  #e_commerce_link2 {
    top: 515px;
  }
}
@media (max-width: 320px) {
  #e_commerce_link2 {
    top: 739px;
  }
}

#e_commerce_link3 {
  font-family: "teste1";
  font-size: 22px;
  font-weight: 600;
  position: absolute;
  top: 178px;
  left: 5px;
  text-decoration: none;
  display: flex;
  border-radius: 17px;
  border: 2px solid white;
  padding: 17px 0px 4px 10px;
  text-align: center;
  transition: 0.5s;
  background-size: 200% auto;
  color: rgb(0, 0, 0);
  background-image: linear-gradient(45deg, #fcfcfc 0%, aqua 51%, #000000 100%);
  -moz-user-select: none;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
}
#e_commerce_link3 div {
  display: flex;
  flex-direction: row;
  background-color: white;
  padding: 4px 6px;
  border-radius: 17px;
  height: 12px;
  width: 43px;
  position: relative;
  left: -12px;
  top: -10px;
}
#e_commerce_link3 div i {
  color: black;
  font-size: 13.3px;
}
#e_commerce_link3:hover {
  background-position: right center;
  color: #fff;
  text-decoration: none;
}
@media (max-width: 426px) {
  #e_commerce_link3 {
    top: 399px;
  }
}
@media (max-width: 376px) {
  #e_commerce_link3 {
    top: 515px;
  }
}
@media (max-width: 320px) {
  #e_commerce_link3 {
    top: 739px;
  }
}

#e_commerce_link4 {
  font-family: "teste1";
  font-size: 22px;
  font-weight: 600;
  position: absolute;
  top: 178px;
  left: 5px;
  text-decoration: none;
  display: flex;
  border-radius: 17px;
  border: 2px solid white;
  padding: 17px 0px 4px 10px;
  text-align: center;
  transition: 0.5s;
  background-size: 200% auto;
  color: rgb(0, 0, 0);
  background-image: linear-gradient(45deg, #fcfcfc 0%, rgb(25, 0, 255) 51%, #000000 100%);
  -moz-user-select: none;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
}
#e_commerce_link4 div {
  display: flex;
  flex-direction: row;
  background-color: white;
  padding: 4px 6px;
  border-radius: 17px;
  height: 12px;
  width: 43px;
  position: relative;
  left: -12px;
  top: -10px;
}
#e_commerce_link4 div i {
  color: black;
  font-size: 13.3px;
}
#e_commerce_link4:hover {
  background-position: right center;
  color: #fff;
  text-decoration: none;
}
@media (max-width: 426px) {
  #e_commerce_link4 {
    top: 399px;
  }
}
@media (max-width: 376px) {
  #e_commerce_link4 {
    top: 515px;
  }
}
@media (max-width: 320px) {
  #e_commerce_link4 {
    top: 739px;
  }
}

#e_commerce_link5 {
  font-family: "teste1";
  font-size: 22px;
  font-weight: 600;
  position: absolute;
  top: 178px;
  left: 5px;
  text-decoration: none;
  display: flex;
  border-radius: 17px;
  border: 2px solid white;
  padding: 17px 0px 4px 10px;
  text-align: center;
  transition: 0.5s;
  background-size: 200% auto;
  color: rgb(0, 0, 0);
  background-image: linear-gradient(45deg, #fcfcfc 0%, rgb(25, 0, 255) 51%, #000000 100%);
  -moz-user-select: none;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
}
#e_commerce_link5 div {
  display: flex;
  flex-direction: row;
  background-color: white;
  padding: 4px 6px;
  border-radius: 17px;
  height: 12px;
  width: 43px;
  position: relative;
  left: -12px;
  top: -10px;
}
#e_commerce_link5 div i {
  color: black;
  font-size: 13.3px;
}
#e_commerce_link5:hover {
  background-position: right center;
  color: #fff;
  text-decoration: none;
}
@media (max-width: 426px) {
  #e_commerce_link5 {
    top: 399px;
  }
}
@media (max-width: 376px) {
  #e_commerce_link5 {
    top: 515px;
  }
}
@media (max-width: 320px) {
  #e_commerce_link5 {
    top: 739px;
  }
}

#e_commerce_link6 {
  font-family: "teste1";
  font-size: 22px;
  font-weight: 600;
  position: absolute;
  top: 178px;
  left: 5px;
  text-decoration: none;
  display: flex;
  border-radius: 17px;
  border: 2px solid white;
  padding: 17px 0px 4px 10px;
  text-align: center;
  transition: 0.5s;
  background-size: 200% auto;
  color: rgb(0, 0, 0);
  background-image: linear-gradient(45deg, #fcfcfc 0%, rgb(255, 0, 132) 51%, #000000 100%);
  -moz-user-select: none;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
}
#e_commerce_link6 div {
  display: flex;
  flex-direction: row;
  background-color: white;
  padding: 4px 6px;
  border-radius: 17px;
  height: 12px;
  width: 43px;
  position: relative;
  left: -12px;
  top: -10px;
}
#e_commerce_link6 div i {
  color: black;
  font-size: 13.3px;
}
#e_commerce_link6:hover {
  background-position: right center;
  color: #fff;
  text-decoration: none;
}
@media (max-width: 426px) {
  #e_commerce_link6 {
    top: 399px;
  }
}
@media (max-width: 376px) {
  #e_commerce_link6 {
    top: 515px;
  }
}
@media (max-width: 320px) {
  #e_commerce_link6 {
    top: 739px;
  }
}

#e_commerce_link7 {
  font-family: "teste1";
  font-size: 22px;
  font-weight: 600;
  position: absolute;
  top: 178px;
  left: 5px;
  text-decoration: none;
  display: flex;
  border-radius: 17px;
  border: 2px solid white;
  padding: 17px 0px 4px 10px;
  text-align: center;
  transition: 0.5s;
  background-size: 200% auto;
  color: rgb(0, 0, 0);
  background-image: linear-gradient(45deg, #fcfcfc 0%, rgb(0, 0, 0) 51%, #000000 100%);
  -moz-user-select: none;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
}
#e_commerce_link7 div {
  display: flex;
  flex-direction: row;
  background-color: white;
  padding: 4px 6px;
  border-radius: 17px;
  height: 12px;
  width: 43px;
  position: relative;
  left: -12px;
  top: -10px;
}
#e_commerce_link7 div i {
  color: black;
  font-size: 13.3px;
}
#e_commerce_link7:hover {
  background-position: right center;
  color: #fff;
  text-decoration: none;
}
@media (max-width: 426px) {
  #e_commerce_link7 {
    top: 399px;
  }
}
@media (max-width: 376px) {
  #e_commerce_link7 {
    top: 515px;
  }
}
@media (max-width: 320px) {
  #e_commerce_link7 {
    top: 739px;
  }
}

.splide__pagination__page {
  background-color: aqua !important;
  filter: brightness(15.5);
}

.splide__arrow {
  background: aqua !important;
}

#pagepiling .section.sec4 {
  background: #f8f8f8;
  font-family: Helvetica Neue, Helvetica, Arial, sans-serif;
  font-size: 14px;
  color: #000;
  width: 100%;
}

.div4 {
  width: 100%;
  height: 100%;
}

.swiper {
  height: 100%;
  background: #000;
  max-width: 1536px;
}
@media (max-width: 1440px) {
  .swiper {
    max-width: 1440px;
  }
}
@media (max-width: 1024px) {
  .swiper {
    max-width: 1024px;
  }
}
@media (max-width: 768px) {
  .swiper {
    max-width: 768px;
  }
}
@media (max-width: 426px) {
  .swiper {
    max-width: 426px;
  }
}
@media (max-width: 376px) {
  .swiper {
    max-width: 376px;
    max-height: 620px;
  }
}
@media (max-width: 320px) {
  .swiper {
    max-width: 320px;
  }
}

@media (max-width: 376px) {
  .swiper-wrapper {
    max-width: 376px;
    max-height: 620px;
  }
}

.swiper-slide {
  font-size: 18px;
  color: #fff;
  box-sizing: border-box;
  padding: 40px 60px;
  display: flex !important;
  align-items: center;
  flex-direction: row;
  justify-content: center;
}
@media (max-width: 376px) {
  .swiper-slide {
    padding: 0px !important;
  }
}

.parallax-bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 130%;
  height: 100%;
  background-size: cover;
  background-position: center;
}

.swiper-slide .title {
  font-size: 41px;
  font-weight: 300;
}

.swiper-slide .subtitle {
  font-size: 21px;
}

.swiper-slide .text {
  font-size: 14px;
  max-width: 400px;
  line-height: 1.3;
}

.swiper-slide .text p {
  text-align: justify;
  color: white;
}

#skills1 h2 {
  color: rgb(0, 0, 0);
  text-shadow: 2px 2px 0px rgb(255, 102, 0), 2px -2px 0px rgb(255, 255, 255), -2px 2px 0px rgb(255, 255, 255), -2px -2px 0px rgb(0, 0, 0), 2px 0px 0px rgb(64, 116, 181), 0px 2px 0px rgb(64, 116, 181), -2px 0px 0px rgb(64, 116, 181), 0px -2px 0px rgb(64, 116, 181);
  position: absolute;
  left: 547px;
  top: 4px;
  font-size: 84px;
  font-family: china;
}
@media (max-width: 1440px) {
  #skills1 h2 {
    left: 496px;
    top: -5px;
  }
}
@media (max-width: 1024px) {
  #skills1 h2 {
    scale: 1;
    left: 288px;
  }
}
@media (max-width: 768px) {
  #skills1 h2 {
    left: 23px;
  }
}
@media (max-width: 426px) {
  #skills1 h2 {
    scale: 0.8;
    left: -7px;
  }
}
@media (max-width: 376px) {
  #skills1 h2 {
    left: -21px;
  }
}
@media (max-width: 320px) {
  #skills1 h2 {
    scale: 0.6;
    width: 358px;
    left: -45px;
    top: 0px;
  }
}

.container1 {
  position: relative;
  top: 41px;
  left: -400px;
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 1200px;
  flex-wrap: wrap;
  z-index: 1;
  transform-origin: center;
  transform: perspective(504px) rotateY(16deg) rotateX(1deg) rotate(357deg) skew(0deg, 0deg);
}

.container1 .card {
  position: relative;
  width: 380px;
  height: 500px;
  margin: 30px;
  box-shadow: 20px 20px 50px rgba(0, 0, 0, 0.5);
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.1);
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.5);
  border-left: 1px solid rgba(255, 255, 255, 0.5);
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
}
@media (max-width: 1440px) {
  .container1 .card {
    scale: 0.9;
    left: -25px;
    top: -17px;
  }
}
@media (max-width: 1024px) {
  .container1 .card {
    display: none;
  }
}

.container1 .card .content {
  padding: 20px;
  text-align: center;
  transform: translateY(100px);
  opacity: 0;
  transition: 0.5s;
}

.container1 .card:hover .content {
  transform: translateY(0px);
  opacity: 1;
}

.container1 .card h1 {
  opacity: 1;
  position: absolute;
  transition: 0.5s;
  font-size: 50px;
  font-family: teste2;
  color: rgb(0, 0, 0);
  text-shadow: 2px 2px 0px rgb(255, 102, 0), 2px -2px 0px rgb(255, 255, 255), -2px 2px 0px rgb(255, 255, 255), -2px -2px 0px rgb(0, 0, 0), 2px 0px 0px rgb(64, 116, 181), 0px 2px 0px rgb(64, 116, 181), -2px 0px 0px rgb(64, 116, 181), 0px -2px 0px rgb(64, 116, 181);
}

.container1 .card:hover h1 {
  opacity: 0;
  transition: 0.5s;
}

.container1 .card .content h2 {
  position: absolute;
  top: -80px;
  right: 30px;
  font-size: 8em;
  color: rgba(255, 255, 255, 0.05);
  pointer-events: none;
}

.container1 .card .content h3 {
  font-size: 1.8em;
  color: #fff;
  z-index: 1;
}

.container1 .card .content p {
  font-size: 1em;
  color: #fff;
  font-weight: 300;
}

.container1 .card .content a {
  position: relative;
  display: inline-block;
  padding: 8px 20px;
  margin-top: 15px;
  background: #fff;
  color: #000;
  border-radius: 20px;
  text-decoration: none;
  font-weight: 500;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.cima_skills {
  position: absolute;
  right: 191px;
  top: 130px;
  height: 265px;
  width: 696px;
  /* background-color: white; */
  border-radius: 7px;
  box-shadow: 20px 20px 50px rgba(0, 0, 0, 0.5);
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.1);
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.5);
  border-left: 1px solid rgba(255, 255, 255, 0.5);
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
  transform-origin: center !important;
  transform: perspective(532px) rotateY(360deg) rotateX(8deg) rotate(359deg) skew(0deg, 0deg) !important;
}
@media (max-width: 1440px) {
  .cima_skills {
    top: 81px;
    right: 164px;
    scale: 0.9;
  }
}
@media (max-width: 1024px) {
  .cima_skills {
    transform: perspective(532px) rotateY(7deg) rotateX(8deg) rotate(0deg) skew(0deg, 0deg) !important;
    scale: 0.98;
  }
}
@media (max-width: 768px) {
  .cima_skills {
    scale: 0.85;
    top: 75px;
    left: 36px;
  }
}
@media (max-width: 426px) {
  .cima_skills {
    scale: 0.55;
    transform: perspective(0px) rotateY(0deg) rotateX(0deg) rotate(0deg) skew(0deg, 0deg) !important;
    left: -136px;
    top: 47px;
  }
}
@media (max-width: 376px) {
  .cima_skills {
    scale: 0.5;
    top: 65px;
    left: -160px;
  }
}
@media (max-width: 320px) {
  .cima_skills {
    scale: 0.45;
    left: -188px;
  }
}

.mySwiper1::-webkit-scrollbar {
  width: 15px;
  background-color: rgba(182, 182, 182, 0.162);
  border-radius: 7px;
  border: 1px solid rgb(0, 0, 0);
  box-shadow: 20px 20px 50px rgba(0, 0, 0, 0.5);
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.1);
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.5);
  border-left: 1px solid rgba(255, 255, 255, 0.5);
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
}

.mySwiper1::-webkit-scrollbar-thumb {
  width: 14px;
  background-color: #ffffff;
  border-radius: 7px;
  box-shadow: 20px 20px 50px rgba(0, 0, 0, 0.5);
  border-radius: 15px;
  background: rgb(255, 115, 0);
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.5);
  border-left: 1px solid rgba(255, 255, 255, 0.5);
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
}

.mySwiper1 {
  width: 100%;
  height: 100%;
  overflow-y: scroll !important;
  /* background-color: #38caef; */
  border-radius: 7px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.mySwiper1 swiper-slide {
  font-size: 18px;
  display: flex;
  color: #000;
  height: 10px;
  max-height: 80px;
  width: 100%;
  height: 80px;
  flex-direction: row;
  align-items: center;
}

.slide110 {
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: row;
  padding: 5px 6px;
}
.slide110 i {
  font-size: 65px;
  padding: 0px 0px 0px 9px;
  color: rgb(255, 102, 0);
  text-shadow: 2px 2px 0px rgb(255, 255, 255), 2px -2px 0px rgb(0, 0, 0), -2px 2px 0px rgb(0, 0, 0), -2px -2px 0px rgb(0, 0, 0), 2px 0px 0px rgb(64, 116, 181), 0px 2px 0px rgb(64, 116, 181), -2px 0px 0px rgb(64, 116, 181), 0px -2px 0px rgb(64, 116, 181);
}

.slide111 {
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: row;
  padding: 5px 6px;
}
.slide111 i {
  font-size: 65px;
  padding: 0px 0px 0px 9px;
  color: rgb(0, 119, 255);
  text-shadow: 2px 2px 0px rgb(255, 255, 255), 2px -2px 0px rgb(0, 0, 0), -2px 2px 0px rgb(0, 0, 0), -2px -2px 0px rgb(0, 0, 0), 2px 0px 0px rgb(64, 116, 181), 0px 2px 0px rgb(64, 116, 181), -2px 0px 0px rgb(64, 116, 181), 0px -2px 0px rgb(64, 116, 181);
}

.slide112 {
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: row;
  padding: 5px 6px;
}
.slide112 i {
  font-size: 65px;
  padding: 0px 0px 0px 9px;
  color: rgb(238, 255, 0);
  text-shadow: 2px 2px 0px rgb(0, 0, 0), 2px -2px 0px rgb(0, 0, 0), -2px 2px 0px rgb(0, 0, 0), -2px -2px 0px rgb(0, 0, 0), 2px 0px 0px rgb(64, 116, 181), 0px 2px 0px rgb(64, 116, 181), -2px 0px 0px rgb(64, 116, 181), 0px -2px 0px rgb(64, 116, 181);
}

.slide113 {
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: row;
  padding: 5px 6px;
}
.slide113 i {
  font-size: 65px;
  padding: 0px 0px 0px 9px;
  color: rgb(64, 116, 181);
  text-shadow: 2px 2px 0px rgb(238, 255, 0), 2px -2px 0px rgb(0, 0, 0), -2px 2px 0px rgb(0, 0, 0), -2px -2px 0px rgb(0, 0, 0), 2px 0px 0px rgb(64, 116, 181), 0px 2px 0px rgb(64, 116, 181), -2px 0px 0px rgb(64, 116, 181), 0px -2px 0px rgb(64, 116, 181);
}

.slide114 {
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: row;
  padding: 5px 6px;
}
.slide114 i {
  font-size: 65px;
  padding: 0px 0px 0px 9px;
  color: #7b86b4;
  text-shadow: 2px 2px 0px rgb(255, 255, 255), 2px -2px 0px rgb(0, 0, 0), -2px 2px 0px rgb(0, 0, 0), -2px -2px 0px rgb(0, 0, 0), 2px 0px 0px rgb(64, 116, 181), 0px 2px 0px rgb(64, 116, 181), -2px 0px 0px rgb(64, 116, 181), 0px -2px 0px rgb(64, 116, 181);
}

.rigth_top_botton {
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 100%;
  padding: 8px 21px;
}

#cimaa0 {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  padding: 0px 10px;
}
#cimaa0 h2 {
  font-size: 33px;
  font-family: china;
  letter-spacing: 3px;
  color: rgb(0, 0, 0);
  text-shadow: 2px 2px 0px rgb(255, 102, 0), 2px -2px 0px rgb(255, 255, 255), -2px 2px 0px rgb(255, 255, 255), -2px -2px 0px rgb(0, 0, 0), 2px 0px 0px rgb(64, 116, 181), 0px 2px 0px rgb(64, 116, 181), -2px 0px 0px rgb(64, 116, 181), 0px -2px 0px rgb(64, 116, 181);
}

#cimaa1 {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  padding: 0px 10px;
}
#cimaa1 h2 {
  font-size: 33px;
  font-family: china;
  letter-spacing: 3px;
  color: rgb(0, 0, 0);
  text-shadow: 2px 2px 0px rgb(0, 119, 225), 2px -2px 0px rgb(255, 255, 255), -2px 2px 0px rgb(255, 255, 255), -2px -2px 0px rgb(0, 0, 0), 2px 0px 0px rgb(64, 116, 181), 0px 2px 0px rgb(64, 116, 181), -2px 0px 0px rgb(64, 116, 181), 0px -2px 0px rgb(64, 116, 181);
}

#cimaa2 {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  padding: 0px 10px;
}
#cimaa2 h2 {
  font-size: 33px;
  font-family: china;
  letter-spacing: 3px;
  color: rgb(0, 0, 0);
  text-shadow: 2px 2px 0px rgb(238, 255, 0), 2px -2px 0px rgb(255, 255, 255), -2px 2px 0px rgb(255, 255, 255), -2px -2px 0px rgb(0, 0, 0), 2px 0px 0px rgb(64, 116, 181), 0px 2px 0px rgb(64, 116, 181), -2px 0px 0px rgb(64, 116, 181), 0px -2px 0px rgb(64, 116, 181);
}

#cimaa3 {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  padding: 0px 10px;
}
#cimaa3 h2 {
  font-size: 33px;
  font-family: china;
  letter-spacing: 3px;
  color: rgb(64, 116, 181);
  text-shadow: 2px 2px 0px rgb(238, 255, 0), 2px -2px 0px rgb(0, 0, 0), -2px 2px 0px rgb(0, 0, 0), -2px -2px 0px rgb(0, 0, 0), 2px 0px 0px rgb(64, 116, 181), 0px 2px 0px rgb(64, 116, 181), -2px 0px 0px rgb(64, 116, 181), 0px -2px 0px rgb(64, 116, 181);
}

#cimaa4 {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  padding: 0px 10px;
}
#cimaa4 h2 {
  font-size: 33px;
  font-family: china;
  letter-spacing: 3px;
  color: rgb(0, 0, 0);
  text-shadow: 2px 2px 0px #7b86b4, 2px -2px 0px rgb(255, 255, 255), -2px 2px 0px rgb(255, 255, 255), -2px -2px 0px rgb(0, 0, 0), 2px 0px 0px rgb(64, 116, 181), 0px 2px 0px rgb(64, 116, 181), -2px 0px 0px rgb(64, 116, 181), 0px -2px 0px rgb(64, 116, 181);
}

#percent0 {
  display: flex;
  flex-direction: row;
}
#percent0 h3 {
  font-size: 33px;
  font-family: china;
  letter-spacing: 3px;
  color: rgb(0, 0, 0);
  text-shadow: 2px 2px 0px rgb(255, 102, 0), 2px -2px 0px rgb(255, 255, 255), -2px 2px 0px rgb(255, 255, 255), -2px -2px 0px rgb(0, 0, 0), 2px 0px 0px rgb(64, 116, 181), 0px 2px 0px rgb(64, 116, 181), -2px 0px 0px rgb(64, 116, 181), 0px -2px 0px rgb(64, 116, 181);
}
#percent0 p {
  font-family: susto;
  font-size: 20px;
  transform: rotate(5deg);
  letter-spacing: 3px;
  color: rgb(255, 102, 0);
  padding: 10px 0px 0px 1px;
}

#percent1 {
  display: flex;
  flex-direction: row;
}
#percent1 h3 {
  font-size: 33px;
  font-family: china;
  letter-spacing: 3px;
  color: rgb(0, 0, 0);
  text-shadow: 2px 2px 0px rgb(0, 119, 225), 2px -2px 0px rgb(255, 255, 255), -2px 2px 0px rgb(255, 255, 255), -2px -2px 0px rgb(0, 0, 0), 2px 0px 0px rgb(64, 116, 181), 0px 2px 0px rgb(64, 116, 181), -2px 0px 0px rgb(64, 116, 181), 0px -2px 0px rgb(64, 116, 181);
}
#percent1 p {
  font-family: susto;
  font-size: 20px;
  transform: rotate(5deg);
  letter-spacing: 3px;
  color: rgb(0, 119, 225);
  padding: 10px 0px 0px 1px;
}

#percent2 {
  display: flex;
  flex-direction: row;
}
#percent2 h3 {
  font-size: 33px;
  font-family: china;
  letter-spacing: 3px;
  color: rgb(0, 0, 0);
  text-shadow: 2px 2px 0px rgb(238, 255, 0), 2px -2px 0px rgb(255, 255, 255), -2px 2px 0px rgb(255, 255, 255), -2px -2px 0px rgb(0, 0, 0), 2px 0px 0px rgb(64, 116, 181), 0px 2px 0px rgb(64, 116, 181), -2px 0px 0px rgb(64, 116, 181), 0px -2px 0px rgb(64, 116, 181);
}
#percent2 p {
  font-family: susto;
  font-size: 20px;
  transform: rotate(5deg);
  letter-spacing: 3px;
  color: rgb(238, 255, 0);
  padding: 10px 0px 0px 1px;
}

#percent3 {
  display: flex;
  flex-direction: row;
}
#percent3 h3 {
  font-size: 33px;
  font-family: china;
  letter-spacing: 3px;
  color: rgb(0, 0, 0);
  text-shadow: 2px 2px 0px rgb(238, 255, 0), 2px -2px 0px rgb(255, 255, 255), -2px 2px 0px rgb(255, 255, 255), -2px -2px 0px rgb(0, 0, 0), 2px 0px 0px rgb(64, 116, 181), 0px 2px 0px rgb(64, 116, 181), -2px 0px 0px rgb(64, 116, 181), 0px -2px 0px rgb(64, 116, 181);
}
#percent3 p {
  font-family: susto;
  font-size: 20px;
  transform: rotate(5deg);
  letter-spacing: 3px;
  color: rgb(238, 255, 0);
  padding: 10px 0px 0px 1px;
}

#percent4 {
  display: flex;
  flex-direction: row;
}
#percent4 h3 {
  font-size: 33px;
  font-family: china;
  letter-spacing: 3px;
  color: rgb(0, 0, 0);
  text-shadow: 2px 2px 0px #7b86b4, 2px -2px 0px rgb(255, 255, 255), -2px 2px 0px rgb(255, 255, 255), -2px -2px 0px rgb(0, 0, 0), 2px 0px 0px rgb(64, 116, 181), 0px 2px 0px rgb(64, 116, 181), -2px 0px 0px rgb(64, 116, 181), 0px -2px 0px rgb(64, 116, 181);
}
#percent4 p {
  font-family: susto;
  font-size: 20px;
  transform: rotate(5deg);
  letter-spacing: 3px;
  color: rgb(0, 0, 0);
  padding: 10px 0px 0px 1px;
}

#barraDeBaixo0 {
  background: #000000;
  display: block;
  height: 11px;
  border: 1px solid rgba(0, 0, 0, 0.3);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  width: 100%;
}
#barraDeBaixo0 span {
  height: 20px;
  float: left;
  background: linear-gradient(90deg, rgb(14, 37, 37) 0%, rgb(255, 102, 0) 100%);
  width: 95%;
  animation: html1 3s;
}

#barraDeBaixo1 {
  background: #000000;
  display: block;
  height: 11px;
  border: 1px solid rgba(0, 0, 0, 0.3);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  width: 100%;
}
#barraDeBaixo1 span {
  height: 20px;
  float: left;
  background: linear-gradient(90deg, rgb(14, 37, 37) 0%, rgb(0, 119, 225) 100%);
  width: 99%;
  animation: css 3s;
}

#barraDeBaixo2 {
  background: #000000;
  display: block;
  height: 11px;
  border: 1px solid rgba(0, 0, 0, 0.3);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  width: 100%;
}
#barraDeBaixo2 span {
  height: 20px;
  float: left;
  background: linear-gradient(90deg, rgb(14, 37, 37) 0%, rgb(238, 255, 0) 100%);
  width: 88%;
  animation: js 3s;
}

#barraDeBaixo3 {
  background: #000000;
  display: block;
  height: 11px;
  border: 1px solid rgba(0, 0, 0, 0.3);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  width: 100%;
}
#barraDeBaixo3 span {
  height: 20px;
  float: left;
  background: linear-gradient(90deg, rgb(14, 37, 37) 0%, rgb(238, 255, 0) 100%);
  width: 70%;
  animation: python 3s;
}

#barraDeBaixo4 {
  background: #000000;
  display: block;
  height: 11px;
  border: 1px solid rgba(0, 0, 0, 0.3);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  width: 100%;
}
#barraDeBaixo4 span {
  height: 20px;
  float: left;
  background: linear-gradient(90deg, rgb(14, 37, 37) 0%, #7b86b4 100%);
  width: 80%;
  animation: sql 3s;
}

@keyframes html1 {
  0% {
    width: 0%;
  }
  100% {
    width: 95%;
  }
}
@keyframes css {
  0% {
    width: 0%;
  }
  100% {
    width: 99%;
  }
}
@keyframes js {
  0% {
    width: 0%;
  }
  100% {
    width: 88%;
  }
}
@keyframes python {
  0% {
    width: 0%;
  }
  100% {
    width: 70%;
  }
}
@keyframes sql {
  0% {
    width: 0%;
  }
  100% {
    width: 80%;
  }
}
.baixo_skills {
  position: absolute;
  right: 186px;
  bottom: 21px;
  height: 281px;
  width: 763px;
}
@media (max-width: 1440px) {
  .baixo_skills {
    scale: 0.9;
    right: 162px;
  }
}
@media (max-width: 1024px) {
  .baixo_skills {
    bottom: 8px;
  }
}
@media (max-width: 768px) {
  .baixo_skills {
    right: 2px;
    top: 307px;
    scale: 0.8;
  }
}
@media (max-width: 426px) {
  .baixo_skills {
    scale: 0.55;
    top: 319px;
    right: -172px;
  }
}
@media (max-width: 376px) {
  .baixo_skills {
    scale: 0.48;
    top: 305px;
    right: -197px;
  }
}
@media (max-width: 320px) {
  .baixo_skills {
    scale: 0.4;
    top: 301px;
    right: -219px;
  }
}

.baixo_skills .mySwiper {
  overflow-y: none;
  width: 100%;
  height: 100%;
  /* background-color: #38caef;

  box-shadow: 20px 20px 50px rgba(0, 0, 0, 0.5);
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.1);
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.5);
  border-left: 1px solid rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(5px); */
  transform-origin: center;
  transform: perspective(259px) rotateY(357deg) rotateX(6deg) rotate(0deg) skew(0deg, 0deg);
  /* transform-origin: center !important;
  transform: perspective(355px) rotateY(355deg) rotateX(352deg) rotate(360deg) skew(0deg, 0deg) !important; */
}
@media (max-width: 1024px) {
  .baixo_skills .mySwiper {
    transform: perspective(589px) rotateY(6deg) rotateX(18deg) rotate(357deg) skew(0deg, 0deg) !important;
  }
}
@media (max-width: 426px) {
  .baixo_skills .mySwiper {
    transform: perspective(0px) rotateY(0deg) rotateX(0deg) rotate(0deg) skew(0deg, 0deg) !important;
  }
}

.baixo_skills .mySwiper swiper-slide {
  text-align: center;
  font-size: 18px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #000;
  /* max-height: 200px; */
  background-color: #ef6938;
  box-shadow: 20px 20px 50px rgba(0, 0, 0, 0.5);
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.1);
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.5);
  border-left: 1px solid rgba(255, 255, 255, 0.5);
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
  /* transform-origin: center;
  transform: perspective(355px) rotateY(355deg) rotateX(352deg) rotate(360deg) skew(0deg, 0deg); */
}

.baixo_skills .mySwiper swiper-slide h2 {
  color: rgba(255, 255, 255, 0.11);
  /* color: white; */
  position: relative;
  top: -30px;
  right: -7px;
  font-size: 250px;
  /* overflow: hidden; */
  width: 100%;
  letter-spacing: -35px;
}

.baixo_skills .mySwiper swiper-slide h3 {
  position: relative;
  color: #000;
  top: -192px;
  left: -2px;
  font-size: 23px;
  max-width: 200px;
  font-family: teste2;
  letter-spacing: 3px;
  /* font-family: china; */
}

.texto_baixo_skills div {
  position: absolute;
  top: 144px;
  left: 7px;
  width: 100%;
  height: 100%;
  margin-top: 10px;
}

.baixo_skills .mySwiper swiper-slide p {
  font-size: 17px;
  text-align: justify;
  margin-bottom: 5px;
}

.baixo_skills .mySwiper swiper-slide p em {
  color: white;
}

.baixo_skills .mySwiper swiper-slide p em a {
  text-decoration: none;
}

/* ////////////////////////////////////////////////////////////////// */
/* .container2 {
  position: relative;
  top: 50px;
  left: 494px;
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 1200px;
  flex-wrap: wrap;
  z-index: 1;
  transform: perspective(475px) rotateY(345deg) rotateX(0deg) rotate(6deg) skew(0deg, 0deg);
}

.container2 .card {
  position: relative;
  width: 380px;
  height: 500px;
  margin: 30px;
  box-shadow: 20px 20px 50px rgba(0, 0, 0, 0.5);
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.1);
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.5);
  border-left: 1px solid rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(5px);
}

.container2 .card .content {
  padding: 20px;
  text-align: center;
  transform: translateY(100px);
  opacity: 0;
  transition: 0.5s;
}

.container2 .card:hover .content {
  transform: translateY(0px);
  opacity: 1;
}

.container2 .card h1 {
  opacity: 1;
  color: white;
  position: absolute;
  transition: 0.5s;
  font-size: 50px;
}

.container2 .card:hover h1 {
  opacity: 0;
  transition: 0.5s;
}

.container2 .card .content h2 {
  position: absolute;
  top: -80px;
  right: 30px;
  font-size: 8em;
  color: rgba(255, 255, 255, 0.05);
  pointer-events: none;
}

.container2 .card .content h3 {
  font-size: 1.8em;
  color: #fff;
  z-index: 1;
}

.container2 .card .content p {
  font-size: 1em;
  color: #fff;
  font-weight: 300;
}

.container2 .card .content a {
  position: relative;
  display: inline-block;
  padding: 8px 20px;
  margin-top: 15px;
  background: #fff;
  color: #000;
  border-radius: 20px;
  text-decoration: none;
  font-weight: 500;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
} */
.direita_back_skills {
  position: absolute;
  left: 60px;
  top: 136px;
  width: 396px;
  height: 500px;
  /* box-shadow: 20px 20px 50px rgba(0, 0, 0, 0.5); */
  border-radius: 15px;
  background: rgba(0, 0, 0, 0.653);
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.5);
  border-left: 1px solid rgba(255, 255, 255, 0.5);
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
  animation: mudarDeLado 4s ease-in-out infinite;
}
@media (max-width: 1440px) {
  .direita_back_skills {
    scale: 0.9;
    top: 95px;
  }
}
@media (max-width: 1024px) {
  .direita_back_skills {
    scale: 0.8;
    left: 11px;
  }
}
@media (max-width: 768px) {
  .direita_back_skills {
    scale: 0.7;
    left: 173px;
    top: 29px;
  }
}
@media (max-width: 426px) {
  .direita_back_skills {
    left: 27px;
    top: 20px;
  }
}
@media (max-width: 376px) {
  .direita_back_skills {
    left: -7px;
    top: 27px;
  }
}
@media (max-width: 320px) {
  .direita_back_skills {
    scale: 0.6;
    left: -39px;
    top: 16px;
  }
}

@keyframes mudarDeLado {
  0% {
    transform: perspective(350px) rotateY(-4deg) translateY(0px);
  }
  50% {
    transform: perspective(350px) rotateY(4deg) translateY(-10px);
  }
  100% {
    transform: perspective(350px) rotateY(-4deg) translateY(0px);
  }
}
.direita_back_skills div .cima_eu_back {
  height: 170px;
  width: 100px;
  min-width: 170px;
  border-radius: 50%;
  border: 2px solid #ff6060;
  image-rendering: optimizeQuality;
  -o-object-fit: cover;
     object-fit: cover;
  margin-top: 5px;
}

.direita_back_skills div .max_width {
  max-width: 370px;
}

.direita_back_skills div {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 35px;
  position: relative;
  right: -269px;
  top: -100px;
  background-color: rgba(0, 0, 0, 0.6784313725);
  padding-top: 10px;
  padding-bottom: 10px;
  height: 250px;
  margin: 0 10px;
  width: 100%;
  border-radius: 8px;
}

.direita_back_skills a {
  position: relative;
  top: 65px;
  font-size: 20px;
  color: #ffffff;
  text-decoration: none;
  font-family: teste2;
  letter-spacing: 2px;
}

.direita_back_skills a:hover {
  transition: 0.5s ease-in-out;
  color: #ff6060;
}

.direita_back_skills .baixo_ {
  position: relative;
  bottom: -173px;
  left: -265px;
  max-height: 199px;
  min-width: 388px;
  min-width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  overflow: hidden;
  border-bottom-right-radius: 15px;
  border-bottom-left-radius: 15px;
}

.esquerda_back_skills .firstQ {
  position: absolute;
  top: 363px;
  left: 867px;
  z-index: 1;
  height: 121px;
  max-height: 265px;
  width: 651px;
  max-width: 578px;
}
@media (max-width: 1440px) {
  .esquerda_back_skills .firstQ {
    top: 299px;
    left: 849px;
    scale: 0.9;
  }
}
@media (max-width: 1024px) {
  .esquerda_back_skills .firstQ {
    left: 444px;
    top: 230px;
  }
}
@media (max-width: 768px) {
  .esquerda_back_skills .firstQ {
    left: 105px;
    top: 459px;
  }
}
@media (max-width: 426px) {
  .esquerda_back_skills .firstQ {
    left: -55px;
    top: 449px;
    scale: 0.75;
  }
}
@media (max-width: 376px) {
  .esquerda_back_skills .firstQ {
    left: -85px;
    top: 460px;
    scale: 0.6;
  }
}
@media (max-width: 320px) {
  .esquerda_back_skills .firstQ {
    left: -115px;
    top: 452px;
    scale: 0.55;
  }
}

.esquerda_back_skills2 {
  position: absolute;
  top: 125px;
  left: 600px;
}
@media (max-width: 1440px) {
  .esquerda_back_skills2 {
    scale: 0.9;
    top: 70px;
    left: 573px;
  }
}
@media (max-width: 1024px) {
  .esquerda_back_skills2 {
    scale: 0.7;
    top: 70px;
    left: 323px;
  }
}
@media (max-width: 768px) {
  .esquerda_back_skills2 {
    display: none;
  }
}

.esquerda_back_skills2 .esquerda {
  height: 180px;
  width: 820px;
}

.esquerda_back_skills3 .esquerda_back_skills3_img {
  position: absolute;
  top: 183px;
  left: 509px;
  height: 651px;
  width: 984px;
  z-index: 0;
}
@media (max-width: 1440px) {
  .esquerda_back_skills3 .esquerda_back_skills3_img {
    top: 117px;
    scale: 0.95;
    left: 439px;
  }
}
@media (max-width: 1024px) {
  .esquerda_back_skills3 .esquerda_back_skills3_img {
    scale: 0.6;
    left: 219px;
    top: 165px;
  }
}
@media (max-width: 768px) {
  .esquerda_back_skills3 .esquerda_back_skills3_img {
    display: none;
  }
}

/* //////////////////////////////////////////////////////////////////// */
.container3 {
  position: relative;
  top: 41px;
  left: 376px;
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 1200px;
  flex-wrap: wrap;
  z-index: 1;
  transform: perspective(475px) rotateY(345deg) rotateX(0deg) rotate(6deg) skew(0deg, 0deg);
}

.container3 .card {
  position: relative;
  width: 380px;
  height: 500px;
  margin: 30px;
  box-shadow: 20px 20px 50px rgba(0, 0, 0, 0.5);
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.1);
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.5);
  border-left: 1px solid rgba(255, 255, 255, 0.5);
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
}
@media (max-width: 1440px) {
  .container3 .card {
    scale: 0.9;
    left: -25px;
    top: -17px;
  }
}
@media (max-width: 1024px) {
  .container3 .card {
    display: none;
  }
}

.container3 .card .content {
  padding: 20px;
  text-align: center;
  transform: translateY(100px);
  opacity: 0;
  transition: 0.5s;
}

.container3 .card:hover .content {
  transform: translateY(0px);
  opacity: 1;
}

.container3 .card h1 {
  opacity: 1;
  color: rgb(0, 0, 0);
  position: absolute;
  transition: 0.5s;
  font-size: 50px;
  font-family: teste2;
  text-shadow: 2px 2px 0px rgb(255, 102, 0), 2px -2px 0px rgb(255, 255, 255), -2px 2px 0px rgb(255, 255, 255), -2px -2px 0px rgb(0, 0, 0), 2px 0px 0px rgb(64, 116, 181), 0px 2px 0px rgb(64, 116, 181), -2px 0px 0px rgb(64, 116, 181), 0px -2px 0px rgb(64, 116, 181);
}

.container3 .card:hover h1 {
  opacity: 0;
  transition: 0.5s;
}

.container3 .card .content h2 {
  position: absolute;
  top: -80px;
  right: 30px;
  font-size: 8em;
  color: rgba(255, 255, 255, 0.05);
  pointer-events: none;
}

.container3 .card .content h3 {
  font-size: 1.8em;
  color: #fff;
  z-index: 1;
}

.container3 .card .content p {
  font-size: 1em;
  color: #fff;
  font-weight: 300;
}

.container3 .card .content a {
  position: relative;
  display: inline-block;
  padding: 8px 20px;
  margin-top: 15px;
  background: #fff;
  color: #000;
  border-radius: 20px;
  text-decoration: none;
  font-weight: 500;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* .blocodenotas {
  background-color: #ffffff;
  height: 462px;
  width: 517px;
  position: absolute;
  left: 268px;
  top: 161px;
  color: #000;
  gap: 20px;
} */
/* .blocodenotas ol {
  gap: 30px;
}

.blocodenotas ol li {
  padding-top: 20px;
  gap: 30px;
} */
#text4 {
  overflow: hidden;
  word-wrap: break-word;
  resize: none;
  position: absolute;
  left: 139px;
  top: 136px;
  width: 545px;
  height: 440px !important;
  overflow: hidden;
  background-color: #FFF;
  y: Courier, monospace;
  font-weight: normal;
  font-size: 24px;
  resize: none;
  line-height: 40px;
  padding-left: 100px;
  padding-right: 100px;
  padding-top: 45px;
  padding-bottom: 34px;
  background-image: url(https://static.tumblr.com/maopbtg/E9Bmgtoht/lines.png), url(https://static.tumblr.com/maopbtg/nBUmgtogx/paper.png);
  background-repeat: repeat-y, repeat;
  opacity: 0.8;
  border-radius: 12px;
  box-shadow: 0px 2px 14px #000;
  border-top: 1px solid #FFF;
  border-bottom: 1px solid #FFF;
  transform-origin: center;
  transform: perspective(493px) rotateY(5deg) rotateX(0deg) rotate(0deg) skew(0deg, 0deg);
}
@media (max-width: 1440px) {
  #text4 {
    scale: 0.9;
    top: 94px;
    left: 148px;
  }
}
@media (max-width: 1024px) {
  #text4 {
    transform: perspective(493px) rotateY(356deg) rotateX(0deg) rotate(0deg) skew(0deg, 0deg);
    left: 136px;
  }
}
@media (max-width: 768px) {
  #text4 {
    left: 4px;
  }
}
@media (max-width: 426px) {
  #text4 {
    left: -167px;
    top: 62px;
    scale: 0.5;
  }
}
@media (max-width: 376px) {
  #text4 {
    scale: 0.4;
    left: -184px;
    top: 0px;
    transform: perspective(0px) rotateY(0deg) rotateX(0deg) rotate(0deg) skew(0deg, 0deg);
  }
}
@media (max-width: 320px) {
  #text4 {
    scale: 0.35;
    left: -208px;
    top: -29px;
  }
}

#text4::-moz-placeholder {
  opacity: 10;
  color: #000;
  filter: brightness(500%);
  transform: scale(1);
}

#text4::placeholder {
  opacity: 10;
  color: #000;
  filter: brightness(500%);
  transform: scale(1);
}

.swiper-button-next:after,
.swiper-rtl .swiper-button-prev:after {
  color: #ff6060;
}

.swiper-button-prev:after,
.swiper-rtl .swiper-button-next:after {
  color: #ff6060;
}

.fa-pen-to-square {
  color: #000;
  position: absolute;
  bottom: 114px;
  left: 744px;
  font-size: 80px;
  transform: rotate(20deg);
  text-shadow: 2px 2px 0px rgb(255, 102, 0), 2px -2px 0px rgb(255, 255, 255), -2px 2px 0px rgb(255, 255, 255), -2px -2px 0px rgb(0, 0, 0), 2px 0px 0px rgb(64, 116, 181), 0px 2px 0px rgb(64, 116, 181), -2px 0px 0px rgb(64, 116, 181), 0px -2px 0px rgb(64, 116, 181);
}
@media (max-width: 768px) {
  .fa-pen-to-square {
    left: 596px;
  }
}
@media (max-width: 426px) {
  .fa-pen-to-square {
    left: 299px;
    top: 475px;
  }
}
@media (max-width: 376px) {
  .fa-pen-to-square {
    left: 258px;
  }
}
@media (max-width: 376px) {
  .fa-pen-to-square {
    scale: 0.8;
  }
}
@media (max-width: 320px) {
  .fa-pen-to-square {
    left: 228px;
  }
}

#pagepiling .section.sec5 {
  /* background-image: url(3\ div.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover; */
}

#contact1 h2 {
  position: absolute;
  left: 529px;
  top: 4.5px;
  font-size: 70px;
  font-family: susto;
  color: rgb(0, 0, 0);
  text-shadow: 2px 2px 0px rgb(139, 243, 249), 2px -2px 0px rgb(239, 42, 121), -2px 2px 0px rgb(239, 42, 121), -2px -2px 0px rgb(239, 42, 121), 2px 0px 0px rgb(64, 116, 181), 0px 2px 0px rgb(64, 116, 181), -2px 0px 0px rgb(64, 116, 181), 0px -2px 0px rgb(64, 116, 181);
  /* border-bottom: 3px solid rgb(139, 243, 249); */
  /* color: rgb(	239, 42, 121); */
  /* color: rgb(	186, 186, 186); */
}
@media (max-width: 1440px) {
  #contact1 h2 {
    left: 486px;
    top: 2px;
  }
}
@media (max-width: 1024px) {
  #contact1 h2 {
    scale: 0.9;
    left: 274px;
  }
}
@media (max-width: 768px) {
  #contact1 h2 {
    left: 23px;
  }
}
@media (max-width: 426px) {
  #contact1 h2 {
    left: -7px;
    width: 341px;
    height: 13px;
  }
}
@media (max-width: 320px) {
  #contact1 h2 {
    scale: 0.65;
    width: 341px;
    left: -44px;
    top: 18px;
  }
}

.div5 {
  height: 100%;
  width: 100%;
}

#map {
  width: 100%;
  height: 100%;
}

.bbb {
  position: absolute;
  left: 140px;
  bottom: 51px;
  height: 550px;
  width: 645px;
  background-color: rgba(255, 255, 255, 0.3);
  /* opacity: 50%; */
  border-radius: 15px;
  display: flex;
  flex-direction: column;
  /* font-family: susto; */
}
@media (max-width: 1440px) {
  .bbb {
    bottom: 0px;
    scale: 0.9;
  }
}
@media (max-width: 1024px) {
  .bbb {
    left: 51px;
  }
}
@media (max-width: 768px) {
  .bbb {
    scale: 0.8;
    left: -39px;
  }
}
@media (max-width: 426px) {
  .bbb {
    scale: 0.6;
    left: -110px;
    top: 38px;
  }
}
@media (max-width: 376px) {
  .bbb {
    scale: 0.55;
    left: -135px;
    top: 57px;
  }
}
@media (max-width: 320px) {
  .bbb {
    scale: 0.5;
    left: -163px;
    top: 65px;
  }
}

.send_msg {
  position: relative;
  top: 43px;
  left: 180px;
  font-size: 30px;
  font-family: susto;
  color: rgb(0, 0, 0);
  text-shadow: 2px 2px 0px rgb(139, 243, 249), 2px -2px 0px rgb(239, 42, 121), -2px 2px 0px rgb(239, 42, 121), -2px -2px 0px rgb(239, 42, 121), 2px 0px 0px rgb(64, 116, 181), 0px 2px 0px rgb(64, 116, 181), -2px 0px 0px rgb(64, 116, 181), 0px -2px 0px rgb(64, 116, 181);
}
@media (max-width: 426px) {
  .send_msg {
    width: 300px;
  }
}

.cima1 {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  /* position: relative;
  left: 40px; */
}

#cima2 {
  position: relative;
  left: 40px;
  top: 80px;
}

#cima2 .form__field {
  width: 560px;
}

#cima3 {
  position: relative;
  left: 40px;
  top: 110px;
  width: 300px;
  min-width: 400px;
}

#cima3 .form__field {
  width: 560px;
}

#mesagemcima {
  font-size: 25px;
  font-weight: 1000;
  text-align: justify;
}

#mensage {
  width: 500px;
  height: 76px;
}

.btn0 i {
  font-size: 19px;
  /* color: white; */
  position: relative;
  bottom: 1px;
  left: 2px;
  color: rgb(0, 0, 0);
  text-shadow: 2px 2px 0px rgb(139, 243, 249), 2px -2px 0px rgb(239, 42, 121), -2px 2px 0px rgb(239, 42, 121), -2px -2px 0px rgb(239, 42, 121), 2px 0px 0px rgb(64, 116, 181), 0px 2px 0px rgb(64, 116, 181), -2px 0px 0px rgb(64, 116, 181), 0px -2px 0px rgb(64, 116, 181);
}

.btn0:hover i {
  color: rgb(255, 255, 255);
  text-shadow: none;
  transform: scale(1.1);
}

.btn0 {
  width: 210px;
  font-size: 25px;
  font-weight: 1000;
  /* color: #ffffff; */
  font-family: inherit;
  font-weight: 800;
  cursor: pointer;
  position: relative;
  border: none;
  background: none;
  text-transform: uppercase;
  transition-timing-function: cubic-bezier(0.25, 0.8, 0.25, 1);
  transition-duration: 400ms;
  transition-property: color;
  font-weight: 0;
  font-family: susto;
  color: rgb(0, 0, 0);
  text-shadow: 2px 2px 0px rgb(139, 243, 249), 2px -2px 0px rgb(239, 42, 121), -2px 2px 0px rgb(239, 42, 121), -2px -2px 0px rgb(239, 42, 121), 2px 0px 0px rgb(64, 116, 181), 0px 2px 0px rgb(64, 116, 181), -2px 0px 0px rgb(64, 116, 181), 0px -2px 0px rgb(64, 116, 181);
}
.btn0:focus:after,
.btn0:hover:after {
  width: 100%;
  left: 0%;
}

.btn0:after {
  content: "";
  pointer-events: none;
  bottom: -7px;
  left: 50%;
  position: absolute;
  width: 0%;
  height: 2px;
  background-color: rgb(139, 243, 249);
  transition-timing-function: cubic-bezier(0.25, 0.8, 0.25, 1);
  transition-duration: 400ms;
  transition-property: width, left;
  /* max-width: 200px; */
}

.or {
  font-size: 25px;
  font-weight: 1000;
  color: #ffffff;
  width: 30px;
  font-family: susto;
  color: rgb(0, 0, 0);
  text-shadow: 2px 2px 0px rgb(139, 243, 249), 2px -2px 0px rgb(239, 42, 121), -2px 2px 0px rgb(239, 42, 121), -2px -2px 0px rgb(239, 42, 121), 2px 0px 0px rgb(64, 116, 181), 0px 2px 0px rgb(64, 116, 181), -2px 0px 0px rgb(64, 116, 181), 0px -2px 0px rgb(64, 116, 181);
}

.btn1 i {
  font-size: 21px;
  color: white;
  position: relative;
  bottom: 1px;
  color: rgb(0, 0, 0);
  text-shadow: 2px 2px 0px rgb(139, 243, 249), 2px -2px 0px rgb(239, 42, 121), -2px 2px 0px rgb(239, 42, 121), -2px -2px 0px rgb(239, 42, 121), 2px 0px 0px rgb(64, 116, 181), 0px 2px 0px rgb(64, 116, 181), -2px 0px 0px rgb(64, 116, 181), 0px -2px 0px rgb(64, 116, 181);
}

.btn1:hover i {
  color: rgb(0, 255, 38);
  text-shadow: none;
  transform: scale(1.1);
}

.btn1 {
  width: 155px;
  text-decoration: none;
  font-size: 25px;
  font-weight: 1000;
  color: #ffffff;
  font-family: inherit;
  font-weight: 800;
  cursor: pointer;
  position: relative;
  border: none;
  background: none;
  text-transform: uppercase;
  transition-timing-function: cubic-bezier(0.25, 0.8, 0.25, 1);
  transition-duration: 400ms;
  transition-property: color;
  font-weight: 0;
  font-family: susto;
  color: rgb(0, 0, 0);
  text-shadow: 2px 2px 0px rgb(139, 243, 249), 2px -2px 0px rgb(239, 42, 121), -2px 2px 0px rgb(239, 42, 121), -2px -2px 0px rgb(239, 42, 121), 2px 0px 0px rgb(64, 116, 181), 0px 2px 0px rgb(64, 116, 181), -2px 0px 0px rgb(64, 116, 181), 0px -2px 0px rgb(64, 116, 181);
}

.btn1:focus,
.btn1:hover {
  /* color: rgb(255, 255, 255);
  filter: brightness(130%); */
}

.btn1:focus:after,
.btn1:hover:after {
  width: 100%;
  left: 0%;
}

.btn1:after {
  content: "";
  pointer-events: none;
  bottom: -7px;
  left: 50%;
  position: absolute;
  width: 0%;
  height: 2px;
  background-color: rgb(0, 255, 38);
  transition-timing-function: cubic-bezier(0.25, 0.8, 0.25, 1);
  transition-duration: 400ms;
  transition-property: width, left;
  /* max-width: 200px; */
}

.baixo2 {
  display: flex;
  justify-content: space-around;
  flex-direction: row;
  position: relative;
  left: 0px;
  top: 140px;
}

/* //////////////////////////////////////////////////// */
.form__group {
  position: relative;
  padding: 20px 0 0;
  width: 100%;
  max-width: 180px;
  left: -31.5px;
  top: 66px;
  /* font-family: ; */
}

.form__field {
  width: 240px;
  border: none;
  border-bottom: 3px solid rgb(139, 243, 249);
  outline: 0;
  font-size: 17px;
  color: #fff;
  padding: 7px 0;
  background: transparent;
  transition: border-color 0.2s;
}

.form__field::-moz-placeholder {
  color: transparent;
}

.form__field::placeholder {
  color: transparent;
}

.form__field:-moz-placeholder-shown ~ .form__label {
  font-size: 25px;
  font-weight: 1000;
  cursor: text;
  top: 20px;
  font-weight: 100;
  font-family: susto;
  color: rgb(0, 0, 0);
  text-shadow: 2px 2px 0px rgb(139, 243, 249), 2px -2px 0px rgb(239, 42, 121), -2px 2px 0px rgb(239, 42, 121), -2px -2px 0px rgb(239, 42, 121), 2px 0px 0px rgb(64, 116, 181), 0px 2px 0px rgb(64, 116, 181), -2px 0px 0px rgb(64, 116, 181), 0px -2px 0px rgb(64, 116, 181);
}

.form__field:placeholder-shown ~ .form__label {
  font-size: 25px;
  font-weight: 1000;
  cursor: text;
  top: 20px;
  font-weight: 100;
  font-family: susto;
  color: rgb(0, 0, 0);
  text-shadow: 2px 2px 0px rgb(139, 243, 249), 2px -2px 0px rgb(239, 42, 121), -2px 2px 0px rgb(239, 42, 121), -2px -2px 0px rgb(239, 42, 121), 2px 0px 0px rgb(64, 116, 181), 0px 2px 0px rgb(64, 116, 181), -2px 0px 0px rgb(64, 116, 181), 0px -2px 0px rgb(64, 116, 181);
}

.form__label {
  position: absolute;
  top: 0;
  display: block;
  transition: 0.2s;
  font-size: 17px;
  color: rgb(139, 243, 249);
  pointer-events: none;
  font-weight: 100;
  font-family: susto;
  color: rgb(0, 0, 0);
  text-shadow: 2px 2px 0px rgb(139, 243, 249), 2px -2px 0px rgb(239, 42, 121), -2px 2px 0px rgb(239, 42, 121), -2px -2px 0px rgb(239, 42, 121), 2px 0px 0px rgb(64, 116, 181), 0px 2px 0px rgb(64, 116, 181), -2px 0px 0px rgb(64, 116, 181), 0px -2px 0px rgb(64, 116, 181);
}

.form__field:focus {
  padding-bottom: 7px;
  font-weight: 0;
  border-width: 3px;
  -o-border-image: linear-gradient(to right, rgb(239, 42, 121), #38caef);
     border-image: linear-gradient(to right, rgb(239, 42, 121), #38caef);
  border-image-slice: 1;
}

.form__field:focus ~ .form__label {
  position: absolute;
  top: 0;
  display: block;
  transition: 0.2s;
  font-size: 17px;
  color: #38caef;
  font-weight: 0;
  font-family: susto;
  color: rgb(0, 0, 0);
  text-shadow: 2px 2px 0px rgb(139, 243, 249), 2px -2px 0px rgb(239, 42, 121), -2px 2px 0px rgb(239, 42, 121), -2px -2px 0px rgb(239, 42, 121), 2px 0px 0px rgb(64, 116, 181), 0px 2px 0px rgba(250, 250, 250, 0), -2px 0px 0px rgb(64, 116, 181), 0px -2px 0px rgb(64, 116, 181);
}

/* reset input */
.form__field:required,
.form__field:invalid {
  box-shadow: none;
}

/* /////////////////////////////////////////////// */
.preto {
  height: 80px;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.086);
  position: absolute;
  bottom: 0px;
  border-bottom-left-radius: 15px;
  border-bottom-right-radius: 15px;
}
.back {
  width: 140px;
  height: 56px;
  overflow: hidden;
  border: none;
  color: #fff;
  background: none;
  /* position: relative; */
  padding-bottom: 2em;
  cursor: pointer;
  position: absolute;
  bottom: -52px;
  left: 823px;
  color: rgb(139, 243, 249);
}
@media (max-width: 1440px) {
  .back {
    bottom: -33px;
  }
}
@media (max-width: 768px) {
  .back {
    left: 716px;
  }
}
@media (max-width: 426px) {
  .back {
    left: 271px;
    bottom: -234px;
  }
}

.back a > div,
.back a > svg {
  position: absolute;
  width: 100%;
  height: 100%;
  display: flex;
}

/* .back:focus:after, */
.back:hover:after {
  width: 130px;
  left: 5px;
}

.back:after {
  content: "";
  pointer-events: none;
  bottom: 12px;
  left: 50%;
  position: absolute;
  width: 0%;
  height: 2px;
  background-color: rgb(255, 255, 255);
  transition-timing-function: cubic-bezier(0.25, 0.8, 0.25, 1);
  transition-duration: 400ms;
  transition-property: width, left;
}

.back a .clone > *,
.back a .textB > * {
  opacity: 1;
  font-size: 1.3rem;
  transition: 0.2s;
  margin-left: 4px;
  color: #fff !important;
}

.back a .clone > * {
  transform: translateY(60px);
}

.back a:hover .clone > * {
  opacity: 1;
  transform: translateY(0px);
  transition: all 0.2s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
  color: #fff !important;
  text-shadow: none !important;
}

.back a:hover .textB > * {
  opacity: 1;
  transform: translateY(-60px);
  transition: all 0.2s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
}

.back a:hover .clone > :nth-child(1) {
  transition-delay: 0.15s;
}

.back a:hover .clone > :nth-child(2) {
  transition-delay: 0.2s;
}

.back a:hover .clone > :nth-child(3) {
  transition-delay: 0.25s;
}

.back a:hover .clone > :nth-child(4) {
  transition-delay: 0.3s;
}

/* icon style and hover */
.back a svg {
  width: 25px;
  right: 0;
  top: 50%;
  transform: translateY(-50%) rotate(-50deg);
  transition: 0.2s ease-out;
  color: #fff !important;
}

.back a:hover svg {
  transform: translateY(-50%) rotate(-90deg);
}

.thanks {
  font-size: 25px;
  position: relative;
  bottom: -10px;
  left: 20px;
  color: white;
  color: rgb(139, 243, 249);
  font-family: susto;
}

.social {
  position: relative;
  bottom: 16px;
  left: 376px;
  font-size: 25px;
  color: rgb(0, 0, 0);
  text-shadow: 2px 2px 0px rgb(139, 243, 249), 2px -2px 0px rgb(239, 42, 121), -2px 2px 0px rgb(239, 42, 121), -2px -2px 0px rgb(239, 42, 121), 2px 0px 0px rgb(64, 116, 181), 0px 2px 0px rgba(250, 250, 250, 0), -2px 0px 0px rgb(64, 116, 181), 0px -2px 0px rgb(64, 116, 181);
}
@media (max-width: 768px) {
  .social {
    width: 125px;
  }
}

.social a {
  padding: 0px 5px;
  color: rgb(0, 0, 0);
}

.social a .fa-github:hover {
  color: black;
  text-shadow: none;
  transition: 0.5s;
}

.social a .fa-linkedin:hover {
  color: rgb(0, 132, 255);
  transition: 0.5s;
  background-color: #fffafa;
  border-radius: 2px;
  /* padding-bottom: 4px; */
  max-height: 20px;
}

.social a .fa-code:hover {
  color: rgb(213, 45, 45);
  transition: 0.5s;
}

.finale {
  position: absolute;
  bottom: -47px;
  left: 142px;
  color: white;
  font-size: 15px;
}
@media (max-width: 1440px) {
  .finale {
    bottom: -26px;
  }
}/*# sourceMappingURL=style.css.map */