@charset "UTF-8";
/*   'KARLA' Font family   */
@import url("https://fonts.googleapis.com/css2?family=Karla:ital,wght@0,200..800;1,200..800&display=swap");
/*   'KARLA' Font family   */
@import url("https://fonts.googleapis.com/css2?family=Karla:ital,wght@0,200..800;1,200..800&display=swap");
body {
  margin: 0;
  top: 0px;
  width: 100%;
  height: 100vh;
  font-family: "Karla" !important;
}
body .main {
  padding-top: 80px;
  padding-bottom: 40px;
}
body .main__subpages {
  padding: 16px 0px 2px 0px;
}

.index__title {
  font-size: 40px;
  font-weight: 700;
}

.page__title {
  font-weight: 200;
  font-size: 24px;
  text-align: center;
}
.page__title .bold-text {
  font-weight: 600;
}

.page__subtitle {
  font-size: 16px;
  font-weight: 300;
  border-bottom: 1px solid;
  border-color: #898989;
  padding-bottom: 8px;
}

.page__featured-text {
  font-size: 32px;
  line-height: 32px;
  font-weight: 800;
  max-width: 100%;
  margin-top: 2px;
  text-transform: uppercase;
}

.page__body-copy {
  font-size: 15px;
  line-height: 22px;
}

.works__card-text {
  color: #f8f9fa;
  font-size: 40px;
  z-index: 2;
  text-align: center;
  text-shadow: 0 0 4px rgb(0, 0, 0.5);
  transition: 0.5s;
  opacity: 0;
}
.works__card-text .works__card-title {
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 0px;
}
.works__card-text .works__card-subtitle {
  font-style: italic;
  font-size: 18px;
  font-weight: 200;
}

.skills__item-name {
  font-size: 16px;
  font-weight: 200;
}

.skills__item-percent {
  font-size: 16px;
  text-align: right;
  font-weight: bold;
}

.work__page-title {
  width: 100%;
  text-decoration: underline;
  text-transform: uppercase;
  text-decoration-color: #c60053;
  text-underline-offset: 8px;
  font-size: 24px;
  font-weight: 700;
}

.works__subpage--body-copy {
  font-size: 14px;
}

.works__subpage--info {
  color: #898989;
  font-size: 10px;
  margin-bottom: 0px;
}

.index__container {
  /* Contenedor relativo para posicionar elementos */
  position: relative;
  overflow: hidden; /* Oculta elementos durante la animación */
}

/* Estilos compartidos para elementos animados */
.index__title, .index__link {
  opacity: 0;
  transform: translateX(-50px); /* Inicia fuera de pantalla (izquierda) */
  animation: slideIn 1s ease-out forwards;
}

/* Animación personalizada */
@keyframes slideIn {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
/* Retrasos secuenciales */
.index__title {
  animation-delay: 0.3s; /* Primero (nombre) */
}

.index__link:nth-of-type(1) { /* English */
  animation-delay: 1.3s; /* +1s después del nombre */
}

.index__link:nth-of-type(2) { /* Español */
  animation-delay: 2.3s; /* +1s después de English */
}

.button {
  background-color: #f8f9fa;
  text-align: center;
  border: 1px solid;
  border-color: #232323;
  text-decoration: none;
  color: #232323;
  border-radius: 50px;
  padding: 8px 24px;
  font-weight: 600;
  font-size: 12px;
}
.button .button__text {
  text-decoration: none;
  color: #f8f9fa;
}
.button:hover {
  background-color: #232323;
  border-color: #232323;
  color: #f8f9fa;
  transition: all 0.2s ease-out;
}
.button:hover .button__text {
  color: #f8f9fa;
}

.header__menu-button {
  background-color: #c60053;
}

.works__card-overlay .works__card {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  overflow: hidden;
}
.works__card-overlay .works__card-text {
  position: absolute;
  display: flex;
  flex-direction: column;
  justify-content: end;
  width: 100%;
  height: 150%;
  bottom: 0;
  transform: translateY(80px);
  transition: transform 0.3s ease-out;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0), rgb(0, 0, 0));
}
.works__card-overlay .works__card-text:hover {
  transform: translateY(0px);
  opacity: 1;
}
.works__card-overlay .works__card-background {
  background-size: cover;
  background-position: right;
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 100%;
  height: 100%;
}
.works__card-overlay .works__card-background .works__card-image {
  max-width: 100%;
  max-height: 100%;
  transform: translateY(10%);
  transform: translateY(0%);
}
.works__card-overlay .works__card-background .works__card-image:hover {
  transform: translateY(20px);
}

