@font-face {
    font-family: 'brignellsquare';
    src: url("../fonts/brignell_square_bold-webfont.woff2") format("woff2"),
    url("../fonts/brignell_square_bold-webfont.woff") format("woff");
    font-weight: 800;
    font-style: normal
}

@font-face {
    font-family: 'brignellsquare';
    src: url("../fonts/brignell_square_medium-webfont.woff2") format("woff2"),
    url("../fonts/brignell_square_medium-webfont.woff") format("woff");
    font-weight: 500;
    font-style: normal
}

@font-face {
    font-family: 'brignellsquare';
    src: url("../fonts/brignellsquare_regular-webfont.woff2") format("woff2"),
    url("../fonts/brignellsquare_regular-webfont.woff") format("woff");
    font-weight: 400;
    font-style: normal
}
html,
body {
    display: grid;
    background-color: #f2f2f2;
    color: #262626;
    min-height: 100vh;
    font-family: "brignellsquare",-apple-system,system-ui,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue", sans-serif;
}

.bg-light {
    background-color: #e8e8e8;
}

.video-container {
    display: inline-block;
    height: 100%;
    width: 100%;
    position: relative;
    margin: 0 auto
}

.video-container__video {
    height: 100%;
    width: 100%;
    max-width: 90vw;
    max-height: 60vh;
    object-fit: scale-down;
    z-index: 1;
    cursor: pointer
}
.mt-auto {
    margin-top: auto;
}
.my-auto {
    margin-top: auto;
    margin-bottom: auto;
}
.video-container__playpause {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 80px;
    height: 80px;
    visibility: hidden;
    text-indent: 200%;
    overflow: hidden;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: opacity 225ms ease-in-out;
    z-index: 2;
    border: none;
    -webkit-appearance: none;
    background-size: contain;
    white-space: nowrap
}

.video-container__playpause:focus {
    outline: none
}

.video-container[data-state="loaded"] .video-container__playpause {
    opacity: 1.0;
    top: 80%;
    text-align: left;
    width: 135px;
    background: none;
    text-indent: 0;
    font-family: 'brignellsquare';
    font-weight: 800
}

@media screen and (max-width: 1140px) {
    .video-container[data-state="loaded"] .video-container__playpause {
        text-align:center
    }
}

.video-container[data-state="pause"] .video-container__playpause {
    opacity: 1.0;
    background: url(../images/button--play.svg) center center no-repeat
}

.video-container[data-state="play"] .video-container__playpause {
    background: url(../images/button--pause.svg) center center no-repeat
}

.video-container:hover .video-container__playpause {
    opacity: 1.0
}

.touchevents .video-container[data-state="play"] .video-container__playpause {
    opacity: 0
}
.contact-info {
    font-weight: 500
}
.contact-info a {
    color: #242424;
}