/*===== GOOGLE FONTS =====*/
/* latin */
@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(../webfonts/pxiEyp8kv8JHgFVrJJfecg.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* latin */
@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url(../webfonts/pxiByp8kv8JHgFVrLEj6Z1xlFQ.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* latin */
@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(../webfonts/pxiByp8kv8JHgFVrLCz7Z1xlFQ.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
  --darkBack: #151515;
}

/*---------------- Lottie Animation ----------------*/
#lottie {
  position: fixed;
  top: 0;
  background-color: transparent;
  width: 100%;
  height: 100%;
  display: block;
  overflow: hidden;
  transform: translate3d(0, 0, 0);
  text-align: center;
  opacity: 0;
  visibility: hidden;
  transition: all .2s ease;
  backdrop-filter: blur(10px);
  border-radius: 20px;
  z-index: 1100;
}

/*===== SCROLLBAR =====*/
::-webkit-scrollbar {
  width: 16px;
}

::-webkit-scrollbar-thumb {
  height: 56px;
  border-radius: 8px;
  border: 4px solid transparent;
  background-clip: content-box;
  background-color: #606060;
}

::-webkit-scrollbar-thumb:hover {
  background: #8a8a8a;
  background-clip: content-box;
}

::-webkit-scrollbar-track {
  display: none;
}

/*===== VARIAVEIS CSS =====*/
:root {
  --header-height: 3rem;
  --font-semi: 600;
}

/*===== CORES =====*/
:root {
  --first-color: #4070F4;
  --second-color: #0E2431;
}

/*===== FONTES E TIPOGRAFIA =====*/
:root {
  --body-font: 'Poppins', sans-serif;
  --big-font-size: 2rem;
  --h2-font-size: 1.25rem;
  --normal-font-size: 0.938rem;
}

@media screen and (min-width: 768px) {
  :root {
    --big-font-size: 3.5rem;
    --h2-font-size: 2rem;
    --normal-font-size: 1rem;
  }
}

/*===== MARGENS =====*/
:root {
  --mb-1: 0.5rem;
  --mb-2: 1rem;
  --mb-3: 1.5rem;
  --mb-4: 2rem;
  --mb-5: 2.5rem;
  --mb-6: 3rem;
}

/*===== z index =====*/
:root {
  --z-back: -10;
  --z-normal: 1;
  --z-tooltip: 10;
  --z-fixed: 100;
}

/*===== BASE =====*/
*,
::before,
::after {
  box-sizing: border-box;
  resize: none;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

html {
  scroll-behavior: smooth;
  overflow: hidden;
}

.html_loaded {
  scroll-behavior: smooth;
  overflow: visible;
}

#loading {
  width: 100%;
  height: 100vh;
  position: fixed;
  background-color: #000;
  z-index: 999999;
  display: block;
}

body {
  /*margin: var(--header-height) 0 0 0;*/
  margin: 0 0 0 0;

  font-family: var(--body-font);
  font-size: var(--normal-font-size);
  color: var(--second-color);
  transition: background 0.2s linear;
}

.dark-mode {
  background-color: var(--darkBack);
  color: white;
}

h1,
h2,
p {
  margin: 0;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

a {
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
  width: 100%;
}

/*===== CLASS CSS ===== */
.l-main {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: flex-start;
}

.section-title {
  position: relative;
  font-size: var(--h2-font-size);
  color: var(--first-color);
  margin-top: var(--mb-2);
  margin-bottom: var(--mb-4);
  text-align: center;
}

.section-title::after {
  position: absolute;
  content: "";
  width: 64px;
  height: 0.18rem;
  left: 0;
  right: 0;
  margin: auto;
  top: 2rem;
  background-color: var(--first-color);
}

.section {
  width: 100%;
  padding: 2.5rem 0px;
}

/*===== LAYOUT =====*/
.bd-grid {
  max-width: 1024px;
  display: grid;
  grid-template-columns: 100%;
  grid-column-gap: 2rem;
  width: 100%;
  padding-left: var(--mb-2);
  padding-right: var(--mb-2);
}

.l-header {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: var(--z-fixed);
  color: var(--darkBack);
  background-color: #fff;
  box-shadow: 0 1px 4px rgba(146, 161, 176, .15);
  transition: background 0.2s linear;
}

.dark-header {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: var(--z-fixed);
  color: #fff;
  background-color: var(--darkBack);
  box-shadow: 0 1px 4px rgba(126, 126, 126, 0.548);
}

/*===== NAV =====*/
.nav {
  height: var(--header-height);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: var(--font-semi);
}

@media screen and (max-width: 768px) {
  .nav__menu {
    position: fixed;
    top: var(--header-height);
    right: -100%;
    width: 80%;
    height: 100%;
    padding: 2rem;
    background-color: var(--second-color);
    transition: .5s;
  }
}

.nav__item {
  margin-bottom: var(--mb-4);
}

.nav__a {
  position: relative;
  color: rgb(255, 255, 255);
  transition: color 0.2s linear;
}

.nav__a:hover {
  position: relative;
}

.nav__a:hover::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 0.18rem;
  left: 0;
  top: 2rem;
  background-color: var(--first-color);
}

.nav__logo {
  transition: color 0.2s linear;
  color: var(--second-color);
}

.nav_darklogo {
  color: #fff;
}

/*Active menu*/
.active::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 0.18rem;
  left: 0;
  top: 2rem;
  background-color: var(--first-color);
}

