html,
body {
    height: 100%;
    background-color: #f1f1f1;
}

.localeChanger {
    font-size: 14px !important;
}
/* Styles used for banner images, company logo image, and company detail overview */
.bannerImg {
    background-repeat: no-repeat;
    background-size: cover;
    min-height: 300px;
    background-position: center;
}

.companyLogo {
    height: 175px;
    width: 175px;
    background-color: white;
    margin-top: -8%;
    min-width: 175px;
}

@media (max-width: 575.98px) {
    /* Custom styling for company logo on mobile devices
    The company logo image must be transformed horizontally and vertically in order to properly align on mobile design
    Bootstrap's 'img-fluid' class does not properly resize the image on mobile viewport because it sets the width to 100%
    Therefore, manually resizing the image is necessary. The 'object-fit' and 'object-position' styles minimizes the image distortion effect
    with the smaller resolution of the image.
    */
    .companyLogo {
        width: 175px !important;
        height: 175px !important;
        position: relative;
        left: 50%;
        transform: translate(-50%, -25%);
    }

    /* Comapny Text (Company Name and Directory Tagline) needs to its position to be manually adjusted on mobile viewport
    From the mobile design prototype, there's a significant spacing between the companyText and the instructText*/
    .companyText {
        text-align: center;
    }

    /* Fix for aligning elements neded to be centered */
    .card-columns {
        text-align: center;
    }
}
