body {
    min-height: 1024px;
}

.glide__arrow {
    transition: all 0.3s ease;
}

.glide:hover .glide__arrow {
    display: flex !important;
}

.glide__bullet--active {
    width: 32px !important;
}

@keyframes bulletProgress {
    from {
        width: 32px;
    }

    to {
        width: 10px;
    }
}

.nav-link {
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -2px;
    left: 50%;
    background-color: #2563EB;
    transition: all 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
    left: 0;
}

.back-to-top {
    display: none;
    /* position: fixed; */
    bottom: 20px;
    right: 20px;
    z-index: 99;
}

.product-card {
    transition: transform 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
}

.contact-input {
    transition: border-color 0.3s ease;
}

.contact-input:focus {
    border-color: #2563EB;
    outline: none;
}