
.navbar_secondary{
    /* DARK TEAL */
    background-color: #065e5c;
    
    padding: 10px 0;
    
    .site_tagline{
        text-decoration: underline;
        font-family: 'Oxygen', sans-serif;
        font-weight: 700;
        font-style: normal;
        font-size: 17px;

        @media (max-width: 991px){
            text-align: center;
            line-height: 1.1;
            text-wrap: pretty;
            display: block;
        }
    }
    
    a.site_tagline:hover,
    a.site_tagline:focus{
        color: #fff;
        text-decoration: underline;
        opacity: 0.65;
    }
}

.navbar_alert{
    /* BROWN */
    background-color: #999087 !important;
}


.iats_preloader{

}

.IATS_Div:not(:empty) ~ .iats_preloader{
    display: none;
}



body.home .call-for-appt{
    .locations{
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -webkit-flex-direction: row;
            -ms-flex-direction: row;
                flex-direction: row;
        -webkit-flex-wrap: nowrap !important;
            -ms-flex-wrap: nowrap !important;
                flex-wrap: nowrap !important;
        
        .call_block{
            min-width: 0 !important;
            padding-left: 10px;
            padding-right: 10px;
            margin-left: 0;
            margin-right: 0;
            width: 25%;
        }

        @media (max-width: 768px){
            &{
                -webkit-flex-wrap: wrap !important;
                -ms-flex-wrap: wrap !important;
                flex-wrap: wrap !important;
                -webkit-justify-content: center;
                -ms-flex-pack: center;
                -webkit-box-pack: center;
                        justify-content: center;
                -webkit-align-content: space-around;
                -ms-flex-line-pack: distribute;
                align-content: space-around;
                -webkit-align-items: flex-start;
                -ms-flex-align: start;
                -webkit-box-align: start;
                        align-items: flex-start;
            }
        }

        @media (max-width: 768px) and (min-width: 600px){
            .call_block{
                width: 33.33%;
                margin-bottom: 30px;

                & + .call_block{
                    margin-top: 0;
                }
            }
        }

        @media (max-width: 599px){
            .call_block{
                width: 50%;
                margin-bottom: 30px;

                & + .call_block{
                    margin-top: 0;
                }
            }
        }

        @media (max-with: 400px){
            .call_block{
                width: 100%;
            }
        }
    }
}

/* 3(5) Locations */
.three_locations__locations{
    -webkit-flex-wrap: nowrap;
        -ms-flex-wrap: nowrap;
            flex-wrap: nowrap;
    
    .three_locations__single{
        padding-left:10px;
        padding-right:10px;
        
        a.btn{
            min-width: 180px;
        }
    }
    
    @media (max-width: 1200px){
        &{
            -webkit-flex-wrap: wrap !important;
            -ms-flex-wrap: wrap !important;
            flex-wrap: wrap !important;
            -webkit-justify-content: center;
            -ms-flex-pack: center;
            -webkit-box-pack: center;
                    justify-content: center;
            -webkit-align-content: space-around;
            -ms-flex-line-pack: distribute;
            align-content: space-around;
        }
    }
    
    @media (max-width: 1200px) and (min-width: 600px){
        &{
            -webkit-box-orient: horizontal;
            -webkit-box-direction: normal;
            -webkit-flex-direction: row;
                -ms-flex-direction: row;
                    flex-direction: row;
        }
        
        .three_locations__single{
            max-width: 33.33%;
            margin-bottom: 30px;
            
            & + .three_locations__single{
                margin-top: 0;
            }
        }
    }
    
    @media (max-width: 599px){
        &{
            -webkit-box-orient: horizontal;
            -webkit-box-direction: normal;
            -webkit-flex-direction: row;
                -ms-flex-direction: row;
                    flex-direction: row;
        }
        
        .three_locations__single{
            width: 50%;
        }
    }
    
    @media (max-width: 400px){
        &{
            -webkit-box-orient: vertical;
            -webkit-box-direction: normal;
            -webkit-flex-direction: column;
                -ms-flex-direction: column;
                    flex-direction: column;
        }
        
        .three_locations__single{
            width: 100%;
        }
    }
}

/*=====
 * FOOTER LOGOS
 *=====*/

ul.footer_logos_row2{
    list-style-type: none;
    padding-left: 0;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    -webkit-column-gap: 20px;
       -moz-column-gap: 20px;
            column-gap: 20px;
    row-gap: 20px;
    margin-top: 30px;
    
    img{
        width: Min(150px, 25vh);
        height: auto;
    }
}