:root
{
    --dark-grey: #2F2F2F;
    --bubble-blue: #062FA7;
    --regular-grey: #818181;
    --light-grey: #F0F0F0;
    --orange: #F9A23D;
    --green: #6DD475;
    --red: #E6413D;
}

* {
    margin: 0;
    padding: 0;
    overflow: hidden;
    box-sizing: border-box;
    outline: none;
    -webkit-tap-highlight-color: transparent;
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 400;
    color: var(--dark-grey);
}

html {
    -webkit-font-smoothing: antialiased;
    height: 100%;
    width: 100%;
    overflow: visible;
    background-color: var(--light-grey);
}

body {
    overflow-x: hidden;
    overflow-y: auto;
    height: 100%;
}


.page-wrapper
{
    margin: 0 auto;
    width: auto;
    max-width: 1200px;
    padding: 30px;
}

.item-container
{
    max-width: 1200px;
    display: flex;
    flex-wrap: wrap;
}

.page-wrapper a
{
    font-weight: 800;
    border: 1px solid var(--dark-grey);
    border-radius: 90px;
    padding: 10px 20px;
    font-size: 20px;
    text-decoration: none;
    color: white;
    background-color: var(--dark-grey);
}

.page-wrapper > img
{
    display: block;
    width: 230px;
    max-height: 34px;
    margin: 20px auto 20px auto;
}

.page-wrapper h1
{
    font-weight: 800;
    font-size: 20px;
    padding: 0 10px;
    margin-bottom: 20px;
    color: var(--bubble-blue);
    text-align: center;
}

.page-wrapper .pdf-container
{
    width: 100%;
    height: 300px;
    margin-bottom: 50px;
}

.page-wrapper .pdf-container img
{
    height: calc(100% - 80px);
    width: 100%;
    object-fit: contain;
}

.page-wrapper .pdf-container a
{
    background-color: var(--bubble-blue);
    margin: 20px auto 0;
    display: block;
    width: max-content;
}

.page-wrapper .item
{
    border-bottom: 1px solid var(--regular-grey);
    margin-bottom: 50px;
    width: 100%;
}

@media only screen and (min-width: 720px)
{
    .page-wrapper .item
    {
        width: 50%;
    }

    .page-wrapper h1
    {
        height: 108px;
    }
}


@media only screen and (min-width: 1200px)
{
    .page-wrapper .item
    {
        width: calc(100% / 3);
    }



}