@charset "UTF-8";
/*------------------------------------*\
  #Fonts
\*------------------------------------*/
@import url("https://fonts.googleapis.com/css2?family=Baloo+2:wght@400;500;600;700;800&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Work+Sans:wght@100;200;300;400;500;600;700;800;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@100;200;300;400;500;600;700;800;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Lato:wght@100;300;400;700;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Lexend+Deca:wght@100;200;300;400;500;600;700;800;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Lexend+Giga:wght@100;200;300;400;500;600;700;800;900&display=swap");
/*------------------------------------*\
  #Colors
\*------------------------------------*/
/*------------------------------------*\
  #Elements
\*------------------------------------*/
body,
html {
  margin: 0;
  padding: 0;
}

main {
  width: 100%;
  padding: 1rem;
}
main section {
  max-width: 1300px;
}

@media (min-width: 751px) and (max-width: 1024px) {
  main {
    width: 100%;
  }
  main section {
    max-width: 800px;
  }
}
@media (min-width: 601px) and (max-width: 750px) {
  main {
    width: 100%;
  }
  main section {
    max-width: 600px;
  }
}
@media (max-width: 600px) {
  main {
    width: 100%;
    padding: 0.5rem;
  }
  main section {
    max-width: 400px;
  }
}
/*------------------------------------*\
  #User Experience
\*------------------------------------*/
/* Ocultar barras de desplazamiento en ejes X - Y */
body,
html {
  scrollbar-width: none;
  /* Firefox */
  -ms-overflow-style: none;
  /* IE y Edge */
}

body::-webkit-scrollbar,
html::-webkit-scrollbar {
  display: none;
  /* Chrome, Safari y Opera */
}

/*------------------------------------*\
  #Flip card
\*------------------------------------*/
.service_card {
  background-color: transparent;
  width: 250px;
  height: 350px;
  font-family: "Baloo 2", cursive;
  margin: 25px;
}
.service_card .service_card-inner {
  width: 100%;
  height: 100%;
  text-align: center;
  transition: transform 0.8s;
  transform-style: preserve-3d;
}
.service_card .service_card-inner .title {
  font-size: 30px;
  font-weight: bold;
  text-align: center;
  margin: 0;
}
.service_card .service_card-inner .text {
  font-size: 20px;
  font-family: "Work Sans", sans-serif;
  text-align: center;
  padding: 10px;
}
.service_card .service_card-inner img {
  width: 160px;
  height: 180px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.service_card .service_card-inner .service_card-front,
.service_card .service_card-inner .service_card-back {
  box-shadow: 0 8px 14px 0 rgba(0, 0, 0, 0.2);
  position: absolute;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  border: 1px solid #FFFFFF;
  border-radius: 1rem;
}
.service_card .service_card-inner .service_card-front {
  background: #FFFFFF;
  color: #000000;
}
.service_card .service_card-inner .service_card-back {
  background: #FFFFFF;
  color: #000000;
  transform: rotateY(180deg);
}

.service_card:hover .service_card-inner {
  transform: rotateY(180deg);
}

/*------------------------------------*\
  #Notification Card
\*------------------------------------*/
.notification {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 140px;
  isolation: isolate;
  position: relative;
  background: #29292c;
  border-radius: 1rem;
  overflow: hidden;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  margin: 10px;
  --gradient: linear-gradient(to bottom, #2eadff, #3d83ff, #7e61ff);
  --color: #32a6ff;
}
.notification:before {
  position: absolute;
  content: "";
  inset: 0.0625rem;
  border-radius: 0.9375rem;
  background: #18181b;
  z-index: 2;
}
.notification:after {
  position: absolute;
  content: "";
  width: 0.25rem;
  inset: 0.65rem auto 0.65rem 0.5rem;
  border-radius: 0.125rem;
  background: var(--gradient);
  transition: transform 300ms ease;
  z-index: 4;
}
.notification:hover:after {
  transform: translateX(0.15rem);
}
.notification:hover .notititle {
  transform: translateX(0.15rem);
}
.notification:hover .notibody {
  transform: translateX(0.25rem);
}
.notification:hover .notiglow {
  opacity: 0.1;
}
.notification:hover .notiborderglow {
  opacity: 0.1;
}
.notification .notititle {
  color: var(--color);
  padding: 0.65rem 0.25rem 0.4rem 1.25rem;
  font-weight: 500;
  font-size: 1.1rem;
  transition: transform 300ms ease;
  z-index: 5;
}
.notification .notibody {
  color: #99999d;
  padding: 0 1.25rem;
  transition: transform 300ms ease;
  z-index: 5;
}
.notification .notiglow,
.notification .notiborderglow {
  position: absolute;
  width: 20rem;
  height: 20rem;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle closest-side at center, white, transparent);
  opacity: 0;
  transition: opacity 300ms ease;
}
.notification .notiglow {
  z-index: 3;
}
.notification .notiborderglow {
  z-index: 1;
}

.note {
  color: var(--color);
  position: fixed;
  top: 80%;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  font-size: 0.9rem;
  width: 75%;
}

/*------------------------------------*\
  #Hover show Card (2 faces)
\*------------------------------------*/
.service_item {
  max-width: 25ch;
  text-align: center;
  background: #F9F9F9;
  padding: 1.5em;
  padding-block: 1.8em;
  border-radius: 15px;
  border: 2px solid #C4C4C4;
  position: relative;
  overflow: hidden;
  transition: 0.3s cubic-bezier(0.6, 0.4, 0, 1), transform 0.15s ease;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1em;
  color: #161B5E;
}
.service_item > :not(span) {
  transition: 0.3s cubic-bezier(0.6, 0.4, 0, 1);
}
.service_item > strong {
  display: block;
  font-size: 1.4rem;
  letter-spacing: -0.035em;
}
.service_item span {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #F9F9F9;
  border-radius: 5px;
  font-weight: 500;
  font-size: 14px;
  top: 100%;
  transition: all 0.3s cubic-bezier(0.6, 0.4, 0, 1);
}
.service_item:hover {
  background: #2E3192;
}
.service_item:hover span {
  top: 0;
  font-size: 1.2em;
}
.service_item:hover > div,
.service_item:hover > strong {
  opacity: 0;
}

/*------------------------------------*\
  #Hover Card (Ligth)
\*------------------------------------*/
.hover-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  border: 0.125rem solid transparent;
  border-radius: 0.5rem;
  background-color: #1e1e1e;
  transition: border-color 0.3s ease;
  width: 19.75rem;
  height: 17.5rem;
  text-align: justify;
}
.hover-card h3 {
  color: #F9F9F9;
  font-size: 1rem;
  font-weight: 600;
}
.hover-card p {
  margin: 0 10px;
}
.hover-card span {
  color: #F9F9F9;
  font-weight: 600;
  text-transform: uppercase;
}
.hover-card:hover {
  border-color: #37BF32;
}
.hover-card img {
  width: 4.375rem;
  height: 4.375rem;
}