/*=== Show menu ===*/
.show {
  z-index: 6;
  right: 0;
}

/*===== HOME =====*/
.home {
  height: calc(100vh - 3rem);
  row-gap: 1rem;
}

.home__data {
  margin-top: 65px;
  align-self: center;
}

.home__title {
  font-size: var(--big-font-size);
  margin-bottom: var(--mb-5);
}

.home__title-color {
  color: var(--first-color);
}

.home__social {
  display: flex;
  flex-direction: column;
  color: var(--second-color);
}

.home__social-icon {
  color: var(--second-color);
  width: max-content;
  margin-bottom: 0;
  margin-bottom: var(--mb-2);
  font-size: 1.5rem;
  transition: color 0.2s linear;
}

.home__social-icondark {
  width: max-content;
  color: #fff;
  margin-bottom: var(--mb-2);
  font-size: 1.5rem;
  margin-right: var(--mb-4);
}

.home__social-icon:hover {
  color: var(--first-color);
}

.home__img {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 295px;
}

/*BUTTONS*/
.button {
  font-family: 'Poppins';
  display: inline-block;
  background-color: var(--first-color);
  color: #fff;
  padding: .75rem 2.5rem;
  font-weight: var(--font-semi);
  border-radius: .5rem;
}

.call_btn {
  font-family: 'Poppins';
  background-color: var(--first-color);
  color: #fff;
  padding: .75rem 2.5rem;
  font-weight: var(--font-semi);
  border-radius: .5rem;
  display: block;
  border: none;
  outline: none;
  font-size: var(--normal-font-size);
  cursor: pointer;
  margin-left: auto;
  margin-right: auto;
}

.button:hover,
.call_btn:hover {
  box-shadow: 0 10px 36px rgba(0, 0, 0, .15);
}

.btn_i {
  margin-right: 6px;
}

.ou_h2 {
  position: relative;
  font-size: 24px;
  color: var(--first-color);
  margin-top: var(--mb-2);
  margin-bottom: var(--mb-4);
  text-align: center;
}

.ou_h2::after {
  position: absolute;
  content: "";
  width: 30px;
  height: 2px;
  left: 0;
  right: 0;
  margin: auto;
  bottom: 4px;
  background-color: var(--first-color);
}

/* ===== ABOUT =====*/
.about__container {
  row-gap: 2rem;
  text-align: center;
}

.about__subtitle {
  margin-bottom: var(--mb-2);
}

.about__img {
  justify-self: center;
}

.about__img img {
  width: 200px;
  border-radius: .5rem;
}

/* ===== SKILLS =====*/
.skills__container {
  row-gap: 2rem;
  text-align: center;
  margin-top: -30px;
}

.skills__subtitle {
  margin-bottom: var(--mb-2);
}

.skills__text {
  margin-top: -6px;
  margin-bottom: 26px;
}

.skills__data {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  font-weight: var(--font-semi);
  padding: .5rem 1rem;
  margin-bottom: 10px;
  border-radius: .5rem;
  box-shadow: 0 4px 25px rgba(14, 36, 49, .15);
}

.skills__datadark {
  background: var(--darkBack);
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  font-weight: var(--font-semi);
  padding: .5rem 1rem;
  margin-bottom: 10px;
  border-radius: .5rem;
  box-shadow: 0 4px 25px rgb(255 255 255 / 35%);
}

.skills__icon {
  width: 30px;
  height: 30px;
  font-size: 2rem;
  margin-bottom: 6px;
  margin-right: var(--mb-2);
  color: var(--first-color);
}

.skills__names {
  display: flex;
  align-items: center;
}

.skills__bar {
  position: absolute;
  left: 0;
  bottom: 0;
  background-color: var(--first-color);
  height: .25rem;
  border-radius: .5rem;
  z-index: var(--z-back);
}

