/* Estilos base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
  text-decoration: none;
}

body {
  min-height: 100vh;
  background: radial-gradient(circle, #e7f0fa, #d4e4fb) !important;
  background-repeat: no-repeat;
  background-size: cover;
  overflow-y: auto;
}

html {
  overflow-y: auto;
  scroll-behavior: smooth;
}


.cont_vacio{
  background: rgb(106, 247, 214);
  background: linear-gradient(0deg, rgba(110,241,211,1) 0%, #9cd4f5 100%);
  height: 100px;
}

/* Header y navegación */
.Emcabezado {
  position: fixed;
  top: 0;
  width: 100%;
  background-color: transparent;
  backdrop-filter: blur(20px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.1rem;
  transition: 0.1s;
  z-index: 1000000;
  box-shadow: 0 2px 50px #1a1a1a94;
}

/* Logo */
#logit__o {
  width: auto;
  height: 70px;
  filter: drop-shadow(0px 0px 9px rgba(255, 255, 251, 0.842));
}

#logoconf {
  padding-left: 50px;
}


.Emcabezado .logo__img{
  cursor: pointer;
}

.Emcabezado .logo__img{
  height: 20px;
  width: auto;
  transition: transform 0.3s ease;
}

.Emcabezado .logo__img:hover{
  transform: translateY(-2px);
  

}

/* Menú de navegación */
.nav__menu {
  transition: transform 0.3s ease-in-out;
}

.nav__list {
  display: flex;
  list-style: none;
  align-items: center;
}

.nav__item {
  padding: 15px;
  position: relative;
}

.nav__link {
  color: #ffffff;
  text-shadow: 2px 1px 8px #080808;
  font-weight: 600;
  font-size: 15px;
  position: relative;
  padding: 5px 0;
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav__link::before {
  content: '';
  position: absolute;
  width: 0;
  height: 3px;
  border-radius: 2px;
  background: linear-gradient(90deg, rgba(0,194,255,1) 20%, rgba(122,195,232,1) 92%);
  bottom: -5px;
  left: 50%;
  transition: width .4s, left .4s;
}

.nav__link:hover::before {
  width: 100%;
  left: 0;
}

/* Botón de menú hamburguesa */
.menu-toggle {
  display: none;
}

.menu-button {
  display: none;
  cursor: pointer;
  z-index: 1000001;
  margin-right: 20px;
  width: 60px;
  height: 60px;
  padding: 5px;
}

/* SVG Hamburger Button */
.hb {
  width: 100%;
  height: 100%;
  cursor: pointer;
}

/* Botón de cotización */
.button {
  margin-right: 60px;
}

button {
  padding: 0.7em 1em;
  background-color: #0f7efc;
  border: 2px solid #5ac1fc;
  cursor: pointer;
  border-radius: 10px;
  color: #fff;
  text-shadow: 2px 2px 5px #000000;
  font-weight: 700;
  font-size: 14px;
  transition: all 0.3s cubic-bezier(0.02, 0.01, 0.47, 1);
  box-shadow: 0 0 10px #50a1e0,
              0 0 15px #50a1e0,
              2px 0 25px #50a1e0;
}

button:hover {
  animation: sh0 0.5s ease-in-out both;
  background-color: #10e3ee;
  color: yellow;
}

@keyframes sh0 {
  0% {
  transform: rotate(0deg) translate3d(0, 0, 0);
  }

  25% {
  transform: rotate(7deg) translate3d(0, 0, 0);
  }

  50% {
  transform: rotate(-7deg) translate3d(0, 0, 0);
  }

  75% {
  transform: rotate(1deg) translate3d(0, 0, 0);
  }

  100% {
  transform: rotate(0deg) translate3d(0, 0, 0);
  }
}

button:hover span {
  animation: storm 0.7s ease-in-out both;
  animation-delay: 0.06s;
}

button::before,
button::after {
  content: '';
  position: absolute;
  right: 0;
  bottom: 0;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: #fff;
  opacity: 0;
  transition: transform 0.15s cubic-bezier(0.02, 0.01, 0.47, 1), opacity 0.15s cubic-bezier(0.02, 0.01, 0.47, 1);
  z-index: -1;
  transform: translate(100%, -25%) translate3d(0, 0, 0);
}

button:hover::before,
button:hover::after {
  opacity: 0.15;
  transition: transform 0.2s cubic-bezier(0.02, 0.01, 0.47, 1), opacity 0.2s cubic-bezier(0.02, 0.01, 0.47, 1);
}

button:hover::before {
  transform: translate3d(50%, 0, 0) scale(0.9);
}

button:hover::after {
  transform: translate(50%, 0) scale(1.1);
}

/* Media queries para responsividad */
@media screen and (max-width: 950px) {
  .menu-button {
      display: block;
  }

  .nav__menu {
      position: fixed;
      top: 0;
      right: -100%;
      width: 300px;
      height: 100vh;
      background: rgba(255, 255, 255, 0.95);
      backdrop-filter: blur(10px);
      padding: 80px 20px;
      transition: 0.5s ease-in-out;
      box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
  }

  .menu-toggle:checked ~ .nav__menu {
      right: 0;
  }

  .nav__list {
      flex-direction: column;
      align-items: flex-start;
  }

  .nav__item {
      width: 100%;
      margin: 10px 0;
  }

  .nav__link {
      color: #368fd3;
      text-shadow: none;
      font-size: 16px;
      padding: 10px;
      width: 100%;
      border-radius: 8px;
      transition: background-color 0.3s;
  }

  .nav__link:hover {
      background-color: rgba(54, 143, 211, 0.1);
  }

  .nav__link::before {
      display: none;
  }

  #cotiza {
      display: none;
  }

  lord-icon {
      position: static !important;
      width: 50px !important;
      height: 50px !important;
      padding: 0 !important;
  }
}

