@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap");

:root {
  --primary-color: #f5f8fd;
  --secondary-color: #f5f5f5;
  --accent-color: #4a90e2;
  --made-by: #333;

  --face: #ffc8dd /*#a29bfe*/;
  --black: #333;
  --yellow: #de775b;

  --text-color: #5c5c6a;
  --heading-color: #000;
  --button-color: #000;
  --icon-background-color: #cfdef8;
  --bg-warning: #fddd4c;
  --h4-text-color: #5c5c6a;
  --background-color: #f5f8fd /*#f7f4fa*/;
  --link-color: #000;
  --brand-icon-background-color: #fff;
  --blurry-border-carousel: #f5f8fd;
  /* Color de fondo del ícono */
  --root-bg-default: #060608 /* Fondo predeterminado */;
}

/* Tema oscuro */
.dark-theme {
  --face: #b388eb;
  --background-color: #060608;
  --text-color: #bfbfc6;
  --heading-color: #bfbfc6;
  --button-color: #bfbfc6;
  --link-color: #c8c8cf;
  --brand-icon-background-color: #1a1a23;
  --blurry-border-carousel: #060608;
  --h4-text-color: #c8c8cf;
  --made-by: #c8c8cf;
  --root-bg-default: #f5f8fd;
  /* Fondo en modo oscuro */
}

/* Aplicar los colores de las variables CSS */
body,
html {
  font-family: "Inter", sans-serif;
  color: var(--text-color);
  overflow-x: hidden;
  scroll-behavior: smooth;
  /*ttransition: background-color 0.3s ease, color 0.3s ease;*/
  /*touch-action: none;  Previene que el navegador maneje gestos como zoom */
}

html {
  background: var(--root-bg-default);
  /* Fondo aplicado a :root */
}

body {
  background-color: var(--background-color);
  margin: 0;
  overflow: hidden;
  /*transition: clip-path 1.2s ease;*/
  clip-path: circle(0% at 50% 50%);
  will-change: clip-path;
  transition: clip-path 0.8s ease;
  /* Reduce tiempo de transición para mejorar LCP */
}

h1,
h2,
h3,
.col,
.social ul {
  z-index: 6;
}

h1 {
  color: var(--heading-color);
  letter-spacing: -3px;
  font-weight: 500;
}

h2 {
  font-size: 2rem;
  margin-bottom: 2.2rem;
  color: var(--heading-color);
}

h4,
.h4 {
  font-size: 1.5rem;
  margin-bottom: 10px;
  color: var(--h4-text-color);
}

.bg-warning {
  background: var(--bg-warning) !important;

  border-radius: 50%;
}

main {
  margin-bottom: 10rem;
  padding: 0 0.4rem !important;
}

main p {
  font-size: 1.5em;
}

header {
  /*background-color: var(--primary-color);
    position: relative;*/
  width: 100%;
  z-index: 1000;
}

section {
  margin-bottom: 6.5em !important;
}

ul {
  list-style: none !important;
}

ul li {
  float: left;
}

nav {
  margin: 0 auto !important;
  /*display: flex;*/
  justify-content: space-between;
  align-items: center;
  max-width: 1222px !important;
}

.logo-container {
  align-items: center;
  flex: 1;
}

.logo {
  font-size: 1.2rem;
  font-weight: bold;
  color: var(--text-color);
}

.designer-info {
  font-size: 0.9em;
  line-height: 1.3em;
  color: var(--text-color);
  opacity: 0.7;
  text-align: center;
  flex: 1;
  /*margin-right: 40px;*/
}

.nav-links {
  display: flex;
  gap: 30px;
  align-items: center;
  flex: 1;
  justify-content: flex-end;
}

.nav-links a {
  color: var(--link-color);
  text-decoration: none;
  transition: color 0.3s ease;

  font-weight: 600;
}

.nav-links a:hover {
  color: var(--accent-color);
}

.nav-links ul {
  list-style-type: none;
  padding: 0;
  margin: 0;

  display: flex;
  gap: 3rem;
  align-items: center;
  flex: 1;
  justify-content: flex-end;
}

.nav-links ul li {
  margin-bottom: 10px;
}

.nav-links ul li a {
  color: var(--link-color);
  text-decoration: none;
  font-size: 0.9em;
  font-weight: 600;
  transition: color 0.3s ease;
}

