@charset "UTF-8";
/* Reseteamos los margin y paddings de todas las etiquetas */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  border: 0;
  box-sizing: border-box;
  vertical-align: baseline;
}

*::before,
*::after {
  display: block;
}

/* Evitamos problemas con las imagenes */
img,
picture,
video,
iframe,
figure {
  max-width: 100%;
  width: 100%;
  display: flex;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
}

/* Reseteamos los enlaces para funcionar como cajas... */
a {
  display: block;
  text-decoration: none;
  color: inherit;
  font-size: inherit;
}

/* ... excepto los que se encuentran en párrafos */
p a {
  display: inline;
}

/* Quitamos los puntos de los <li> */
li {
  list-style-type: none;
}

/* (Opcional) Configuramos anclas suaves */
html {
  scroll-behavior: smooth;
}

/* Desactivamos estilos por defecto de las principales etiquetas de texto */
h1,
h2,
h3,
h4,
h5,
h6,
p,
span,
a,
strong,
blockquote,
i,
b,
u,
em {
  font-size: inherit;
  font-weight: inherit;
  font-style: inherit;
  text-decoration: none;
  color: inherit;
}

/* Evitamos problemas con los pseudoelementos de quotes */
blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

/* (Opcional) Configuramos el texto que seleccionamos */
/* ::selection {
  background-color: var(--negro);
  color: var(--blanco);
} */
/* Nivelamos problemas de tipografías y colocación de formularios */
form,
input,
textarea,
select,
button,
label {
  font-family: inherit;
  font-size: inherit;
  -webkit-hyphens: auto;
          hyphens: auto;
  background-color: transparent;
  color: inherit;
  display: block;
  /* (Opcional) */
  /* appearance: none; */
}

/* Reseteamos las tablas */
table,
tr,
td {
  border-collapse: collapse;
  border-spacing: 0;
}

/* Evitamos problemas con los SVG */
svg {
  width: 100%;
  display: block;
  fill: currentColor;
}

/* Configuramos la tipografía para toda la web */
body {
  min-height: 100vh;
  font-size: 100%;
  /* (Opcional) */
  -webkit-hyphens: auto;
          hyphens: auto;
  /* (Opcional) */
  font-smooth: always;
  /* (Opcional) */
  -webkit-font-smoothing: antialiased;
  /* (Opcional) */
  -moz-osx-font-smoothing: grayscale;
  /* (Opcional) */
  overflow-x: hidden;
}

/*---------- Font.Family ----------*/
/* font-family: 'Alegreya', serif; */
/* font-family: 'Philosopher', sans-serif; */
/*---------- Colores ----------*/
/* $color: (
  "primario": #0d0d0d,
  "secundario": #262626,
  "terciario": #2e012e,
  "cuarto": #800080,
  "quinto": #a6a6a6,
  "sexto": #f7f4f4,
); */
/* 
Primario	Púrpura fuerte	#7F00FF	Botones, enlaces, títulos destacados
Secundario	Lila suave	#B388EB	Hover, detalles decorativos, tarjetas
Fondo	Negro profundo	#121212	Fondo principal
Texto principal	Blanco humo	#F2F2F2	Texto general sobre fondo oscuro
Acento	Cian eléctrico	#00FFFF	Íconos, subrayado en enlaces, microdetalles 
*/
.circulos {
  background-color: #7F00FF;
  transform: scale(1.2);
  left: -10%;
  top: -10%;
  width: 150%;
  height: 150%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1;
  overflow: hidden;
  filter: blur(60px);
  animation: svg 70s linear infinite alternate;
}
body.light .circulos {
  transition: all 0.5s ease;
}
body.light .circulos .circulos__svg .path {
  fill: #F2F2F2;
  transition: all 0.5s ease;
}
.circulos .circulos__svg {
  position: absolute;
  width: 60%;
  height: 60%;
  animation: svg 50s linear infinite alternate;
}
.circulos .circulos__svg .path {
  fill: #121212;
}
.circulos .svg1 {
  top: 0;
  left: 0;
}
.circulos .svg2 {
  top: 0;
  right: 0;
}
.circulos .svg3 {
  bottom: 0;
  left: 0;
}
@keyframes svg {
  from {
    transform: rotate(0deg) scale(1.5);
  }
  to {
    transform: rotate(360deg) scale(2);
  }
}