/* Animaciones */
@keyframes sh0 {
  0% { transform: rotate(0deg) translate3d(0, 0, 0); }
  25% { transform: rotate(7deg) translate3d(0, 0, 0); }
  50% { transform: rotate(-7deg) translate3d(0, 0, 0); }
  75% { transform: rotate(1deg) translate3d(0, 0, 0); }
  100% { transform: rotate(0deg) translate3d(0, 0, 0); }
}



.hero {
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../madera/Blog-1.-Por-donde-comenzar-para-emprender-en-el-mundo-del-corte-laser.jpg');  /*'../img/sanduchero.jpg'*/
  width: 100%;
  min-height: 78vh;
  background-size: cover;
  background-size: no-repeat;
  background-position: calc(50% - 0px);
  color: #ffffff;
  padding: 120px 0;
  text-align: center;
}


.hero-content {
  max-width: 700px;
  margin: 90px auto;
  position: absolute;
  top: 70px;
  left: 25.5%;
}

.hero h2 {
  font-size: 55px;
  font-weight: 700;
  margin-bottom: 20px;
}

.hero p {
  font-size: 20px;
  background-color: #2c2b2b;
  margin-bottom: 59px;
  opacity: 0.9;
}

.btn {
  display: inline-block;
  padding: 12px 24px;
  border: none;
  border-radius: 4px;
  font-weight: 600;
  cursor: pointer;
  /* background: linear-gradient(to right, #ff1414 0%, #0f55ee 50%, #f8bc18 50%,  #d10a0a 100% ); */
  background: linear-gradient(to right, #d10a0a 0%, #f8bc18 50%, #f8bc18 50%,  #d10a0a 100% );
  background-size: 200% 100%;
  background-position: left center;
  transition: background 1.3s ease;
  color: #e7f0fa;
}

.btn:hover {
  background-position: right center;
  color: #e7f0fa;
  transform: translateY(-2px);
}




.section-header {
  text-align: center;
  padding: 70px 0;
  margin-bottom: 0px;
}

.section-header h2 {
  font-family: "Poppins", sans-serif;
  font-size: 62px;
  font-weight: 700;
  margin-bottom: 10px;
  text-align: center;
  color: #0078B0;
  text-shadow: 2px 2px 18px #389fff86;
  z-index: inherit;
}

.section-header p {
  font-size: 21px;
  color: #464141;
}   


/*************/
#parent {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
  max-width: 1400px;
  margin: 0 auto;
  padding: 25px;
}