/*------------------------------------*\
  #Expand Card (Ligth)
\*------------------------------------*/
.expand_card {
  position: relative;
  width: 300px;
  height: 230px;
  border-radius: 15px;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.25);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  background-color: #000;
  /* Imagen de fondo */
  /* Barra superior de tecnologías */
  /* Contenido */
  /* Estado expandido */
}
.expand_card:hover {
  transform: scale(1.05);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.35);
}
.expand_card__image {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.expand_card__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: filter 0.4s ease;
}
.expand_card:hover .expand_card__image img {
  filter: brightness(0.5);
}
.expand_card__techs {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.4rem 0.5rem;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 4;
  opacity: 0;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  margin-bottom: 100px;
}
.expand_card__techs img {
  width: 25px;
  height: 25px;
  filter: grayscale(100%) brightness(150%);
  transition: filter 0.3s ease, transform 0.3s ease;
}
.expand_card__techs img:hover {
  filter: none;
  transform: scale(1.1);
}
.expand_card:hover .expand_card__techs {
  opacity: 1;
  transform: translateY(0);
}
.expand_card__info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.75);
  color: #fff;
  padding: 1rem;
  z-index: 3;
  transform: translateY(100%);
  transition: transform 0.4s ease, background-color 0.3s ease;
}
.expand_card__info .expand_card__title {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.6);
}
.expand_card__info .expand_card__description {
  font-size: 0.9rem;
  line-height: 1.4;
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: opacity 0.3s ease, max-height 0.3s ease;
  margin-bottom: 0.6rem;
}
.expand_card__info .expand_card__links {
  display: flex;
  justify-content: center;
  gap: 15px;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.expand_card__info .expand_card__links a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 35px;
  height: 35px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  transition: background-color 0.2s ease, transform 0.2s ease;
}
.expand_card__info .expand_card__links a img {
  width: 20px;
  height: 20px;
  filter: grayscale(100%) brightness(200%);
  transition: filter 0.2s ease;
}
.expand_card__info .expand_card__links a:hover {
  background-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-3px);
}
.expand_card__info .expand_card__links a:hover img {
  filter: none;
}
.expand_card:hover .expand_card__info {
  transform: translateY(0);
  background-color: rgba(0, 0, 0, 0.5);
}
.expand_card:hover .expand_card__description {
  opacity: 1;
  max-height: 100px;
}
.expand_card:hover .expand_card__links {
  opacity: 1;
  transform: translateY(0);
}

/*------------------------------------*\
    #NavBar
\*------------------------------------*/
nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  background-color: transparent;
  position: fixed;
  width: 100%;
  z-index: 1000;
  padding: 0px 5px;
  margin-top: 0;
}
nav .nav_brand {
  margin-left: 1rem;
}
nav .nav_brand a {
  display: inline-block;
}
nav .nav_brand a img {
  width: 100px;
  height: 30px;
  max-width: 100%;
  display: block;
  margin-top: 10px;
}
nav .nav_links {
  margin-left: auto;
  display: flex;
  gap: 2.5rem;
  margin-right: 3.125rem;
  list-style: none;
  align-items: center;
}
nav .nav_links a {
  color: #9F9F9F;
  font-size: 18px;
}
nav .nav_links a:hover {
  color: #FFFFFC;
  font-weight: 600;
}
nav .nav_links a img {
  width: 30px;
  height: auto;
}
nav .menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  margin-left: auto;
  margin-right: 1.5rem;
  z-index: 1100;
}
nav .menu-toggle .bar {
  width: 25px;
  height: 3px;
  background-color: #9F9F9F;
  margin: 4px 0;
  border-radius: 2px;
  transition: all 0.3s ease;
}
nav .menu-toggle.active .bar:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
nav .menu-toggle.active .bar:nth-child(2) {
  opacity: 0;
}
nav .menu-toggle.active .bar:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

body.scrolled nav {
  background-color: rgba(255, 255, 252, 0.2);
  transition: background-color 0.3s ease;
}

/*------------------------------------*\
    #Social Bar styles
\*------------------------------------*/
.socialBar {
  position: fixed;
  top: 50%;
  right: 0.625rem;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 0.3125rem;
  border-radius: 1.25rem;
  z-index: 1200;
  background: rgba(0, 0, 0, 0.6);
  padding: 0.5rem;
}
.socialBar .socialBar_red {
  padding: 0.625rem;
  transition: all 0.3s ease;
}
.socialBar .socialBar_red img {
  width: 1.25rem;
  height: 1.25rem;
  transition: filter 0.3s ease;
}
.socialBar .socialBar_red:hover img {
  filter: brightness(0) saturate(100%) invert(48%) sepia(40%) saturate(500%) hue-rotate(110deg) brightness(90%) contrast(100%);
}

/*------------------------------------*\
    #Modal styles
\*------------------------------------*/
.pdfModal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  padding: 50px;
  box-sizing: border-box;
  z-index: 9999;
  overflow-y: auto;
}
.pdfModal .pdfdiv {
  width: 100%;
  height: 100%;
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}
.pdfModal .pdfdiv iframe {
  width: 100%;
  height: 100%;
  border: none;
}
.pdfModal .pdfdiv .pdfclose {
  position: absolute;
  top: 12px;
  right: 12px;
  padding: 8px 14px;
  background: #222;
  color: #fff;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-size: 14px;
  transition: 0.2s ease;
}
.pdfModal .pdfdiv .pdfclose:hover {
  background: #000;
  transform: scale(1.05);
}

/* Responsivo */
@media (max-width: 768px) {
  .pdfModal {
    padding: 20px;
  }
  .pdfModal .pdfdiv {
    border-radius: 8px;
  }
  .pdfModal .pdfclose {
    top: 8px !important;
    right: 8px !important;
  }
}
/*------------------------------------*\
    #Caption Text styles
\*------------------------------------*/
.caption_text {
  position: relative;
  width: 100%;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  text-align: center;
  background: linear-gradient(to bottom, rgba(0, 158, 102, 0.6) 0%, rgba(0, 0, 0, 0.6) 100%);
}
.caption_text h3 {
  position: absolute;
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  font-size: 20px;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
  padding: 0 1rem;
}
.caption_text h3.active {
  opacity: 1;
  transform: translateY(0);
}
.caption_text h3.exit {
  opacity: 0;
  transform: translateY(-50px);
}

