@import "https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap";
:root {
  --primary-color: #ff3c78;
  --light-black: #000000e3;
  --black: #000;
  --white: #fff;
  --grey: #aaa;
  --size: 400px;
  --very-soft-blue: #dce9f9;
  --neon-blue: #4ddcff;
}

body {
  background-color: #1a1f2c;
  font-family: Poppins, Times, serif;
}

.navbar {
  background-color: var(--very-soft-blue);
}

.navbar li a {
  color: var(--black);
  transition: color .3s ease-in-out;
}

.navbar li a:hover {
  color: var(--neon-blue);
}

#hero {
  width: 100%;
  position: relative;
  overflow: hidden;
}

#hero h1 {
  color: #fff;
}

#hero span {
  color: var(--neon-blue);
}

#hero h2 {
  color: #fff;
  font-weight: 400;
}

#hero p {
  color: var(--neon-blue);
  font-size: x-large;
}

.circle-img {
  width: var(--size);
  height: var(--size);
  background: var(--very-soft-blue);
  border-radius: 50%;
  animation: 3s ease-in-out infinite float;
  display: inline-block;
  overflow: hidden;
  box-shadow: 0 6px 18px #0000001f;
}

@keyframes float {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-12px);
  }

  100% {
    transform: translateY(0);
  }
}

.circle-img img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  display: block;
}

.hero-parent {
  background-color: #000;
}

.socials-container {
  justify-content: center;
  column-gap: 20px;
  display: flex;
}

.icon {
  border-radius: 50%;
  outline: 2px solid #fff;
  width: 45px;
  height: 45px;
  text-decoration: none;
  transition-property: outline-offset, outline-color, background-color;
  transition-duration: .25s;
  display: inline-flex;
}

.icon:hover {
  outline-offset: 2px;
}

.icon svg {
  width: 31px;
  margin: auto;
}

.icon-instagram:hover {
  background-color: red;
  outline-color: red;
}

.icon-dis:hover {
  background-color: #4c00ff;
  outline-color: #4c00ff;
}

.icon-github:hover {
  background-color: #555;
  outline-color: #555;
}

.icon-in:hover {
  background-color: #0a66c2;
  outline-color: #0a66c2;
}

.icon:hover svg {
  animation: .25s shake;
}

@keyframes shake {
  10% {
    transform: rotate(15deg);
  }

  20% {
    transform: rotate(-15deg);
  }
}

.image-wrapper {
  opacity: 0;
  perspective: 1000px;
  transition: opacity .5s, transform 1s;
  transform: rotateY(0);
}

.image-wrapper.visible {
  opacity: 1;
  animation: 2s ease-in-out rotateImage;
}

@keyframes rotateImage {
  0% {
    transform: rotateY(30deg);
  }

  50% {
    transform: rotateY(15deg);
  }

  100% {
    transform: rotateY(0);
  }
}

.image-border {
  border: 2px solid #e9f2fb;
  transition: border-color .5s;
}

.album {
  background-color: #e9f2fb;
}

.btn-sm {
  cursor: pointer;
  color: #fff;
  background: linear-gradient(90deg, #357cc0 0%, #5b9fdb 100%);
  border: 1px solid #357cc0;
  border-radius: 2em;
  align-items: center;
  gap: .35em;
  padding: .75em 1.25em .75em 1em;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1;
  transition: transform .3s, box-shadow .3s, background .3s;
  display: flex;
  box-shadow: 0 .7em 1.5em -.5em #357cc0b3;
}

a {
  text-decoration: none;
}

.btn-sm:hover {
  border-color: #f4f5f2;
}

.image-container {
  justify-content: center;
  align-items: center;
  height: 225px;
  display: flex;
  overflow: hidden;
}

.about-parent {
  background-color: var(--very-soft-blue);
}

.about-parent .stack-span {
  flex-flow: wrap;
  gap: 1rem;
  width: 100%;
  margin-top: 40px;
  display: flex;
}

.about-parent .stack-span .stack-card {
  backdrop-filter: blur(8px);
  background-color: #fff9;
  border-radius: 8px;
  width: 22em;
  height: 20rem;
  padding: 5px;
  transition: transform .25s, box-shadow .25s, padding .25s;
}

hr {
  border: none;
  height: 2px;
}

.about-parent .stack-span .stack-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 20px #536dfe;
}

