/*Gradient button (coustom-section)*/
.gradient-button {
    position: relative;
    padding: 12px 24px;
    font-size: 16px !important;
    color: white !important;
    border: none;
    cursor: pointer;
    background: none;
    overflow: hidden;
    z-index: 1;
    font-weight: 500;
    /* font-family: 'Inter', sans-serif !important; */

}

.gradient-button::before,
.gradient-button::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
    transition: opacity 400ms ease-in-out;
}

.gradient-button::before {
    background: linear-gradient(170deg, #29ABE2, #1B1464);
    opacity: 1;
}

.gradient-button::after {
    background: linear-gradient(170deg, #1B1464, #29ABE2);
    opacity: 0;
}

.gradient-button:hover::after {
    opacity: 1;
}

.gradient-button:hover::before {
    opacity: 0;
}