/* http://meyerweb.com/eric/tools/css/reset/
   v2.0 | 20110126
   License: none (public domain)
*/

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;
}

img{
    max-width: 100%;
}

/* ------------- Button ---------------- */
.cta {
    background-color: #e93b27;
    border-radius: 28px;
    box-shadow: 0 5px 0 #a80d05;
    color: #fff;
    display: inline-block;
    font-size: 24px;
    font-weight: 700;
    padding: 15px 30px 11px;
    text-align: center;
    text-transform: uppercase;
}
a.cta{
    color: #fff;
    outline: none;
}
a.cta, a.cta:focus, a.cta:hover, a.cta:active{
    text-decoration: none;
}
.cta.cta-small {
    border-radius: 5px;
    box-shadow: 0 3px 0 #c20a30;
    font-size: 19px;
    letter-spacing: -1px;
    margin-bottom: 5px;
    min-height: auto;
    padding: 5px 10px 6px;
    min-width: 130px;
}
.cta.cta-yellow {
    background-color: #fff600;
    box-shadow: 0 5px 0 #f89200;
    color: #000000;
}
.cta.cta-small.cta-yellow {
    box-shadow: 0 3px 0 #f89200;
}
.cta.cta-green{
    background-color: #41b867;
    box-shadow: 0 5px 0 #2d944e;
    color: #fff;
}
.cta.cta-small.cta-green {
    box-shadow: 0 3px 0 #2d944e;
}
.cta.cta-deep-purple {
    background-color: #5a0a98;
    box-shadow: 0 5px 0 #36065c;
}
.cta.cta-small.cta-deep-purple {
    box-shadow: 0 3px 0 #36065c;
}

.modal-cta {
    background-color: #fe4e4e;
    display: inline-block;
    font-size: 20px;
    text-align: center;
    text-transform: uppercase;
    font-weight: bold;
    color: #ffffff;
    border: 2px solid #b00e0e;
    border-radius: 10px;
    padding: 5px 15px 6px;
    min-width: 140px;
}
a.modal-cta:hover, a.modal-cta:active, a.modal-cta:focus {
    color: #ffffff;
    text-decoration: none;
}
.modal-cta.cta-yellow {
    background-color: #ecb440;
    border-color: #bb810a;
}
a:focus{
    outline: none;
}
#page{
    overflow: hidden;
    position: relative;
}
.clear {
    clear:both;
    display: block;
    overflow: hidden;
    visibility: hidden;
    width: 0;
    height: 0;
}

.container{
    width: 100%;
    max-width: 1058px;
    padding: 0 15px;
    margin: 0 auto;
}

.gird{
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-flow: row wrap;
    flex-flow: row wrap;
}








