@charset "UTF-8";
/* CSS Document */

.blockfrontcontent  {
    height: 580px;
    background-size: cover;
    background-position: top;
}
.blockfrontcontent:before  {
    content: '';
    position: absolute;
    top: 0px;
    left :0px;
    right: 0px;
    bottom: 0px;
    background-color: rgba(0, 23, 54, 0.58);
}

.blockfrontcontent h1, h2 {
    color: #ffffff;
    font-family: 'PFPremier';
}


.blockfrontcontent h1 {
    position: relative;
    font-weight: 600;
    font-size: 24vmin;
    line-height: 22vmin;
    margin: 0px;
    letter-spacing: 1vw;
}

.blockfrontcontent h2 {
    font-family: Manrope;
    font-weight: 300;
    font-size: 20px;
    letter-spacing: 0.15vw;
}
.blockfrontcontent  h1:after {
    position: absolute;
    content: '';
    left: 0px;
    bottom: 5px;
    height: 4px;
    width: 100%;
    background-color: #ffffff;
    transform: scaleX(0);
    transition: transform 450ms ease-in-out;
}
.blockfrontcontent  h1:before {
    position: absolute;
    content: '';
    left: 0px;
    top: 0px;
    height: 4px;
    background-color: #ffffff;
    width: 100%;
    transform: scaleX(0);
    transition: transform 450ms ease-in-out;
}
.blockfrontcontent h1:hover:after {
    transform: scaleX(0.7);
}
.blockfrontcontent h1:hover:before {
    transform: scaleX(0.7);
}

@media only screen and (max-width: 959px) {
    .blockfrontcontent  {
        height: 350px;
    }
}

.blockfrontcontent-video-overlay {
    background-color: rgba(0, 23, 54, 0.48);
}
