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

body {
    line-height: 1;
    font-family: 'Roboto', sans-serif !important;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
    display: block;
}

ul,
ol {
    list-style: none;
    margin: 0px;
    padding: 0px;
}

blockquote,
q {
    quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
    content: '';
    content: none;
}

a {
    margin: 0;
    padding: 0;
    font-size: 100%;
    vertical-align: baseline;
    background: transparent;
    text-decoration: none !important;
}

ins {
    background-color: #ff9;
    color: #000;
    text-decoration: none;
}

mark {
    background-color: #ff9;
    color: #000;
    font-style: italic;
    font-weight: bold;
}

del {
    text-decoration: line-through;
}

abbr[title],
dfn[title] {
    border-bottom: 1px dotted;
    cursor: help;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

hr {
    display: block;
    height: 1px;
    border: 0;
    border-top: 1px solid #cccccc;
    margin: 1em 0;
    padding: 0;
}

input,
select {
    vertical-align: middle;
}


/** Root css **/

:root {
    --primary-brown: #d82727;
    --primary-blue: #05548c;
    --primary-blue-500: #47B8E9;
    --primary-white: #ffffff;
    --font-size10: 0.625rem;
    --font-size11: 0.688rem;
    --font-size12: 0.75rem;
    --font-size13: 0.813rem;
    --font-size14: 0.875rem;
    --font-size15: 0.938rem;
    --font-size16: 1rem;
    --font-size17: 1.063rem;
    --font-size18: 1.125rem;
    --font-size19: 1.188rem;
    --font-size20: 1.25rem;
    --font-size21: 1.313rem;
    --font-size22: 1.375rem;
    --font-size23: 1.438rem;
    --font-size24: 1.5rem;
    --font-size25: 1.563rem;
    --font-size26: 1.625rem;
    --font-size27: 1.688rem;
    --font-size28: 1.75rem;
    --font-size29: 1.813rem;
    --font-size30: 1.875rem;
}

.primary-button {
    background: var(--primary-brown) !important;
}

.secondary-button {
    background:#ec935b !important;
}

.section-bg-gray {
    background: #f3f3f3 !important;
}

.text-blue {
    color: var(--primary-blue) !important;
}

.center {
    left: 50%;
    transform: translateX(-50%);
}