.cursor {
  position: fixed;
  width: 75px;
  height: 75px;
  position: absolute;
  z-index: 4;
  pointer-events: none;
  transition: none;
}
.cursor .cursor__styles {
  display: block;
  width: 100%;
  height: 100%;
  border: 2px solid #00FFFF;
  border-radius: 50%;
  transition: all 0.3s ease-out;
}
body.light .cursor .cursor__styles {
  border: 2px solid #121212;
}

.isClicked .cursor__styles {
  transform: scale(0.5) translateZ(0);
}

.isHiden {
  opacity: 0;
}

.isLinckHover {
  mix-blend-mode: difference;
}
.isLinckHover .cursor__styles {
  transform: scale(0.5) translateZ(0);
  background-color: #F2F2F2;
}

.isTextHover {
  mix-blend-mode: difference;
}
.isTextHover .cursor__styles {
  background-color: #F2F2F2;
}

.customCursorActive * {
  cursor: none;
}

body::-webkit-scrollbar {
  display: none;
}

.header {
  width: 100%;
  min-height: 5rem;
  padding: 0 clamp(0.5rem, 5vw, 10rem);
  position: fixed;
  z-index: 3;
  background: rgba(38, 38, 38, 0);
  -webkit-backdrop-filter: blur(4px);
          backdrop-filter: blur(4px);
  display: flex;
  flex-flow: row nowrap;
  justify-content: center;
  align-items: center;
}
.header .header__container {
  width: 80%;
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-between;
  align-items: center;
}
.header .header__container .header__logo {
  font-family: Alegreya;
  word-spacing: -0.5rem;
}
body.light .header .header__container .header__logo {
  color: #121212;
}
.header .header__container .header__logo .logo__part {
  font-size: clamp(1.8rem, 2.5vw, 3rem);
  color: #00FFFF;
}
.header .header__container .header__logo .logo__dot {
  font-size: clamp(2.8rem, 3.5vw, 4rem);
  color: #B388EB;
  transform: translateY(-0.4rem);
}
@media (min-width: 0px) and (max-width: 768px) {
  .header .header__container .header__nav {
    display: none;
  }
}
.header .header__container .header__nav .nav__list {
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-around;
  align-items: center;
}
.header .header__container .header__nav .nav__list .nav__item {
  margin: clamp(0.5rem, 1vw, 0.8rem);
  padding: 0.8rem;
  font-size: clamp(1.1rem, 1.3vw, 2.5rem);
}
.header .header__container .header__nav .nav__list .nav__item:hover .nav__link::after {
  transform-origin: left;
  transform: scaleX(1);
}
.header .header__container .header__nav .nav__list .nav__item .nav__link {
  color: #F2F2F2;
  position: relative;
}
.header .header__container .header__nav .nav__list .nav__item .nav__link::after {
  content: "";
  position: absolute;
  background-color: #00FFFF;
  width: calc(100% + 0.8rem);
  height: 4px;
  transition: transform 0.5s ease;
  transform-origin: left;
  transform: scaleX(0);
}
body.light .header .header__container .header__nav .nav__list .nav__item .nav__link {
  color: #121212;
  border: 2px solid #121212;
}
.header .header__switch {
  background-color: #B388EB;
  opacity: 0.5;
  position: relative;
  border-radius: 100px;
  position: absolute;
  right: 3rem;
  display: flex;
  flex-flow: row nowrap;
  justify-content: center;
  align-items: center;
}
.header .header__switch::after {
  content: "";
  display: block;
  width: 28px;
  height: 28px;
  background-color: #3d3d3d;
  position: absolute;
  top: 0;
  left: unset;
  right: 0;
  border-radius: 50%;
  transition: all 0.3s ease-in-out;
  box-shadow: 0 0 2px 0 rgba(0, 0, 0, 0.2);
}
.header .header__switch.active {
  background-color: #00FFFF;
}
.header .header__switch.active::after {
  right: unset;
  left: 0;
}
.header .header__switch.active .switch__span {
  color: #F2F2F2;
}
.header .header__switch .switch__span {
  width: 28px;
  height: 28px;
  line-height: 28px;
  display: block;
  color: #00FFFF;
}

