THe media query is overriding the native css?

http://f13-preview.awardspace.net/groupeezz.dx.am/groupeezz5/index.html
I did some research after reading yours and Ron’s comments. I understand it bit better now. Last night, I kept using some weird media queries formats like min-width 320px, min-width: 768px, min-width 992px, and so on. Then I found people using @media screen and (min-width: 768px) and (max-width: 1024px) and some even added some -webkit ratio stuff or something. Really confusing…

Anyways I limited the amount of media queries to only 2. I understand now that I only need to use media queries if I needed it. I thought it was frustrating and weird why I even including so many different media queries in the first place and it didn’t work and it just overrided with each other.

Right now the site is looking ok, but I would much rather like the text to be lower for the portait orientation on both samsung/iphones, but I had it higher to fit the text nicely on the homage for the landscape orientation. How do I make changes to the portrait and move the text slightly lower without altering the landscape orientation?

Also the Mailing list form is looking ok, but when I maximize the screen from 1025px to 1199px, the subscribe button shifts and theres a big gap? I just tested it on my ipad and the subscribe button is overlapping the email address form on landscape and overlapping the zip code form on portrait. I don’t know what I did, but it worked earlier.

**(for the subscribe button)**
@media screen and (max-width: 1024px) {
    .btn-ml { 
        margin-left: 200px;
        }
    }

@media screen and (max-width: 767px) {
    .btn-ml { 
        margin-left: 100px;
        margin-top: 20px;
        }
    }

**(for the mailing list forms)**
@media screen and (max-width: 1024px){
     .form-group-email {
        margin-left: 85px;
        margin-bottom: 20px;
        margin-right: -30px;
        width: 45%;
        
    }
    .form-group-zip {
        display: block;
        margin-left: 20px;
        
    }
        
}

@media screen and (max-width: 767px){
     .form-group-email {
        margin-left: 0px;
        margin-bottom: 20px;
        width: 100%;
    }
    .form-group-zip {
        margin-top: -20px;
        margin-left: 0px;
        width: 100%;
    }
}

**(for the text on the homepage)**
@media screen and (max-width: 1024px){
    .home-header1 {
        font-size: 24px;
        margin-left:70px;
        margin-top: 250px;
    }
    
    .home-header2 {
        font-size: 25px;
        margin-left: 1px;
    }
    
    .home-text {
        font-size: 17px;
        width: 50%;
        margin-top: 30px;
    }
}

@media screen and (max-width: 767px){
    .home-header1 {
        font-size: 19px;
        margin-left: 20px;
        margin-top: -50px;
    }
    
    .home-header2 {
        font-size: 20px;
        margin-left: 1px;
    }
    
    .home-text {
        font-size: 17px;
        width: 70%;
        margin-left: px;
        margin-top: 30px;
    }
}