/* CSS Document */
#safereport h2 {
    color: #1C2675;
    font-weight: bold;
    margin-top: 40px;
    line-height: 1.3em;
}
.safereport-logos {
    float: right;
    margin-left: 50px;
}
.safereport-logos img {
    display: block;
    margin-bottom: 25px;
}
#safereport-contact {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    text-align: center;
    margin: 20px 0 20px;
}
#safereport-contact div {
    border: 1px dotted #009CDE;
    border-radius: 10px;
}
#safereport-contact div img {
    max-width: 80px;
    width: 100%;
    height: auto;
}
#safereport-contact {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}
#safereport-telephone {
    grid-column-start: 1;
    grid-column-end: 3;
}
#safereport a {}
#safereport a:hover {
    color: #1C2675;
}
#safereport-telephone img {
    float: left;
    margin-right: 40px;
}
#safereport-contact div {
    padding: 10px;
    min-height: 0;  /* NEW */
    min-width: 0;   /* NEW; needed for Firefox */
}
#safereport-contact div div {
    border: none;
}
@media only screen and (max-width: 800px) {
    #safereport-contact {
        grid-template-columns: 1fr;
    }
    #safereport-telephone {
        grid-column-start: 1;
        grid-column-end: 1;
    }
}