.skills__html {
  width: 90%;
}

.skills__css {
  width: 85%;
}

.skills__js {
  width: 65%;
}

.skills__lua {
  width: 85%;
}

.skills__cplus {
  width: 55%;
}

.skills__php {
  width: 90%;
}

.skills__sql {
  width: 80%;
}

.skills__img {
  border-radius: .5rem;
}

/* ===== SERVICES =====*/
.services__container {
  row-gap: 1rem;
  text-align: center;
  margin-top: -30px;
  width: 100%;
}

.services__data {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  font-weight: var(--font-semi);
  min-height: 52px;
  padding: .5rem 1rem;
  margin-bottom: 10px;
  border-radius: .5rem;
  box-shadow: 0 4px 25px rgba(14, 36, 49, .15);
}

.services__datadark {
  background: var(--darkBack);
  color: #fff;
  box-shadow: 0 4px 25px rgb(255 255 255 / 35%);
}

.services__icon {
  width: 30px;
  height: 30px;
  font-size: 2rem;
  color: var(--first-color);
}

.services__names {
  display: flex;
  align-items: center;
  flex-direction: row;
  justify-content: flex-start;
  column-gap: 10px;
}

.services__bar {
  position: absolute;
  left: 0;
  bottom: 0;
  background-color: var(--first-color);
  height: .25rem;
  border-radius: .5rem;
  z-index: var(--z-back);
}

.services__html {
  width: 90%;
}

.services__css {
  width: 85%;
}

.services__js {
  width: 65%;
}

.services__lua {
  width: 85%;
}

.services__cplus {
  width: 95%;
}

.services__vb {
  width: 98%;
}

/* ===== WORK =====*/
.work__container {
  row-gap: 2rem;
}

.work__img {
  box-shadow: 0 4px 25px rgba(14, 36, 49, .15);
  border-radius: .5rem;
  overflow: hidden;
}

.work__img img {
  transition: 1s;
  cursor: pointer;
}

.work__img img:hover {
  transform: scale(1.1);
}

/* ===== CONTACT =====*/
.contact__form {
  display: grid;
  grid-auto-columns: 50px;
  grid-template-columns: 290px 290px;
  grid-template-rows: 75px auto;
  grid-template-areas:
    "l1c1 l1c2"
    "l2c1 l2c1"
    "l3c1 l3c1";
  gap: 10px 15px;
}
.l1c1 {grid-area: l1c1;}
.l1c2 {grid-area: l1c2;}
.l2c1 {grid-area: l2c1;}
.l3c1 {grid-area: l3c1;}

.contact__container {
  justify-items: center;
}

.form_input {
  font-family: 'Roboto Mono', monospace;
  width: 100%;
  font-size: var(--normal-font-size);
  font-weight: var(--font-semi);
  padding: 1rem;
  border-radius: .5rem;
  border: 1.5px solid var(--second-color);
  outline: none;
  margin-bottom: var(--mb-2);
}

.form_input_dark {
  color: #fff;
  background-color: var(--darkBack);
  border: 1.5px solid #fff;
}

.form_input:focus {
  border: solid 2.0px #000;
}

.form_input_dark:focus {
  border: solid 2.5px #fff;
}

.inputDiv {
  position: relative;
}

.inputDiv.error::before {
  content: '\f06a';
  position: absolute;
  top: 6px;
  right: 6px;
  width: 18px;
  height: 18px;
  color: #d61c1c;
  z-index: 1;
  display: flex;
  font-weight: 400;
  font-family: 'Font Awesome 6 Pro';
  align-items: center;
  justify-content: center;
}

.inputDiv.success::before {
  content: '\f058';
  position: absolute;
  top: 6px;
  right: 6px;
  width: 18px;
  height: 18px;
  color: #34a60d;
  z-index: 1;
  display: flex;
  font-weight: 400;
  font-family: 'Font Awesome 6 Pro';
  align-items: center;
  justify-content: center;
}

.submitBtn {
  display: block;
  border: none;
  outline: none;
  font-size: var(--normal-font-size);
  cursor: pointer;
  margin-left: auto;
}

.notif {
  text-align: center;
  max-width: 400px;
}

/* ===== FOOTER =====*/
.footer {
  background-color: var(--second-color);
  color: #fff;
  text-align: center;
  font-weight: var(--font-semi);
  padding: 2rem 0;
}

.footer__title {
  font-size: 2rem;
  margin-bottom: var(--mb-4);
}

.footer__social {
  margin-bottom: var(--mb-4);
}

.footer__icon {
  font-size: 1.5rem;
  color: #fff;
  margin: 0 var(--mb-2)
}

