Please send us an email at juan.perez42@udea.edu.co and we will get back to you shortly.
/* 1. The Row Layout */ .logo-row { display: flex; justify-content: lelft; align-items: center; gap: 20px; flex-wrap: wrap; /* Important for mobile */ } /* 2. The White Card with “Realce” (Shadow) */ .logo-item { background: #ffffff; padding: 15px; border-radius: 10px; box-shadow: 0 4px 12px rgba(0,0,0,0.1); transition: transform 0.3s ease, box-shadow 0.3s ease; text-decoration: none; } /* 3. THE FIX: The Invisible Box that forces same size */ .logo-box { width: 150px; /* CHANGE THIS to make all wider/narrower */ height: 100px; /* CHANGE THIS to make all taller/shorter */ display: flex; justify-content: center; align-items: center; } /* 4. The Image inside the box */ .logo-box img { max-width: 100%; max-height: 100%; object-fit: contain; /* Forces the image to fit without stretching */ display: block; } /* 5. Hover Effect */ .logo-item:hover { transform: translateY(-5px); box-shadow: 0 10px 20px rgba(0,0,0,0.15); }