@font-face {
    font-family: 'meta_bold';
    src: url('fonts/metaboldc-webfont.woff2') format('woff2'),
        url('fonts/metaboldc-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'meta_italic';
    src: url('fonts/metabookc-italic-webfont.woff2') format('woff2'),
        url('fonts/metabookc-italic-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'meta';
    src: url('fonts/metabookc-webfont.woff2') format('woff2'),
        url('fonts/metabookc-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

.Page {
    font-family: 'meta', Calibri, 'Trebuchet MS', sans-serif;
    font-size: 15px;
    line-height: 22px;
}

.Container {
    margin: 0 auto;
    padding: 16px 64px;
    max-width: 760px;
    /* min-width: 600px; */
}

.Logo {
    margin: 0 auto;
    display: flex;
    justify-content: center;
}

.Logo_Image {
    max-width: 315px;
    text-align: center;
}

.Header {
    font-family: meta_bold;
    font-size: 18px;
    line-height: 22px;
    text-align: center;
    margin-bottom: 0.5em;
}

.Header_no-text {
    margin-bottom: 0.2em;
}

.Text {
    text-align: center;
    margin: 0;
    font-size: 16px;
}

.Details {
    margin: 0;
    text-align: center;
    line-height: 20px;
}

.Details-break {
    margin-bottom: 7px;
}

.Link {
    font-family: meta;
    color: #205d9e;
}

.Accent {
    font-family: meta_bold;
    font-size: 24px;
    line-height: 28px;
    text-align: center;
    margin-bottom: 0.2em;
}

.Oblique {
    font-family: meta_italic;
    text-align: center;
    margin: 0;
}

.Suppliers {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top: 20px;
}

.Suppliers-Column {
    display: flex;
    justify-content: center;
    flex: 1;
    width: 200px;
    margin-bottom: 20px;
}

.Suppliers-Column .Column {
    border-right: 1px dotted black;
    box-sizing: border-box;
    padding: 0 16px;
    display: flex;
}

.Suppliers-Column:last-child .Column {
    border: none;
}

.Column {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.Supplier {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    margin: 0 auto 22px;
}

.Supplier:last-child {
    margin-bottom: 0;
}

.Supplier-Logo {
    margin-bottom: 2px;
}

.Supplier-Description {
    margin: 0;
    text-align: center;
}

.Supplier-Link {
    margin: 0;
}

.Register {
    background-color: #40ad48;
    width: 160px;
    height: 44px;
    border-radius: 16px;
    display: block;
    color: white;
    font-size: 26px;
    line-height: 44px;
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    text-transform: uppercase;
    text-align: center;
    margin: 0 auto;
    cursor: pointer;
}

.Register-Link, 
.Register-Link:link,
.Register-Link:visited {
    color: white;
    text-decoration: none;
}

.Register-Link:hover {
    color:rgb(150, 74, 65);
}


@media screen and (max-width: 640px) {
    .Container {
        padding: 16px;
    }
}

@media screen and (max-width: 730px) {
    .Suppliers-Column .Column {
        border: none;
    }
    .Suppliers-Column:first-child .Column {
        border-right: 1px dotted black;
    }
}

@media screen and (max-width: 460px) {
    .Suppliers-Column:first-child .Column {
        border: none;
    }
    .Suppliers {
        flex-direction: column;
        align-items: center;
    }
}