* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Nunito Sans', sans-serif;
    scroll-behavior: smooth;
}

.nav {
    position: fixed;
    width: 100%;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 2em;
    background: #fff;
    z-index: 999;
}

a {
    text-decoration: none;
    text-transform: uppercase;
    color: #000;
    font-weight: 500;
    font-size: 12px;
}

.items-left a, .items-right a {
    font-size: 0.8em;
    font-weight: 800;
    background-color: transparent;
    padding: 5px;
    border-radius: 6px;
}

.items-left a:hover {
    background-color: #e5e5e5;
}

.items-right a:hover {
    background-color: #e5e5e5;
}

.down-arrow {
    display: flex;
    position: fixed;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    padding: 2px;
    border-radius: 6px;
    cursor: pointer;
    background-color: transparent;
    bottom: 100px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
}

.down-arrow:hover {
    background-color: #e5e5e5;
}

.down-arrow img {
    width: 30px;
    height: 30px;
}

.container {
    width: 100%;
    height: 100vh;
    background: #fff;
}

.content {
    width: 100%;
    background-color: #fff;
    position: relative;
    padding: 0 4em;
    padding-bottom: 100px;
    z-index: 2;
}

.content img {
    width: 100%;
    margin-bottom: 4em;
}

.content div img {
    width: 100%;
    max-width: 1280px;
    display: block;
    margin: 0 auto;
    margin-bottom: 4em;
}

.content * {
    text-align: center;
}

.content h2 {
    font-weight: 700;
    margin-bottom: 25px;
}

.content .footer {
    width: 100%;
    min-height: 125px;
    background-color: transparent;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 12.5px;
    padding-top: 42.5px;
}

.content .footer .footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    max-height: 125px;
    max-width: 125px;
    min-width: 50px;
    min-height: 50px;
}

.content .footer .footer-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.table {
    width: 100%;
    max-width: 1200px;
    height: 600px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    margin: 0 auto;
    margin-bottom: 50px;
}

.table .img {
    width: 50%;
    height: 100%;
}

.table .img img {
    width: 100%;
    min-width: 300px;
    height: 100%;
    object-fit: cover;
}

.table .text {
    width: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.table .text p {
    text-align: center;
}

@media only screen and (max-width: 768px) {
    .table .img {
        width: 100%;
        height: 50%;
    }
    
    .table .text {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
    }

    .items-left a, .items-right a {
        font-size: 0.7em;
        font-weight: 600;
        background-color: transparent;
        padding: 5px;
        border-radius: 6px;
    }
}