html {
  background-color:black;
}





/* NAVBAR  */
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 0.5rem 2%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 5;
}
.header::before {
  content: "";
  top: 0;
  left: 0;
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(50px);
  z-index: -1;
}
.header::after {
  content: "";
  top: 0;
  left: -100%;
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
   skyblue,
    transparent
  );
  transition: 0.8s;
}
.header:hover::after {
  left: 100%;
}
.logo-nav {
  font-size: 1.5rem;
  color: #fff;
  text-decoration: none;
  font-weight: 700;
}





.text-container h1{
  margin: 0;
  font-size: 2.3rem;
  color: rgba(225,225,225, .01);
  background-image: url("img/logo-bg.jpg");
  background-repeat: repeat;
  -webkit-background-clip:text;
  animation: animate 30s ease-in-out infinite;
  text-align: center;
  text-transform: uppercase;
  font-weight: 700;
  -webkit-text-stroke: 0.5px rgb(245, 239, 239); /* width and color */

}

  @keyframes animate {
    0%, 100% {
      background-position: left top;
    }
    25%{
      background-position: right bottom;
     }
    50% {
      background-position: left bottom;
    }
    75% {
      background-position: right top;
    }   
}




.nav-item {
  position: relative;
  color: #fff;
  font-size: 1rem;
  font-weight: 500;
  line-height: 25px;
  letter-spacing: -0.13px;
  text-decoration: none;
  margin-left: 2.5rem;
  transition: all 0.5s ease;
}
.nav-item:hover {
  color: skyblue;
}
.icons {
  position: absolute;
  right: 5%;
  font-size: 2.3rem;
  color: #fff;
  cursor: pointer;
  display: none;
}
#check {
  display: none;
}
@media (max-width: 992px) {
  .header {
    padding: 1.3rem 5%;
  }
}
@media (max-width: 768px) {
  .icons {
    display: inline-flex;
  }

  #check:checked ~ .icons #menu-icon {
    display: none;
  }

  .icons #close-icon {
    display: none;
  }

  #check:checked ~ .icons #close-icon {
    display: block;
  }

  .navbar {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 0;
    background: rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(50px);
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
  }

  #check:checked ~ .navbar {
    height: 17.7rem;
  }

  .nav-item {
    display: block;
    font-size: 1.1rem;
    margin: 1.5rem 0;
    text-align: center;
    transform: translateY(-50px);
    opacity: 0;
    transition: all 0.3s ease;
  }

  #check:checked ~ .navbar a {
    transform: translateY(0);
    opacity: 1;
    transition-delay: calc(0.15s * var(--i));
  }
}
/* NAVBAR END  */

























/* Music */
.music-player {
  position: fixed;
  bottom: 20px;
  right: 0px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.2);
  border-radius: 5px;
  padding: 5px 10px;
  z-index: 999;
}


.fa {
  font-size: 20px;
}

/* Additional Buttons */
.action-button {
  background-color: #87CEEB;
  color: #000;
  border: none;
  padding: 10px;
  cursor: pointer;
  border-radius: 50%;
  margin-bottom: 10px;
}

/* Media Query for Button Size */
@media (max-width: 768px) {
  .music-button,
  .action-button {
      padding: 8px;
      font-size: 16px;
  }
}
/* MUSIC END */



















/* MAIN SLIDE  */
/* Your existing CSS code */
/* Header */
.large-header {
  position: relative;
  width: 100%;
  background: #333;
  overflow: hidden;
  background-size: cover;
  background-position: center center;
  z-index: 1;
}
#large-header {
  background: #000;
}
.main-title {
  position: absolute;
  margin: 0;
  padding: 0;
  color: #f9f1e9;
  text-align: center;
  top: 50%;
  left: 50%;
  -webkit-transform: translate3d(-50%, -50%, 0);
  transform: translate3d(-50%, -50%, 0);
}
.demo-1 .main-title {
  text-transform: uppercase;
  font-size: 4.2em;
  letter-spacing: 0.1em;
}
.main-title .thin {
  font-weight: 200;
}
@media only screen and (max-width: 768px) {
  .demo-1 .main-title {
    font-size: 3em;
  }
}
/* MAIN SLIDE END */















