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;
}
body {
    line-height: 1;
}
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;
    box-sizing: border-box;
}

html,
body {
    height: 100%;
}

body {
    background: #ffffff;
    background-size: 100%;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 100%;
    line-height: 1.3;
    cursor: default;
}

/*
  ========================================
  Link
  ========================================
*/

a {
    color: #666666;
    text-decoration: none;
}

/*
  ========================================
  Typography
  ========================================
*/

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
}

p {
  line-height: 2;
  letter-spacing: 0.7px;
  font-size: 17px;
  color:#8a8989;
  margin-bottom: 32px;
}

b, strong {
    font-weight: bold;
}

em,
i {
  font-style:italic;
}


/*
  ========================================
  Img
  ========================================
*/

img,
picture,
video,
embed,
object {
    max-width: 100%;
}

img {
    display: inline-block;
    vertical-align: middle;
}

/*
  ========================================
  Clearfix
  ========================================
*/

.clearfix:before,
.clearfix:after {
    content: "";
    display: table;
}

.clearfix:after {
    clear: both;
}

.clearfix {
    clear: both;
    *zoom: 1;
}

/*
  ========================================
  Class
  ========================================
*/

.left {
    float: left!important;
}

.right {
    float:  right!important;
}

.text-left {
    text-align: left !important;
}

.text-right {
    text-align: right !important;
}

.text-center {
    text-align: center !important;
}

.text-justify {
    text-align: justify !important;
}

/*CONTAINER*/

.container {
    margin:0 auto;
    max-width: 1145px;
}

@media screen and (max-width: 1185px) {
    .container {
        padding-left:20px;
        padding-right:20px;
    }
}

.container2 {
    margin:0 auto;
    max-width: 1145px;
}

@media screen and (max-width: 1185px) {
    .container2 {
        padding-left:20px;
        padding-right:20px;
    }
}


@media screen and (max-width: 500px) {
  p {
    margin-bottom:20px;
  }
}

.transition {
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

/*FADE IN BODY*/
body {  
  animation: fadein 0.6s; 
  -webkit-animation: fadein 0.6s; /* Webkit */
  -moz-animation: fadein 0.6s; /* Firefox */
  -ms-animation: fadein 0.6s; /* IE */
}

@keyframes fadein {
from { opacity: 0.4; }
to { opacity: 1; } 
}
@-moz-keyframes fadein {
from { opacity: 0.4; }
to { opacity: 1; } /* Firefox */
}
@-webkit-keyframes fadein {
from { opacity: 0.4; }
to { opacity: 1; } /* Webkit */
}
@-ms-keyframes fadein {
from { opacity: 0.4; }
to { opacity: 1; } /* IE */
}