/*------------------------------------*\
    # Title_shadow
\*------------------------------------*/
.title_shadow {
  color: #009E66;
  font-size: 1.5rem;
  font-weight: 700;
}
.title_shadow span {
  color: #F9F9F9;
  -webkit-text-stroke-color: rgba(255, 255, 255, 0.2);
  font-size: 4rem;
  position: absolute;
  z-index: -1;
  opacity: 0.1;
}

/*------------------------------------*\
    #3D Carrousel
\*------------------------------------*/
.carrousel_3d {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  width: 100%;
  height: 120px;
}
.carrousel_3d .carrousel_3d_item {
  position: absolute;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 400px;
  height: 80px;
  padding: 10px;
  border-radius: 10px;
  background-color: #0F0F0F;
  border-bottom: 4px solid rgba(255, 255, 255, 0.25);
  border-right: 4px solid rgba(255, 255, 255, 0.25);
  box-shadow: 2px 2px 8px rgba(255, 255, 255, 0.25);
  transition: all 0.8s ease;
}
.carrousel_3d .carrousel_3d_item img {
  border-radius: 50px;
  width: 70px;
  height: 70px;
  margin-right: 20px;
}
.carrousel_3d .carrousel_3d_item a {
  font-family: "Lexend Giga";
  color: #FFFFFF;
  font-weight: bold;
  text-decoration: none;
  font-size: 20px;
}
.carrousel_3d .carrousel_3d_item.center {
  transform: scale(1);
  opacity: 1;
  z-index: 3;
}
.carrousel_3d .carrousel_3d_item.left, .carrousel_3d .carrousel_3d_item.right {
  transform: scale(0.6);
  opacity: 0.2;
  z-index: 1;
}

/*------------------------------------*\
    #FAQ Section
\*------------------------------------*/
.FAQ {
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin: 0;
  padding: 0;
}
.FAQ .FAQ_title {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 3rem;
}
.FAQ .FAQ_title h2 {
  font-family: "Baloo 2", cursive;
  font-size: 2.5rem;
  margin-bottom: 0;
  font-weight: bold;
  text-align: center;
}
.FAQ .FAQ_title p {
  font-family: "Work Sans", sans-serif;
  font-size: 1.25rem;
  font-weight: bold;
  color: #C4C4C4;
  margin: 0;
  text-align: center;
}
.FAQ .FAQ_item {
  margin-bottom: 1.25rem;
  padding: 0 1rem;
  text-align: justify;
}
.FAQ .FAQ_item h3 {
  font-family: "Baloo 2", cursive;
  font-size: 1.5rem;
  font-weight: bold;
  margin: 0 0 0.5rem 0;
}
.FAQ .FAQ_item p {
  font-family: "Work Sans", sans-serif;
  font-size: 1.125rem;
  font-weight: bold;
  color: #C4C4C4;
  margin: 0;
}

/*------------------------------------*\
    #MAIN FAQ 
\*------------------------------------*/
.MAIN_FAQ {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  color: #FFFFFF;
  text-align: justify;
  max-width: 1300px;
  border-radius: 40px;
  padding: 40px;
  background: linear-gradient(to top right, rgba(0, 158, 102, 0.6) 0%, rgb(18, 18, 18) 30%);
}
.MAIN_FAQ h2 {
  font-size: 40px;
  font-weight: bold;
}
.MAIN_FAQ .FAQ_LIST {
  display: flex;
  flex-direction: column;
  margin: 0px 50px;
}
.MAIN_FAQ .FAQ_LIST h3 {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 0;
}
.MAIN_FAQ .FAQ_LIST p {
  font-size: 14px;
  font-weight: 300;
  margin-top: 12px;
  margin-bottom: 20px;
}
.MAIN_FAQ .FAQ_LIST span {
  color: #37BF32;
  font-weight: bold;
}

/*------------------------------------*\
    #Footer MLA
\*------------------------------------*/
.MLA_footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  background-color: #009E66;
}
.MLA_footer h2 {
  color: #FFFFFF;
  font-family: "Lexend Giga";
  font-weight: bold;
  font-size: 40px;
  text-align: center;
}
.MLA_footer .footer_contact {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  align-self: center;
}
.MLA_footer .footer_contact .footer_contact_item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.MLA_footer .footer_contact .footer_contact_item img {
  width: 80px;
  height: 80px;
}
.MLA_footer .footer_contact .footer_contact_item h3 {
  color: #FFFFFF;
  font-family: "Poppins", sans-serif;
  font-weight: bold;
  font-size: 30px;
  margin-bottom: 0;
}
.MLA_footer .footer_contact .footer_contact_item a {
  color: #FFFFFF;
  text-decoration: none;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-size: 24px;
  margin-top: 0;
}

/*------------------------------------*\
    #Copyright Section
\*------------------------------------*/
.copyright {
  text-decoration: none;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-size: 1.25rem;
  color: #C4C4C4;
  margin-top: 2rem;
  margin-bottom: 0;
  text-align: center;
}
.copyright a {
  color: #009E66;
  -webkit-text-emphasis: none;
          text-emphasis: none;
  text-decoration: none;
}