.works__card {
  position: relative;
}
.works__card .works__card-label {
  position: absolute;
  top: 12px;
  right: 12px;
  background-color: rgba(255, 255, 255, 0.85);
  color: #111;
  font-size: 10px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-weight: 600;
  padding: 4px 8px;
  border-radius: 2px;
  backdrop-filter: blur(6px);
  transition: opacity 0.3s ease;
  z-index: 10;
}
@media (min-width: 768px) {
  .works__card .works__card-label {
    font-size: 11px;
    padding: 5px 10px;
  }
}
.works__card:hover .works__card .works__card-label {
  opacity: 0.7;
}

.back__nav {
  display: flex;
  position: fixed;
  justify-content: flex-start;
  align-items: center;
  top: 0;
  left: 0;
  width: 100%;
  padding: 20px 0px;
  z-index: 1000;
}
.back__nav::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(248, 249, 250, 0.5);
  backdrop-filter: blur(10px);
  z-index: -1;
}
.back__nav .back__menu {
  list-style-type: none;
  display: flex;
  margin: 0;
  padding: 0;
}
.back__nav .back__menu .back__menu-item {
  padding-left: 20px;
  font-size: 14px;
  font-weight: 600;
}
.back__nav .back__menu .back__menu-item .back__link {
  text-decoration: none;
  text-transform: uppercase;
  color: #232323;
}
.back__nav .back__menu .back__menu-item .back__link:hover {
  color: #c60053;
  transition: all 0.2s ease-out;
  font-weight: 600;
}

.skills__item {
  margin-bottom: 1rem;
}
.skills__item-text {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.2rem;
}

.progress {
  max-height: 4px;
  background-color: #e9ecef;
  border-radius: 100%;
  overflow: hidden;
}
.progress .skills__progress-bar {
  height: 4px;
  background-color: #232323;
  transition: width 0.6s ease;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: rgba(248, 249, 250, 0.5);
  backdrop-filter: blur(10px);
  padding: 10px 0;
}
.header .header__nav-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
}
.header .header__brand {
  font-weight: 200;
  color: #232323;
  margin-bottom: 10px;
}
.header .header__nav {
  display: flex;
  justify-content: center;
  width: 100%;
}
.header .header__nav .header__menu {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 0;
  padding: 0;
  position: relative;
}
.header .header__nav .header__menu .header__menu-item {
  font-size: 10px;
  padding: 8px;
  position: relative;
}
.header .header__nav .header__menu .header__menu-item .header__link {
  text-decoration: none;
  text-transform: uppercase;
  color: #232323;
  position: relative;
  padding-bottom: 4px;
}
.header .header__nav .header__menu .header__menu-item .header__link:hover {
  color: #232323;
  transition: all 0.2s ease-out;
}
.header .header__nav .header__menu .header__menu-item .header__link:focus {
  outline: none;
}
.header .header__nav .header__menu .header__menu-item .header__link--active,
.header .header__nav .header__menu .header__menu-item .header__link:focus {
  color: #232323;
  font-weight: 700;
}
.header .header__nav .header__menu .header__menu-item .header__link--active::after,
.header .header__nav .header__menu .header__menu-item .header__link:focus::after {
  content: "•";
  position: absolute;
  left: 50%;
  bottom: -8px;
  transform: translateX(-50%);
  font-size: 14px;
  color: #232323;
}
@media (min-width: 768px) {
  .header .header__nav-wrapper {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 0 40px;
  }
  .header .header__brand {
    width: 160px;
    margin-bottom: 0;
    font-size: 18px;
  }
  .header .header__nav {
    justify-content: flex-end;
  }
  .header .header__nav .header__menu {
    justify-content: flex-end;
  }
  .header .header__nav .header__menu .header__menu-item {
    padding: 0 20px;
    font-size: 11px;
  }
}

