﻿table {
    font-family: Ari al;
    border-collapse: collapse;
    width: 100%;
}

td, th {
    border: 1px solid #dddddd;
    text-align: left;
    padding: 8px;
}

tr:nth-child(1) {
    background-color: #eeeeee;
}



.home-header {
    display: flex;
    flex-direction: row;
    height: 169px;
    padding-left: 67px;
    padding-right: 67px;
    position: fixed;
    width: 100%;
    transition: height 200ms ease, background-color 200ms ease, box-shadow 200ms ease;
    z-index: 5;
}

    .home-header a {
        margin-top: auto;
        margin-bottom: auto;
        text-decoration: none;
    }

    .home-header .logo {
        margin-right: auto;
    }

        .home-header .logo img {
            height: 60px;
            max-width: 100%;
            object-fit: contain;
        }

    .home-header .text {
        padding-left: 20px;
        padding-right: 20px;
        margin-right: 4px;
        font-family: roboto-regular;
        font-size: 20px;
        color: #00207A;
    }

        .home-header .text:hover,
        .home-header .text.active {
            color: #799fff;
        }

    .home-header .button {
        background-color: #002FB0;
        border-radius: 6px;
        color: #FFF;
        padding-left: 20px;
        padding-right: 20px;
        height: 40px;
        display: flex;
        margin-right: 40px;
        font-family: roboto-regular;
        font-size: 16px;
        align-items: center;
        margin-left: 20px;
        transition: background-color 0.3s ease, color 0.3s ease;
    }

        .home-header .button text {
            vertical-align: middle;
            height: auto;
            margin: auto;
        }

        .home-header .button:hover {
            background-color: #DEE7FF;
            color: #3B6FFF;
            transition: all 0.3s ease;
        }



.page-section-container {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

    .page-section-container.section-light {
        height: 1328px;
        background-color: #F9FCFF;
        box-shadow: 0 0 8px rgba(0,0,0,0.16);
    }

/*.page-section-container.footer {
        height: 110px;
        background-color: #F9FCFF;
        box-shadow: 0 0 8px rgba(0,0,0,0.16);
    }*/

.page-section {
    width: 1456px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    font-family: Roboto;
    z-index: 1;
}

    .page-section.first {
        padding-top: 76px;
        height: 856px;
    }

    .page-section h1,
    .page-section h5 {
        color: #434343;
    }

    .page-section h1 {
        font-family: Roboto;
        font-size: 50px;
        font-weight: 500;
    }

    .page-section h5 {
        font-family: 'Roboto Light';
        font-size: 28px;
    }

        .page-section h5.space.first {
            margin-top: 44px;
        }

    .page-section .image-overlay-container {
        padding-top: 152px;
        width: 100%;
        height: auto;
        z-index: 2;
    }

        .page-section .image-overlay-container img {
            padding: 0;
            margin: 0;
            width: 100%;
            height: auto;
            box-shadow: 0 0 8px rgba(0,0,0,0.16);
        }


