﻿body {
    margin: 0px;
}

.maxWidth {
}

.footer {
    position: fixed;
    bottom: 0;
    background-color: #ffffff00;
    vertical-align: top;
    text-decoration: none;
    z-index: 0;
    width: 100%;
    height:60px;
}

@media only screen and (min-width: 800px) {
    .maxWidth {
        width: 900px;
        margin: 0 auto;
    }
    .footer {
        width: 800px;
        margin: 0 auto;
    }
}

.shadowBox {
    box-shadow: 0px 3px 0px 0px rgba(0,0,0, 0.1) !important;
    text-align: center;
    margin: 10px;
    padding: 5px;
}

.shadowBox h1{
    color: #006ab3;
}

.subtitleBox {
    width: 85%;
    background-color: #8ab2db;
    border-top-left-radius: 100px;
    border-Bottom-left-radius: 100px;
    padding-top: 5px;
    padding-bottom: 5px;
    padding-left: 10px;
    color: white;
    margin-top: 5px;
    margin-left: 15%;
    display: flex;
}

/* The Modal (background) */
.modal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 1; /* Sit on top */
    padding-top: 100px; /* Location of the box */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgb(0,0,0); /* Fallback color */
    background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}

/* Modal Content */
.modal-content {
    background-color: #fefefe;
    margin: auto;
    padding: 2%;
    border: 1px solid #888;
    width: 95%;
}

/* The Close Button */
.close {
    color: #aaaaaa;
    float: right;
    font-size: 30px;
    font-weight: bold;
}

    .close:hover,
    .close:focus {
        color: #000;
        text-decoration: none;
        cursor: pointer;
    }

.horizontal {
    display: flex;
    overflow-x: hidden;
}

.imageBox {
    margin: 7px;
    border: 2px solid #cfe1f2;
    border-radius: 18px;
    text-align: center;
    color: #89bcec;
    font-size: 3vw;
    font-weight: bold;
    width: 156px;
}

.imageBox img{
    width:100%;
    padding: 5%;

}

.imageBox p{
    width: 156px;
    font-size:20px;
}
.cardBox {
    margin: 15px;
    border: 1px solid rgba(0,0,0,.125);
    border-radius: 20px;
    border-width: 2px;
    margin-bottom: 30px;
    box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2);
    background-color: #fff;
    padding: 10px;
}

.cardBox:hover {
    box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2);
}


.panelBox {
    color: black;
    background-color: #d9edf7;
    border-color: #ddd;
    border-bottom: 0;
    padding: 10px 15px;
    border-top-left-radius: 3px;
    border-top-right-radius: 3px;
    cursor: pointer;
    display: block;
}

.arrow-pointer {
    color: white;
    height: 30px;
    background: #32557f;
    position: relative;
}


.arrow-pointer::before {
    content: '';
    position: absolute;
    right: -15px;
    bottom: 0;
    width: 0;
    height: 0;
    border-left: 15px solid #32557f;
    border-top: 15px solid transparent;
    border-bottom: 15px solid transparent;
}

/*.arrow-pointer::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: 0;
            width: 0;
            height: 0;
            border-left: 15px solid #32557f;
            border-top: 15px solid transparent;
            border-bottom: 15px solid transparent;
        }*/
    
