/*================================================================================
	Item Name: Robust - Responsive Admin Template
	Version: 2.0
	Author: PIXINVENT
	Author URL: http://www.themeforest.net/user/pixinvent
================================================================================

NOTE:
------
PLACE HERE YOUR OWN SCSS CODES AND IF NEEDED, OVERRIDE THE STYLES FROM THE OTHER STYLESHEETS.
WE WILL RELEASE FUTURE UPDATES SO IN ORDER TO NOT OVERWRITE YOUR STYLES IT'S BETTER LIKE THIS.  */

.full-height {
    height: calc(200px * 3 + 2rem); /* 3 rows of 200px height + 2rem margin */
    flex-grow: 1;
}
.bg-image {
    background-size: cover;
    background-position: center;
    min-height: 200px;
}
.no-shrink {
    flex-shrink: 0;
    background: #037589;
}
.fixed-size {
    width: 230px;
    height: 230px;
}
.img-cover-right {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: left;
}

.title {
    font-size: 2.5rem;
}

.sub-title {
    font-size: 1.5rem;
}

.col-12.col-sm-6 {
    scale: 95%;
}

@media (min-width: 768px) {
    .title {
        font-size: 3rem;
    }
    
    .sub-title {
        font-size: 2rem;
    }
    
}


@media (min-width: 1024px) {
    .container-padding {
        padding-left: 100px;
        padding-right: 100px;
    }

    .title {
        font-size: 4rem;
    }

    .sub-title {
        font-size: 2.5rem;
    }

    .d-flex.flex-wrap.justify-content-center {
        row-gap: 10px; /* Adjust the value as needed */
        column-gap: 10px; /* Adjust the value as needed */
    }

    .col-12.col-sm-6 {
        scale: 100%;
        flex: 0 0 calc(50% - 20px); /* Adjust the value to fit the grid */
        max-width: calc(50% - 20px); /* Adjust the value to fit the grid */
    }
}

.bg-full-screen-image
{
    background: url(../../app-assets/images/backgrounds/home-bg.png) no-repeat center center fixed;
    -webkit-background-size: cover;
    background-size: cover;
}

