
.hero-img-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px; 
    margin-top: var(--nav)-40px!important;
    margin-bottom: 38px;
    position: relative;
    z-index: 2;
}
.hero-img {
    width: 140px;
    height: 140px;
    object-fit: contain;
    opacity: 0;
    filter: drop-shadow(0 5px 25px rgba(57, 111, 196, 0.6));
}

.hero-img-left {
    animation: slideInLeft .9s ease forwards;
    animation-delay: .1s;
}

.hero-img-right {
    animation: slideInRight .9s ease forwards;
    animation-delay: .1s;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-420px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(420px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@media (max-width: 575px) {
    .hero-img {
        width: 100px;
        height: 100px;
    }

    .hero-img-row {
        gap: 20px;
        margin-top: 20px;
    }
}

@media (max-height: 700px) {
    .hero-img-row {
        margin-top: 80px;
    }

    .hero-img {
        width: 100px;
        height: 100px;
    }
}