/*
To change this license header, choose License Headers in Project Properties.
To change this template file, choose Tools | Templates
and open the template in the editor.
*/
/* 
    Created on : May 11, 2018, 5:46:18 PM
    Author     : ALL-IN-DESIGN
    Location   : SÃO PAULO - BRAZIL
    Contact    : www.all-in-design.com.br
*/

/*
================================================================
SETTINGS FOR ALL PAGES
================================================================
*/
* {
    margin:0;
    padding:0;
    border:0;
    outline:none;
}

body {
    font-family: 'Roboto', sans-serif;
    font-size:14px;
    color: #666;
    background:#fff;
}

img {
    border: none;
    outline:none;
}

a {
    text-decoration: none;
    color:#4CAF50;
}

li {
    margin-left: 30px;
    list-style: square;
    padding: 10px 0px;
}

button {
    cursor: pointer;
}

h1 {
    text-transform:uppercase;
    font-family: 'Roboto', sans-serif;
    font-size: 30px;
    color: tomato;
}

h2 {
    font-size:16px;
    text-transform:uppercase;
    color: #666;
}

#bold {
    font-weight:bold;
}

#mainContainer {
    margin:0 auto;
    /* ITS 1280px - 100 FROM PADDING ON THE RIGHT AND LEFT*/
    width:1180px;
    height: auto;
    min-height: 100px;
    padding: 50px 50px 0px 50px;
    margin-bottom: 0 !important;
    overflow-x: hidden;
}

footer {
    font-size: 14px;
    font-family: 'Roboto', sans-serif;
}
/*
================================================================
SETTINGS FOR MOBILE
================================================================
*/
@media screen and (max-width: 720px) {
    #mainContainer {
      /* WIDTH SCALABLE FOR MOBILE */
      width: 100%;
      max-width: 720px;
      /*não deixa o banner estourar*/
    overflow-x: hidden;
      
    /* ALIGN THE mainContainer IN THE CENTER OF THE PAGE*/
    display: block;
    margin-left: auto;
    margin-right: auto;
    padding: 0;
  }
  submit {
      
    
    /* DISABLE THE DEFAULT BUTTON STYLE ON MOBILE */
    -webkit-appearance: none;
  }
}


