@font-face { 
    font-family: 'Acumin Variable Concept';
    src: url('./assets/font/AcuminVariableConcept-WideExtraLight.ttf');
}

html,
body {
    background: #ECF0F1;
    height: 100%;
    margin: 0;
    padding: 0;
    font-family: 'Acumin Variable Concept', sans-serif;
    overflow-y: hidden;
}

.page {
    display: flex;
    flex-direction: column; 
    height: 100vh;
    overflow-y: auto;
}

.content {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 15px;
}

.image-style {
    flex: 1 1 180px;
    max-width: 250px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 10px;
    background-color: #f8f9fa;
    border-radius: 8px;
    height: 250px; 
    width: 250px; 
    overflow: hidden; 
    margin: 5px;
}

.image-dashboatd-style {
    height: 180px;
    width: 180px; 
    /* object-fit: cover; */
    border: 2px solid #007bff;
    border-radius: 5px;
    padding: 5px;
}

.para_text_ {
    font-size: 15px;
}

@media (max-width: 768px) {
    .para_text_ {
        font-size: 14px;
    }

    .image-style {
        flex: 1 1 150px;
    }
}
