/*==========  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) {
    .dropdown:hover .dropdown-menu {
        display: block;
    }

    .navbar-right .dropdown-menu {
        right: auto;
        left: 0;
    }

    .welcomeLeaderboard {
        position: absolute;
    }
}

/* Medium Devices, Desktops */
@media only screen and (min-width: 992px) {

}

/* 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) {
    .navbar-nav > li > a {
        font-size: 13px;
        padding: 15px 9px;
    }

    .navbar-brand {
    }

    .newsItem {
        min-height: 260px;
    }
}

/* Medium Devices, Desktops */
@media only screen and (max-width: 991px) {
    .navbar-nav > li > a {
        font-size: 12px;
        padding: 15px 4px;
        font-weight: 400;
    }

    .navbar-brand {
    }

    .navbar-nav i.fa-caret-down {
        display: none;
    }

    .tp-caption {
        margin-left: 100px;
    }
}

/* Small Devices, Tablets */
@media only screen and (max-width: 767px) {
    .navbar-toggle {
        border: 1px solid #ffffff;
        border-radius: 0;
        margin: 15px 0;
    }

    .navbar-toggle .icon-bar {
        background-color: #fff;
    }

    .rev_slider .tp-caption {
        margin-left: 80px;
        font-size: 30px;
    }

    .rev_slider .tp-caption span {
        font-size: 30px;
        line-height: 60px;
    }

    .navbar-brand {
    }

    .navbar-nav {
        margin: 0;
    }

    .custom-col-padding-both {
        padding: 15px;
    }
    .navbar-nav > li > a {
        font-size: 14px;
        padding: 7px 6px;
        font-weight: 400;
    }
}

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

}

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

}