.nav-links ul li a:hover {
  color: var(--accent-color);
}

/* Estilo para el link activo */
.nav-links ul li.current a {
  color: #de775b;
  /* Cambia este valor al color que desees */
  font-weight: bold;
  /* Opcional: para darle mayor énfasis */
}

.mobile-nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--text-color);
}

.nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.nav-overlay.active {
  display: flex;
}

.nav-overlay .nav-links {
  flex-direction: column;
  gap: 20px;
}

.nav-overlay .nav-links a {
  font-size: 1.5rem;
  color: #fff;
}

/*HERO*/
.hero {
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;

  margin-bottom: 1.5em;
  /*min-height: 60vh;*/
  z-index: 5;
  margin-top: 10em;
  background: url("original-adedd25d3935d84aa9fb71f90485c729.");
  background-repeat: no-repeat;
}

.hero-content {
  max-width: 1222px;
  margin: 0 /*auto*/;
  padding: 0;
  /*4rem*/
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.hero-title {
  font-size: 5.4rem;
  line-height: 1.2;
  letter-spacing: -2px;
  margin-bottom: 30px;
  font-weight: 500;
}

.hero-subtitle {
  font-size: 2em;
  line-height: 1.4;
  letter-spacing: -2px;
  /*margin-bottom: 4em;*/
  font-weight: 500;
}

.hello {
  font-weight: 400;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: transparent;
  color: var(--button-color);
  padding: 12px 20px;
  text-decoration: none;
  border-radius: 30px;
  transition: all 0.3s ease;
  font-size: 1rem;
  border: 1px solid var(--button-color);
  max-width: 120px;
  white-space: nowrap;
}

.cta-button:hover {
  background-color: var(--button-color);
  color: #fff;
}

.cta-button::after {
  content: "→";
  margin-left: 8px;
}

/*Carousel de iconos*/

.icons-carousel {
  height: 80px;
  margin: 1.6rem auto 6.5rem auto;
  overflow: hidden;
  position: relative;
  max-width: 1222px;
  z-index: 7;
}

.icons-carousel::before,
.icons-carousel::after {
  background: linear-gradient(
    to right,
    var(--blurry-border-carousel) 0%,
    rgba(255, 255, 255, 0) 100%
  );
  content: "";
  height: 100px;
  position: absolute;
  width: 100px;
  z-index: 2;
}

.icons-carousel::after {
  right: 0;
  top: 0;
  transform: rotateZ(180deg);
}

.icons-carousel::before {
  left: 0;
  top: 0;
}

.icons-carousel .carousel-track {
  display: flex;
  will-change: transform;
}

.icons-carousel .carousel {
  height: 4.2rem;
  width: 4.8rem;
  padding: 1rem;
  margin: auto 2.1rem;
  border-radius: 19px;
  background: var(--brand-icon-background-color);
  display: flex;
  align-items: center;
  justify-content: center;
}

.carousel img {
  height: 2.2rem;
  width: auto;
}

/*Casos de Estudios*/
.case-studies {
  z-index: 4;
}

.container

/*.blog-posts,
.case-studies*/ {
  max-width: 1222px;
  margin: 0 auto;
  /*padding: 80px auto;*/
}

.all-case-studies-grid,
.case-studies-grid {
  display: grid;
  gap: 2rem;
}

/* Estilos para pantallas grandes */
@media (min-width: 768px) {
  .all-case-studies-grid,
  .case-studies-grid {
    grid-template-columns: repeat(2, 1fr);
    /* 2 artículos por fila */
    grid-auto-flow: dense;
  }

  .all-case-studies-grid .case-study:nth-child(3) {
    grid-column: span 2;
    /* El tercer artículo ocupa las dos columnas */
  }
}

/* Estilos para pantallas móviles */
@media (max-width: 767px) {
  .all-case-studies-grid,
  .case-studies-grid {
    grid-template-columns: 1fr;
    /* 1 artículo por fila */
  }
}

.blog-posts h1:not(.hero-title),
.case-studies h1:not(.hero-title) {
}

.case-study-item {
  max-width: 1222px;
  margin-top: 7em;
}

.case-study-item h3 {
  padding: 20px;
  font-size: 1.2em;
  color: var(--heading-color);
}

.case-study {
  /*box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);*/
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.case-study-title {
  font-size: 1.5rem;
  font-weight: 600;
  line-height: normal;
  margin: 0px 0 !important;
  /*margin-bottom: 0.5rem;*/
}

.case-study-subtitle {
  /*margin-bottom: 0.5rem;*/
}

.case-study-item-title {
  font-size: 3.5rem;
  letter-spacing: -2px;
  font-weight: 600;
  line-height: normal;
  margin: 0px 0 !important;
  /*margin-bottom: 0.5rem;*/
}

.case-study-item-subtitle {
  font-size: 2rem;
  font-weight: 400;
  line-height: 5rem;
  margin: 0px 0 !important;
  /*margin-bottom: 0.5rem;*/
}

.case-study-summary {
  font-size: 1.5rem;
  margin: 2.6rem auto;
}

.case-study-image {
  border-radius: 50px;
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  /* Proporción cuadrada */
  object-fit: cover;
  /* Ajusta la imagen al contenedor sin deformarla */
}

.case-study-content {
  padding: 1.5rem 0.8rem;
}

.case-study-description {
  font-size: 1rem;
  color: #666;
}

.case-study-body {
  font-size: 1.5rem /*1rem*/;
  /*color: #666;*/
  margin: 5.8em auto;
}

.case-study-link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 0.4em;
  color: var(--text-color);
  text-decoration: none;
  /*font-weight: 600;*/
}

.case-study-link:hover {
  text-decoration: underline;
}

.arrow-icon {
  transition: transform 0.3s ease;
}

.case-study-link:hover .arrow-icon {
  transform: translateX(5px);
}

/* Grid para Cliente, Servicio, Industria, Fecha */
.case-study-details {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 20px;
  margin-bottom: 20px;
}

.case-study-details div {
  padding: 10px;
  border-radius: 5px;
}

.case-study-details div h4 {
  margin: 0 0 5px 0;
  font-size: 1em;
}

.case-study-details div p {
  margin: 0;
  font-size: 0.9em;
}

/*Work Experience*/

.work-experience {
  max-width: 1222px;
}

.work-experience-content {
  margin: 0em auto 2.8em auto;
  z-index: 5;
}

.work-experience-date {
  font-size: 1rem;
  color: #7e7e97;
}

.work-experience-title {
  color: var(--heading-color);
  font-size: 3em;
  line-height: 2.662rem;
  font-weight: 400;
}

.work-experience-description {
  margin-top: 1.6rem;
  color: var(--text-color);
  /*#5c5c6a*/
}

.categories-list ul {
  margin: 0em 0 4em 0;

  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;

  font-size: 1.125rem;
}

.categories-list a {
  text-decoration: underline;
  text-underline-offset: 1em;
}

.footer {
  max-width: 1222px;
  margin: 6em auto 3rem auto !important;
  gap: 30px;
}

.footer h1 {
  color: var(--heading-color);
  font-size: 5.563rem;
}

a.rounded-circle {
  width: 16.5rem !important;
  height: 16.5rem !important;
}

.footer .arrow-icon {
  color: var(--link-color);
  font-size: 5rem;
  display: inline-block;
  animation: tilt 2s infinite ease-in-out;
}

.border-x {
  color: var(--text-color);
}

/* Animación de inclinación de la flecha */
@keyframes tilt {
  0%,
  100% {
    transform: rotate(0deg);
  }

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

/* Transición suave de tamaño de fuente */
.footer a {
  font-weight: 400;
  text-decoration: none;
  transition:
    font-size 0.3s ease,
    background-color 0.3s ease,
    color 0.3s ease;
}

.made-by {
  position: fixed;
  bottom: 20px;
  right: 20px;
  font-size: 0.8rem;
  color: var(--made-by);
  opacity: 0.7;
}

.social ul {
  margin: 3rem auto;
  list-style: none;
}

.social ul li a {
  font-size: 1.5rem;
  line-height: 1.575rem;
  color: #86868d;
  margin-right: 2.1rem;
  padding: 0.8rem 0;
  float: left;
}

.copylefts {
  margin-bottom: 3.2em;
}

/* Estilos del interruptor de tema con iconos */
.theme-toggle {
  /*position: relative;*/

  display: flex;
  align-items: center;
  gap: 10px;
}

.theme-toggle input[type="checkbox"] {
  display: none;
}

/* Estilos clásicos de toggle switch */

.theme-toggle label {
  cursor: pointer;
  width: 60px;
  height: 30px;
  background-color: transparent;
  /* Fondo transparente */
  border: 2px solid var(--text-color);
  /* Borde para el switch */
  border-radius: 30px;
  position: relative;
  display: inline-block;
  transition:
    background-color 0.3s ease,
    border-color 0.3s ease;
  padding: 5px;
  /* Espacio suficiente para el ícono */
}

.theme-toggle label:before {
  content: "";
  position: absolute;
  top: 5px;
  left: 5px;

  background-color: #fff;
  border-radius: 50%;
  transition: transform 0.3s ease;
}

/* Cambiar posición del círculo en modo oscuro */
input[type="checkbox"]:checked + label:before {
  display: none;
  /*transform: translateX(30px);*/
}

/* Iconos dentro del toggle switch */
.theme-toggle label i {
  position: absolute;
  font-size: 1rem;
  height: 1.5rem;
  width: 1.5rem;
  top: 50%;
  text-align: center;
  transform: translateY(-50%);
  transition: opacity 0.3s ease;
  background-color: var(--icon-background-color);
  /* Color de fondo del ícono */
  border-radius: 50%;
  /* padding: auto;
    Padding suficiente para el ícono */
}

.theme-toggle label .bi-sun {
  left: 3px;
  color: var(--text-color) /*#f39c12*/;
}

.theme-toggle label .bi-moon {
  right: 3px;
  color: var(--text-color) /*#3498db*/;
  opacity: 0;
}

/* Mostrar icono de la luna cuando está activado el tema oscuro */
input[type="checkbox"]:checked + label .bi-sun {
  opacity: 0;
}

input[type="checkbox"]:checked + label .bi-moon {
  opacity: 1;
}

/* Links generales */
a {
  color: var(--link-color);
  text-decoration: none;
}

a:hover {
  text-decoration: none /*underline*/;
}

/* Estilos de links solo para la sección especificada */
.dark-theme .custom-section a {
  color: #ff8c00;
  /* Color de enlaces específico para una sección en modo oscuro */
}

/*Tooltips: Cooltips, Cursor personalizado c/Bootstrap */

#custom-cursor {
  position: absolute;
  z-index: 1080;
  display: none;
  align-items: center;
  justify-content: center;
  width: 100px;
  height: 100px;
  border: 1px solid white;
  border-radius: 50%;
  pointer-events: none;
  color: white;
  font-size: 0.9rem;
  background-color: rgba(0, 0, 0, 0.5);

  transition: transform 0.2s ease-out;
}

.lets-work {
  z-index: 88;
}

/*Paginacion*/

.MarkupPagerNav {
  clear: both;
  margin: 3em 0;
}

.MarkupPagerNav li {
  display: inline;
  list-style: none;
  margin: 0;
}

.MarkupPagerNav li a,
.MarkupPagerNav li.MarkupPagerNavSeparator {
  display: block;
  float: left;
  padding: 2px 9px;
  margin-right: 3px;
  font-weight: bold;
}

.MarkupPagerNav li.MarkupPagerNavOn a,
.MarkupPagerNav li a:hover {
  color: #fff;
  background: #db1174;
  text-decoration: none;
}

.MarkupPagerNav li.MarkupPagerNavSeparator {
  display: inline;
  color: #777;
  background: #d2e4ea;
  padding-left: 3px;
  padding-right: 3px;
}

.MarkupPagerNav li:not(li.MarkupPagerNavPrevious):not(li.MarkupPagerNavNext) {
  display: none;
  /* Ocultar los números de página */
}

/* verde:#0ade91 #0071f6  */

/*Smiley*/

svg {
  width: 100vw;
  height: 80vh;
  pointer-events: none;
  touch-action: none;
  display: block;
}

.face-animation {
  position: fixed;
  z-index: 0;
  top: 10%;
  right: 4%;
  height: 50%;
  max-height: 30vw;
  aspect-ratio: 1 / 1;
  width: auto;
  transform-origin: 50% 50%;
  user-select: none;
}

.face {
  transform-origin: center;
  transition: transform 0.2s ease-out;
}

.pupil,
.smile {
  transition: transform 0.2s ease-out;
}

/*Sol*/

.animation {
  position: absolute;
  z-index: 0;
  top: 16vh;
  right: 20%;
}

.svg-sun {
  width: 260px;
  height: 260px;

  -webkit-transform-origin: center center;
  -moz-transform-origin: 50% 50%;
  -o-transform-origin: center center;
  -ms-transform-origin: center center;
  transform-origin: 50% 50%;

  -webkit-animation:
    spin 25s linear infinite,
    sun-glow 3s 0s linear infinite;
  -moz-animation:
    spin 25s linear infinite,
    sun-glow 3s 0s linear infinite;
  -o-animation:
    spin 25s linear infinite,
    sun-glow 3s 0s linear infinite;
  -ms-animation:
    spin 25s linear infinite,
    sun-glow 3s 0s ease-in-out infinite;
  animation:
    spin 25s linear infinite,
    sun-glow 3s 0s linear infinite;
}

/* the circle element in the svg itself */
#sun {
  stroke-width: 18;
  stroke-dasharray: 2;
  stroke-dashoffset: 2;
  opacity: 1;
}

