 /* Стиль кнопки на первом баннере */
.btn-main {
    transform: scale(100%);
    transition: all 0.4s ease-in-out;
}

.btn-main:hover {
    box-shadow: 10px 10px 10px -5px rgba(34, 60, 80, 0.3);
    transform: scale(105%);
    transition: all 0.4s ease-in-out;
}
 