/*------------------------------------*\
    #Responsive Section
\*------------------------------------*/
@media (min-width: 601px) and (max-width: 750px) {
  /* nav {
      justify-content: space-between;
      padding: 0.75rem 1rem;

      .nav_links {
          position: fixed;
          top: 0;
          right: -100%;
          height: 100vh;
          width: 65%;
          background-color: transparent;
          flex-direction: column;
          justify-content: center;
          align-items: center;
          gap: 2rem;
          transition: right 0.3s ease;
          box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);

          a {
              color: variables.$gray_005;
              font-size: 1.1rem;
              font-weight: 500;
          }

          &.active {
              right: 0;
          }
      }

      .menu-toggle {
          display: flex;
      }
  } */
  .title_shadow {
    font-size: 1rem;
  }
  .title_shadow span {
    font-size: 2rem;
    left: 150px;
  }
  .MAIN_FAQ {
    display: flex;
    flex-direction: column;
    padding: 30px;
    width: 90%;
  }
  .MAIN_FAQ h2 {
    text-align: center;
  }
  .MAIN_FAQ .FAQ_LIST {
    margin: 0;
  }
  .FAQ {
    width: 80%;
  }
  .FAQ .FAQ_title {
    margin-bottom: 1.5rem;
  }
  .FAQ .FAQ_title h2 {
    font-size: 40px;
  }
  .FAQ .FAQ_title p {
    font-size: 16px;
  }
  .FAQ .FAQ_item {
    margin-bottom: 1rem;
  }
  .FAQ .FAQ_item h3 {
    font-size: 20px;
  }
  .FAQ .FAQ_item p {
    font-size: 16px;
  }
  .MLA_footer h2 {
    font-size: 30px;
  }
  .MLA_footer .footer_contact {
    flex-direction: row;
  }
  .MLA_footer .footer_contact .footer_contact_item img {
    width: 60px;
    height: 60px;
  }
  .MLA_footer .footer_contact .footer_contact_item h3 {
    font-size: 24px;
  }
  .MLA_footer .footer_contact .footer_contact_item a {
    font-size: 20px;
  }
  .copyright {
    width: 80%;
    font-size: 16px;
    margin-top: 1rem;
    text-align: center;
  }
  .copyright a {
    font-size: 16px;
  }
}
@media (max-width: 600px) {
  nav {
    justify-content: space-between;
    padding: 0.5rem 1rem;
  }
  nav .nav_brand img {
    width: 40px;
    height: 40px;
  }
  nav .menu-toggle {
    display: flex;
  }
  nav .nav_links {
    position: fixed;
    top: 0;
    right: -100%;
    height: 100vh;
    width: 80%;
    background-color: transparent;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    transition: right 0.3s ease;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.15);
  }
  nav .nav_links a {
    color: #9F9F9F;
    font-size: 1.2rem;
    font-weight: 500;
  }
  nav .nav_links.active {
    right: 0;
  }
  .caption_text h3 {
    font-size: 14px;
  }
  .carrousel_3d {
    height: 140px;
  }
  .carrousel_3d .carrousel_3d_item {
    width: 300px;
    height: 80px;
    padding: 10px;
  }
  .carrousel_3d .carrousel_3d_item img {
    width: 50px;
    height: 50px;
    margin-right: 15px;
  }
  .carrousel_3d .carrousel_3d_item a {
    font-size: 14px;
  }
  .MAIN_FAQ {
    display: flex;
    flex-direction: column;
    padding: 30px;
    width: 80%;
  }
  .MAIN_FAQ h2 {
    text-align: center;
  }
  .MAIN_FAQ .FAQ_LIST {
    margin: 0;
  }
  .socialBar {
    bottom: auto;
    top: 2rem;
    left: 0.5rem;
    right: auto;
    flex-direction: row;
    gap: 0.5rem;
    padding: 0.3rem 0.5rem;
    border-radius: 1rem;
    background: rgba(0, 0, 0, 0.7);
  }
  .socialBar .socialBar_red {
    padding: 0.4rem;
  }
  .socialBar .socialBar_red img {
    width: 1rem;
    height: 1rem;
  }
  .FAQ {
    width: 80%;
  }
  .FAQ .FAQ_title {
    margin-bottom: 1.5rem;
  }
  .FAQ .FAQ_title h2 {
    font-size: 40px;
  }
  .FAQ .FAQ_title p {
    font-size: 16px;
  }
  .FAQ .FAQ_item {
    margin-bottom: 1rem;
  }
  .FAQ .FAQ_item h3 {
    font-size: 20px;
  }
  .FAQ .FAQ_item p {
    font-size: 16px;
  }
  .MLA_footer h2 {
    font-size: 30px;
  }
  .MLA_footer .footer_contact {
    flex-direction: column;
  }
  .MLA_footer .footer_contact .footer_contact_item {
    margin-top: 40px;
  }
  .MLA_footer .footer_contact .footer_contact_item img {
    width: 50px;
    height: 50px;
    margin-bottom: 0;
  }
  .MLA_footer .footer_contact .footer_contact_item h3 {
    margin-top: 0;
  }
  .copyright {
    width: 90%;
    font-size: 16px;
    margin-top: 1rem;
    text-align: center;
  }
  .copyright a {
    font-size: 16px;
  }
}
/*------------------------------------*\
    #Contact Btn
\*------------------------------------*/
.contact_btn {
  width: 250px;
  height: 70px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #E6EDF2;
  border-radius: 10px;
  border-color: transparent;
  text-align: center;
  text-decoration: none;
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  font-weight: bold;
  margin-right: 30px;
}
.contact_btn img {
  width: 3.125rem;
  height: 3.125rem;
}
.contact_btn:hover {
  transform: scale(1.05);
  cursor: pointer;
}

/*------------------------------------*\
    #Contact_small Btn
\*------------------------------------*/
.contact_small_btn {
  padding: 10px 20px;
  background-color: #009E66;
  color: #F9F9F9;
  font-family: "Poppins", sans-serif;
  border-radius: 20px;
  margin-top: 20px;
  margin-right: 20px;
  transition: transform 0.3s ease;
}
.contact_small_btn:hover {
  background-color: #37BF32;
  transform: scale(1.1);
  cursor: pointer;
}

