.iframe-container {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: auto;
    padding-top: 56.25%;
    /* 16:9 Aspect Ratio (divide 9 by 16 = 0.5625) */
}
.iframe-container-square {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: auto;
    padding-top: 100%;
    /* 16:9 Aspect Ratio (divide 9 by 16 = 0.5625) */
}
.iframe-container-vertical {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: auto;
    padding-top: 177.78%;
    /* 16:9 Aspect Ratio (divide 9 by 16 = 0.5625) */
}


#headerContent{
    width: 100%;
}
/* Then style the iframe to fit in the container div with full height and width */
.responsive-iframe {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    padding-bottom: 10px;

}

.img-container {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: auto;
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    justify-content: space-evenly;


}

.img-responsive {

    max-width: 49.5%;
    height: auto;
    margin: 1.6em auto 1.5em;
}

.fine-print{
    line-height: 1.5;
    font-size: large;

}


a:link,
a:visited {
    color: black;
    background-color: White;
    text-decoration: none;
    border-bottom: 0.4rem double pink;
    font-weight: bold;
    /* target-new: window; */
}

a:hover {
    color: White;
    background-color: Red;
    text-decoration: none;
    /* target-new: window; */
}

.grid-parent {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    /* grid-template-rows: repeat(2, 1fr); */
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    /* border: 1pt red dotted; */
}
.grid-parent2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    /* border: 1pt red dotted; */
}

@media (max-width: 40.0rem) {

    .img-container {
        position: relative;
        overflow: hidden;
        width: 100%;
        height: auto;
        display: block;



    }

    .img-responsive {

        max-width: 100%;
        height: auto;
    }
    
    .grid-parent,.grid-parent2 {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        /* grid-template-rows: repeat(2, 1fr); */
        grid-column-gap: 20px;
        grid-row-gap: 20px;
        /* border: 1pt red dotted; */
        }
    
}