@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.7.2/font/bootstrap-icons.css");
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&display=swap");
.para {
    font-size: 20px;
    margin-top: 10px;
}
.content-font {
    font-size: 20px;
    line-height: 1.5;
}
.remove-bottom {
    padding-bottom: 0;
}
.tab-space {
    display: inline-block;
    margin-left: 40px;
}
.heading-orange {
    color: var(--color-blue2);
}
.bi-image {
    max-width: 400px;
    max-height: auto;
}
.support_services {
    padding: 15px;
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: 0.3s;
}
.rotating-star {
    display: inline-block;
    animation: 2s linear infinite rotation;
    margin-right: 8px;
}
@keyframes rotation {
    from {
        transform: rotate(0);
    }
    to {
        transform: rotate(360deg);
    }
}