.main__hero {
  min-height: 100vh;
  width: 80%;
  font-family: Alegreya;
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
  align-items: center;
}
@media (min-width: 0px) and (max-width: 1279px) {
  .main__hero {
    display: flex;
    flex-flow: column wrap;
    justify-content: center;
    align-items: center;
  }
}
.main__hero .hero__description {
  max-width: clamp(30rem, 40vw, 50rem);
}
.main__hero .hero__description .hero__title {
  color: #B388EB;
  font-size: clamp(2.5rem, 5vw, 3rem);
  line-height: 1;
  white-space: nowrap;
}
@media (min-width: 0px) and (max-width: 1279px) {
  .main__hero .hero__description .hero__title {
    white-space: normal;
    text-align: center;
  }
}
body.light .main__hero .hero__description .hero__title {
  color: #121212;
}
.main__hero .hero__description .hero__text {
  color: #F2F2F2;
  font-size: clamp(1.3rem, 2vw, 2.5rem);
  margin-top: 2rem;
}
.main__hero .hero__description .hero__text span {
  color: #00FFFF;
}
@media (min-width: 0px) and (max-width: 1279px) {
  .main__hero .hero__description .hero__text {
    text-align: center;
  }
}
body.light .main__hero .hero__description .hero__text {
  color: #121212;
}
.main__hero .hero__description .hero__actions {
  margin-top: 2rem;
  gap: 2rem;
  display: flex;
  flex-flow: row wrap;
  justify-content: start;
  align-items: center;
}
@media (min-width: 0px) and (max-width: 1279px) {
  .main__hero .hero__description .hero__actions {
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
    align-items: center;
  }
}
.main__hero .hero__description .hero__actions .hero__link {
  display: inline-block;
  text-decoration: none;
  color: #F2F2F2;
  background-color: #7F00FF;
  font-size: 24px;
  padding: 0.5rem 1rem;
  border-radius: 0.25rem;
}
.main__hero .hero__description .hero__media {
  margin-top: 2rem;
  gap: 2rem;
  display: flex;
  flex-flow: row wrap;
  justify-content: start;
  align-items: center;
}
@media (min-width: 0px) and (max-width: 1279px) {
  .main__hero .hero__description .hero__media {
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
    align-items: center;
  }
}
.main__hero .hero__description .hero__media .hero__svg {
  fill: #F2F2F2;
  height: 2rem;
}
.main__hero .hero__image {
  width: clamp(15rem, 30vw, 25rem);
  height: clamp(15rem, 30vw, 25rem);
  border-radius: 50%;
  border: 1px solid #B388EB;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to bottom, black 50%, transparent 100%);
          mask-image: linear-gradient(to bottom, black 50%, transparent 100%);
}
@media (min-width: 0px) and (max-width: 1279px) {
  .main__hero .hero__image {
    margin-top: 5rem;
    display: none;
  }
}
.main__hero .hero__image .hero__img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