.item_toko{
  position: relative;
      overflow: hidden;
      aspect-ratio: 1;
      cursor: pointer;
      border-radius: 5px;
      background-color: #10e3ee;
}

.item_toko img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.215, 0.61, 0.355, 1);
  

}

.item_toko:hover img {
  transform: scale(1.2);
}

.item_toko::after{
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, transparent,  rgba(63, 121, 247, 0.63));
      cursor: pointer;
      opacity: 0;
      transition: opacity 0.3s ease;
}

.item_toko:hover::after {
  opacity: 1;
  border-radius: 5px;
}

.item_toko-title{
  position: absolute;
      bottom: 10rem;
      left: 1rem;
      color:#ffffff;
      z-index: 2;
      font-size: 1.3rem;
      font-weight: 600;
      opacity: 1;
      transform: translateY(20px);
      transition: all 0.3s ease;
      text-shadow: 2px 2px 2px #000000;
}

.item_toko:hover .item_toko-title {
  transform: translateY(25px);
}

.stroke-000000 {
  height: 15px;
  width: auto;
}

.item_toko:hover #saotome{
  position: absolute;
  bottom: 7rem;
  transform: translateY(25px);

}

/* .item_toko-title #Corazoncito{
  bottom: 8rem;
  transform: translateY(45px);
} */

.stroke-000000{
  height: 15px;
  width: auto;
}




.div1, .div2, .div3, .div4, .div5, .div6, 
.div7, .div8, .div9, .div10, .div11, .div12,
.div13, .div14, .div15, .div16, .div17, .div18 {
  border-radius: 10px;
  width: 100%;
  height: auto;
}



@media (max-width: 1024px) {
  #parent {
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(9, auto);
  }
}

/* Even on smaller screens - maintain 2 columns */
@media (max-width: 640px) {
  #parent {
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(9, auto);
  gap: 15px;
  }

  .item_toko-title{
      position: absolute;
          bottom: 7.6rem;
          left: 0.6rem;
          color:#ffffff;
          font-size: 1.2rem;
          opacity: 1;
          transform: translateY(20px);

  }
  
  .item_toko:hover .item_toko-title {
      transform: translateY(25px);
  }
  
  .stroke-000000 {
      height: 15px;
      width: auto;
  }
  
  .item_toko:hover #saotome{
      position: absolute;
      bottom: 7rem;
      transform: translateY(25px);
  
  }
}



.section-headerg {
  text-align: center;
  padding: 85px 0 70px 0;
  margin-bottom: 0px;
}

.section-headerg h2 {
  font-family: "Poppins", sans-serif;
  font-size: 62px;
  font-weight: 700;
  margin-bottom: 10px;
  text-align: center;
  color: #0078B0;
  text-shadow: 2px 2px 18px #389fff86;
  z-index: inherit;
}

.section-headerg p {
  font-size: 21px;
  color: #464141;
}   



/*COLLAGE DE IMAGENES DE STANDS */

.row{
  display: flex;
  padding: 10px;
  flex-wrap: wrap;
}

.column{
  flex: 25%;
  padding: 3px;
}

.column img{
  width: 100%;
}

.column img:hover{
  width: 100%;
  background-color: #e7fffc;
  transform: scale(1.1);
  transition: transform 0.5s;
}

.column img:active{
  transform: scale(1.0);
}