.stack-card {
  margin-bottom: .5rem !important;
}

.stack-span {
  display: flex;
}

.stack-span .left, .right {
  gap: .5rem;
  width: 100%;
  display: flex;
}

.stack-card {
  height: auto !important;
}

.stack-card .stack-card-body {
  width: 100% !important;
}

.project-divs .col {
  margin-bottom: .5rem !important;
}

.project-divs {
  flex-direction: column;
  display: flex;
}

.project-divs .left, .right {
  gap: .5rem;
  width: 100%;
  display: flex;
}

.stack-card-body {
  flex-flow: wrap;
  gap: 1rem;
  width: 23rem;
  margin-top: 1rem;
  padding: 5px;
  display: flex;
}

.card-image {
  object-fit: contain;
  max-width: 100%;
  max-height: 100%;
}

.stack-card-body .button {
  cursor: default;
  color: #fff;
  background: linear-gradient(90deg, #4ddcff 0%, #3f91ff 100%);
  border: 1px solid #357cc0;
  border-radius: 2em;
  align-items: center;
  gap: .35em;
  padding: .75em 1.25em .75em 1em;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1;
  transition: transform .3s, box-shadow .3s, all .3s;
  display: flex;
  box-shadow: 0 .7em 1.5em -.5em #357cc0b3;
}

.stack-card-body .button__icon {
  width: 1.5em;
  height: 1.5em;
}

.stack-card-body .button:hover {
  border-color: #f4f5f2;
}

.stack-card-body .button:active {
  transform: scale(.98);
  box-shadow: 0 .5em 1.5em -.5em #4c35d0be;
}

#projects .card-body button {
  background: linear-gradient(90deg, #4ddcff 0%, #3f91ff 100%);
  transition: transform .3s, box-shadow .3s, all .3s;
}

.album {
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.album.visible {
  opacity: 1;
}

.card {
  opacity: 0;
  border-radius: 8px;
  transition: opacity 1s ease-in-out, transform 1s ease-in-out;
  transform: translateY(20px);
}

.card.visible {
  opacity: 1;
  transform: translateY(0);
}

.contact {
  margin-top: 45px;
}

.form {
  justify-content: space-between;
  margin: 80px 0;
  display: flex;
}

.form .form-txt {
  flex-basis: 48%;
}

.form .form-txt span {
  color: var(--white);
  font-size: 14px;
}

.form .form-txt h3 {
  color: var(--grey);
  margin: 15px 0;
  font-size: 22px;
  font-weight: 600;
}

.form .form-txt h5 {
  color: var(--grey);
  margin: 15px 0;
  font-weight: 600;
}

.form .form-txt a {
  text-decoration: none;
}

.form .form-txt p {
  color: var(--white);
  font-size: 14px;
}

.form .form-details {
  flex-basis: 48%;
}

.form .form-details input[type="text"], .form .form-details input[type="email"] {
  color: var(--black);
  border: 1px solid var(--grey);
  outline: none;
  margin: 35px 15px;
  padding: 15px 20px;
  font-size: 14px;
}

.form .form-details textarea {
  color: var(--black);
  border: 1px solid var(--grey);
  resize: none;
  outline: none;
  margin: 0 15px;
  padding: 15px 20px;
  font-size: 14px;
}

.form .form-details button {
  color: var(--white);
  background: var(--black);
  border: 1px var(--white) solid;
  letter-spacing: 2px;
  cursor: pointer;
  outline: none;
  margin: 15px;
  padding: 15px 25px;
  font-size: 14px;
  font-weight: 500;
}

@media (width <= 500px) {
  .form {
    flex-direction: column;
    display: flex;
  }

  .form .form-details button {
    margin-left: 0;
  }

  .form .form-details input[type="text"], .form .form-details input[type="email"], .form .form-details textarea {
    width: 100%;
    margin-left: 0;
  }

  .form .form-details input[type="text"] {
    margin-bottom: 0;
  }
}

a .active {
  color: var(--neon-blue);
}

.possibility .button {
  appearance: none;
  box-sizing: border-box;
  cursor: default;
  text-align: center;
  user-select: none;
  touch-action: manipulation;
  white-space: nowrap;
  will-change: box-shadow, transform;
  background-color: #eef2ff;
  border-width: 2px;
  border-color: #357cc0;
  border-radius: 8px;
  justify-content: center;
  align-items: center;
  height: 56px;
  padding-left: 24px;
  padding-right: 24px;
  font-size: 20px;
  line-height: 1;
  text-decoration: none;
  list-style: none;
  transition: box-shadow .15s, transform .15s;
  display: inline-flex;
  position: relative;
  overflow: hidden;
  box-shadow: 0 2px 4px #357cc033, 0 7px 13px -3px #357cc026, inset 0 -3px #d6d6e7;
}

.possibility .button:focus {
  outline: none;
  box-shadow: inset 0 0 0 1.5px #d6d6e7, 0 2px 4px #357cc066, 0 7px 13px -3px #357cc04d, inset 0 -3px #d6d6e7;
}

.possibility .button:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 8px #536dfe4d, 0 7px 13px -3px #536dfe33, inset 0 -3px #d6d6e7;
}

.possibility .button:active {
  transform: translateY(2px);
  box-shadow: inset 0 3px 7px #d6d6e7;
}

.possibility .possibilities {
  flex-direction: row;
  justify-content: space-around;
  width: 100%;
  margin-top: 2rem;
  display: flex;
}

.possibility .inner-possibility {
  align-content: center;
  margin-top: 2rem;
  display: block;
}

.contact-links {
  width: 70%;
}

.contact-links a {
  color: #fff;
  margin: 2px;
  padding: 0;
  line-height: 1;
  transition: color .18s;
  display: inline;
}

.contact-links a:hover {
  color: var(--very-soft-blue, #7fb0e6);
  text-decoration: underline;
}

.contact .inner-contact {
  flex-direction: row;
  margin-top: 2rem;
  display: flex;
}

.mini-inputs {
  flex-direction: row;
  display: flex;
}

#btnSend {
  transition: border-radius .3s, box-shadow .3s, transform .3s;
}

#btnSend:hover {
  border-radius: 8px;
  transform: translateY(-2px);
  box-shadow: 0 .5em 1em #357cc066;
}

