/*-- Use For Custom Styling --*/

.bg-color-body {
    background-color: #DFDBE4;
}

.bottom-footer {
    background-color: #DFDBE4;
}

body, html {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    text-align: center;
    font-family: 'Poppins', sans-serif;
}

.container {
    display: grid;
    grid-template-columns: 27% 46% 27%;
    grid-gap: 20px; /* Add default gap between grid items */
    width: 100%;
}

.column {
    padding: 20px;
    overflow: hidden;
}

.column .text {
    margin-bottom: 50px; /* Add larger space between text divs */

}


.column img {
    display: block;
    margin-bottom: 10px; /* Adjust the margin to create space between images */
}

.child {
    display: flex;
    justify-content: center;
}