fix: matches our services hero with about us hero
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
George Birikorang 2025-08-28 19:12:50 -04:00
parent f52b5e4614
commit 2595c7571e
5 changed files with 288 additions and 394 deletions

View file

@ -592,6 +592,10 @@ video {
pointer-events: none;
}
.visible {
visibility: visible;
}
.static {
position: static;
}
@ -725,6 +729,10 @@ video {
top: 2rem;
}
.top-28 {
top: 7rem;
}
.-z-10 {
z-index: -10;
}
@ -745,6 +753,10 @@ video {
z-index: 50;
}
.z-30 {
z-index: 30;
}
.mx-4 {
margin-left: 1rem;
margin-right: 1rem;
@ -1203,6 +1215,22 @@ video {
animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}
@keyframes fadeInUp {
0% {
opacity: 0;
transform: translateY(30px);
}
100% {
opacity: 1;
transform: translateY(0);
}
}
.animate-fade-in-up {
animation: fadeInUp 1s ease-out forwards;
}
.cursor-pointer {
cursor: pointer;
}
@ -1333,6 +1361,10 @@ video {
overflow: hidden;
}
.overflow-visible {
overflow: visible;
}
.overflow-x-hidden {
overflow-x: hidden;
}
@ -1696,6 +1728,10 @@ video {
padding-top: 2rem;
}
.pt-32 {
padding-top: 8rem;
}
.text-center {
text-align: center;
}