/* Responsividad */

@media (max-width: 1360px) {
  .hero-title br,
  .hero-subtitle br {
    display: none;
  }
}

@media (max-width: 1024px) {
  main,
  footer {
    margin: auto 0.2em !important;
  }

  h1 {
    font-weight: 600 !important;
  }

  header.menu {
    margin: 1.25em auto;
  }

  nav .nav-links {
    white-space: nowrap;
  }

  .hero {
    /*align-items: center;
        min-height: 68vh;*/
  }

  .hero-content {
    /*background: green;*/
  }

  .work-experience-title {
    font-size: 1.5em;
  }
}

@media (min-width: 1024px) {
  header nav {
    margin-top: 1.6em !important;
  }

  .hero {
    max-height: 42vh;
  }

  .supra-hero {
    margin-bottom: 1.5em;
    min-height: 63vh;
  }

  .hero-title,
  .footer h1 {
    font-size: 5.4em;
    line-height: 6.953rem;
  }

  .case-study-image {
    width: 100%;
    height: 34rem;
  }

  .footer {
  }
}

@media (max-width: 809px) {
  .hero {
    margin-top: 11em;
  }

  .hero-title,
  .footer h1 {
    font-size: 2.7rem;
  }

  .hero-subtitle {
    font-size: 1.6em;
  }

  .hero-content p {
    font-size: 1rem;
  }

  header.menu {
    margin: 0 auto;
    padding: 0.625em 1.25em;
    position: fixed;
    background: var(--background-color);
    /*box-shadow: 0px 10px 12px 10px var(--background-color);*/
  }

  section {
    margin-bottom: 3.8em !important;
  }

  .case-study-details {
    grid-template-columns: 1fr;
    /* 1 columna en pantallas más pequeñas */
  }

  .case-study-details div {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .theme-toggle {
    margin-bottom: 1.2rem;
  }

  .mobile-nav-toggle {
    display: block;
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    transition: transform 0.3s ease;
  }

  .designer-info {
    font-weight: 600;
    text-align: start;
    width: 90%;
    margin: 1rem 0;
  }

  nav .nav-links {
    display: none;
    position: absolute;
    top: 3.825em;
    left: 0;
    right: 0;
    background-color: var(--background-color);
    flex-direction: column;
    padding: 20px;
    gap: 15px;
    text-align: center;
    z-index: 999;
    transition: all 0.3s ease;
  }

  .nav-links a {
    font-size: 1rem;
  }

  .nav-links ul {
    width: 90%;
    gap: 0.2rem;

    padding: 0;
    margin-bottom: 1rem;
    flex-direction: column;
    align-items: flex-start;
  }

  .nav-links ul a {
    letter-spacing: -1px;
    font-weight: 400 !important;
    font-size: 1.25rem !important;
    color: var(--blurry-border-carousel);
  }

  /* Header animation */
  header.menu {
    /*background: greenyellow;*/
    transition: padding 0.5s ease;
    /* Transición suave del padding */
  }

  header.menu.expanded {
    padding-left: 2.2em;
    padding-right: 2.2em;
    /* Añadir el padding suavemente */
  }

  /* Mostrar designer-info en móviles */
  .mobile-nav-toggle.active + .designer-info {
    display: block !important;
    height: 4em;
    padding: 10px 0;
  }

  /* Mostrar los links cuando el menú está activo */
  .nav-links.active {
    display: flex;
  }

  .logo-container {
    /*background: red;*/
    width: auto;
  }

  .all-case-studies-grid,
  .case-studies-grid {
    grid-template-columns: 1fr;
  }

  a.rounded-circle {
    margin-top: 1.4rem;
    margin-bottom: -3rem;
    width: 12.5rem !important;
    height: 12.5rem !important;
  }

  .icons-carousel {
    margin-top: 3rem;
  }

  .lets-work {
    padding-bottom: 2em;
  }
}

@media (max-width: 600px) {
  #custom-cursor {
    width: 50px;
    height: 50px;
    font-size: 10px;
  }

  .animation {
    position: absolute;
    z-index: 0;
    top: 10vh;
    right: 10%;
  }

  .svg-sun {
    width: 120px;
    height: 120px;
  }
}

