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


/* Large Devices, Wide Screens */

@media only screen and (max-width: 1200px) {
    .about-text p {
        margin-top: 1%;
    }
    .image img{
        width: 100%;
        height: auto;
        background: #CCC;
    }
}


/* Medium Devices, Desktops */

@media only screen and (max-width: 992px) {
    body {
        font-size: 16px;
    }
    .site-hero h1 {
        font-size: 60px;
        margin-left: 20px;
    }
    .site-hero p {
        font-size: 18px;
        margin-left: 20px;
    }
    h2 {
        font-size: 55px;
    }
    .our-partners img {
        height: 40px;
    }
    .about-text p {
        margin-top: 10%;
    }
}


/* Small Devices, Tablets */

@media only screen and (max-width: 768px) {
    body {
        font-size: 18px;
    }
    .site-hero {
        text-align: center;
    }
    .site-hero h1 {
        margin: 0 auto;
        margin-top: 55px;
    }
    .black-friday-hero h1{
        display: inline-block;
        padding-left: 15px;
    }
    .black-friday-hero h2{
        padding-right: 15px;
    }
    #black-friday-headtext{
        top: 251px;
    }
    .about-text p {
        margin-top: 1%;
    }
    .our-partners .container:nth-child(2) {
        margin-top: 0;
    }
    .our-partners .col-sm-4 {
        margin-top: 50px;
    }
    .our-partners img {
        height: 40px;
    }
    .adress {
        text-align: center;
    }
    .adress .col-sm-6:first-child {
        text-align: inherit;
        margin-bottom: 40px;
    }
    .adress .col-sm-6 ul {
        list-style-type: none;
    }
}


/* Extra Small Devices, Phones */

@media only screen and (max-width: 480px) {
    h2 {
        font-size: 50px;
    }
    .site-hero {
        text-align: center;
    }
    .site-hero h1 {
        font-size: 40px;
        margin-top: 100px;
    }
    .site-hero p {
        margin-top: 130px;
    }
    .about-text p {
        line-height: inherit;
    }
    .our-partners .container:nth-child(2) {
        margin-top: 0;
    }
    .our-partners .col-sm-4 {
        margin-top: 50px;
    }
    .our-partners img {
        height: 40px;
    }
    .adress {
        text-align: center;
    }
    .adress .col-sm-6:first-child {
        text-align: inherit;
        margin-bottom: 40px;
    }
    .adress .col-sm-6 ul {
        list-style-type: none;
    }
}


/* Custom, iPhone Retina */

@media only screen and (max-width: 320px) {
    body {
        font-size: 15px;
    }
    .site-hero h1 {
        font-size: 34px;
        margin-top: 100px;
    }
    .site-hero p {
        margin-top: 130px;
    }
    h2 {
        font-size: 40px;
    }
    .company-img {
        background-position: 75% 0;
    }
    .about-text p {
        margin-top: 16px;
    }
}


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