body {
    font-family: Montserrat;
    color: whitesmoke;
    background-color: whitesmoke;
    /* background-image: url(/img/background1.svg); */
    background-size: cover;
    background-position: center left;
    background-repeat: no-repeat;
    background-attachment: fixed;
    text-align: center;
}

.DocumentContainer {
    /* padding: 2em;
    margin: 0.5em; */
    /* background-color: #0366D0; */
    /* text-shadow: 0 0 1em black; */
    /* background-color: whitesmoke; */
    /* box-shadow: 0 0 16px rgba(0,0,0, 0.125); */
    color: black;
    max-width: 1024px;
    width: calc(100% - 4em);
    display: inline-block;
    margin: 1em;
    padding: 1em;
    text-align: left;
}

.accordion {
    /* background-color: #eee; */
    /* color: #444; */
    cursor: pointer;
    padding: 1em;
    width: 100%;
    border: none;
    text-align: left;
    outline: none;
    /* font-size: 1em; */
    transition: 0.4s;
    background-color: rgba(255, 255, 255, 0.95);
    border-style: solid;
    border-width: 0 0 2px 0;
    border-color: #F8F8F8;
    margin: 0;
}

.active,
.accordion:hover {
    /* background-color: #ccc; */
}

.panel {
    padding: 0 2em;
    margin: 0.5em 0;
    /* background-color: white; */
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
}

button.accordion::after {
    content: '\002B';
    color: #777;
    font-weight: bold;
    float: right;
    margin-left: 5px;
}

.certlogo {
    height: 192px;
    width: 256px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    display: inline-block;
}

.ConsultaButton {
    font-size: 1.5rem;
    font-weight: bold;
    border-style: solid;
    border-width: 0px 0px 0px 0px;
    border-color: #38B048;
    border-radius: 8px;
    padding: 0.5em 1em;
    background-color: #077AE4;
    color: whitesmoke;
    display: inline-block;
    cursor: pointer;
    transition-duration: 250ms;
}

.ConsultaButton:hover {
    background-color: #38B048;
    transform: scale(1.1);
}

.BG-Primary{
    background-color: #FFFFFF;
    /* background-color: red; */
}
.BG-Secondary{
    background-color: #F8F8F8;
    /* background-color: blue; */
}