@media (max-width: 480px) {
  .hero-title,
  .footer h1 {
    font-size: 2.75rem;
    line-height: 3.438rem;
  }

  .cta-button {
    padding: 10px 18px;
    font-size: 0.9rem;
  }

  .work-experience-title {
    font-size: 1.5rem;
    line-height: 25.2px;
    letter-spacing: -1px;
  }
}

/* Efecto base: Los elementos comienzan ocultos y desplazados */

.slideup,
.slidedown,
.slideleft,
.slideright {
  opacity: 0;
  transition:
    opacity 0.8s ease-out,
    transform 0.8s ease-out;
}

/* Animaciones específicas */

/* Slide Up */
.slideup {
  transform: translateY(100px);
  /* Comienza desplazado hacia abajo */
}

.slideup.show {
  opacity: 1;
  transform: translateY(0);
  /* Se desliza hacia su posición original */
}

/* Slide Down */
.slidedown {
  transform: translateY(-100px);
  /* Comienza desplazado hacia arriba */
}

.slidedown.show {
  opacity: 1;
  transform: translateY(0);
  /* Se desliza hacia su posición original */
}

/* Slide Left */
.slideleft {
  transform: translateX(100px);
  /* Comienza desplazado hacia la derecha */
}

.slideleft.show {
  opacity: 1;
  transform: translateX(0);
  /* Se desliza hacia su posición original */
}

