/*==================================================
=            Bootstrap 3 Media Queries             =
==================================================*/


/*==========  Mobile First Method  ==========*/

/* Custom, iPhone Retina */
@media only screen and (min-width : 320px) {
}

/* Extra Small Devices, Phones */
@media only screen and (min-width : 480px) {
}

/* Small Devices, Tablets */
@media only screen and (min-width : 768px) {
}

/* Medium Devices, Desktops */
@media only screen and (min-width : 992px) {
    .bottom-btns{
        display: none !important;
    }
    .floating-btns{
        display: block !important;
    }
    .d-md-none{
        display: none !important;
    }
    .gallery.row .gallery_item{
        margin-bottom: 30px;
        height:180px;
    }
    .gallery.row .gallery_item img{
        object-fit: cover;
        width: 100%;
        height:100%;
    }
}
@media only screen and (max-width : 991px) {
    .bottom-btns{
        display: block !important;
    }
    .floating-btns{
        display: none !important;
    }
    .horizontal-tab-centered .nav-pills>li {
        float: none;
    }
    .horizontal-tab-centered .nav-pills>li a,.horizontal-tab-centered .nav-pills>li.active a{
        margin-right: 0;
    }
    .gallery.row .gallery_item{
        margin-bottom: 30px;
    }
    li.call-center {
        display: flex !important;
        align-items: center;
        position: relative;
        margin: 8px 0 0px -24px;
        color: #403a46;
    }

}

/* Large Devices, Wide Screens */
@media only screen and (min-width : 1200px) {
}


/*==========  Non-Mobile First Method  ==========*/

/* Large Devices, Wide Screens */
@media only screen and (max-width : 1199px) {
}

/* Medium Devices, Desktops */
@media only screen and (max-width : 991px) {
    .text-sm-center{text-align:center;}
    .sm-d-none{
        display: none;
    }
}

/* Small Devices, Tablets */
@media only screen and (max-width : 767px) {
}
/* Extra Small Devices, Phones */
@media only screen and (max-width : 479px) {
}

/* Extra Small Devices, Phones */
@media only screen and (max-width : 360px) {

}

/* Custom, iPhone Retina */
@media only screen and (max-width : 319px) {
}