.fw-bold-900{
    font-weight: 900 !important;
}

.text-deep-purple{
    color: #262254 !important;
}

/* Wrapper para ma-clip yung lumalampas */
.section-dots-wrapper {
    position: relative;
    overflow: hidden; /* hides the overflowed part of dots image */
}

/* Right dots */
.custom-dots-img-right {
    position: absolute;
    top: 50%;
    right: -90px;   /* desktop offset */
    transform: translateY(-50%);
    width: 150px;
    height: auto;
    z-index: 0;
}

/* Tablet screens */
@media (max-width: 992px) {
    .custom-dots-img-right {
        right: -60px;
        width: 120px;
    }
}

/* Mobile screens */
@media (max-width: 768px) {
    .custom-dots-img-right {
        display: none;
    }
}

