/*==========  Desktop First Method  ==========*/

/* 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) {

    .site-index .header {
        min-height: auto;
        padding-bottom: 15px;
    }
    .top-block {
        background-color: #000;
        padding: 10px 15px 10px 0;
    }
    .front-header-title {
        margin-top: 40px;
    }
    .front-header-content {
        margin-bottom: 40px;
    }
    .down {
        display: none;
    }

    .front-services-item img {
        margin-bottom: 20px;
    }
    .services-item img {
        margin-bottom: 20px;
    }

}

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

}

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

}


/*==========  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) {

}

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

}


/*==========  Print Method  ==========*/

@media print {

}
