:root {
    --red-primary: #D64123;
    --red-darker: #B22B1A;
    --blue-primary: #0A5566;
}

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

html, body {
    font-family: Montserrat, sans-serif;
    font-size: 16px;
}

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

body {
    line-height: 1;
}

ol, ul {
    list-style: none;
}

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

main {
    width: 100%;
    max-width: 1480px;
    padding: 30px;

    box-sizing: border-box;
}

h1, h2, h3, h4, h5, h6 {
    margin: 0 0 20px;
    font-weight: 700;
    text-transform: uppercase;
}

h1 { font-size: 1.500em; }
h2 { font-size: 1.375em; }
h3 { font-size: 1.250em; }

p, ul {
    margin: 0 0 30px;
    line-height: 1.4;
    font-weight: 400;
}

a,
a:link,
a:active,
a:visited {
    color: var(--red-primary);
    text-decoration: none;
}

a:hover {
    color: var(--red-darker);
}

strong {
    font-weight: 600;
}

.idea-logo {
    max-width: 100%;
    height: auto;
    margin: 0 auto 20px;
}

.banner img {
    display: block;
    max-width: 100%;
}

.columns {
    display: flex;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: stretch;
    align-content: flex-start;
    gap: 20px;
}

.columns > .column {
    padding: 2.5%;
    box-sizing: border-box;
    background: #E7EEF0;
    box-shadow: 1px 1px 4px rgba(0,0,0,0.06);
}

.columns > .column > *:last-child {
    margin-bottom: 0;
}

.columns > .column.left-column {
    width: 60%;
}

.columns > .column.right-column {
    width: 40%;
}

.align-content-center {
    text-align: center;
}

a.btn {
    display: inline-block;
    padding: 10px 40px;
    color: white;
    background: var(--blue-primary);
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    line-height: 1.4;
    opacity: 1;
    transition: opacity 0.2s;
}

a.btn:hover {
    opacity: 0.8;
}

ul.link-list {
    width: 100%;
    max-width: 640px;

    columns: 2;
    -webkit-columns: 2;
    -moz-columns: 2;

    -webkit-column-break-inside: avoid;
    page-break-inside: avoid;
    break-inside: avoid;

    column-gap: 20px;
}

ul.link-list > li {
    margin: 0;
    padding: 0;
    border-bottom: 1px solid #fff;
}

ul.link-list > li > a {
    display: inline-block;
    margin: 0;
    padding: 15px 0 5px;
}

@media ( max-width: 768px ) {

    .columns {
        flex-direction: column-reverse;
    }

    .columns .column {
        padding: 20px;
    }

    .columns .column.left-column,
    .columns .column.right-column {
        width: 100%;
    }
}

@media ( max-width: 480px ) {

    ul.link-list {

        columns: 1;
        -webkit-columns: 1;
        -moz-columns: 1;
    }
}