/* MOBILE STYLES FOR BREAKPOINTS 768px, 576px, 476px, 376px */

@media screen and (max-width: 768px) {
    /* PUT MOBILE RESPONSIVE STYLES HERE FOR 768PX */
    .flex-feature-container {
        display: flex;
        flex-direction: column;
        margin-bottom: 10px;
        margin-top: 20px;
    }
    .flex-feature-container .flex-content {
        flex: 1;
        order: 2;
        padding: 10px;
    }
    .flex-feature-container .flex-figure {
        flex: 1;
        order: 1;
    }
    .flex-feature-container .flex-figure .tmbg::before {
        display: none;
    }
    .no-flex-feature-swap .flex-content {
        order: 1;
    }
    .no-flex-feature-swap .flex-figure {
        order: 2;
    }
    .page-footer {
        font-size: .7em;
    }
    .navbar-nav {
        margin-top: 10px !important;
    }
}

@media screen and (max-width: 576px) {
    /* PUT MOBILE RESPONSIVE STYLES HERE FOR 576PX */
    .contentbox {
        width: 430px;
        height: 430px;
    }
    .contentbox .primary-title {
        font-size: 1.2em;
        padding-top: 50%;
    }
    .contentbox .secondary-title {
        padding-top: 0px;
        font-size: 1em;
    }
}

@media screen and (max-width: 476px) {
    /* PUT MOBILE RESPONSIVE STYLES HERE FOR 476PX */
    .contentbox {
        width: 350px;
        height: 350px;
    }
    .contentbox .primary-title {
        font-size: 1em;
    }
    .contentbox .secondary-title {
        font-size: .9em;
    }
}

@media screen and (max-width: 376px) {
    /* PUT MOBILE RESPONSIVE STYLES HERE FOR 376PX */
    .contentbox {
        width: 320px;
        height: 320px;
    }
    .contentbox .primary-title {}
    .contentbox .secondary-title {}
}