/* SCROLL  */
/* Your existing CSS code */
.red {
  background: black 
}
.blue {
  background: black 
}
.green {
  background: black 
}
.scroll-snap-card {
  height: 300px;
  width: MAX;
  scroll-snap-type: y mandatory;
  overflow: auto;
  border-radius: 10px;
  
}
.scroll-snap-card .slide {
  width: 100%;
  height: 100%;
  padding: 10%;
  scroll-snap-align: start;
  display: flex;
  align-items: center;
  justify-content: center;
}
.scroll-snap-card .slide p {

  font-size: 1em;
  color: white;
  font-weight: 700;
}
/* SCROLL END  */




/* CLIENTS */
/* Styling for the carousel container */
.carousel2 {
  width: 80%;
  overflow: hidden;
  position: relative;
  margin-left: auto;
  margin-right: auto;
}

/* Styling for the carousel items */
.carousel2-container {
  display: flex;
  transition: transform 0.5s ease;
}

.carousel2-item {
  flex: 0 0 100%;
  max-width: 300px; /* Adjust the maximum width of the boxes */
  padding: 10px;
  box-sizing: border-box;
  text-align: center;
}

/* Styling for the logo boxes */
.logo-box {
  border: 1px solid #070707;
  padding: 20px;
  background-color: #000;
  border-radius: 10px;
}

/* Styling for the client logos */
.logo-box img {
  max-width: 100%;
  height: auto;
}

/* Previous and Next buttons (optional) */
.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  padding: 10px;
  background-color: rgba(0, 0, 0, 0.5);
  color: #fff;
  border-radius: 50%;
  font-size: 18px;
  z-index: 1;
  transition: background-color 0.3s;
}

.prev:hover, .next:hover {
  background-color: rgba(0, 0, 0, 0.7);
}

/* CLIENTS END */





/* BANNER 2 */
.bannerTwo {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 65vh; /* Adjust this value as needed */
  width: 100%;
}
iframe {
  width: 100%;
  height: 35%;
}
/* BANNER 2 END */
























