.apps-03 {
  position: relative;
  background: 
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 120' preserveAspectRatio='none'%3E%3Cpath fill='%237BB62D' fill-opacity='1' d='M0,60 C240,100 480,20 720,60 C960,100 1200,20 1440,60 L1440,120 L0,120 Z'%3E%3C/path%3E%3C/svg%3E") no-repeat bottom,
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 120' preserveAspectRatio='none'%3E%3Cpath fill='%23b92121' fill-opacity='1' d='M0,80 C240,40 480,100 720,80 C960,40 1200,100 1440,80 L1440,0 L0,0 Z'%3E%3C/path%3E%3C/svg%3E") no-repeat top,
    radial-gradient(ellipse at top left, rgba(185, 33, 33, 0.08) 0%, transparent 50%),
    radial-gradient(ellipse at bottom right, rgba(185, 33, 33, 0.06) 0%, transparent 50%),
    linear-gradient(135deg, #ffffff 0%, #fafafa 50%, #ffffff 100%);
  background-size: 100% 150px, 100% 150px, 100% 100%, 100% 100%, 100% 100%;
  color: var(--dark);
  overflow: hidden;
}

.apps-03::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 40px,
      rgba(185, 33, 33, 0.02) 40px,
      rgba(185, 33, 33, 0.02) 41px
    ),
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 40px,
      rgba(185, 33, 33, 0.02) 40px,
      rgba(185, 33, 33, 0.02) 41px
    );
  pointer-events: none;
  opacity: 1;
}


@keyframes shimmer {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.7;
  }
}

.apps-03 .apps-grid {
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: 0;
  align-items: center;
  position: relative;
  z-index: 1;
}

@media (min-width: 768px) {
  .apps-03 .apps-grid {
    grid-template-columns: 2fr 1fr;
    grid-gap: 4rem;
  }
}

.apps-03 .apps-grid .app-content {
  text-align: center;
}

@media (min-width: 768px) {
  .apps-03 .apps-grid .app-content {
    text-align: left;
    padding-bottom: 40px;
  }
}

.apps-03 .apps-grid .app-content h2 {
  margin-bottom: 1.2rem;
  font-weight: var(--weight-regular);
}

.apps-03 .apps-grid .app-content p {
  margin-bottom: 2rem;
  font-size: 1.1rem;
}

@media (min-width: 992px) {
  .apps-03 .apps-grid .app-content p {
    font-size: 1.2rem;
  }
}

.apps-03 .apps-grid .app-content p i {
  color: #000;
}

.apps-03 .apps-grid .app-content .btns {
  display: flex;
  flex-direction: column;
  align-items: center;
}

@media (min-width: 576px) {
  .apps-03 .apps-grid .app-content .btns {
    flex-direction: row;
  }
}

.apps-03 .apps-grid .app-content .btns a {
  margin: 0 0 0.5rem 0;
  max-width: 11rem;
}

@media (min-width: 576px) {
  .apps-03 .apps-grid .app-content .btns a {
    margin: 0 1rem 0 0;
    max-width: 13rem;
  }
}

.apps-03 .apps-grid .app-content .btns a:hover {
  transform: scale(1.02);
}

.apps-03 .apps-grid .app-content .btns a .img-fluid {
  width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}

.apps-03 .apps-grid .app-image {
  position: relative;
}

.apps-03 .apps-grid .app-image img {
  display: none;
  width: auto;
  height: auto;
  max-width: 200px;
  filter: drop-shadow(-8px 18px 30px rgba(0, 0, 0, 0.4));
}

@media (min-width: 768px) {
  .apps-03 .apps-grid .app-image img {
    display: inline-block;
  }
}

.apps-03 .apps-grid .app-image img {
  animation-name: float;
  animation-duration: 8s;
  animation-iteration-count: infinite;
  animation-timing-function: ease-in-out;
}

.apps-03 .apps-grid .app-image .drop-shadow {
  position: absolute;
  bottom: -10%;
  left: 45%;
  transform: translateX(-32%);
  width: 80%;
  height: 10%;
  background: radial-gradient(
    closest-side,
    rgba(0, 0, 0, 0.2) 0%,
    rgba(0, 0, 0, 0) 90%
  );
  border-radius: 50%;
  animation-name: drop-shadow;
  animation-duration: 8s;
  animation-iteration-count: infinite;
  animation-timing-function: ease-in-out;
}

@media (min-width: 1400px) {
  .apps-03 .apps-grid .app-image .drop-shadow {
    left: 38%;
  }
}

@keyframes float {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
  100% {
    transform: translateY(0px);
  }
}

@keyframes drop-shadow {
  0% {
    width: 80%;
    opacity: 1;
  }
  50% {
    width: 60%;
    opacity: 0.6;
  }
  100% {
    width: 80%;
    opacity: 1;
  }
}

