body {
    font-family: "Open Sans", Arial, sans-serif;
    margin: 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.top-header {
    height: 28px;
    background-color: #00d1d1;
}

.bottom-header {
    height: 70px;
    background-color: #001a1c;
    display: flex;
    align-items: center;
}

.container {
    max-width: 100%;
    width: 100%;
    margin: auto;
    margin-top: 0;
    padding: 0;
}

.brand {
    display: flex;
    margin-left: 175px;
}

.logo {
    width: 164px;
}

.page-header {
    margin: 60px 0 50px;
}

#terms-and-conditions {
    margin-bottom: 4rem;
}

.terms-table {
    display: flex;
    flex-direction: column;
    margin: auto;
}

.table-row {
    display: flex;
    border: 2px solid #898f89;
}

.table-row:nth-child(even) {
    background-color: #e6e6e6;
}

.table-col {
    text-align: center;
    border-right: 2px solid #898f89;
    padding: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.table-col:last-child {
    border-right: none;
}

.table-row:not(:first-child) {
    border-top: none;
}

.table-col.language,
.table-col.document {
    width: 10%;
}

.table-col.description {
    width: 80%;
}

.pdf {
    width: 50px;
}

.footer {
    background-color: #001a1c;
    height: 3rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer a {
    text-decoration: none;
    color: #00d1d1;
}

@media(min-width: 1200px) {
    .container {
        max-width: 1170px;
        padding: 0 15px;
    }
}

@media(max-width: 991px) {
    .terms-table {
        width: 1170px;
    }

    #terms-and-conditions {
        overflow-x: scroll;
    }

    .table-col.language, .table-col.document {
        width: 100px;
    }

    .table-col.description {
        width: calc(100%-200px);
    }

    .brand {
        margin-left: 20px;
    }
}