.home {
  max-width: 100vw;
}
.home .home__grid .home__grid-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  margin: 0 auto;
  padding: 2rem 1rem;
}
.home .home__grid .home__grid-container .home__grid-row {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  width: 100%;
}
.home .home__grid .home__grid-container .home__grid-right-column,
.home .home__grid .home__grid-container .home__grid-left-column {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.home .home__grid .home__grid-container .home__image-placeholder {
  width: 100%;
  max-width: 300px;
  height: auto;
}
.home .home__grid .home__grid-container .home__image-placeholder .home__image {
  width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}

.home__subheadline {
  font-size: 32px;
  line-height: 40px;
  font-weight: 900;
  margin-bottom: 24px;
  text-align: center;
}

.home__subheadline--gradient {
  background: linear-gradient(45deg, #00c3bd, #ff007b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  font-weight: 400;
}

.home__body-copy {
  margin-left: 20px;
  margin-right: 20px;
  flex-wrap: wrap;
}

.home__clients-wrapper {
  width: 100%;
  overflow: hidden;
}
.home__clients-wrapper .marquee {
  display: block;
  width: 300px;
  outline: none;
}
.home__clients-wrapper .marquee .marquee__track {
  display: flex;
  gap: 0px;
  align-items: center;
  will-change: transform;
  animation: marquee 20s linear infinite;
}
.home__clients-wrapper .marquee .marquee__track .hero__logos {
  height: 40px;
  flex-shrink: 0;
}

.marquee:hover .marquee__track,
.marquee:focus .marquee__track,
.marquee:focus-within .marquee__track {
  animation-play-state: paused;
}

@media (prefers-reduced-motion: reduce) {
  .marquee__track {
    animation: none;
  }
}
@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
.about-shortcut {
  position: fixed;
  right: 0;
  top: 70%;
  transform: translateY(-50%) rotate(-90deg);
  transform-origin: center center;
  z-index: 2000;
  font-size: 16px;
  font-weight: 200;
  text-transform: uppercase;
  color: #232323;
  text-decoration: none;
  background: transparent;
  /* Controls spacing from viewport edge */
  padding: 0 0px;
  margin-right: -120px;
  white-space: nowrap;
}
.about-shortcut:hover {
  color: #c60053;
}

@media (min-width: 767.9px) {
  .home__subheadline {
    font-size: 64px;
    line-height: 72px;
    margin-bottom: 24px;
    text-align: center;
  }
  .about-shortcut {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%) rotate(-90deg);
    transform-origin: center center;
    z-index: 2000;
    font-size: 18px;
    font-weight: 200;
    text-transform: uppercase;
    color: #232323;
    text-decoration: none;
    background: transparent;
    /* Controls spacing from viewport edge */
    padding: 0 0px;
    margin-right: -100px;
    white-space: nowrap;
  }
  .about-shortcut:hover {
    color: #c60053;
  }
  .home .home__grid .home__grid-container {
    width: 640px;
  }
  .home .home__grid .home__grid-container .home__grid-row .home__grid-right-column .home__clients-wrapper {
    width: 100%;
    overflow: hidden;
  }
  .home .home__grid .home__grid-container .home__grid-row .home__grid-right-column .home__clients-wrapper .marquee {
    display: block;
    width: 600px;
    overflow: hidden;
    outline: none;
  }
  .home .home__grid .home__grid-container .home__grid-row .home__grid-right-column .home__clients-wrapper .marquee .marquee__track {
    display: flex;
    gap: 0px;
    align-items: center;
    will-change: transform;
    animation: marquee 30s linear infinite;
  }
  .home .home__grid .home__grid-container .home__grid-row .home__grid-right-column .home__clients-wrapper .marquee .marquee__track .hero__logos {
    height: 40px;
    flex-shrink: 0;
  }
  .home .home__grid .home__grid-container .home__grid-left-column .home__image-placeholder {
    display: flex;
    flex-direction: column;
    max-height: 100%;
  }
  .home .home__grid .home__grid-container .home__grid-left-column .home__image-placeholder .home__image {
    width: 100%;
    align-self: center;
    height: auto;
  }
}
@media (min-width: 991.9px) {
  .home__subheadline {
    font-size: 74px;
    line-height: 82px;
    margin-bottom: 24px;
    text-align: center;
  }
  .home .home__grid .home__grid-container {
    width: 800px;
  }
  .home .home__grid .home__grid-container .home__grid-row .home__grid-right-column .home__clients-wrapper {
    width: 100%;
    overflow: hidden;
  }
  .home .home__grid .home__grid-container .home__grid-row .home__grid-right-column .home__clients-wrapper .marquee {
    display: block;
    width: 700px;
    overflow: hidden;
    outline: none;
  }
  .home .home__grid .home__grid-container .home__grid-row .home__grid-right-column .home__clients-wrapper .marquee .marquee__track {
    display: flex;
    gap: 0px;
    align-items: center;
    will-change: transform;
    animation: marquee 30s linear infinite;
  }
  .home .home__grid .home__grid-container .home__grid-row .home__grid-right-column .home__clients-wrapper .marquee .marquee__track .hero__logos {
    height: 50px;
    flex-shrink: 0;
  }
  .home .home__grid .home__grid-container .home__grid-row .home__grid-left-column {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    max-height: 100%;
  }
  .home .home__grid .home__grid-container .home__grid-row .home__grid-left-column .home__image-placeholder .home__image {
    width: 60%;
    align-self: center;
    height: auto;
  }
}
@media (min-width: 1200px) {
  .home .home__grid .home__grid-container {
    width: 1000px;
  }
  .home .home__grid .home__grid-container .home__grid-row .home__grid-left-column {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    max-height: 100%;
  }
  .home .home__grid .home__grid-container .home__grid-row .home__grid-right-column .home__clients-wrapper {
    width: 700px;
    overflow: hidden;
  }
  .home .home__grid .home__grid-container .home__grid-row .home__grid-right-column .home__clients-wrapper .marquee {
    position: relative;
    width: 100%;
    overflow: hidden;
  }
  .home .home__grid .home__grid-container .home__grid-row .home__grid-right-column .home__clients-wrapper .marquee .marquee__track {
    display: flex;
    width: 200%;
    animation: marquee 60s linear infinite;
  }
  .home .home__grid .home__grid-container .home__grid-row .home__grid-right-column .home__clients-wrapper .marquee .marquee__track .hero__logos {
    width: 70%;
    height: auto;
    flex-shrink: 0;
  }
  @keyframes marquee {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(-50%);
    }
  }
  @keyframes marquee {
    from {
      transform: translateX(0);
    }
    to {
      transform: translateX(-50%);
    }
  }
}
.fixed-note {
  position: fixed;
  bottom: 40px;
  left: 40px;
  font-size: 12px;
  color: #232323;
  opacity: 0.8;
  z-index: 1500;
  font-weight: 300;
  letter-spacing: 0.5px;
  pointer-events: none;
}

