@charset "UTF-8";
/* CSS Document */
/* Tom Hunter Photography © */

.collapsible-serv {
    background-color: #036;
    color: white;
    cursor: pointer;
    min-width: 450px;
    border: none;
    text-align: center;
    outline: none;
    font-size: 20px;
    border-radius: .8em .8em .8em .8em;
    padding-top: 8px;
    padding-bottom: 8px;
    z-index: 1;
}
.collapsible-port {
    background-color: #036;
    color: white;
    cursor: pointer;
    width: 540px;
    border: none;
    text-align: center;
    outline: none;
    font-size: 20px;
    border-radius: .8em .8em .8em .8em;
    padding-top: 8px;
    padding-bottom: 8px;
    z-index: 1;
}

.active,
.collapsible:hover {
    background-color: #900;
}

.collapsible:after {
    content: '\002B';
    color: white;
    font-weight: bold;
    float: right;
    margin-left: 5px;
}

.active:after {
    content: "\2212";
}

.content {
    text-align: left;
    margin-top: 15px;
    width: 90%;
    padding: 0 18px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
    background-color: #f1f1f1;
    border-radius: .8em .8em .8em .8em;
}

.tooltip {
    position: relative;
    display: inline-block;
    border-bottom: 1px dotted black;
}

.tooltip .tooltiptext {
    visibility: hidden;
    width: 200px;
    background-color: #036;
    color: #fff;
    text-align: center;
    border-radius: 6px;
    padding: 8px;
    position: absolute;
    z-index: 1;
    bottom: 150%;
    left: 50%;
    margin-left: -60px;
}

.tooltip .tooltiptext::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: black transparent transparent transparent;
}

.tooltip:hover .tooltiptext {
    visibility: visible;
}

@media only screen and (min-width: 0px) and (max-width: 775px) {

    .collapsible {
        font-size: 25px;
        padding-top: 12px;
        padding-bottom: 12px;

    }


}


