* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  outline: 0;
}

header {
  padding-top: 34px;
  width: 100%;
  position: fixed;
  z-index: 9999;
  background-color: #06121e;
  padding-bottom: 25px;
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-icons {
  display: flex;
  gap: 14px;
}
.header-icons i {
  color: rgb(117, 48, 255);
  padding: 8px;
  transition: 0.2s;
}

.header-icons i:hover {
  transform: translateY(-5px);
}

.main-buttons {
  display: flex;
  align-items: center;
  gap: 24px;
}

#checkbox {
  display: none;
}

.toggle {
  position: relative;
  width: 40px;
  height: 40px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition-duration: 0.5s;
}

.bars {
  width: 100%;
  height: 4px;
  background-color: rgb(117, 48, 255);
  border-radius: 4px;
}

#bar2 {
  transition-duration: 0.8s;
}

#bar1,
#bar3 {
  width: 70%;
}

#checkbox:checked + .toggle .bars {
  position: absolute;
  transition-duration: 0.5s;
}

#checkbox:checked + .toggle #bar2 {
  transform: scaleX(0);
  transition-duration: 0.5s;
}

#checkbox:checked + .toggle #bar1 {
  width: 100%;
  transform: rotate(45deg);
  transition-duration: 0.5s;
}

#checkbox:checked + .toggle #bar3 {
  width: 100%;
  transform: rotate(-45deg);
  transition-duration: 0.5s;
}

#checkbox:checked + .toggle {
  transition-duration: 0.5s;
  transform: rotate(180deg);
}