/* CARDS  */
/* Your existing CSS code */
/* Card section styles */
.card-section {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px; /* Adjust the spacing between cards */
  background-color: black; /* Set the background color */
  padding: 20px; /* Add padding to the section */
}
/* Rest of your card styles remain the same */
.card-container {
  width: 270px;
  height: 250px;
  position: relative;
  border-radius: 10px;
  box-shadow: 0 0px 20px skyblue;
  overflow: hidden;
  margin: 10px; /* Add margin to create space between cards */
}
.card {
  width: 100%;
  height: 100%;
  border-radius: inherit;
}
.card .front-content {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.6s cubic-bezier(0.23, 1, 0.320, 1)
}
.card .front-content p {
  font-size: 32px;
  font-weight: 700;
  opacity: 1;
  background: linear-gradient(-45deg, #3A3B3C 0%, #87CEEB 100% );
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: all 0.6s cubic-bezier(0.23, 1, 0.320, 1)
}
.card .content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 10px;
  background: linear-gradient(-45deg, #45b3e0 0%, #3A3B3C 90% );
  color: #f5f0f0;
  padding: 20px;
  line-height: 1.5;
  border-radius: 5px;
  pointer-events: auto;
  transform: translateY(-96%);
  transition: all 0.6s cubic-bezier(0.23, 1, 0.320, 1);
}
.card .content .heading {
  font-size: 32px;
  font-weight: 700;
}
.card:hover .content {
  transform: translateY(0);
}
.card:hover .front-content {
  transform: translateY(30%);
}
.card:hover .front-content p {
  opacity: 0;
}
/* CARDS END */




























/* CUBE CONTAINER */
.cubeBox{
    background-color: black;
  height:500px;
  padding:0;
}
.cube-container {
  padding:auto;
  width: 200px;
  height: 450px;
  perspective: 800px;
  margin: 5px auto;
}
.cube {
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  animation: rotate 8s infinite linear;
}
.face {
  position: absolute;
  width: 200px;
  height: 200px;
  color: rgb(214, 21, 21);
  font-size: 18px;
  text-align: center;
  line-height: 200px;
 

  opacity: 1;
  border: 2px solid;
  border-image: linear-gradient(to right, skyblue, skyblue, skyblue, skyblue, skyblue) 1;
  box-shadow: 0 0 100px skyblue;
}
.front {
  transform: translateZ(100px);
   background-image: url("img/1.png")
}
.back {
  transform: rotateY(180deg) translateZ(100px);
  background-image: url("img/2.png")
}
.right {
  transform: rotateY(90deg) translateZ(100px);
  background-image: url("img/2.png")
}
.left {
  transform: rotateY(-90deg) translateZ(100px);
  background-image: url("img/4.png")
}
.top {
  transform: rotateX(90deg) translateZ(100px);
  background-image: url("img/5.png")
}
.bottom {
  transform: rotateX(-90deg) translateZ(100px);
  background-image: url("img/4.png")
}
.cube-container:hover .cube {
  animation-play-state: paused;
}
@keyframes rotate {
  0% {
    transform: rotateX(0) rotateY(0) rotateZ(0);
  }

  100% {
    transform: rotateX(360deg) rotateY(360deg) rotateZ(360deg);
  }
}
/* CUBE CONTAINER END */
















/* PROJECT CAROUSEL */
.carousel {
  position: relative;
  z-index: 1;
  height: 75vh;
  overflow: hidden;
  pointer-events: none;
}
.carousel-item {
  --items: 10;
  --width: clamp(150px, 40vw,  300px);
  --height: clamp(200px, 40vw,  400px);
  --x: calc(var(--active) * 800%);
  --y: calc(var(--active) * 200%);
  --rot: calc(var(--active) * 120deg);
  --opacity: calc(var(--zIndex) / var(--items) * 3 - 2);
  overflow: hidden;
  position: absolute;
  z-index: var(--zIndex);
  width: var(--width);
  height: var(--height);
  margin: calc(var(--height) * -0.5) 0 0 calc(var(--width) * -0.5);
  border-radius: 10px;
  top: 50%;
  left: 50%;
  user-select: none;
  transform-origin: 0% 100%;
  box-shadow: 0 10px 50px 10px rgba(0, 0, 0, .5);
  background: black;
  pointer-events: all;
  transform:  translate(var(--x), var(--y)) rotate(var(--rot)) ;
  transition: transform .8s cubic-bezier(0, 0.02, 0, 1);
}
.carousel-box {
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition: opacity .8s cubic-bezier(0, 0.02, 0, 1);
    opacity: var(--opacity);
    font-family: 'Orelo-sw-db', serif;
    
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    border: 4px solid skyblue;

    &:before {
      content: '';
      position: absolute;
      z-index: 1;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(to bottom, rgba(0, 0, 0, .3), rgba(0, 0, 0, 0) 30%, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, .5));
    }
  }

  .title1 {
    position: absolute;
    z-index: 1;
    color: #fff;
    bottom: 20px;
    left: 20px;
    transition: opacity .8s cubic-bezier(0, 0.02, 0, 1);
    font-size: clamp(20px, 3vw, 30px);
    text-shadow: 0 4px 4px rgba(0, 0, 0, .1);
    font-weight: bold;
  }

  .num {
    position: absolute;
    z-index: 1;
    color: #fff;
    top: 10px;
    left: 20px;
    transition: opacity .8s cubic-bezier(0, 0.02, 0, 1);
    font-size: clamp(20px, 10vw, 80px);
  }

  img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
  }
}
.layout {
  position: absolute;
  z-index: 0;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: auto;

  &:before {
    content: '';
    position: absolute;
    z-index: 1;
    top: 0;
    left: 90px;
    width: 10px;
    height: 100%;
    border: 1px solid #fff;
    border-top: none;
    border-bottom: none;
    opacity: .15;
  }

  .box {
    position: absolute;
    bottom: 0;
    left: 30px;
    color: #fff;
    transform-origin: 0% 10%;
    transform: rotate(-90deg);
    font-size: 9px;
    line-height: 1.4;
    text-transform: uppercase;
    opacity: .4;
  }
}

.logo {
  position: absolute;
  z-index: 2;
  top: 28px;
  right: 28px;
  width: 30px;
  height: 30px;
  background: #fff;
  border-radius: 50%;
  opacity: .5;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: 'Orelo-sw-db', serif;
  pointer-events: all;
  color: black;
  text-decoration: none;
  font-size: 20px;
  overflow: hidden;
  padding-bottom: .1em;
}

  a {
    display: inline-block;
    margin-left: 3px;
  }

  svg {
    --fill: #fff;
    width: 35px;
    height: 35px;
  }

