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

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

/* Small Devices, Tablets */
@media only screen and (max-width: 768px) {
    #hero {
        height: auto;
    }

    .honey-text{
        height: 220px;
    }

    .honey-text h1 {
        font-weight: bold;
        font-size: 22px;
        color: aliceblue;
    }
}

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

    .address-box, .social-links, .page-links    {
        text-align: center;
        margin-bottom: 30px;
    }

    .benefit-box {
        width: 100%;
    }
    
    
    .product-img img {
        width: 100%;
        height: 180px;
    }    

    .stat-desc h2 {
        font-size: 16px;
    }

    .stat-title h3{
        font-size: 8px;
    }

    #order-section table a{
        display: block;
        width: 100%;
        margin: 5px 0;
    }

    #order-section table input {
        width: 100%;
    }
}

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