/* ===== HAMBURGUER MENU =====*/
.menu-btn {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  cursor: pointer;
  transition: all .5s ease-in-out;
}

.menu-btn__burger {
  width: 35px;
  height: 5px;
  background: rgb(0, 0, 0);
  border-radius: 5px;
  transition: all .2s ease-in-out;
}

.menu-btn__burger_dark {
  width: 35px;
  height: 5px;
  background: rgb(255, 255, 255);
  border-radius: 5px;
}

.menu-btn__burger::before,
.menu-btn__burger::after {
  content: '';
  position: absolute;
  width: 35px;
  height: 5px;
  background: #000;
  border-radius: 5px;
  transition: all .2s ease-in-out;
}

.menu-btn__burger_dark::before,
.menu-btn__burger_dark::after {
  content: '';
  position: absolute;
  width: 35px;
  height: 5px;
  background: rgb(255, 255, 255);
  border-radius: 5px;
}

.menu-btn__burger::before {
  transform: translateY(-11px);
  width: 20px;
}

.menu-btn__burger::after {
  transform: translateY(11px);
  width: 27px;
}

.menu-btn.open .menu-btn__burger {
  transform: translateX(-50px);
  background: transparent;
  box-shadow: none;
}

.menu-btn.open .menu-btn__burger::before {
  width: 35px;
  transform: rotate(45deg) translate(35px, -35px);
}

.menu-btn.open .menu-btn__burger::after {
  width: 35px;
  transform: rotate(-45deg) translate(35px, 35px);
}

/* ===== MEDIA QUERIES=====*/
@media screen and (min-width: 768px) {
  body {
    margin: 0;
  }

  .section {
    padding-top: 4rem;
    padding-bottom: 3rem;
  }

  .section-title {
    margin-bottom: var(--mb-6);
  }

  .section-title::after {
    width: 80px;
    top: 3rem;
  }

  .nav {
    height: calc(var(--header-height) + 1rem);
  }

  .nav__list {
    display: flex;
    padding-top: 0;
  }

  .nav__item {
    margin-left: var(--mb-6);
    margin-bottom: 0;
  }

  .menu-btn {
    display: none;
  }

  .nav__a {
    color: var(--second-color);
  }

  .nav__a-dark {
    color: #fff;
  }

  .home {
    height: 100vh;
  }

  .home__data {
    margin-top: 65px;
    align-self: flex-end;
  }

  .home__social {
    padding-top: 0;
    padding-bottom: 2.5rem;
    flex-direction: row;
    align-self: flex-end;
  }

  .home__social-icon {
    color: var(--second-color);
    margin-bottom: 0;
    margin-right: var(--mb-4);
    transition: color 0.2s linear;
  }

  .home__social-icondark {
    color: #fff;
    margin-bottom: 0;
    margin-right: var(--mb-4);
  }

  .home__img {
    width: 457px;
    bottom: 15%;
  }

  .about__container,
  .skills__container {
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
    text-align: initial;
    margin-top: -30px;
  }

  .about__img img {
    width: 300px;
  }

  .work__container {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 1fr);
    column-gap: 2rem;
  }

  /*===SERVIÇOS===*/
  .services__container {
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
    text-align: initial;
  }

  .services__bar {
    position: absolute;
    left: 0;
    bottom: 0;
    background-color: var(--first-color);
    height: .25rem;
    border-radius: .5rem;
    z-index: var(--z-back);
  }
}

@media screen and (max-width: 768px) {
  .contact__form {
    grid-template-columns: 100%;
    grid-template-rows: auto;
    grid-template-areas:
      "l1c1"
      "l2c1"
      "l3c1"
      "l4c1";
    width: 100%;
  }

  .l1c1 {
    grid-area: l1c1;
  }

  .l1c2 {
    grid-area: l2c1;
  }

  .l2c1 {
    grid-area: l3c1;
  }

  .l3c1 {
    grid-area: l4c1;
  }
}

@media screen and (min-width: 1024px) {
  .bd-grid {
    margin-left: auto;
    margin-right: auto;
  }

  .home__img {
    right: 10%;
  }
}

/*==================== Section Image =====================*/
.sect_img {
  box-shadow: 0 4px 25px rgba(14, 36, 49, .15);
  border-radius: .5rem;
  overflow: hidden;
}

.sect_img img {
  transition: 1s;
  cursor: pointer;
}

.sect_img img:hover {
  transform: scale(1.1);
}

/*==================== =====================*/
.nightmode {
  opacity: 0;
  position: absolute;
}

.nightmode:checked+.label .ball {
  transform: translateX(24px);
}