/*------------------------------------*\
    #Button sparks
\*------------------------------------*/
.btn_sparks {
  padding: 1.25em 4em;
  border-radius: 1.25em;
  border: none;
  color: #fff;
  cursor: pointer;
  background-color: #7570B3;
  transition: all 0.2s ease;
  font-family: "Baloo 2", cursive;
  font-weight: bold;
  font-size: 2vw;
  position: relative;
  min-width: 120px;
  min-height: 48px;
}
.btn_sparks:active {
  transform: scale(0.96);
}
.btn_sparks:before, .btn_sparks:after {
  position: absolute;
  content: "";
  width: 150%;
  left: 50%;
  height: 100%;
  transform: translateX(-50%);
  z-index: -1000;
  background-repeat: no-repeat;
}
.btn_sparks:hover:before {
  top: -70%;
  background-image: radial-gradient(circle, #7570B3 20%, transparent 20%), radial-gradient(circle, transparent 20%, #7570B3 20%, transparent 30%), radial-gradient(circle, #7570B3 20%, transparent 20%), radial-gradient(circle, #7570B3 20%, transparent 20%), radial-gradient(circle, transparent 10%, #7570B3 15%, transparent 20%), radial-gradient(circle, #7570B3 20%, transparent 20%), radial-gradient(circle, #7570B3 20%, transparent 20%), radial-gradient(circle, #7570B3 20%, transparent 20%), radial-gradient(circle, #7570B3 20%, transparent 20%);
  background-size: 10% 10%, 20% 20%, 15% 15%, 20% 20%, 18% 18%, 10% 10%, 15% 15%, 10% 10%, 18% 18%;
  background-position: 50% 120%;
  animation: greentopBubbles 0.6s ease;
}
.btn_sparks:hover::after {
  bottom: -70%;
  background-image: radial-gradient(circle, #7570B3 20%, transparent 20%), radial-gradient(circle, #7570B3 20%, transparent 20%), radial-gradient(circle, transparent 10%, #7570B3 15%, transparent 20%), radial-gradient(circle, #7570B3 20%, transparent 20%), radial-gradient(circle, #7570B3 20%, transparent 20%), radial-gradient(circle, #7570B3 20%, transparent 20%), radial-gradient(circle, #7570B3 20%, transparent 20%);
  background-size: 15% 15%, 20% 20%, 18% 18%, 20% 20%, 15% 15%, 20% 20%, 18% 18%;
  background-position: 50% 0%;
  animation: greenbottomBubbles 0.6s ease;
}
@media (max-width: 600px) {
  .btn_sparks {
    font-size: 1.2rem;
    padding: 0.8em 2em;
    border-radius: 0.8em;
  }
}
@media (max-width: 400px) {
  .btn_sparks {
    font-size: 1rem;
    padding: 0.6em 1.2em;
    border-radius: 0.6em;
  }
}

@keyframes greentopBubbles {
  0% {
    background-position: 5% 90%, 10% 90%, 10% 90%, 15% 90%, 25% 90%, 25% 90%, 40% 90%, 55% 90%, 70% 90%;
  }
  50% {
    background-position: 0% 80%, 0% 20%, 10% 40%, 20% 0%, 30% 30%, 22% 50%, 50% 50%, 65% 20%, 90% 30%;
  }
  100% {
    background-position: 0% 70%, 0% 10%, 10% 30%, 20% -10%, 30% 20%, 22% 40%, 50% 40%, 65% 10%, 90% 20%;
    background-size: 0% 0%, 0% 0%, 0% 0%, 0% 0%, 0% 0%, 0% 0%;
  }
}
@keyframes greenbottomBubbles {
  0% {
    background-position: 10% -10%, 30% 10%, 55% -10%, 70% -10%, 85% -10%, 70% -10%, 70% 0%;
  }
  50% {
    background-position: 0% 80%, 20% 80%, 45% 60%, 60% 100%, 75% 70%, 95% 60%, 105% 0%;
  }
  100% {
    background-position: 0% 90%, 20% 90%, 45% 70%, 60% 110%, 75% 80%, 95% 70%, 110% 10%;
    background-size: 0% 0%, 0% 0%, 0% 0%, 0% 0%, 0% 0%, 0% 0%;
  }
}
/*------------------------------------*\
    #Glitch sparks
\*------------------------------------*/
.link_container {
  display: grid;
  grid-template-columns: repeat(5, minmax(120px, 1fr));
  gap: 20px;
  width: 100%;
  padding: 20px 0;
}
@media (max-width: 768px) {
  .link_container {
    grid-template-columns: repeat(2, minmax(120px, 1fr));
  }
}
.link_container .link_wrapper {
  position: relative;
  height: 35px;
  width: 125px;
  margin: 3px;
}
.link_container .link_wrapper input {
  position: absolute;
  inset: 0;
  margin: 0;
  cursor: pointer;
  z-index: 10;
  opacity: 0;
}
.link_container .link_wrapper input:checked + .btn_glitch {
  --primary: #009E66;
  --shadow-primary: #ffffff;
}
.link_container .link_wrapper input:hover + .btn_glitch {
  --primary: #1F7A8C;
  --font-size: 11px;
}
.link_container .link_wrapper .btn_glitch {
  --primary: #264653;
  --shadow-primary: #A8DADC;
  --color: #ffffff;
  --font-size: 9px;
  --shadow-primary-hue: 180;
  --shadow-secondary-hue: 60;
  --shadow-secondary: #000000;
  --clip: polygon(11% 0, 95% 0, 100% 25%, 90% 90%, 95% 90%, 85% 90%, 85% 100%, 7% 100%, 0 80%);
  --border: 5px;
  --shimmy-distance: 5px;
  --clip-one: polygon(0 2%, 100% 2%, 100% 95%, 95% 95%, 95% 90%, 85% 90%, 85% 95%, 8% 95%, 0 70%);
  --clip-two: polygon(0 78%, 100% 78%, 100% 100%, 95% 100%, 95% 90%, 85% 90%, 85% 100%, 8% 100%, 0 78%);
  --clip-three: polygon(0 44%, 100% 44%, 100% 54%, 95% 54%, 95% 54%, 85% 54%, 85% 54%, 8% 54%, 0 54%);
  --clip-four: polygon(0 0, 100% 0, 100% 0, 95% 0, 95% 0, 85% 0, 85% 0, 8% 0, 0 0);
  --clip-five: polygon(0 0, 100% 0, 100% 0, 95% 0, 95% 0, 85% 0, 85% 0, 8% 0, 0 0);
  --clip-six: polygon(0 40%, 100% 40%, 100% 85%, 95% 85%, 95% 85%, 85% 85%, 85% 85%, 8% 85%, 0 70%);
  --clip-seven: polygon(0 63%, 100% 63%, 100% 80%, 95% 80%, 95% 80%, 85% 80%, 85% 80%, 8% 80%, 0 70%);
  color: var(--color);
  text-transform: uppercase;
  font-size: var(--font-size);
  letter-spacing: 3px;
  position: relative;
  font-weight: 900;
  width: 100%;
  height: 100%;
  line-height: 38px;
  text-align: center;
  transition: background 0.2s, 0.3s;
}
.link_container .link_wrapper .btn_glitch .number {
  background: var(--shadow-primary);
  color: #323232;
  font-size: 5.5px;
  font-weight: 700;
  letter-spacing: 1px;
  position: absolute;
  width: 15px;
  height: 6px;
  top: 0;
  left: 81%;
  line-height: 6.2px;
}
.link_container .link_wrapper .btn_glitch::before, .link_container .link_wrapper .btn_glitch::after {
  content: "";
  position: absolute;
  inset: 0;
  clip-path: var(--clip);
  z-index: -1;
}
.link_container .link_wrapper .btn_glitch::before {
  background: var(--shadow-primary);
  transform: translate(var(--border), 0);
}
.link_container .link_wrapper .btn_glitch::after {
  background: var(--primary);
}
.link_container .link_wrapper .btn_glitch_span {
  position: absolute;
  top: calc(var(--border) * -1);
  left: calc(var(--border) * -1);
  right: calc(var(--border) * -1);
  bottom: calc(var(--border) * -1);
  background: var(--shadow-primary);
  text-shadow: 2px 2px var(--shadow-primary), -2px -2px var(--shadow-secondary);
  clip-path: var(--clip);
  animation: glitch 2s infinite;
  display: none;
}
.link_container .link_wrapper .btn_glitch_span::before {
  content: "";
  position: absolute;
  top: calc(var(--border) * 1);
  right: calc(var(--border) * 1);
  bottom: calc(var(--border) * 1);
  left: calc(var(--border) * 1);
  clip-path: var(--clip);
  background: var(--primary);
  z-index: -1;
}
.link_container .link_wrapper input:hover + .btn_glitch,
.link_container .link_wrapper input:hover + .btn_glitch + .btn_glitch_span {
  display: block;
}
.link_container .link_wrapper input:checked + .btn_glitch,
.link_container .link_wrapper input:checked + .btn_glitch + .btn_glitch_span {
  display: block;
  animation: glitch 5s infinite;
}
@keyframes glitch {
  0% {
    clip-path: var(--clip-one);
  }
  2%, 8% {
    clip-path: var(--clip-two);
    transform: translateX(calc(var(--shimmy-distance) * -1));
  }
  6% {
    clip-path: var(--clip-two);
    transform: translateX(var(--shimmy-distance));
  }
  9% {
    clip-path: var(--clip-two);
    transform: translateX(0);
  }
  10% {
    clip-path: var(--clip-three);
    transform: translateX(var(--shimmy-distance));
  }
  13% {
    clip-path: var(--clip-three);
    transform: translateX(0);
  }
  14%, 21% {
    clip-path: var(--clip-four);
    transform: translateX(var(--shimmy-distance));
  }
  25% {
    clip-path: var(--clip-five);
    transform: translateX(var(--shimmy-distance));
  }
  30% {
    clip-path: var(--clip-five);
    transform: translateX(calc(var(--shimmy-distance) * -1));
  }
  35%, 45% {
    clip-path: var(--clip-six);
    transform: translateX(calc(var(--shimmy-distance) * -1));
  }
  40% {
    clip-path: var(--clip-six);
    transform: translateX(var(--shimmy-distance));
  }
  50% {
    clip-path: var(--clip-six);
    transform: translateX(0);
  }
  55% {
    clip-path: var(--clip-seven);
    transform: translateX(var(--shimmy-distance));
  }
  60% {
    clip-path: var(--clip-seven);
    transform: translateX(0);
  }
  31%, 61%, 100% {
    clip-path: var(--clip-four);
    transform: translateX(0);
  }
}

/* $white == $white_004
$black == $black_002
$gray == $dark_gray_001
$text == $gray_005
$enphasys_color == $green_002
$enphasys_color_hover == $green_004
$extra_color == $dark_blue_002
 */
h1 {
  font-family: "Lexend Giga";
  font-size: 3rem;
  color: #FFFFFC;
  font-weight: 800;
  text-transform: uppercase;
}

h2 {
  font-family: "Lexend Giga";
  font-weight: 400;
  font-size: 1.5rem;
  color: #FFFFFC;
  text-transform: uppercase;
}

h3 {
  font-family: "Lexend Giga";
  text-transform: uppercase;
}

p,
a {
  font-family: "Poppins", sans-serif;
  text-decoration: none;
  color: #9F9F9F;
}

body {
  background-color: #0D0A0B;
  margin: 0;
  padding: 0;
}

/*------------------------------------*\
  #Header styles (Barra de navegación)
\*------------------------------------*/
header {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-left: 2.5rem;
  height: 80vh;
  justify-content: center;
  gap: 0.125rem;
  background-image: url("../../img/Mikkel/Mikkel/head.png");
  background-size: cover;
  background-position: center;
}
header h2 {
  max-width: 50%;
  color: #9F9F9F;
}
header .header_btn {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}

main {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0;
  /*------------------------------------*\
      #Who I´m styles (Sobre mí)
  \*------------------------------------*/
  /*------------------------------------*\
      #Skills styles
  \*------------------------------------*/
  /*------------------------------------*\
  #Tools styles (Herramientas)
  \*------------------------------------*/
  /*------------------------------------*\
  #Porfolio styles (Portafolio)
  \*------------------------------------*/
  /*------------------------------------*\
      #Resume styles (Experiencia Laboral)
  \   *------------------------------------*/
}
main section {
  max-width: 1300px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
main .aboutme {
  display: flex;
  flex-direction: row;
  margin: 3rem 0;
  display: flex;
  justify-content: space-between;
  text-align: justify;
  /* Editor de Código */
}
main .aboutme .aboutme_text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 50%;
}
main .aboutme .aboutme_text h3 {
  font-family: "Lexend Giga";
  color: #009E66;
  font-size: 1rem;
  font-weight: 600;
}
main .aboutme .aboutme_text h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #F9F9F9;
}
main .aboutme .aboutme_text span {
  color: #F9F9F9;
  font-weight: 600;
}
main .aboutme .code_editor {
  background: #1e1e1e;
  border-radius: 0.5rem;
  padding: 1rem;
  width: 40%;
  height: 350px;
  font-family: "Fira Code", monospace;
  position: relative;
  box-shadow: 0 0.3125rem 0.9375rem rgba(0, 0, 0, 0.2);
}
main .aboutme .code_editor .code_header {
  display: flex;
  gap: 0.4rem;
  margin-bottom: 0.5rem;
}
main .aboutme .code_editor .dot {
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 50%;
  display: inline-block;
}
main .aboutme .code_editor .red {
  background: #ff5f56;
}
main .aboutme .code_editor .yellow {
  background: #ffbd2e;
}
main .aboutme .code_editor .green {
  background: #27c93f;
}
main .aboutme .code_editor pre {
  margin: 0;
  height: 300px;
  background-color: #2d2d2d;
  white-space: pre-wrap;
  font-size: 1.05rem;
  color: #9F9F9F;
  padding: 10px;
}
main .skills {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  margin: 3rem 0;
  max-width: 87.5rem;
}
main .skills .skills_container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  justify-items: center;
  align-items: start;
}
main .tools {
  display: flex;
  flex-direction: row;
  max-width: 87.5rem;
  margin: 3rem 0;
  justify-content: center;
  align-items: center;
}
main .tools .tools_title {
  max-width: 50%;
  margin-right: 3.75rem;
}
main .tools .tools_title h2 {
  color: #009E66;
  font-size: 1.5rem;
  font-weight: 700;
}
main .tools .tools_container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  justify-items: center;
  align-items: start;
}
main .tools .tools_container img {
  width: 3.75rem;
  height: 3.75rem;
  margin: 0.9375rem;
  transition: transform 0.3s ease, filter 0.3s ease;
}
main .tools .tools_container img:hover {
  transform: scaleX(1.1) scaleY(1.1);
  filter: brightness(0) invert(1);
}
main .portfolio {
  max-width: 1400px;
  margin: 3rem 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
main .portfolio h2 {
  margin-bottom: 0;
}
main .portfolio p {
  font-size: 1rem;
  color: #9F9F9F;
  margin-top: 0;
}
main .portfolio_container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.3rem;
  padding: 2rem;
}
@media (min-width: 768px) {
  main .portfolio_container {
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  }
}
@media (min-width: 1024px) {
  main .portfolio_container {
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    max-width: 1200px;
    margin: 0 auto;
  }
}
main .resume .resume__timeline-container {
  margin: 4rem 0;
}
main .resume .resume__timeline-container .resume__timeline {
  --col-gap: 2rem;
  --row-gap: 2rem;
  --line-w: 0.25rem;
  display: grid;
  grid-template-columns: var(--line-w) 1fr;
  grid-auto-columns: max-content;
  -moz-column-gap: var(--col-gap);
       column-gap: var(--col-gap);
  list-style: none;
  width: min(60rem, 90%);
  margin-inline: auto;
}
main .resume .resume__timeline-container .resume__timeline::before {
  content: "";
  grid-column: 1;
  grid-row: 1/span 20;
  background: rgb(225, 225, 225);
  border-radius: calc(var(--line-w) / 2);
}
main .resume .resume__timeline-container .resume__timeline .resume__timeline-item {
  text-align: justify;
  grid-column: 2;
  --inlineP: 1.5rem;
  margin-inline: var(--inlineP);
  grid-row: span 2;
  display: grid;
  grid-template-rows: min-content min-content min-content;
  --accent-color: $enphasys_color;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
main .resume .resume__timeline-container .resume__timeline .resume__timeline-item:not(:last-child) {
  margin-bottom: var(--row-gap);
}
main .resume .resume__timeline-container .resume__timeline .resume__timeline-item.show {
  opacity: 1;
  transform: translateY(0);
}
main .resume .resume__timeline-container .resume__timeline .resume__timeline-item .resume__timeline-date {
  --dateH: 3rem;
  height: var(--dateH);
  margin-inline: calc(var(--inlineP) * -1);
  text-align: center;
  background-color: #009e66;
  color: #F9F9F9;
  font-size: 1rem;
  font-weight: 700;
  display: grid;
  place-content: center;
  position: relative;
  border-radius: 4px;
  font-family: "Lexend Giga";
  font-weight: 400;
  text-transform: uppercase;
}
main .resume .resume__timeline-container .resume__timeline .resume__timeline-item .resume__timeline-date::before {
  content: "";
  width: var(--inlineP);
  aspect-ratio: 1;
  background: var(--accent-color);
  background-image: linear-gradient(rgba(0, 0, 0, 0.2) 100%, transparent);
  position: absolute;
  top: 100%;
  clip-path: polygon(0 0, 100% 0, 0 100%);
  right: 0;
}
main .resume .resume__timeline-container .resume__timeline .resume__timeline-item .resume__timeline-date::after {
  content: "";
  position: absolute;
  width: 2rem;
  aspect-ratio: 1;
  background: var(--bgColor);
  border: 0.3rem solid var(--accent-color);
  border-radius: 50%;
  top: 50%;
  transform: translate(50%, -50%);
  right: calc(100% + var(--col-gap) + var(--line-w) / 2);
}
main .resume .resume__timeline-container .resume__timeline .resume__timeline-item .resume__timeline-title,
main .resume .resume__timeline-container .resume__timeline .resume__timeline-item .resume__timeline-descr {
  background: var(--bgColor);
  position: relative;
  padding-inline: 1.5rem;
  color: #9F9F9F;
  font-family: poppins, sans-serif;
  text-align: justify;
}
main .resume .resume__timeline-container .resume__timeline .resume__timeline-item .resume__timeline-title span,
main .resume .resume__timeline-container .resume__timeline .resume__timeline-item .resume__timeline-descr span {
  color: #37BF32;
  font-weight: 600;
}
main .resume .resume__timeline-container .resume__timeline .resume__timeline-item .resume__timeline-title::before,
main .resume .resume__timeline-container .resume__timeline .resume__timeline-item .resume__timeline-descr::before {
  content: "";
  position: absolute;
  width: 90%;
  height: 0.5rem;
  background: rgba(0, 0, 0, 0.5);
  left: 50%;
  border-radius: 50%;
  filter: blur(4px);
  transform: translate(-50%, 50%);
  bottom: 0.25rem;
  z-index: -1;
}
main .resume .resume__timeline-container .resume__timeline .resume__timeline-item .resume__timeline-title {
  overflow: hidden;
  padding-block-start: 1.5rem;
  padding-block-end: 1rem;
  font-weight: 300;
  font-family: "Poppins", sans-serif;
  color: #FFFFFC;
}
main .resume .resume__timeline-container .resume__timeline .resume__timeline-item .resume__timeline-title::before {
  bottom: calc(100% + 0.125rem);
}
main .resume .resume__timeline-container .resume__timeline .resume__timeline-item .resume__timeline-descr {
  padding-block-end: 1.5rem;
  font-weight: 300;
}
@media (min-width: 40rem) {
  main .resume .resume__timeline-container .resume__timeline {
    grid-template-columns: 1fr var(--line-w) 1fr;
  }
  main .resume .resume__timeline-container .resume__timeline::before {
    grid-column: 2;
  }
  main .resume .resume__timeline-container .resume__timeline .resume__timeline-item:nth-child(odd) {
    grid-column: 1;
  }
  main .resume .resume__timeline-container .resume__timeline .resume__timeline-item:nth-child(odd) .resume__timeline-date::before {
    clip-path: polygon(0 0, 100% 0, 100% 100%);
    left: 0;
  }
  main .resume .resume__timeline-container .resume__timeline .resume__timeline-item:nth-child(odd) .resume__timeline-date::after {
    transform: translate(-50%, -50%);
    left: calc(100% + var(--col-gap) + var(--line-w) / 2);
  }
  main .resume .resume__timeline-container .resume__timeline .resume__timeline-item:nth-child(even) {
    grid-column: 3;
  }
  main .resume .resume__timeline-container .resume__timeline .resume__timeline-item:nth-child(2) {
    grid-row: 2/4;
  }
}
@media (max-width: 768px) {
  main .resume head,
  main .resume section {
    width: 90%;
  }
}

/* Responsive styles */
@media (min-width: 751px) and (max-width: 1024px) {
  html,
  body {
    width: 100%;
    overflow-x: hidden;
  }
  nav .nav_links {
    gap: 1.2rem;
  }
  nav .nav_links a {
    font-size: 1rem;
  }
  header h1 {
    font-size: 2rem;
  }
  main {
    width: 100%;
  }
  main section {
    min-width: 1000px;
    max-width: 1000px;
  }
  main .title_shadow {
    font-size: 1rem;
  }
  main .title_shadow span {
    font-size: 2rem;
    left: 150px;
  }
  main .aboutme {
    display: flex;
    flex-direction: column;
    margin: 3rem 0;
    display: flex;
    justify-content: space-between;
    text-align: justify;
  }
  main .aboutme .aboutme_text {
    max-width: 70%;
  }
  main .aboutme .code_editor {
    width: 70%;
    height: 250px;
  }
  main .aboutme .code_editor pre {
    height: 200px;
  }
  main .skills .skills_container {
    grid-template-columns: repeat(2, 1fr);
  }
  main .tools {
    flex-direction: column;
    min-width: 1000px;
    max-width: 1000px;
  }
  main .tools .tools_title {
    max-width: 70%;
    margin-right: 0;
  }
  main .tools .tools_title h2 {
    text-align: center;
  }
  main .tools .tools_container {
    margin-top: 1rem;
  }
  main .tools .tools_container img {
    width: 4rem;
    height: 4rem;
  }
  main .resume .resume__timeline-container {
    width: 80%;
    margin-left: 50px;
  }
}
@media (min-width: 601px) and (max-width: 750px) {
  nav {
    background-color: rgba(13, 10, 11, 0.5);
  }
  nav .nav_links {
    gap: 1.3rem;
  }
  nav .nav_links a {
    font-size: 0.9rem;
    text-align: center;
  }
  header {
    background-image: url("../../img/Mikkel/Mikkel/head_mobile.png");
    background-size: cover;
    background-position: center;
    justify-content: flex-end;
    padding-left: 1.5rem;
    gap: 0.12rem;
    height: 720px;
  }
  header h1 {
    font-size: 2.5rem;
    max-width: 90%;
    max-width: 1.5rem;
  }
  header h2 {
    font-size: 14px;
    max-width: 90%;
  }
  header a {
    margin-bottom: 20px;
  }
  .socialBar {
    right: 0;
    gap: 0.2rem;
    padding: 0.2rem;
  }
  main section {
    max-width: 600px;
  }
  main .aboutme {
    display: flex;
    flex-direction: column;
  }
  main .aboutme .aboutme_text {
    max-width: 100%;
  }
  main .aboutme .code_editor {
    width: 100%;
    height: 250px;
  }
  main .aboutme .code_editor pre {
    height: 200px;
  }
  main .skills .skills_container {
    grid-template-columns: repeat(1, 1fr);
  }
  main .skills .skills_container .hover-card {
    width: 550px;
    height: auto;
  }
  main .skills h2 {
    font-size: 1.5rem;
  }
  main .tools {
    flex-direction: column;
  }
  main .tools .tools_title {
    max-width: 80%;
    margin-right: 0;
    margin-bottom: 20px;
  }
  main .tools .tools_container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    justify-items: center;
    align-items: start;
  }
  main .tools .tools_container img {
    width: 5rem;
    height: 5rem;
  }
  main .resume {
    max-width: 650px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  main .resume h2 {
    font-size: 1rem;
  }
  main .resume h2 span {
    font-size: 2rem;
    left: 150px;
  }
  main .resume .resume__timeline-container .resume__timeline {
    padding: 0;
    margin: 0;
  }
  main .resume .resume__timeline-container .resume__timeline .resume__timeline-item .resume__timeline-date {
    height: auto;
    padding: 0.5rem;
  }
  main .resume .resume__timeline-container .resume__timeline .resume__timeline-item .resume__timeline-title,
  main .resume .resume__timeline-container .resume__timeline .resume__timeline-item .resume__timeline-descr {
    text-align: justify;
    margin: 0.8rem 0;
  }
  main .resume .resume__timeline-container .resume__timeline .resume__timeline-item .resume__timeline-title {
    overflow: hidden;
    padding: 0;
  }
  main .resume .resume__timeline-container .resume__timeline .resume__timeline-item .resume__timeline-descr {
    padding: 0;
  }
}
@media (max-width: 600px) {
  nav .nav_links {
    height: 80vh;
    width: 70%;
    background-color: rgba(13, 10, 11, 0.5);
    gap: 1.5rem;
  }
  nav .nav_links a {
    color: #9F9F9F;
    font-size: 1.2rem;
    font-weight: 500;
  }
  nav .nav_links a:hover {
    color: #37BF32;
    transform: scale(1.2);
  }
  nav .nav_links.active {
    right: 0;
  }
  header {
    background-image: url("../../img/Mikkel/Mikkel/head_mobile.png");
    background-size: cover;
    background-position: center;
    justify-content: flex-end;
    padding-left: 1.5rem;
    gap: 0.12rem;
    height: 800px;
  }
  header h1 {
    font-size: 1.5rem;
    max-width: 80%;
    max-width: 1.2rem;
  }
  header h2 {
    font-size: 14px;
    max-width: 90%;
  }
  header a {
    margin-bottom: 20px;
  }
  main .aboutme {
    flex-direction: column;
  }
  main .aboutme .aboutme_text {
    max-width: 80%;
  }
  main .aboutme .code_editor {
    width: 80%;
    height: 240px;
  }
  main .aboutme .code_editor pre {
    height: 200px;
    font-size: 14px;
  }
  main .skills .skills_container {
    grid-template-columns: repeat(1, 1fr);
  }
  main .skills .skills_container .hover-card {
    width: 350px;
    height: auto;
  }
  main .skills h2 {
    font-size: 1rem;
  }
  main .skills h2 span {
    font-size: 2rem;
    left: 150px;
  }
  main .tools {
    flex-direction: column;
    width: 100%;
  }
  main .tools .tools_title {
    max-width: 80%;
    margin-right: 0;
  }
  main .tools .tools_container {
    margin-top: 20px;
  }
  main .tools .tools_container img {
    width: 4rem;
    height: 4rem;
  }
  main .resume h2 {
    font-size: 1rem;
  }
  main .resume h2 span {
    font-size: 2rem;
    left: 150px;
  }
  main .resume .resume__timeline {
    padding: 0;
    margin: 0;
  }
  main .resume .resume__timeline-item {
    width: 75%;
  }
}/*# sourceMappingURL=index.css.map */