@media (max-width: 600px) {
  .column {
      flex: 50%;
  }

  .hero {
      background-size:auto;
  }

  .buttonk24{
      position: absolute;
      margin-left: -74px;
  }

  .hero-content{
      margin: 0 auto;
      position: none;
      top: 103px;
      left: 0%;
  }

  .hero h2{
      font-size: 2.8rem;
  }

  .hero-content{
      font-size: 0,2rem;
  }

  .section-header{
      padding: 29px 0 20px 0;
  }
  
  .section-header h2{
      font-size: 2.9rem;
  }

  .section-header p{
      font-size: 16px;
  }

  .section-headerg h2{
      font-size: 2.6rem;
      margin: 0 5px;
  }

  .section-headerg p{
      font-size: 16px;
      margin: 20px 10px 0 20px;
  }

  .section-headerg{
      padding: 29px 0 20px 0;
  }

  .hero p {
      font-size: 16px;
      margin: 0 7px;
      
      background-color: #2c2b2b;
      margin-bottom: 32px;
      opacity: 0.9;
  }
}

/*COLLAGE DE IMAGENES DE STANDS */

.lightbox{
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(0.4rem);
  position: fixed;
  z-index: 10000;
  top: 0;
  left: 0;
  display: flex;
  flex-flow: column ;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  opacity: 0;
  pointer-events: none;
  transition: all 0.5s ease;
}

.lightbox.isActive {
  opacity: 1;
  pointer-events: auto;
}

.lightbox .closed{
  width: 3.5rem;
  position: absolute;
  right: 10px;
  top: 14%;
  color: white;
  cursor: pointer;
  transition: all 0.5s ease;
  z-index: 1000000000000000;
}

.lightbox .closed:hover{
  transform: scale(0.95);
}

.lightbox .closed:active{
  transform: scale(1.1);
}



/* .button .svg_xf{
  position: absolute;
  right: 0;
  top: 0;
} */

.lightbox .img_grande{
  width: 90%;
  max-width: 900px;
  height: 70vh;
  background-color: orange;
  box-shadow: 0 0 1rem rgba(0, 0, 0, 0.4);
  border-radius: 1rem;
}

/* Responsive Breakpoints */


@media screen and (min-width: 370px) {
  .hero-conten{
      max-width: 700px;
      margin: 90px auto;
      position: none;
      top: 140px;
      left: 10%;
  }

  
}

@media screen and (min-width: 640px) {
  .column {
      flex: 50%;
  }

  
  
}

@media screen and (min-width: 1024px) {
  .column {
      flex: 33.333%;
  }
  
  .column img:hover {
      transform: scale(1.1);
  }
}

/*kkkkkkkkkk*/

/* From Uiverse.io by NelsonDJCR */ 
.buttonk24 {
  display: inline-block;
  transition: all 0.2s ease-in;
  position: relative;
  overflow: hidden;
  z-index: 1;
  color: #ffffff;
  padding: 0.7em 3.3em 0.7em 1.7em;
  font-size: 18px;
  border-radius: 0.5em;
  background: linear-gradient(to right, #96c93d 0%, #00b09b 50%, #00b09b 50%,  #96c93d 100% );
  background-size: 200% 100%;
  background-position: left center;
  transition: background 1.3s ease;
  border: 1px solid #e8e8e8;
  top: 40px; ;
  left: 45%;
  margin-bottom: 80px;
  
  
  box-shadow: 6px 6px 12px #c5c5c5,
              -6px -6px 12px #ffffff;
}


.buttonk24:hover {
  background-position: right center;
  color: #e7f0fa;
  transform: translateY(-2px);
}

.buttonk24 > svg {
  height: 30px;
  position: absolute;
  padding: 0px 5px;
  margin-top: -4px;
}

.buttonk24:active {
  color: #666;
  box-shadow: inset 4px 4px 12px #c5c5c5,
              inset -4px -4px 12px #ffffff;
}

.buttonk24:before {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%) scaleY(1) scaleX(1.25);
  top: 100%;
  width: 140%;
  height: 180%;
  background-color: rgba(0, 0, 0, 0.05);
  border-radius: 50%;
  display: block;
  transition: all 0.5s 0.1s cubic-bezier(0.55, 0, 0.1, 1);
  z-index: -1;
}