.home__main {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 90vh;
  text-align: center;
}

.contact__header {
  background-color: #232323;
  color: #f8f9fa;
}

.header__link-contact, .header__brand-contact {
  color: #f8f9fa !important;
}

.main__contact {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  margin: 0 auto;
  padding: 2rem 1rem;
  background-color: #232323;
}
.main__contact .contact__title {
  font-size: 32px;
  color: #f8f9fa;
}

.footer__link-contact {
  color: #f8f9fa !important;
}

.contact__grid-column .contact__links {
  display: flex;
  justify-content: center;
  gap: 10px;
}
.contact__grid-column .contact__links .contact__links-item {
  color: #f8f9fa;
}
.contact__grid-column .contact__links .contact__links-item:hover {
  color: #f8f9fa;
  transition: all 0.4s ease-out;
}
.contact__grid-column .contact__links .contact__links-divider {
  color: #898989;
}

.contact__footer {
  background-color: #232323 !important;
}
.contact__footer .contact-footer__menu-item {
  color: #f8f9fa !important;
}

.header__link-contact--active,
.header__link-contact:focus {
  color: #f8f9fa !important;
  font-weight: 700;
}
.header__link-contact--active::after,
.header__link-contact:focus::after {
  content: "•";
  position: absolute;
  left: 50%;
  bottom: -8px;
  transform: translateX(-50%);
  font-size: 14px;
  color: #f8f9fa !important;
}

