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%;
    font: inherit;
    vertical-align: baseline;
}


/* HTML5 display-role reset for older browsers */

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
    display: block;
    margin-bottom: 15px;
}

html,body{
    min-width: 100%;
    min-height: 100%;
}

body {
    line-height: 1;
    background-color: #FFF;
}

ol,
ul {
    list-style: none;
}

blockquote,
q {
    quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
    content: '';
    content: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}


/*
  ========================================
  Html, Body
  ========================================
*/

*,
*:before,
*:after {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

html,
body {
    height: 100%;
}

body {
    
    font-family: 'Poppins', sans-serif;
    font-weight: normal;
    font-weight: 400;
    font-size: 100%;
    color: #A3A3A3;
    line-height: 1.4;
    cursor: default;
    background-color: #FFF;
    position: relative;
    width: 100%;
    min-height: 100%;
    -webkit-overflow-scrolling: touch;
    
}


/*
  ========================================
  Link
  ========================================
*/

a {
    color: #FFF;
    font-family: 'Poppins', sans-serif;
    text-decoration: none;
    font-weight: 400;
    
}


/*
  ========================================
  Typography
  ========================================
*/

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Poppins', sans-serif;
    color: #FFF;
    font-weight: 400;    
}

p {
    line-height: 1.6;
    font-size: 16px;
    font-weight: 400;
    color: #FFF;
    font-family: 'Poppins', sans-serif;
}

b,
strong {
    font-weight: bold;
}


/*
  ========================================
  Img
  ========================================
*/

img,
picture,
video,
embed,
object {
    max-width: 100%;
    height: auto;
}

img {
    display:block;
    width: 100%;
}


/*
  ========================================
  Clearfix
  ========================================
*/

.clearfix:before,
.clearfix:after {
    content: "";
    display: table;
}

.clearfix:after {
    clear: both;
}

.clearfix {
    clear: both;
    *zoom: 1;
}

input::placeholder{
    font-family: 'Poppins', sans-serif;
}

textarea::placeholder{
    font-family: 'Poppins', sans-serif;
}

select{
    font-family: 'Poppins', sans-serif;
}

select option{
    font-family: 'Poppins', sans-serif;
}



/*
  ========================================
  Class
  ========================================
*/

._left {
    float: left;
}

._right {
    float: right;
}

.text-left {
    text-align: left !important;
}

.text-right {
    text-align: right !important;
}

.text-center {
    text-align: center !important;
}

.text-justify {
    text-align: justify !important;
}

a:hover{
    color: #FFF;
}


/*CONTAINER*/

.container {
    margin: 0 auto;
    max-width: 1350px;
    display: block;
}


@media screen and (max-width:1370px){
    .container{
        padding-right: 10px;
        padding-left: 10px;
    }
}

::-webkit-scrollbar              { 
    background-color: rgb(34, 54, 54);
}

::-webkit-scrollbar-button       { 
    background-color: #949e9c;
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
    border-radius: 3px;
}

::-webkit-scrollbar-track{ background-color:#949e9c;}


::-webkit-scrollbar-track-piece { 
    background-color: #FFF;
}

::-webkit-scrollbar-thumb{ 
    background-color: #468679;
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
    border-radius: 3px;
}

::-webkit-scrollbar-corner{ 
    background-color: black;
}
::-webkit-resizer{
     background-color: black;
}