body {
  background-color: #7F00FF;
  -webkit-hyphens: none;
          hyphens: none;
}
body .main {
  position: relative;
  z-index: 2;
  padding: 0 clamp(0.5rem, 5vw, 10rem);
  display: flex;
  flex-flow: column wrap;
  justify-content: center;
  align-items: center;
}
body .main .main__about {
  width: 80%;
  min-height: 50vh;
  margin-top: 4rem;
  display: flex;
  flex-flow: row nowrap;
  justify-content: flex-start;
  align-items: center;
}
@media (min-width: 0px) and (max-width: 1279px) {
  body .main .main__about {
    display: flex;
    flex-flow: column wrap;
    justify-content: center;
    align-items: center;
  }
}
body .main .main__about .about__figure {
  width: 100%;
  display: flex;
  flex-flow: column nowrap;
  justify-content: center;
  align-items: center;
}
body .main .main__about .about__figure .about__img {
  width: clamp(15rem, 30vw, 25rem);
  border-radius: 1rem;
}
body .main .main__about .about__info {
  width: 100%;
  display: flex;
  flex-flow: column wrap;
  justify-content: center;
  align-items: center;
}
body .main .main__about .about__info .about__title {
  font-family: Alegreya;
  color: #00FFFF;
  font-size: clamp(2rem, 5vw, 3rem);
  text-align: start;
}
body.light body .main .main__about .about__info .about__title {
  color: #121212;
}
body .main .main__about .about__info .about__text {
  max-width: 40rem;
  font-family: Alegreya;
  color: #F2F2F2;
  font-size: 1.5rem;
  line-height: 1.5;
}
body.light body .main .main__about .about__info .about__text {
  color: #121212;
}
@media (min-width: 0px) and (max-width: 1279px) {
  body .main .main__about .about__info .about__text {
    text-align: center;
  }
}
body .main .main__skills {
  width: 80%;
  min-height: 40vh;
  margin-top: 4rem;
  font-family: Alegreya;
}
body .main .main__skills .skills__title {
  color: #00FFFF;
  font-size: clamp(2rem, 5vw, 3rem);
  text-align: center;
}
body.light body .main .main__skills .skills__title {
  color: #121212;
}
body .main .main__skills .skills__figure {
  width: 100%;
  margin-top: 3rem;
  gap: 1.5rem;
  display: flex;
  flex-flow: row wrap;
  justify-content: space-around;
  align-items: center;
}
@media (min-width: 0px) and (max-width: 780px) {
  body .main .main__skills .skills__figure {
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
    align-items: center;
  }
}
body .main .main__skills .skills__figure .skills__img {
  width: clamp(4rem, 10vw, 100px);
}
body .main .main__works {
  width: 80%;
  height: 100%;
  min-height: 50vh;
  margin-top: 4rem;
  display: flex;
  flex-flow: column wrap;
  justify-content: center;
  align-items: center;
}
@media (min-width: 0px) and (max-width: 1279px) {
  body .main .main__works {
    grid-template-columns: 1fr;
  }
}
body .main .main__works .works__info {
  display: flex;
  flex-flow: column wrap;
  justify-content: flex-start;
  align-items: center;
}
body .main .main__works .works__info .works__title {
  font-family: Alegreya;
  color: #00FFFF;
  font-size: clamp(2rem, 5vw, 3rem);
}
body.light body .main .main__works .works__info .works__title {
  color: #121212;
}
@media (min-width: 0px) and (max-width: 480px) {
  body .main .main__works .works__info .works__title {
    font-size: 2rem;
  }
}
@media (min-width: 481px) and (max-width: 768px) {
  body .main .main__works .works__info .works__title {
    font-size: 2.5rem;
  }
}
body .main .main__works .works__info .works__text {
  font-family: Alegreya;
  color: #F2F2F2;
  font-size: 1.5rem;
  line-height: 1.5;
}
body.light body .main .main__works .works__info .works__text {
  color: #121212;
}
@media (min-width: 0px) and (max-width: 1279px) {
  body .main .main__works .works__info .works__text {
    text-align: center;
  }
}
body .main .main__works .works__cards {
  width: 100%;
  margin-top: 3;
  height: auto;
  min-height: 700px;
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  align-items: flex-start;
  gap: 2rem;
}
@media (min-width: 0px) and (max-width: 768px) {
  body .main .main__works .works__cards {
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
    align-items: center;
  }
}
body .main .main__works .works__cards .card {
  color: white;
  background-size: cover;
  background-position: center;
  padding: 5rem 0 0;
  max-width: 350px;
  border-radius: 0.5rem;
  overflow: hidden;
  transition: transform 0.3s ease;
}
body .main .main__works .works__cards .card:hover {
  transform: scale(1.05);
}
body .main .main__works .works__cards .card:hover .card__content {
  transform: translateY(0);
  transition-delay: 0.5s;
}
body .main .main__works .works__cards .card:hover .card__content > *:not(.card__header) {
  opacity: 1;
  transition: opacity 0.3s linear;
  transition-delay: 0.6s;
}
body .main .main__works .works__cards .card:hover .card__content .card__header .card__title,
body .main .main__works .works__cards .card:hover .card__content .card__header .card__title::after {
  transform: scaleX(1);
}
body .main .main__works .works__cards .card .card__content {
  padding: 1.5rem;
  background: black;
  opacity: 0.9;
  font-family: Alegreya;
  color: #F2F2F2;
  font-size: 1rem;
  line-height: 1.5;
  min-height: 80px;
  transform: translateY(65%);
  transition: transform 0.3s ease;
}
body .main .main__works .works__cards .card .card__content > *:not(.card__header) {
  opacity: 0;
}
body .main .main__works .works__cards .card .card__content .card__header {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
  align-items: center;
}
body .main .main__works .works__cards .card .card__content .card__header .card__title {
  position: relative;
  width: -moz-max-content;
  width: max-content;
  margin-bottom: 1rem;
  line-height: 1.5;
  font-family: Philosopher;
  color: #00FFFF;
  font-size: 1.5rem;
}
body .main .main__works .works__cards .card .card__content .card__header .card__title::after {
  content: "";
  position: absolute;
  width: calc(100% + 1.5rem);
  height: 4px;
  left: -1.5rem;
  bottom: -5px;
  background-color: #7F00FF;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
body .main .main__works .works__cards .card .card__content .card__header .card__icons {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
  align-items: start;
}
body .main .main__works .works__cards .card .card__content .card__header .card__icons img {
  width: clamp(1.5rem, 5vw, 2rem);
}
body .main .main__works .works__cards .card .card__content .card__button {
  display: inline-block;
  text-decoration: none;
  color: #F2F2F2;
  background-color: #7F00FF;
  padding: 0.5rem 1rem;
  border-radius: 0.25rem;
  margin-top: 2rem;
}

section {
  scroll-margin-top: 80px;
}

.main__contact {
  background-color: rgba(38, 38, 38, 0.5803921569);
  -webkit-backdrop-filter: blur(4px);
          backdrop-filter: blur(4px);
  padding: 2rem;
  width: 80%;
  margin-top: 4rem;
  gap: 1rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}
.main__contact .contact__info .contact__title {
  font-size: 2rem;
  color: #00FFFF;
  margin-bottom: 1rem;
}
.main__contact .contact__info .contact__socialmedia {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: start;
  justify-content: flex-start;
}
.main__contact .contact__info .contact__socialmedia .socialmedia__item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.main__contact .contact__info .contact__socialmedia .socialmedia__item .socialmedia__link {
  text-decoration: none;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.main__contact .contact__info .contact__socialmedia .socialmedia__item .socialmedia__link .socialmedia__svg {
  color: #B388EB;
  width: 2.5rem;
  height: 2.5rem;
}
.main__contact .contact__info .contact__socialmedia .socialmedia__item span {
  font-size: clamp(0.7rem, 1.5vw, 1.2rem);
  color: #F2F2F2;
}
.main__contact .contact__form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: start;
  justify-content: flex-start;
}
.main__contact .contact__form input,
.main__contact .contact__form textarea {
  background-color: rgba(218, 210, 210, 0.0941176471);
  width: 100%;
  resize: none;
  transition: border-bottom 0.2s;
  padding: 0.5rem;
  margin-bottom: 1rem;
  border: none;
  color: #F2F2F2;
  font-size: 1rem;
}
.main__contact .contact__form input:focus,
.main__contact .contact__form textarea:focus {
  outline: none;
  border-bottom: 2px solid #B388EB;
}
.main__contact .contact__form input::-moz-placeholder, .main__contact .contact__form textarea::-moz-placeholder {
  color: rgba(255, 255, 255, 0.753);
}
.main__contact .contact__form input::placeholder,
.main__contact .contact__form textarea::placeholder {
  color: rgba(255, 255, 255, 0.753);
}
.main__contact .contact__form textarea {
  field-sizing: content;
  min-height: 4rem;
}
.main__contact .contact__form button {
  width: 100%;
  background-color: #7F00FF;
  color: #F2F2F2;
  padding: 0.5rem 1rem;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  transition: background-color 0.3s ease;
}
.main__contact .contact__form button:hover {
  background-color: #B388EB;
}

.footer {
  width: 100%;
  position: relative;
  z-index: 3;
  display: flex;
  flex-flow: row nowrap;
  justify-content: center;
  align-items: center;
}
.footer .footer__container {
  width: 80%;
  min-height: 10vh;
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-between;
  align-items: center;
}
.footer .footer__container .footer__text {
  font-family: Philosopher;
  color: #F2F2F2;
}
body.light .footer .footer__container .footer__text {
  color: #121212;
}
.footer .footer__container .footer__switch {
  background-color: #00FFFF;
  opacity: 0.9;
  position: relative;
  border-radius: 1000px;
  display: flex;
  flex-flow: row nowrap;
  justify-content: center;
  align-items: center;
}
.footer .footer__container .footer__switch::after {
  content: "";
  display: block;
  width: 40px;
  height: 40px;
  background-color: #3d3d3d;
  position: absolute;
  top: 0;
  left: unset;
  right: 0;
  border-radius: 50%;
  transition: all 0.3s ease-in-out;
  box-shadow: 0 0 2px 0 rgba(0, 0, 0, 0.2);
}
.footer .footer__container .footer__switch.active {
  background-color: #121212;
  border: 1px solid #00FFFF;
}
.footer .footer__container .footer__switch.active::after {
  right: unset;
  left: 0;
}
.footer .footer__container .footer__switch.active .switch__span {
  color: #00FFFF;
}
.footer .footer__container .footer__switch .switch__span {
  width: 40px;
  height: 40px;
  line-height: 40px;
  display: block;
  color: #121212;
}

.header__btn {
  position: fixed;
  z-index: 4;
  bottom: 3svh;
  right: 8vw;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  background: rgba(0, 255, 255, 0.5019607843);
  -webkit-backdrop-filter: blur(4px);
          backdrop-filter: blur(4px);
  display: flex;
  flex-flow: column nowrap;
  justify-content: center;
  align-items: center;
}
@media (min-width: 768px) and (max-width: 2000px) {
  .header__btn {
    display: none;
  }
}
body.light .header__btn {
  border: 2px solid #121212;
}

.header__panel {
  position: fixed;
  z-index: 3;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  transform: translateX(-100%);
  transition: all 0.5s ease;
  font-family: Alegreya;
  font-size: clamp(1.5rem, 5vw, 3rem);
  color: #F2F2F2;
  display: flex;
  flex-flow: column nowrap;
  justify-content: center;
  align-items: center;
}
@media (min-width: 768px) and (max-width: 2000px) {
  .header__panel {
    display: none;
  }
}
.header__panel.is-active {
  transform: translate(0);
}
.header__panel .panel__list {
  background: rgba(0, 0, 0, 0.8823529412);
  -webkit-backdrop-filter: blur(4px);
          backdrop-filter: blur(4px);
  width: 90svw;
  height: 80svh;
  border: 1px solid #7F00FF;
  border-radius: 12px;
  display: flex;
  flex-flow: column nowrap;
  justify-content: space-evenly;
  align-items: center;
}/*# sourceMappingURL=main.css.map */