﻿* {
    padding: 0;
    margin: 0;
}
/* Section styling */

body {
    font-family: sans-serif;
}

/************************/
/* CONTAINER FORMATTING */
/************************/

.content {
    width: 100%;
    /*margin: 0 auto;*/

}

.header {
}

.navContainer {
    display: flex;
    align-content: center;
    background-color: #0094ff;
}

.navigation {
}

    .navigation button {
        padding: 10px 20px;
        font-size: 20px;
        height: 170px;
        background-color: #0094ff;
        color: white;
        border: hidden;
    }

        .navigation button:hover {
            background-color: #044574;
            color: white;
        }

.imageContainer {
    flex: 1;
}


.actualcontentleft {
    margin-left: 20px;
}
.actualcontentcentered {
    text-align: center;
}
.actualcontentevents {
    margin-left: 20px;
    display: flex;
    gap: 50px;
}
/************************/
/* CONTENT FORMATTING */
/************************/
.logo {
    height: 150px;
    margin-left: 20px;
    margin-right: 20px;
    margin-top: 10px;
}

.pageTitle {
    margin-top: 20px;
    margin-left: 20px;
    font-size: 30px;
    margin-bottom: 30px;
}

.agentpic {
    margin: 0 auto;
    margin-top: 20px;
}

p {
    margin-bottom: 20px;
    font-size: 22px;
}
a:link {
    font-size: 22px;
}

/************************/
/* EVENTS MENU          */
/************************/

.eventList {
    width: 350px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    flex-wrap: wrap;
    align-self: flex-start;
}

.hexagonArea {
    display: flex;
}

    .hexagonArea.row2 {
        transform: translateY(-20px);
    }

    .hexagonArea.row3 {
        transform: translateY(-40px);
    }

    .hexagonArea.row4 {
        transform: translateY(-60px);
    }

    .hexagonArea.row5 {
        transform: translateY(-80px);
    }

    .hexagonArea.row6 {
        transform: translateY(-100px);
    }

    .hexagonArea.row7 {
        transform: translateY(-120px);
    }

.hexagon {
    position: relative;
    width: 100px;
    height: 125px;
    margin: 0 5px;
    clip-path: polygon(0 25%, 50% 0, 100% 25%, 100% 75%, 50% 100%, 0 75%);
    background: #0094ff;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    flex-direction: column;
    cursor: pointer;
    transition: .5s;
}

    .hexagon h3 {
        font-size: 18px;
        font-weight: normal;
        color: #fff;
    }

    .hexagon:hover {
        background: #044574;
        transform: scale(0.8);
    }
.hexagonempty {
    position: relative;
    width: 100px;
    height: 125px;
    margin: 0 5px;
    clip-path: polygon(0 25%, 50% 0, 100% 25%, 100% 75%, 50% 100%, 0 75%);
    background: #fff;
}

.eventDetails img {
    margin-left: 10px;
    align-self: flex-start;
}