.usage-container {
    position: relative;
    background-color: #0f1638;
    color: #fff7eb;
    padding-top: 75px;
    border-radius: 17px;
    margin-bottom: 40px;
}

.usage-container .container {
    width: 100%;
}

.usage-title {
    height: 29px;
    opacity: 1;
    color: #bed431;
    font-family: "Nord";
    font-size: 25px;
    font-weight: 700;
}

.usage-logo {
    margin-right: 14.5px;
    width: 44px;
    height: 32.3px;
}

.usage-card {
    min-height: 100px;
    overflow: hidden;
    border-radius: 17px;
    padding: 30px;
    background: transparent;
    position: relative;
}

.usage-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #b4d7eb;
    border-radius: 17px;
    opacity: 45%;
    z-index: 1;
}

.usage-card .card-title,
.usage-card .card-text {
    position: relative;
    z-index: 2;
}

.usage-card .card-title {
    height: 30px;
    font-family: "Nord";
    font-size: 25px;
    font-weight: bold;
    text-align: left;
    color: #bed431;
    margin-bottom: 6px;
}

.usage-card .card-text {
    /* height: 162px; */
    font-family: "Poppins";
    font-size: 18px;
    text-align: left;
    color: #fff7eb;
    overflow-y: auto;
}

.usage-button-container {
    display: flex;
    justify-content: center;
}

.usage-cta-button {
    width: 383px;
    height: 50px;
    border-radius: 17px;
    background: #b4d7eb;
    opacity: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "Gotham";
    font-size: 20px;
    font-weight: bold;
    color: #0f1638;
    margin: 50px 0px;
}
@media (max-width: 1024px) {
    .usage-card {
        width: auto;
        padding: 30px;
    }

    .usage-card .card-text {
        width: auto;
        height: auto;
        font-size: 15px;
        text-align: left;
    }
}

@media (max-width: 768px) {
    .usage-card .card-title {
        height: auto;
        width: auto;
        font-size: 20px;
        font-weight: bold;
    }

    .usage-card .card-text {
        width: auto;
        height: auto;
        font-size: 15px;
        text-align: left;
    }

    .usage-container {
        height: auto;
        padding: 20px;
    }

    .usage-card {
        padding: 20px;
        margin-bottom: 20px;
    }

    .row:nth-of-type(2) .usage-card:nth-child(3) {
        margin-bottom: 0;
    }

    .usage-cta-button {
        width: auto;
        height: 50px;
    }

    .row.mt-5.second-row {
        margin-top: 0 !important;
    }
}
@media (max-width: 425px) {
    .usage-title {
        font-size: 20px;
    }
    .usage-card {
        padding: 30px;
        height: auto;
        width: auto;
    }
    .usage-cta-button {
        width: auto;
        height: 50px;
        font-size: medium;
    }
}

/* custom scrollbar */
/* For Chrome, Edge, and Safari */
::-webkit-scrollbar {
    width: 100%;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    background-color: #7b2cbf;
    border-radius: 10px;
    border: 2px solid transparent;
    background-clip: content-box;
}

/* Optional: Hover effect on scrollbar thumb */
::-webkit-scrollbar-thumb:hover {
    background-color: #5a189a;
}

/* For Firefox */
* {
    scrollbar-width: thin;
    scrollbar-color: #7b2cbf #f1f1f1;
}