.endline {
  background-color: var(--very-soft-blue);
}

@media (width <= 320px) {
  div.divided-hero {
    flex-direction: column-reverse;
    height: fit-content;
    display: flex;
    font-size: 1.5rem !important;
  }

  .hero-right {
    margin-top: .5rem !important;
    margin-bottom: 0 !important;
    padding: 0 .5rem 0 1.3rem !important;
  }

  .hero-left {
    margin-top: 0 !important;
    padding-top: 0 !important;
  }

  .circle-img {
    width: 250px;
    height: 250px;
  }

  .navbar {
    display: none;
  }

  .possibility .button {
    font-size: .95rem;
  }

  .stack-card, .project-divs .col {
    margin-bottom: .5rem;
  }

  .stack-card {
    width: 100% !important;
    height: auto !important;
  }

  .stack-card .stack-card-body {
    width: 100% !important;
  }

  .stack-span {
    display: flex;
  }

  .stack-span .left, .right, .project-divs, .project-divs .left, .right {
    flex-direction: column;
    display: flex;
  }

  .contact .inner-contact {
    flex-direction: column;
    align-items: center;
  }

  .contact-links {
    text-align: center;
    width: 100%;
  }

  .contact-links h3, .contact-links h5 {
    text-align: center;
  }

  .mini-inputs {
    flex-direction: column;
    width: 100%;
  }

  .mini-inputs input {
    width: 100%;
    margin-bottom: .8rem;
  }

  textarea {
    width: 100%;
  }

  #btnSend {
    width: 100%;
    margin-top: 1rem;
  }
}

@media (width >= 321px) and (width <= 426px) {
  div.divided-hero {
    flex-direction: column-reverse;
    height: fit-content;
    display: flex;
    font-size: 1.5rem !important;
  }

  .hero-right {
    display: flex;
    align-items: center !important;
    margin-top: .5rem !important;
    margin-bottom: 0 !important;
    padding: 0 !important;
  }

  .hero-left {
    margin-top: 0 !important;
    padding-top: 0 !important;
  }

  .circle-img {
    width: 250px;
    height: 250px;
  }

  .stack-card, .project-divs .col {
    margin-bottom: .5rem;
  }

  .navbar {
    display: none;
  }

  .possibility .button {
    font-size: .95rem;
  }

  .stack-card {
    width: 100% !important;
    height: auto !important;
  }

  .stack-card .stack-card-body {
    width: 100% !important;
  }

  .stack-span {
    display: flex;
  }

  .stack-span .left, .right, .project-divs, .project-divs .left, .right {
    flex-direction: column;
    display: flex;
  }

  .contact .inner-contact {
    flex-direction: column;
    align-items: center;
  }

  .contact-links {
    text-align: center;
    width: 100%;
  }

  .contact-links h3, .contact-links h5 {
    text-align: center;
  }

  .mini-inputs {
    flex-direction: column;
    width: 100%;
  }

  .mini-inputs input {
    width: 100%;
    margin-bottom: .8rem;
  }

  textarea {
    width: 100%;
  }

  #btnSend {
    width: 100%;
    margin-top: 1rem;
  }
}

