.offices {
    grid-column-gap:0;
}
.offices .right.max-width {
    max-width: none;
    width: 100%;
    margin-left: 0;
}
.header-div {
    height:20vh;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    display:flex;
    align-items:flex-end;
    margin-bottom:2em;
}
.header-div h1#product-heading  {
    margin:0;
    padding:1em 2em;
    color:white;
    background:rgb(0 0 0 / 75%);
    min-width: 25vw;
    text-align: center;
}
#product-div {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    grid-gap: 50px;
    justify-content: center;
    width:80%;
    margin:auto auto auto 65px;
}

.prod-panel{
    width:100%;
    border: 1px #ccc solid;
    border-radius: 6px;
    margin:0 auto;
}
.panel-header {
    border-radius: 5px 5px 0 0;
    width: 100%;
    margin: 0;
    padding: 1.2em;
    text-align: center;
    margin-bottom: 10px;
    /* font-size: 1.5em;
    font-weight: bold; */
    background-color: var(--lag-dark);
}
#product-div .panel-header h2 {
    color:white;
    font-size:1.5em;
    margin:0
}
#product-div .panel-header h2 a{
    text-decoration: underline;
}
#product-div .panel-header a{
    color:white;
}
.product-img {
    width:150px;
    -webkit-box-shadow: 0 1px 4px rgb(0 0 0 / 40%);
    box-shadow: 0 1px 4px rgb(0 0 0 / 40%);
}
.panel-content {
    display: grid;
    grid-template-columns: 1fr 200px;
    grid-column-gap: 1em;
    padding: 1em;
    justify-items: center;
}
.panel-content li {
    padding:3px 0;
    margin-left:.5em;
    margin-bottom:.5em;
    display:flex;
    align-items: flex-start;
    grid-column-gap:.5em;
}
.panel-content ul li:before {
    content: "";
    height: 0;
    width: 0;
    margin-top:.4em;
    border-color: transparent var(--lag-dark);
    border-style: solid;
    border-width: 0.45em 0 0.45em 0.55em;
    /* position: relative; */
    display: block;
    left: -1em;
    top: 1.25em;
}
.panel-desc p {
    margin:0;
}
@media (max-width:450px) {
    .header-div {
        height:15vh;
    }
    .header-div h1#product-heading {
        height: 100%;
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size:1.75em;
    }
    .panel-content {
        display: flex;
        flex-wrap:wrap;
        grid-gap: 1em;
        padding: 1em;
        align-items: top;
        justify-content: center;
    }
}

iframe {
    border:none;
    width:99%;
    height:calc(100vh - 75px);
}

@media (min-width:850px) {
    #product-div {
        grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
        margin:auto;
    }
    iframe {
        width:calc(100% + 1em);
    }
}

