@font-face
{
    font-family: 'BerlinSans';
    src: url('../fonts/BRLNSR.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

body
{
    margin: 0;
    padding: 0;
    background-color: #fff;
}

#header
{
    text-align: center;
    padding: 40px 0 50px 0;
}

#logo
{
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

#divHexagon
{
    display: block;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    padding: 25px 10px;
}

.hexagonContainer
{
    display:flex;
    justify-content: center;
    align-items: center;
}

.hexagon
{
    position: relative;
    width: 212px;
    height: 245px;
    margin: -22px 10px;
    clip-path: polygon(0 25%, 50% 0, 100% 25%, 100% 75%, 50% 100%, 0 75%);
    background: #386978;
}

.hexagon:hover
{
    background: #23A3E0;
}  

.hexagon:active
{
    background: #076D9E;
}

.hexagon-inner
{
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    /* width: 208px; */
    /* height: 240px; */
    /* left: -3.8%; */
    /* top: 1%; */
    width: 206px;
    height: 238px;
    left: -3.2%;
    top: 1.4%;
    margin: 0 10px;
    clip-path: polygon(0 25%, 50% 0, 100% 25%, 100% 75%, 50% 100%, 0 75%);
    background: white;
}

/* Style of Texts */
.divTitle
{
    width: 206px;
    height: 30px;
    display: inline-block;
    text-align: center;
    border: 0;
    box-sizing: border-box;
    margin: 0;
}

.divText
{
    width: 210px;
    height: 120px;
    display: inline-block;
    text-align: start;
    border: 0;
    box-sizing: border-box;
    margin: 0;
    padding: 5px 15px;
}

.title
{
    color: #1F1F1F;
    text-align: center;
    font-size: 20px;
    font-weight: bold;
    font-family: 'BerlinSans', sans-serif;
}

.text
{
    color: #272727;
    text-align: center;
    font-size: 17px;
    font-weight: normal;
    font-family: 'BerlinSans', sans-serif;
}

footer
{
    text-align: center;
    margin-top: 30px;
    font-family: Arial, sans-serif;
    font-weight: bold;
    color: #9CB9BE;
    font-size: 18px;
}