@media (width >= 427px) and (width <= 500px) {
  div.divided-hero {
    flex-direction: column-reverse;
    height: fit-content;
    display: flex;
    font-size: 1.5rem !important;
  }

  .hero-right {
    display: flex;
    align-items: center !important;
    margin-top: .5rem !important;
    margin-bottom: 0 !important;
    padding: 0 !important;
  }

  .hero-left {
    margin-top: 0 !important;
    padding-top: 0 !important;
  }

  .circle-img {
    width: 251px;
    height: 251px;
  }

  .navbar {
    display: none;
  }

  .possibility .button {
    font-size: .95rem;
  }

  .stack-card {
    margin-bottom: .5rem;
    width: 100% !important;
    height: auto !important;
  }

  .project-divs .col {
    margin-bottom: .5rem;
  }

  .stack-card .stack-card-body {
    width: 100% !important;
  }

  .stack-span {
    display: flex;
  }

  .stack-span .left, .right, .project-divs, .project-divs .left, .right {
    flex-direction: column;
    display: flex;
  }

  .contact .inner-contact {
    flex-direction: column;
    align-items: center;
  }

  .contact-links {
    text-align: center;
    width: 100%;
  }

  .contact-links h3, .contact-links h5 {
    text-align: center;
  }

  .mini-inputs {
    flex-direction: column;
    width: 100%;
  }

  .mini-inputs input {
    width: 100%;
    margin-bottom: .8rem;
  }

  textarea {
    width: 100%;
  }

  #btnSend {
    width: 100%;
    margin-top: 1rem;
  }
}

@media (width >= 501px) and (width <= 600px) {
  div.divided-hero {
    flex-direction: column-reverse;
    height: fit-content;
    display: flex;
    font-size: 1.5rem !important;
  }

  .hero-right {
    display: flex;
    align-items: center !important;
    margin-top: .5rem !important;
    margin-bottom: 0 !important;
    padding: 0 !important;
  }

  .hero-left {
    margin-top: 0 !important;
    padding-top: 0 !important;
  }

  .circle-img {
    width: 251px;
    height: 251px;
  }

  .navbar {
    display: none;
  }

  .possibility .button {
    font-size: .95rem;
  }

  .stack-card .stack-card-body {
    width: 100% !important;
  }

  .contact .inner-contact {
    flex-direction: column;
    align-items: center;
  }

  .contact-links {
    text-align: center;
    width: 100%;
  }

  .contact-links h3, .contact-links h5 {
    text-align: center;
  }

  .mini-inputs {
    flex-direction: column;
    width: 100%;
  }

  .mini-inputs input {
    width: 100%;
    margin-bottom: .8rem;
  }

  textarea {
    width: 100%;
  }

  #btnSend {
    width: 100%;
    margin-top: 1rem;
  }

  .stack-span {
    flex-direction: column;
    display: flex;
  }

  .stack-span .left, .right {
    grid-template-columns: 1fr 1fr !important;
    display: grid !important;
  }

  .stack-card {
    margin-bottom: .5rem;
    width: 100% !important;
    height: auto !important;
  }

  .project-divs {
    flex-direction: row;
    display: flex;
  }

  .project-divs .col {
    margin-bottom: .5rem;
    width: 100% !important;
    height: auto !important;
  }

  .project-divs .left, .right {
    grid-template-columns: 1fr 1fr !important;
    display: grid !important;
  }
}

