* {
    box-sizing: border-box;
}

a {
    color: #000000;
    text-decoration: none;
    font-size: 1.25em;
}

a:hover {
    color: #bcc3a2;
    text-decoration: none;
}

input {
    color: #000000;
    font-size: 1.25em;
}

textarea {
    color: #000000;
    font-size: 1.25em;
}

label {
    font-weight: bold;
}

button {
    background-color: #ffffff;
    border: 1px solid black;
    color: #000000;
}

button:hover {
    background-color: #cccccc;
    border: 1px solid black;
    color: #000000;
}

.banner {
    position: relative;
    opacity: 0.65;
    background-position: center;
    background-size: cover;
    text-align: center;
    margin-top: 80px;
    width: 100%;
    height: 600px;
}

.caption {
    position: absolute;
    left: 0;
    top: 300px;
    width: 100%;
    text-align: center;
    color: #000;
}

.caption span.border {
    background-color: white;
    color: black;
    padding: 15px 10px;
    font-size: 1em;
    letter-spacing: 10px;
}

.collapsible {
    background-color: #fff;
    color: #333;
    cursor: pointer;
    padding: 5px;
    width: 100%;
    border: none;
    outline: none;
    font-size: 1em;
}

.active, .collapsible:hover {
    background-color: #fff;
    border: 1px solid green;
    color: #000000;
}

.content {
    padding: 0 18px;
    background-color: white;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
}

.head_image {
    background-color: #cccccc;
    height: 500px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.clearfix::after {
    content: "";
    clear: both;
    display: table;
}