@media screen and (max-width: 768px) {
  .header-content {
    min-width: 100dvh;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .header-content i {
    margin-top: 16px;
    font-size: 34px;
  }
}
.container {
  max-width: 1340px;
  margin: 0 auto;
  padding: 0 20px;
}

.text-dark {
  color: #161617;
}

.text-light {
  color: #cbcbcb;
}

.bg-dark {
  background-color: #06121e;
}

.bg-light {
  background-color: #cbcbcb;
}

.main-menu {
  position: fixed;
  min-height: 100dvh;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 99;
  gap: 40px;
  display: none;
  background-color: rgba(0, 0, 0, 0.5450980392);
  animation: mainMenu 0.7s;
}
.main-menu a {
  font-size: 30px;
  font-weight: 600;
  transition: 0.2s;
}
.main-menu a:hover {
  color: rgb(117, 48, 255);
}

@keyframes mainMenu {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.hero {
  min-height: 88dvh;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 14px 0 14px;
}
.hero .main-content {
  display: flex;
  flex-direction: column;
  flex: 1;
  max-width: 500px;
}
.hero .download-contact {
  display: flex;
}
.hero h1 {
  line-height: 150%;
  max-width: 940px;
  font-size: 46px;
}
.hero p {
  margin: 5px 0 40px 0;
}
.hero .main-content h1 span {
  color: rgb(117, 48, 255);
}
.hero .main-content a {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px 24px;
  border-radius: 40px;
  transition: 0.3s;
  border: 2px;
}
.hero .main-content a:first-child {
  border: 2px solid rgb(85, 0, 255);
  background-color: rgb(85, 0, 255);
  margin-right: 15px;
}
.hero .main-content a:last-child {
  border: 2px solid rgb(85, 0, 255);
}
.hero .main-content a:first-child:hover {
  background-color: transparent;
}
.hero .main-content a:last-child:hover {
  background-color: rgb(85, 0, 255);
}
.hero .main-picture {
  flex: 1;
  max-width: 400px;
}
.hero .button-contact {
  padding: 14px 28px;
  color: #fff;
  background-color: #d94140;
  border: 0;
  font-size: 18px;
  font-weight: 600;
  margin: 14px 0;
}
.hero .button-contact:hover {
  animation: scaleButton 0.5s alternate infinite;
}
@keyframes scaleButton {
  from {
    scale: 1;
  }
  to {
    scale: 1.07;
  }
}

@media screen and (max-width: 768px) {
  .hero {
    padding-top: 150px;
    min-height: 100dvh;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
  }
  .hero .main-content {
    flex-direction: column;
    align-items: center;
  }
  .hero h1 {
    font-size: 34px;
    padding: 0 14px;
    width: 100%;
  }
  .hero p {
    font-size: 18px;
  }
}
@media screen and (max-width: 480px) {
  .hero h1 {
    font-size: 24px;
  }
}
#about {
  overflow: hidden;
  color: #fff;
}

.about-content {
  max-width: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 0 14px 64px 14px;
}

.about-description {
  text-align: center;
}
.about-description h2 {
  font-size: 38px;
  margin-bottom: 24px;
}
.about-description p {
  margin-bottom: 14px;
  line-height: 150%;
}

.main-picture {
  border-radius: 50%;
  border: 4px solid rgb(117, 48, 255);
  transition: 0.3s;
}

.main-picture:hover {
  scale: 1.03;
}

@media screen and (max-width: 768px) {
  .about-content {
    padding: 38px 14px 64px 14px;
    flex-direction: column;
  }
}
.section {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 54px 14px;
}

.section h2 {
  text-align: center;
  font-size: 38px;
  margin-bottom: 44px;
}

.section-content {
  display: grid;
  justify-items: center;
  grid-template-columns: repeat(3, 1fr);
  align-items: center;
  gap: 34px;
  padding: 0 44px 34px 44px;
}

.section-content-text {
  max-width: 80%;
  line-height: 150%;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 34px;
  padding: 0 44px 44px 44px;
}

.projects {
  grid-template-columns: repeat(3, 1fr);
}

.tech {
  width: 250px;
  height: 220px;
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  background-color: #353436;
  color: rgb(117, 48, 255);
  padding: 10px;
  -o-border-image: linear-gradient(to right, rgb(85, 0, 255) 0%, #7d3ad5 100%) 1;
     border-image: linear-gradient(to right, rgb(85, 0, 255) 0%, #7d3ad5 100%) 1;
  border-radius: 10px;
  /* this doesn't work */
  border-width: 3px;
  border-style: solid;
  padding: 5px;
}
.tech p {
  max-width: 65%;
  text-align: center;
  margin: 10px 0;
  text-shadow: 0 0 1px rgb(117, 48, 255), 0 0 1px rgb(117, 48, 255), 0 0 2px rgb(85, 0, 255), 0 0 10px rgb(85, 0, 255), 0 0 1px rgb(85, 0, 255), 0 0 1px rgb(85, 0, 255), 0 0 2px rgb(85, 0, 255);
}
.tech img {
  max-width: 110px;
  padding: 15px;
  filter: contrast(2.5);
  transition: 0.2s;
}
.tech img:hover {
  scale: 1.2;
}

@media screen and (max-width: 768px) {
  .section-content {
    grid-template-columns: repeat(1, 1fr);
  }
  .projects {
    grid-template-columns: repeat(1, 1fr);
  }
}
.how-images {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 320px;
  padding-left: 70px;
}
.how-images img {
  flex: 1;
}

.footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 34px;
  color: #fff;
}
.footer .copy {
  text-align: center;
  padding: 10px;
  margin: 40px 0;
  background-color: #06121e;
  border-radius: 40px;
}

.footer-icons {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  justify-items: center;
  align-items: center;
  gap: 50px;
  color: #fff;
}
.footer-icons div {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.footer-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #353436;
  padding: 13px 14px;
  border-radius: 40px;
  transition: 0.2s;
}
.footer-icons p {
  margin-top: 12px;
  background-color: #06121e;
  padding: 7px 10px;
  border-radius: 40px;
}

.footer-icons a:hover {
  scale: 1.2;
}

@media screen and (max-width: 768px) {
  .footer-icons {
    gap: 10px;
  }
}
@media screen and (max-width: 425px) {
  .footer-icons {
    gap: 5px;
  }
}
.btn-whatsapp {
  position: fixed;
  display: flex;
  justify-content: center;
  align-items: center;
  right: 24px;
  bottom: 14px;
  z-index: 99;
  background-color: #353436;
  padding: 10px;
  border-radius: 40px;
}
.btn-whatsapp img {
  min-width: 50px;
  max-width: 90px;
  transition: 0.2s;
}
.btn-whatsapp img:hover {
  scale: 1.15;
}

.btn-whatsapp .tooltip-text {
  visibility: hidden;
  position: absolute;
  width: 100px;
  top: 14px;
  left: -110px;
  padding: 6px;
  border-radius: 8px;
  text-align: center;
  background-color: #232224;
  color: #fff;
  opacity: 0;
  transition: 0.3s;
}

.btn-whatsapp:hover .tooltip-text {
  visibility: visible;
  opacity: 1;
}

@media screen and (max-width: 768px) {
  .btn-whatsapp img {
    max-width: 64px;
  }
}
body {
  font-family: "Sora", sans-serif;
  width: 100%;
  min-height: 100dvh;
  position: relative;
  color: #fff;
}

button {
  all: unset;
  font-family: "Sora", sans-serif;
  cursor: pointer;
}

svg {
  width: 100%;
}

img {
  width: 100%;
}

a {
  cursor: pointer;
  text-decoration: none;
  color: #fff;
}/*# sourceMappingURL=style.css.map */