/* Slide Right */
.slideright {
  transform: translateX(-50px);
  /* Comienza desplazado hacia la izquierda */
}

.slideright.show {
  opacity: 1;
  transform: translateX(0);
  /* Se desliza hacia su posición original */
}

/* animation for the sun glowing effect */

@keyframes sun-glow {
  0% {
    fill: #f1c40f;
    stroke: #f1c40f;
  }

  50% {
    fill: #e67e22;
    stroke: #e67e22;
  }

  100% {
    fill: #f1c40f;
    stroke: #f1c40f;
  }
}

@keyframes sun-glow {
  0% {
    fill: #f1c40f;
    stroke: #f1c40f;
  }

  50% {
    fill: #e67e22;
    stroke: #e67e22;
  }

  100% {
    fill: #f1c40f;
    stroke: #f1c40f;
  }
}

@keyframes sun-glow {
  0% {
    fill: #f1c40f;
    stroke: #f1c40f;
  }

  50% {
    fill: #e67e22;
    stroke: #e67e22;
  }

  100% {
    fill: #f1c40f;
    stroke: #f1c40f;
  }
}

@keyframes sun-glow {
  0% {
    fill: #f1c40f;
    stroke: #f1c40f;
  }

  50% {
    fill: #e67e22;
    stroke: #e67e22;
  }

  100% {
    fill: #f1c40f;
    stroke: #f1c40f;
  }
}

@keyframes sun-glow {
  0% {
    fill: #f1c40f;
    stroke: #f1c40f;
  }

  50% {
    fill: #e67e22;
    stroke: #e67e22;
  }

  100% {
    fill: #f1c40f;
    stroke: #f1c40f;
  }
}

/* start spin animation */
@keyframes spin {
  100% {
    -webkit-transform: rotate(360deg);
  }
}

@keyframes spin {
  100% {
    -moz-transform: rotate(360deg);
  }
}

@keyframes spin {
  100% {
    -o-transform: rotate(360deg);
  }
}

@keyframes spin {
  100% {
    -ms-transform: rotate(360deg);
  }
}

@keyframes spin {
  100% {
    transform: rotate(360deg);
  }
}
