
/* ============================================== */
/* RESET */
/* ============================================== */

@charset 'UTF-8';

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  vertical-align: baseline;
}

pre{
  width: 100%;
  white-space: pre-wrap;
  white-space: -moz-pre-wrap;
  white-space: -pre-wrap;
  white-space: -o-pre-wrap;
  word-wrap: break-word;
  line-height: 1.5em;
  cursor: default;
}


article, aside, details, figcaption, figure,footer, header, hgroup, menu, nav, section, main {display: block;}
ol, ul {list-style: none;}
blockquote, q {quotes: none;}
blockquote:before, blockquote:after,q:before, q:after {content: '';content: none;}

img {
  border:none !important;
  vertical-align: top;
  max-width:100%;
  margin:0 auto;
}

a{
  text-decoration: none;
  cursor: pointer;
}

p,label{
  cursor: default;
}

form,
input{
  width: 100%;
  display: block;
}

label{
  margin:15px 0 10px;
  float: left;
  width: 100%;
  display: block;
}

input,
textarea,
button{
  outline: none;
  display: block;
  overflow: hidden;
  float: left;
  border:none;
}

body,
label,
input,
textarea,
button{
  font-size: 14px;
}

fieldset, a > img{border:none;}

html {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

*, *:before, *:after {
  -webkit-box-sizing: inherit;
  -moz-box-sizing: inherit;
  box-sizing: inherit;
}

body{
  -webkit-font-smoothing: antialiased;
  overflow-y: scroll;
  font-family: helvetica;
}


h1,h2,h3,h4,h5,h6,p,label{cursor: default;}
p::first-letter{text-transform: capitalize;}
h1,h2,h3,h4,h5,h6,p,a,li{line-height: 24px;}

h1,h2,h3,h4,h5,h6{
  margin:10px 0;
  font-weight: 400;
}

/*-- headding font --*/

h1, .h1,
h2, .h2{font-weight: 700;}

h1, .h1{font-size: 70px;line-height: 52px;}
h2, .h2{font-size: 32px;line-height: 42px;}
h3, .h3{font-size: 24px;line-height: 32px;}
h4, .h4{font-size: 18px;line-height: 26px;}
h5, .h5{font-size: 16px;line-height: 24px;}
h6, .h6{font-size: 14px;line-height: 20px;}

@media screen and (max-width: 1280px) {
  h2, .h2{font-size: 24px;line-height: 32px;}
  h3, .h3{font-size: 18px;line-height: 26px;}
  h4, .h4{font-size: 16px;line-height: 24px;}
  h5, .h5{font-size: 14px;line-height: 20px;}
}

@media screen and (max-width: 768px) {
  h1, .h1{font-size: 32px;line-height: 42px;}

  body,
  label,
  input,
  textarea,
  button{
    font-size: 14px;
  }
}

@media screen and (max-width: 480px) {
  h1, .h1{font-size: 24px;line-height: 32px;}
  h2, .h2{font-size: 18px;line-height: 26px;}
  h3, .h3{font-size: 16px;line-height: 24px;}
}

/*-- form --*/

input::-webkit-input-placeholder {color: rgba(184,184,196,1);}
input:-moz-placeholder {color: rgba(184,184,196,1);}
input::-moz-placeholder {color: rgba(184,184,196,1);}
input:-ms-input-placeholder {color: rgba(184,184,196,1);}
input:-webkit-autofill {-webkit-box-shadow: 0 0 0px 1000px #ffffff inset;}

textarea::-webkit-input-placeholder {color: rgba(184,184,196,1);}
textarea:-moz-placeholder {color: rgba(184,184,196,1);}
textarea::-moz-placeholder {color: rgba(184,184,196,1);}
textarea:-ms-input-placeholder {color: rgba(184,184,196,1);}
textarea:-webkit-autofill {-webkit-box-shadow: 0 0 0px 1000px #ffffff inset;}

input {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}


/*--- disabled ---*/

input[name=autor].disabled,
input[name=email].disabled,
input:disabled{
  background: rgba(255,255,255,0.1);
  color:#888888;
  overflow: hidden;
  border-color:#dddddd;
  cursor:no-drop;
}