.buttonk24:after {
  content: "";
  position: absolute;
  left: 55%;
  transform: translateX(-50%) scaleY(1) scaleX(1.45);
  top: 180%;
  width: 160%;
  height: 190%;
  background-color: #009087;
  border-radius: 50%;
  display: block;
  transition: all 0.5s 0.1s cubic-bezier(0.55, 0, 0.1, 1);
  z-index: -1;
}

.buttonk24:hover {
  color: #ffffff;
  
}

.buttonk24:hover:before {
  top: -35%;
  
  transform: translateX(-50%) scaleY(1.3) scaleX(0.8);
}

.buttonk24:hover:after {
  top: -45%;
  
  transform: translateX(-50%) scaleY(1.3) scaleX(0.8);
}


/*-----final pie------*/
.pie_final{
  background-color: #333;
  width: 100%;
  height: 100px;
}


/* New Footer Styles */

.footer {
  background-color: #1a1a1a;
  color: #000000;
  padding: 50px 0 20px;
  margin-top: auto;
}

/*************************************/
.cont__redes{
  border-bottom: 1px solid #333;
  margin: 0 60px;
}

/* .twitter{
  z-index: 100000000;
  background-color: #0078B0;
} */

/* svg[Attributes Style] {
  height: 1.8em;
  color
} */



.wrapper {
  display: inline-flex;
  list-style: none;
  height: 120px;
  width: 100%;
  padding-top: 30px;
  font-family: "Poppins", sans-serif;
  justify-content: center;
}