@media (min-width: 767.9px) {
  .main__contact .contact__title {
    font-size: 68px;
    font-size: 76px;
  }
}
@media (min-width: 991.9px) {
  .main__contact .contact__title {
    font-size: 78px;
    line-height: 86px;
  }
}
.index__grid {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  text-align: center;
  padding: 0 20px;
}
.index__grid .index__container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.index__grid .index__container .index__title {
  font-family: "Karla", sans-serif;
  font-size: 48px;
  position: relative;
  display: inline-block;
  margin-bottom: 30px;
}
.index__grid .index__container .index__title .index__name .name--light {
  font-weight: 400;
}
.index__grid .index__container .index__title .index__name .name--bold {
  font-weight: 800;
}
.index__grid .index__container .index__title .index__underline {
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 0%;
  height: 3px;
  background: linear-gradient(45deg, #00c3bd, #ff007b);
  border-radius: 2px;
  transition: width 1.2s ease;
}
.index__grid .index__container .index__title .index__underline.draw {
  width: 100%;
}
.index__grid .index__container .index__buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}
.index__grid .index__container .index__buttons .index__link {
  position: relative;
  background-color: #f8f9fa;
  border: 1px solid #232323;
  border-radius: 50px;
  padding: 8px 24px;
  text-decoration: none;
  color: #232323;
  font-weight: 600;
  font-size: 12px;
  text-align: center;
  text-transform: uppercase;
  transition: all 0.3s ease;
}
.index__grid .index__container .index__buttons .index__link::after {
  content: attr(data-hover);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  color: #c60053;
  font-weight: 600;
  font-size: 12px;
  transition: opacity 0.3s ease;
  pointer-events: none;
}
.index__grid .index__container .index__buttons .index__link:hover {
  color: transparent;
  border-color: #c60053;
}
.index__grid .index__container .index__buttons .index__link:hover::after {
  opacity: 1;
}
.index__grid .index__container .index__buttons .index__link:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(198, 0, 83, 0.3);
}

/* Tablet / Desktop */
@media (min-width: 767.9px) {
  .index__title {
    font-size: 80px !important;
  }
}
.about__grid-container {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  max-width: 100vw;
  align-items: center;
}

.about__subtitle {
  font-weight: 400;
  font-size: 12px;
  text-align: center;
}

.about__subheadline {
  font-size: 18px;
  line-height: 24px;
  font-weight: 400;
  margin-bottom: 24px;
}

.about__quote-icon {
  color: #c60053;
  font-size: 24px;
}

