/* Large screens */
@media (min-width: 1100px) {
  .dev-footer {
    display: block;
    background-image: linear-gradient(
      109.6deg,
      rgba(123, 90, 224, 1) 11.2%,
      rgba(164, 46, 253, 1) 32.6%,
      rgba(213, 56, 234, 1) 62.7%,
      rgba(251, 138, 52, 1) 100.2%
    );
    padding-left: 150px;
    color: white;
    overflow-x: hidden;
  }
  .dev-footer-small {
    display: none;
  }
}

/* Small screens */
@media (max-width: 1100px) {
  .dev-footer {
    display: none;
  }
  .dev-footer-small {
    display: block;
    background-image: linear-gradient(
      109.6deg,
      rgba(123, 90, 224, 1) 11.2%,
      rgba(164, 46, 253, 1) 32.6%,
      rgba(213, 56, 234, 1) 62.7%,
      rgba(251, 138, 52, 1) 100.2%
    );
    color: white;
    overflow-x: hidden;
  }
}

.dev-socials {
  all: revert;
  color: white;
  transition: all 0.5s;
}
.dev-socials:hover {
  color: black;
}

.lds-grid {
  display: inline-block;
  position: relative;
  width: 64px;
  height: 64px;
}
.lds-grid div {
  position: absolute;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: #6600ff;
  animation: lds-grid 1.2s linear infinite;
}
.lds-grid div:nth-child(1) {
  top: 6px;
  left: 6px;
  animation-delay: 0s;
}
.lds-grid div:nth-child(2) {
  top: 6px;
  left: 26px;
  animation-delay: -0.4s;
}
.lds-grid div:nth-child(3) {
  top: 6px;
  left: 45px;
  animation-delay: -0.8s;
}
.lds-grid div:nth-child(4) {
  top: 26px;
  left: 6px;
  animation-delay: -0.4s;
}
.lds-grid div:nth-child(5) {
  top: 26px;
  left: 26px;
  animation-delay: -0.8s;
}
.lds-grid div:nth-child(6) {
  top: 26px;
  left: 45px;
  animation-delay: -1.2s;
}
.lds-grid div:nth-child(7) {
  top: 45px;
  left: 6px;
  animation-delay: -0.8s;
}
.lds-grid div:nth-child(8) {
  top: 45px;
  left: 26px;
  animation-delay: -1.2s;
}
.lds-grid div:nth-child(9) {
  top: 45px;
  left: 45px;
  animation-delay: -1.6s;
}
@keyframes lds-grid {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}
