/* 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;
    overflow-x: hidden;
}
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;
}

.flex{
    display: flex;
}


@font-face {
    font-family: Inter;
    src: url(/assets/fonts/Inter-Light.ttf);
    font-weight: 300;
    font-style: normal
}


@font-face {
    font-family: Inter;
    src: url(/assets/fonts/Inter-Regular.ttf);
    font-weight: 400;
    font-style: normal
}

@font-face {
    font-family: Inter;
    src: url(/assets/fonts/Inter-Medium.ttf);
    font-weight: 500;
    font-style: normal
}
@font-face {
    font-family: Inter;
    src: url(/assets/fonts/Inter-SemiBold.ttf);
    font-weight: 600;
    font-style: normal
}
@font-face {
    font-family: Inter;
    src: url(/assets/fonts/Inter-Bold.ttf);
    font-weight: 700;
    font-style: normal
}

@font-face {
    font-family: MerriweatherSans;
    src: url(/assets/fonts/MerriweatherSans-Regular.ttf);
    font-weight: 400;
    font-style: normal
}

@font-face {
    font-family: MerriweatherSans;
    src: url(/assets/fonts/MerriweatherSans-Medium.ttf);
    font-weight: 500;
    font-style: normal
}
@font-face {
    font-family: MerriweatherSans;
    src: url(/assets/fonts/MerriweatherSans-SemiBold.ttf);
    font-weight: 600;
    font-style: normal
}
@font-face {
    font-family: MerriweatherSans;
    src: url(/assets/fonts/MerriweatherSans-Bold.ttf);
    font-weight: 700;
    font-style: normal
}
body{
    font-family: Inter;
    color: #151515;
    font-size: 20px;
    font-style: normal;
    font-weight: 300;
    line-height: 34px;
}
.ttl_1{
    font-family: Inter;
    font-size: 70px;
    font-style: normal;
    font-weight: 700;
    line-height: 75px;
    color:#FFB800;
}
.ttl_2{
    font-family: Inter;
    font-size: 40px;
    font-weight: 700;
    line-height: 50.28px;
    color:#FFB800;
}
.ttl_3{
    font-family: Inter;
    color: #2347A5;
    font-size: 32px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
}
.ttu{
    text-transform: uppercase;
}

.button{
    color: #151515;
    text-align: center;
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-transform: uppercase;
    width: 280px;
    border-radius: 27px;
    background: #FFB800;
    display: block;
    padding: 15px;
    transition: .3s all;
}

.button:hover{
    color:#fff;
    background-color:#5681EE;
    text-decoration: none;
}

.button_invert{
    color:#fff;
    background-color:#5681EE;
}
.button_invert:hover{
    color: #151515;
    background: #FFB800;
}