.about__grid-row {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.about__image {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

@media (min-width: 767.9px) {
  .about__main {
    padding-top: 48px !important;
  }
  .about__grid-row {
    flex-direction: row;
    align-items: center;
  }
  .quote {
    align-self: start;
  }
}
@media (min-width: 991.9px) {
  .about__grid-row {
    flex-direction: row;
    align-items: center;
  }
  .about__grid-left-column {
    flex: 1;
    max-width: 33.3333%;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .about__grid-right-column {
    flex: 2;
    max-width: 66.6667%;
    padding-left: 2rem;
  }
}
@media (min-width: 1200px) {
  .about__grid-container {
    padding-left: 20px;
    padding-left: 20px;
  }
  .about__image {
    width: 100%;
  }
}
@media (min-width: 768px) {
  .main__subpages .subpage__margins {
    padding: 0px 50px 0px 50px;
  }
  .main__subpages .subpage__margins .works__subpage--body-copy {
    font-size: 16px;
  }
  .main__subpages .subpage__margins .works__subpage--info {
    font-size: 14px;
  }
}
@media (min-width: 1200px) {
  .main__subpages .works__subpages {
    margin-top: 40px;
    padding-bottom: 16px;
  }
  .main__subpages .works__subpages .subpage__margins {
    padding: 0px 180px 0px 180px;
  }
}
.footer__nav {
  display: flex;
  position: fixed;
  flex-direction: row;
  text-align: center;
  justify-content: center;
  bottom: 0;
  width: 100%;
  background-color: #f8f9fa;
  z-index: 1000;
}
.footer__nav .footer__menu {
  list-style-type: none;
  display: flex;
  align-items: center;
  margin: 0;
  padding: 10px;
}
.footer__nav .footer__menu .footer__menu-item {
  padding: 0;
  margin: 0;
  padding: 0px 10px 0px 10px;
  font-size: 14px;
}
.footer__nav .footer__menu .footer__menu-item .footer__text {
  color: #232323;
  margin: 0;
}
.footer__nav .footer__menu .footer__menu-item .footer__link {
  color: #232323;
}
.footer__nav .footer__menu .footer__menu-item .footer__link:hover {
  color: #c60053;
  transition: all 0.2s ease-out;
}

.skills .skills__grid-container .skills__grid-row .skills__second-column .margin_top, .skills .skills__grid-container .skills__grid-row .skills__third-column .margin_top {
  padding-top: 12px;
}

@media (min-width: 768px) {
  .skills .skills__grid-container .skills__grid-row .skills__second-column .margin_top, .skills .skills__grid-container .skills__grid-row .skills__third-column .margin_top {
    padding-top: 0px;
  }
}
.golden-box {
  background-color: rgba(255, 193, 7, 0.1);
  border: 1px solid #ffc107;
  box-shadow: 4px 4px 8px 0px rgb(217, 212, 198);
  padding: 20px;
  border-radius: 8px;
  margin-bottom: 15px;
}

.gray-box {
  background-color: rgba(233, 236, 239, 0.7);
  border: 1px solid #b6bfc7;
  box-shadow: 4px 4px 8px 0px rgb(217, 212, 198);
  padding: 20px;
  border-radius: 8px;
}

.skills_item--mastered-star {
  color: #ffc107;
  font-size: 12px;
}

.skills__legend {
  display: flex;
  flex-direction: row;
  justify-content: center;
}
.skills__legend .legend__item {
  width: 200px;
  justify-content: center;
}
.skills__legend .legend-color {
  display: inline-block;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background-color: gray;
}
.skills__legend .mastered {
  background-color: rgba(255, 193, 7, 0.2);
  border: 1px solid #ffc107;
}
.skills__legend .well-known {
  background-color: #e9ecef;
  border: 1px solid #adb5bd;
}
.skills__legend span {
  font-size: 14px;
  color: #232323;
}

/*# sourceMappingURL=style.css.map */