.label {
  background-color: #111;
  display: flex;
  position: relative;
  align-items: center;
  justify-content: space-between;
  border-radius: 50px;
  padding: 5px;
  height: 26px;
  width: 50px;
  transform: scale(1.0);
}

.ball {
  background-color: #fff;
  width: 22px;
  top: 2px;
  left: 2px;
  border-radius: 50px;
  position: absolute;
  height: 22px;
  transition: transform 0.2s linear;
}

.fa-moon {
  color: #4070F4;
}

.fa-sun {
  color: #f39c12;
}

.button_top {
  transition: all .3s, transform 0.8s;
  z-index: 9998;
  position: fixed;
  bottom: 2%;
  right: 2%;
  width: 50px;
  height: 50px;
  background-color: #4a4a4a;
  color: #fff;
  border-radius: 50%;
  font-size: 1.5em;
  cursor: pointer;
  display: flex;
  opacity: 0;
  transition: opacity 0.2s;
  visibility: hidden;
  align-items: center;
  justify-content: center;
}

#donation {
  padding-top: 0;
}

.donation_card {
  background-color: #fff;
  box-shadow: 3px -3px 20px rgb(0 0 0 / 5%), 0 6px 6px rgb(0 0 0 / 10%);
  border-radius: 20px;
  padding: 8px 8px 40px 8px;
  position: relative;
  max-width: 380px;
  max-height: 560px;
  min-height: fit-content;
  display: flex;
  flex-direction: column;
  align-content: center;
  align-items: center;
  margin: 70px auto 100px auto;
  row-gap: 22px;
}

.donation_card::before, .donation_card::after {
  background-color: #3d54ff;
  border-radius: 30px;
  content: '';
  opacity: 0.9;
  position: absolute;
  height: 220px;
  width: 220px;
  z-index: -1;
}
.donation_card::before{
  top: -30px;
  left: -30px;
}
.donation_card::after{
  bottom: -30px;
  right: -30px;
}

.donation_background {
  border-radius: 20px;
  background-position: center;
  background-size: cover;
  height: 135px;
  width: 100%;
  background-image: url('../images/Gaspar_Background.webp');
  position: relative;
  margin-bottom: 60px;
}

.donation_mini_photo {
  position: absolute;
  bottom: -52px;
  left: 50%;
  transform: translate(-50%, 0);
  border-radius: 50px;
  width: 80px;
  height: 80px;
  padding: 4px;
  background: #fff;
  transform: translate(-50%, 0);
}

.donation_description {
  text-align: center;
  max-width: 90%;
  color: #000;
}

.paypal_btn {
  width: 230px;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 40px;
  column-gap: 6px;
  border-radius: 6px;
  text-decoration: none;
  color: #000;
  background-color: #ffc439;
  transition: all .15s ease-in-out;
}

.paypal_btn:hover {
  filter: brightness(0.95);
}

.paypal_btn_desc {
  font-size: 16px;
}

.paypal_img {
  max-width: 80px;
}

@media (max-width: 500px) {
  .donation_card {
    max-width: 82%;
  }
}

#logo {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

#logo path:nth-child(2) {
  stroke-dasharray: 635px;
  stroke-dashoffset: 635px;
  animation: line-anim 2s ease forwards, fill 0.5s ease forwards 3.4s;
}

#logo path:nth-child(3) {
  stroke-dasharray: 491px;
  stroke-dashoffset: 491px;
  animation: line-anim 2s ease forwards .4s, fill 0.5s ease forwards 3.4s;
}

#logo path:nth-child(4) {
  stroke-dasharray: 564px;
  stroke-dashoffset: 564px;
  animation: line-anim 2s ease forwards .8s, fill 0.5s ease forwards 3.4s;
}

#logo path:nth-child(5) {
  stroke-dasharray: 492px;
  stroke-dashoffset: 492px;
  animation: line-anim 2s ease forwards 1.2s, fill 0.5s ease forwards 3.4s;
}

#logo path:nth-child(6) {
  stroke-dasharray: 473px;
  stroke-dashoffset: 473px;
  animation: line-anim 2s ease forwards 1.6s, fill 0.5s ease forwards 3.4s;
}

#logo path:nth-child(7) {
  stroke-dasharray: 440px;
  stroke-dashoffset: 440px;
  animation: line-anim 2s ease forwards 2.0s, fill 0.5s ease forwards 3.4s;
}

@keyframes line-anim {
  to {
    stroke-dashoffset: 0;
  }
}

@keyframes fill {
  from {
    fill: transparent;
  }

  to {
    fill: white;
  }
}