.cursor {
  position: fixed;
  z-index: 10;
  top: 0;
  left: 0;
  --size: 40px;
  width: var(--size);
  height: var(--size);
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .2);
  margin: calc(var(--size) * -0.5) 0 0 calc(var(--size) * -0.5);
  transition: transform .85s cubic-bezier(0, 0.02, 0, 1);
  display: none;
  pointer-events: none;
  
  @media (pointer: fine) {
    display: block;
  }
}
.cursor2 {
  --size: 2px;
  transition-duration: .7s;
}
@font-face {
  font-family: 'Orelo-sw-db';
  font-weight: inherit;
  font-style: inherit;
}
/* PROJECT CAROUSEL END */





































/* TAGS */
.app {
  min-width: 100vw;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
    background-color: black; /* Add this line to set the background color to black */
 overflow-x: hidden; /* Hide horizontal scrollbar */
}



.tag-list {
  width: 100vw;
  max-width: 100vw;
  display: flex;
  flex-shrink: 0;
  flex-direction: column;
  gap: 1rem 0;
  position: relative;
  overflow: hidden;
}

.loop-slider {}
  .inner {
    display: flex;
    width: fit-content;
    animation-name: loop;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
    animation-direction: var(--direction);
    animation-duration: var(--duration);
  }


.tag {
  display: flex;
  align-items: center;
  gap: 0 0.2rem;
  color: #e2e8f0;
  font-size: 0.7rem;
  background-color: #000000;
  border: 1px solid skyblue; 
  border-radius: 0.4rem;
  padding: 0.7rem 1rem;
  margin-right: 1rem; // Must used margin-right instead of gap for the loop to be smooth
  box-shadow: 
    0 0.1rem 0.2rem rgb(0 0 0 / 20%),
    0 0.1rem 0.5rem rgb(0 0 0 / 30%),
    0 0.2rem 1.5rem rgb(0 0 0 / 40%);
} 
  .tag-span {
    font-size: 1.2rem;
    color: #64748b;
  }


.fade {
  pointer-events: none;
  background: linear-gradient(100deg, skyblue, transparent 30%, transparent 70%, skyblue);
  position: absolute;
  inset: 0;
}

@keyframes loop {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

@media (max-width: 768px) {
  .app {
    display: none;
  }
}





/* TAGS END */
































/* PROJECTS */
.card-section2 {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 35px; /* Adjust the spacing between cards */
  padding: 20px; /* Add padding to the section */
}

.card-container2 {
  position: relative;
  margin: 15px; /* Add margin to create space between cards */
}

a{
  color: skyblue;
}

.card2 {
  width: 17rem;
  cursor: pointer;
}

.content2 {
  text-align: center;
  position: relative;
  transition: all 2.25s;
  background-color: black;
  padding: 5em;
  transform-style: preserve-3d;
  box-shadow: 0 0px 20px skyblue;
}

.card2:hover .content2 {
  transform: rotateY(0.5turn);
}

.front2,
.back2 {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  padding: 2em;
  transform-style: preserve-3d;
  backface-visibility: hidden;
}



.subtitle2 {
  transform: translateZ(5rem);
  color: white;
}

.title2 img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
}

.back2 {
  transform: rotateY(0.5turn);
  background-color: #000000; /* Use the correct background color value */
  color: white;
}

.description2 {
  transform: translateZ(4rem);
  color: white;
}
/* PPROJECTS END */





/* GALLERY */
:root {
  --scrollcolor: #fff;
  --scrollbackground: #141e27;
}

.title {
  font-size: 2.5rem;
  font-family: system-ui;
  line-height: 1.1;
  font-weight: 300;
  color: #fff;
  margin: 4rem auto 1rem;
  width: 85%;
  max-width: 1280px;
}

.slider {
  width: 90%;
  max-width: 1280px;
  margin: 0 auto;
}

.slider__content {
  overflow-x: scroll;
  -ms-scroll-snap-type: x mandatory;
      scroll-snap-type: x mandatory;
  display: flex;
  gap: 1rem;
  padding-bottom: 1rem;
  scrollbar-color: var(--scrollcolor) var(--scrollbackground);
}
.slider__content::-webkit-scrollbar {
  height: 0.5rem;
  width: 0.5rem;
  border-radius: 1rem;
  background: var(--scrollbackground);
}
.slider__content::-webkit-scrollbar-thumb {
  border-radius: 1rem;
  background: var(--scrollcolor);
}
.slider__content::-webkit-scrollbar-track {
  border-radius: 1rem;
  background: var(--scrollbackground);
}