@media (width >= 601px) and (width <= 766px) {
  .hero-right {
    display: flex;
    align-items: center !important;
    margin-top: .5rem !important;
    margin-bottom: 0 !important;
    padding: 0 0 0 1.5rem !important;
  }

  .hero-left {
    width: 50%;
    margin-top: 0 !important;
    padding-top: 0 !important;
    font-size: 20rem !important;
  }

  .hero-left h1 {
    font-size: 2.5rem;
  }

  .circle-img {
    width: 251px;
    height: 251px;
  }

  .stack-span {
    flex-direction: column;
    display: flex;
  }

  .stack-span .left, .right {
    grid-template-columns: 1fr 1fr !important;
    display: grid !important;
  }

  .stack-card {
    margin-bottom: .5rem;
    width: 100% !important;
    height: auto !important;
  }

  .project-divs {
    flex-direction: row;
    display: flex;
  }

  .project-divs .col {
    margin-bottom: .5rem;
    width: 100% !important;
    height: auto !important;
  }

  .project-divs .left, .right {
    grid-template-columns: 1fr 1fr !important;
    display: grid !important;
  }

  .contact .inner-contact {
    flex-direction: row;
    align-items: center;
  }

  .contact-links {
    text-align: center;
    width: 80%;
  }

  .mini-inputs {
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    display: flex;
  }

  .mini-inputs input, textarea {
    width: 120%;
  }

  .mini-inputs {
    margin-left: 1rem;
  }

  #message {
    margin-left: 0 !important;
  }

  #btnSend {
    width: fit-content;
    height: fit-content;
    font-size: .7rem;
    margin-left: 0 !important;
  }
}

@media (width: 767px) {
  .hero-right {
    display: flex;
    align-items: center !important;
    margin-top: .5rem !important;
    margin-bottom: 0 !important;
    padding: 0 0 0 1.5rem !important;
  }

  .hero-left {
    width: 50%;
    margin-top: 0 !important;
    padding-top: 0 !important;
    font-size: 20rem !important;
  }

  .hero-left h1 {
    font-size: 2.5rem;
  }

  .circle-img {
    width: 251px;
    height: 251px;
  }

  .stack-span {
    flex-direction: column;
    display: flex;
  }

  .stack-span .left, .right {
    grid-template-columns: 1fr 1fr !important;
    display: grid !important;
  }

  .stack-card {
    margin-bottom: .5rem;
    width: 100% !important;
    height: auto !important;
  }

  .project-divs {
    flex-direction: row;
    display: flex;
  }

  .project-divs .col {
    margin-bottom: .5rem;
    width: 100% !important;
    height: auto !important;
  }

  .project-divs .left, .right {
    grid-template-columns: 1fr 1fr !important;
    display: grid !important;
  }

  .contact .inner-contact {
    flex-direction: row;
    align-items: center;
  }

  .contact-links {
    text-align: center;
    width: 80%;
  }

  .mini-inputs {
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    display: flex;
  }

  .mini-inputs input, textarea {
    width: 120%;
  }

  .mini-inputs {
    margin-left: 1rem;
  }

  #message {
    margin-left: 0 !important;
  }

  #btnSend {
    width: fit-content;
    height: fit-content;
    font-size: .7rem;
    margin-left: 0 !important;
  }
}

@media (width >= 768px) and (width <= 999px) {
  .hero-right {
    display: flex;
    align-items: center !important;
    margin-top: .5rem !important;
    margin-bottom: 0 !important;
    padding: 0 0 0 1.5rem !important;
  }

  .hero-left {
    width: 50%;
    margin-top: 0 !important;
    padding-top: 0 !important;
    font-size: 20rem !important;
  }

  .hero-left h1 {
    font-size: 2.5rem;
    margin-top: 3rem !important;
  }

  .possibility .button {
    font-size: .95rem;
  }

  .circle-img {
    width: 251px;
    height: 251px;
  }

  .contact .inner-contact {
    flex-direction: row;
    align-items: center;
  }

  .contact-links {
    text-align: center;
    width: 80%;
  }

  .mini-inputs {
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    display: flex;
  }

  .mini-inputs input, textarea {
    width: 120%;
  }

  .mini-inputs {
    margin-left: 1rem;
  }

  #message {
    margin-left: 0 !important;
  }

  #btnSend {
    width: fit-content;
    height: fit-content;
    font-size: .7rem;
    margin-left: 0 !important;
  }
}
/*# sourceMappingURL=html.e9a92ad8.css.map */
