.info-main-container
{
    width: 100%;
    background-color: black;
}

.info-header-image-container {
    width: 100%;
    height: 300px;
    background-image: url("../images/jpg/backgrounds/sea_and_sun.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.info-sub-container {
    width: 100%;
    padding-left: 10%;
    padding-right: 10%;
    padding-bottom: 10%;
}

.info-title-1 {
    margin-top: 100px;
    margin-bottom: 100px;
    color: white;
    font-size: 30pt;
}

.info-textbox {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    margin-top: 25px;
}

.info-title-2 {
    width: 100%;
    margin-right: 20px;
}

.info-title-2 > h2 {
    color: white;
}

.info {
    width: 100%;
}

.info > p {
    color: white;
}

.info {
    color: white;
}

.info-table-container {
    width: 100%;
    padding-top: 50px;
    padding-bottom: 50px;
}

.info-table {
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    border-style: solid;
    border-width: 1px;
    border-color: white;
    color: white;
}

.info-table-caption > p {
    text-align: center;
    color: white;
}

.info-table-row {
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
}

.info-table-head {
    width: calc(1% * 100 / 8);
    text-align: center;
}

.info-table-data {
    width: calc(1% * 100 / 8);
    text-align: center;
}

.info-image {
    width: 100%;
    margin-top: 50px;
    margin-bottom: 50px;
}

.about-table {
    color: white;
}

/* ---------- Breakpoints ----------*/

@media only screen and (min-width: 800px) {

}

@media only screen and (min-width: 1400px) {
    #logo {
        position: fixed;
        z-index: 3;
        top: 50px;
        left: 7%;
    }
    
    #menu-icon
    {
        position: fixed;
        z-index: 3;
        color: white;
        font-size: 15pt;
        cursor: pointer;
        top: 50px;
        right: 7%;
    }

    /* ---------- About ----------*/

    .info-textbox {
        flex-direction: row;
    }

    .info-title-2 {
        width: 20%;
    }
    
    .info {
        width: 80%;
        color: white;
    }

    .info-table {
        flex-direction: column;
    }
    
    .info-table-caption > p {
        text-align: center;
    }
    
    .info-table-row {
        flex-direction: row;
    }
    
    .info > li {
        color: white;
    }

    .about-table {
    color: white;
    }
}