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

}

/* Medium Devices, Desktops */
@media only screen and (max-width : 992px) {
    .header img {
        max-width: 100%;
    }
    .dealers {
        text-align: center;
        border: 1px solid #3c7fb9;
        background: rgba(0, 0, 0, 0.11);
        box-shadow: 0px 0px 50px rgba(104, 172, 236, 0.31);
        margin-bottom: 50px;
    }
    .dealers-info {
        font-size: 1.5em;
        color: rgb(95, 144, 210);
    }
    .dealers img {
        max-width: 150px;
    }
    .dealers-info h3 {
        font-size: 2em;
    }
    .dealers-info span {
        font-size: 1em;
        color: #86ace0;
    }
    .dealers-container {
        float: none !important;
    }
    .logo {
        margin-bottom: 10px;
        text-align: center;
    }
    .dealer-menu {
        text-align: center;
    }
}

/* Small Devices, Tablets */
@media only screen and (max-width : 768px) {
    .dealers {
        margin: 0 15px 50px 15px;
    }
}

/* Extra Small Devices, Phones */
@media only screen and (max-width : 480px) {
    .main h2 {
        font-size: 1.5em;
    }
    .dealers-info h3 {
        font-size: 1.5em;
    }
    .ftp-logo img {
        width: 50%;
    }
}

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

}