﻿body {
}

@media (max-width: 599px) {
    /* Styles for mobile phones */
    .banner-container {
        max-height: 70px;
    }
}
@media (min-width: 600px) and (max-width: 767px) {
    /* Styles for small devices */
    .banner-container {
        max-height: 80px;
    }
}
@media (min-width: 768px) and (max-width: 1023px) {
    /* Styles for tablets and small laptops */
    .banner-container {
        max-height: 90px;
    }
}
@media (min-width: 1024px) and (max-width: 1439px) {
    /* Styles for laptops and desktops */
    .banner-container {
        max-height: 110px;
    }
}
@media (min-width: 1440px) {
    /* Styles for large desktops */
    .banner-container {
        max-height: 130px;
    }
}
