body {
    background-color: #0b0f1be6;
}

.faq {
    margin-bottom: 3rem !important;
}

.section-title {
    color: white;
    font-weight: 600;
}

#title {
    color: white;
    font-size: 22px;
    text-align: center;
    font-weight: 900;
    margin-top: 3%;
}

.mobile-title {
    display: none;
}

.card {
    padding: 6px;
    border: 0.5px solid rgba(116, 116, 116, 0);
    background: #070a11;
    color: white;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.2s ease-in-out;
    height: 100px;
}

.card:hover {
    transform: scale(1.03);
    border: 1px solid #af22ce;
}


.card-title {
    font-size: 16px;
    line-height: 22px;
    font-weight: 600;
    color: #ffffff;
    width: 320px;
}

.card-description {
    color: rgb(181, 181, 181);
}

.modal-content {
    border-radius: 12px;
    padding: 20px;
    background-color: #080808;
    border: 0.5px solid #7171716e;
}

.modal-title {
    font-size: 17px;
    width: 686px;
    font-weight: bold;
    color: white;
}

.modal-body {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.821);
}

.btn-close {
    font-size: 4px;
    --bs-btn-close-color: white;
    --bs-btn-close-bg: transparent;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23FFFFFF'%3e%3cpath d='M.293.293a1 1 0 0 1 1.414 0L8 6.586 14.293.293a1 1 0 1 1 1.414 1.414L9.414 8l6.293 6.293a1 1 0 0 1-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 0 1-1.414-1.414L6.586 8 .293 1.707a1 1 0 0 1 0-1.414z'/%3e%3c/svg%3e");
    filter: brightness(1.5);
    opacity: 1;
    transition: opacity 0.2s;
}

.btn-close:hover {
    opacity: 0.75;
}

.modal-header {
    display: flex;
    flex-shrink: 0;
    align-items: center;
    padding: var(--bs-modal-header-padding);
    border-bottom: var(--bs-modal-header-border-width) solid #dee2e673;
    border-top-left-radius: var(--bs-modal-inner-border-radius);
    border-top-right-radius: var(--bs-modal-inner-border-radius);
}

#divider {
    margin-top: 40px;
    margin-bottom: -41px;
    border: 1px solid #DDDDDD28;
}

@media only screen and (max-width: 768px) {
    .card-title {
        font-size: 16px;
        line-height: 22px;
        font-weight: 600;
        color: #ffffff;
        width: 259px;
    }


    .desk-title {
        display: none;
    }

    .mobile-title {
        display: block;
    }

    #title {
        color: white;
        font-size: 22px;
        text-align: center;
        font-weight: 900;
        margin-top: 5%;
    }

    .modal-title {
        font-size: 16px;
        width: 227px;
        font-weight: bold;
        color: white;
    }

    .modal-body {
        font-size: 14px;
        color: rgba(255, 255, 255, 0.821);
    }

    .row {
        margin-left: -10px;
        margin-right: -30px !important;
    }

    .faq {
        margin-bottom: 3rem !important;
        overflow-x: hidden;
    }
}