.wrapper .icon {
  position: relative;
  background: #fff;
  border-radius: 50%;
  margin: 10px;
  width: 50px;
  height: 50px;
  font-size: 18px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.wrapper .tooltip {
  position: absolute;
  top: 0;
  font-size: 14px;
  background: #fff;
  color: #fff;
  padding: 5px 8px;
  border-radius: 5px;
  box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.wrapper .tooltip::before {
  position: absolute;
  content: "";
  height: 8px;
  width: 8px;
  background: #fff;
  bottom: -3px;
  left: 50%;
  transform: translate(-50%) rotate(45deg);
  transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.wrapper .icon:hover .tooltip {
  top: -45px;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.wrapper .icon:hover span,
.wrapper .icon:hover .tooltip {
  text-shadow: 0px -1px 0px rgba(0, 0, 0, 0.1);
}

.wrapper .facebook:hover,
.wrapper .facebook:hover .tooltip,
.wrapper .facebook:hover .tooltip::before {
  background: #1877f2;
  color: #fff;
}

.wrapper .twitter:hover,
.wrapper .twitter:hover .tooltip,
.wrapper .twitter:hover .tooltip::before {
  background: #000000;
  color: #fff;
}

.wrapper .instagram:hover,
.wrapper .instagram:hover .tooltip,
.wrapper .instagram:hover .tooltip::before {
  background: #e4405f;
  color: #fff;
}



/*****************************************/



/*****************************************/
.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  padding:  20px;
}

.footer-section {
  margin-bottom: 50px;
}

.footer-section .company-info{

  margin-bottom: 20px;
}

.company-info .logo {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 18px;
}

.company-info .logo img {
  width: 90%;
  height: auto;
  filter: drop-shadow(0px 0px 7px rgba(255, 255, 251, 0.842));
}

.company-info .logo h3 {
  margin: 0;
  font-size: 24px;
  color: #ff2e2e;
}

.footer-section .fas{
  line-height: 100px;
}

.ptext{
  line-height: 38px;
}

.company-info p {
  line-height: 1.6;
  color: #fafafa;
}

.contact h3 {
  color: #ff2e2e;
  margin-bottom: 20px;
}

.contact p {
  margin: 10px 0;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #cccccc;
}

.contact i {
  color: #ff2e2e;
  width: 20px;
}

.map h3 {
  color: #ff2e2e;
  margin-bottom: 20px;
}

.map-container {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
}

.footer-bottom {
  max-width: 1200px;
  margin: 40px auto 0;
  padding: 20px;
  border-top: 1px solid #333;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.social-links {
  display: flex;
  gap: 20px;
}

.social-link {
  color: #ffffff;
  font-size: 20px;
  transition: color 0.3s ease;
}

.social-link:hover {
  color: #ff2e2e;
}

.copyright {
  color: #888888;
  text-align: center;
  font-size: 14px;
  
}

/* Responsive Design */
@media (max-width: 768px) {
  .footer-content {
      grid-template-columns: 1fr;
  }

  .footer-section {
      text-align: center;
  }

  .company-info .logo {
      justify-content: center;
  }

  .contact p {
      justify-content: center;
  }
}

/*WHATSAPP*/

.btn-wsp{
  position: fixed;
  width: 65px;
  height: 65px;
  line-height: 60px;
  bottom: 30px;
  right: 30px;
  background-color: #f7f7f7;
  color: #fff;
  border-radius: 50px;
  text-align: center;
  font-size: 30px;
  box-shadow: 0 1px 10px #000000;
  z-index: 100;
}

.btn-wsp:hover{
  text-decoration: none;
  color: #000000;
  background-color: #000000;
}

.icon_color:hover{
  
  color: #fff ;
}







/* Loader styles */
#loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: white;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10000000;
  transition: opacity 0.5s ease-out;
}

.cssload-container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  width: 100vw;
}

.cssload-flex-container {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  padding: 0;
  margin: 0;
}

.cssload-flex-container li {
  padding: 19px;
  height: 188px;
  width: 188px;
  position: relative;
  text-align: center;
  list-style: none;
}

.cssload-loading-center {
  display: inline-block;
  position: absolute;
  background: #ff0000;
  height: 56px;
  width: 56px;
  left: 68px;
  top: 69px;
  transform: rotate(45deg);
  border-radius: 6px;
  animation: pulse 1.3s ease infinite;
}

.cssload-loading {
  display: inline-block;
  position: relative;
  width: 141px;
  height: 141px;
  margin-top: 6px;
  transform: rotate(45deg);
}

.cssload-loading:after,
.cssload-loading:before {
  position: absolute;
  content: '';
  height: 19px;
  width: 19px;
  display: block;
  top: 0;
  background: #ff5252;
  border-radius: 6px;
}

.cssload-loading:after {
  right: 0;
  animation: square-tr 2.6s ease infinite;
  animation-delay: 0.16s;
}

.cssload-loading:before {
  animation: square-tl 2.6s ease infinite;
  animation-delay: 0.16s;
}

.cssload-loading.cssload-two {
  position: relative;
  top: -150px;
}

.cssload-loading.cssload-two:after,
.cssload-loading.cssload-two:before {
  bottom: 0;
  top: initial;
}

.cssload-loading.cssload-two:after {
  animation: square-br 2.6s ease infinite;
  animation-direction: reverse;
}

.cssload-loading.cssload-two:before {
  animation: square-bl 2.6s ease infinite;
  animation-direction: reverse;
}

@keyframes square-tl {
  0% { transform: translate(0, 0); }
  25% { transform: translate(0, 117.5px); }
  50% { transform: translate(117.5px, 117.5px); }
  75% { transform: translate(117.5px, 0); }
}

@keyframes square-bl {
  0% { transform: translate(0, 0); }
  25% { transform: translate(0, -117.5px); }
  50% { transform: translate(117.5px, -117.5px); }
  75% { transform: translate(117.5px, 0); }
}

@keyframes square-tr {
  0% { transform: translate(0, 0); }
  25% { transform: translate(-117.5px, 0); }
  50% { transform: translate(-117.5px, 117.5px); }
  75% { transform: translate(0, 117.5px); }
}

@keyframes square-br {
  0% { transform: translate(0, 0); }
  25% { transform: translate(-117.5px, 0); }
  50% { transform: translate(-117.5px, -117.5px); }
  75% { transform: translate(0, -117.5px); }
}

@keyframes pulse {
  0%, 100% { transform: scale(1) rotate(45deg); }
  75% { transform: scale(0.25) rotate(45deg); }
}