.slider__item {
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-width: 100%;
  width: 100%;
  border-radius: 10px;
  border: 2px solid skyblue;
  overflow: hidden;
  position: relative;
  aspect-ratio: 1;

}
/* For screens smaller than 460px (e.g., mobile devices) */
@media (max-width: 425px) {
  .slider__item {
    aspect-ratio: 3/4; /* Set an upright vertical aspect ratio */
    min-width: calc(90% - 2rem); /* Half the width minus margin */
  }
  .slider {
    width: 70%;
  }
}

/* For screens between 460px and 940px */
@media (min-width: 425px) and (max-width: 940px) {
  .slider__item {
    aspect-ratio: 3/4; /* Set an upright vertical aspect ratio */
    min-width: calc(90% - 2rem); /* Half the width minus margin */
  }
}

/* For screens 940px and larger (e.g., desktops) */
@media (min-width: 941px) {
  .slider__item {
    aspect-ratio: 2.5/4; /* Set an upright vertical aspect ratio */
    min-width: calc(30% - 4rem); /* One-third the width minus margin */
  }
}

.slider__image {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}

.slider__info {
  position: relative;
  padding: 4rem 2rem 2rem;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.75), rgba(32, 50, 57, 0));
}
.slider__info h2 {
  color: #fff;
  font-family: system-ui;
  line-height: 1.1;
  font-weight: 300;
  font-size: 1.75rem;
  margin: 0;
}
/* GALLERY END */







/* BLOG */


/* BLOG END */

















/* CONTACT */
.card-section3 {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px; /* Adjust the spacing between cards */
  padding: 20px; /* Add padding to the section */
}

.card-container3 {
  position: relative;
  margin: 10px; /* Add margin to create space between cards */
  size: max-content;
}


.card3 {
  width: 400px;
  height: 100px;
  background: rgb(4, 7, 7);
  transition: all 0.4s;
  border-radius: 10px;
  border: 1px solid skyblue;
  font-size: 30px;
  font-weight: 900;
  overflow: hidden;
}

.card3:hover {
  border-radius: 15px;
  cursor: pointer;
  transform: scale(1.1);
  box-shadow: 0px 0px 10px 5px  rgba(0, 0, 0, 0.705);
  background: rgb(0, 0, 0);
}

.first-content3 {
  height: 100%;
  width: 100%;
  transition: all 0.4s;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1;
  border-radius: 15px;
  color: skyblue;
}

.first-content3 span {
  font-size: 20px;
}

.card3:hover .first-content3 {
  height: 0px;
  opacity: 0;
}

.second-content3 {
  height: 50%;
  width: 100%;
  color: #e2e8f0;
  opacity: 0;
  display: grid;
  justify-content: center;
  align-items: center;
  border-radius: 15px;
  transition: all 0.4s;
  font-size: 0px;
  transform: rotate(90deg) scale(-1);
}

.map span{
  size: 100%;
}

.second-content3 a{
  color: #87CEEB;
  text-decoration: none;
}


.card3:hover .second-content3 {
  opacity: 1;
  height: 100%;
  font-size: 1rem;
  transform: rotate(0deg);
}

@media (max-width: 767px) {
  .card3 {
    width: 300px; /* Make the card full width on mobile */
  }
}
/* CONTACT END */














/* FOOTER */
.flex-center {
  width: 100%;
  height: max-content;
  background: #000;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

/* Add spacing between elements */
.flex-center h1{
  margin-bottom: 0px; /* Adjust the margin as needed */
  -webkit-animation: icon3d 200ms infinite;
  animation: icon3d 200ms infinite;
  color: skyblue;
}

.flex-center p{
  color: white;
  justify-content: center;
  margin-top: 5px;
}

.icon-3d {
  padding: 10px;
  -webkit-animation: icon3d 200ms 10;
  animation: icon3d 200ms 10;
  color: #fff;
}
.icon-3d:hover {
  -webkit-animation: icon3d 200ms infinite;
  animation: icon3d 200ms infinite;
}

@keyframes icon3d {
  0% {
    text-shadow: 5px 4px #f44336, -5px -6px #2196f3;
  }
  25% {
    text-shadow: -5px -6px #f44336, 5px 4px #2196f3;
  }
  50% {
    text-shadow: 5px -4px #f44336, -8px 4px #2196f3;
  }
  75% {
    text-shadow: -8px -4px #f44336, -5px -4px #2196f3;
  }
  100% {
    text-shadow: -5px 0 #f44336, 5px -4px #2196f3;
  }
}
/* FOOTER END */