/*Mobile css*/

:root {
    --grid-pad: 6vw;
    --corner-size: 15px;
    --tag-height: 28px;
}

.hide-on-mobile {
    display: none;
}

.mainGrid {

    grid-template-columns: var(--grid-pad) 1fr 2fr 1fr var(--grid-pad);
    grid-template-rows: var(--grid-pad) 1fr 95px var(--grid-pad);

    min-width: 100%;

}

@keyframes buttonPress {
    0% {transform: scale(1)}

    50% {transform: scale(0.9)}

    100% {transform: scale(1)}
}

.btn-pressed {
    animation: buttonPress 0.3s ease-out;
}


.videoPoster {
    min-width: 100%;
}

#rawvideo {
    min-width: 100%;
}

.block-title {

    justify-self: end;
    align-self: end;
    /*    margin-bottom: 100px;*/

    line-height: 0.82em;
    text-transform: uppercase;
    /*    margin-top: 4vh;*/
    font-size: 60px;
    text-align: end;
    width: 60%;
    max-width: 250px;
}

.block-title strong {
    color: var(--main-colour);
}

.block-title p {
    display: block;
    font-size: 19px;
    margin-top: 4vh;
    padding: 0;
    line-height: 0;

    font-weight: 600;

    background-color: var(--btn-text-colour);

    padding: 14px;
    border-radius: 20px;

    text-align: center;

    opacity: 0.8;
    
    cursor: pointer;
}

.block-title.post {
    text-align: center;
    width: 100%;
    max-width: 100%;
    margin-top: 100px;
    
    justify-self: center;
    align-self: center;
}


.moreInfo-btn::before {
    content: 'more';
}

.moreInfo-btn.active::before {
    content: 'less';
}



.signUp-btn {
    grid-column-start: 2;
    grid-column-end: 5;

    grid-row-start: 3;
    grid-row-end: 4;

    width: 100%;
    margin: 1vh 0px;

    border-radius: 0px;
    
    z-index: 100;

    /*    border: solid calc(var(--stroke-width)) var(--main-colour);*/

}

.signUp-btn:hover {
    width: 100%;
}



@keyframes hover {
    from {
        transform: translateY(-5px)
    }

    to {
        transform: translateY(5px)
    }
}




.corner-top-left {
    border-right: calc(var(--stroke-width) *1.5) solid var(--main-colour);
    border-top: calc(var(--stroke-width) *1.5) solid var(--main-colour);
}

.moreInfo-content {

    grid-column-start: 2;
    grid-column-end: 5;

    grid-row-start: 2;
    grid-row-end: 3;

    display: block;

    margin-bottom: 45px;

    align-self: end;
    /*    position: absolute;*/
    background-color: var(--btn-text-colour);
    width: 100%;
    /*    height: 0%;*/

    overflow: hidden;

    /*    transform: translateY(-30px);*/

    transition: transform 0.3s ease-in, opacity 0.3s ease-in;

    /*    border-radius: 0px 0px 10px 10px;*/

    transform: scale(0.8);

    border-radius: 10px;

    box-shadow: 0px 20px 20px rgba(0, 0, 0, 0.1);

    opacity: 0;

    z-index: 10;

    font-size: 18px;
    line-height: 1.6em;

    display: flex;
    align-items: center;
}

.moreInfo-content.active {
    /*    height: auto;*/
    /*    transform: translateY(0px);*/
    /*     background-color: black;*/
    transition: transform 0.3s ease-out, opacity 0.3s ease-out;
    transform: scale(1);
    opacity: 0.96;
}


.logoType {
    font-size: 30px;
}

.moreInfo-btn {}

.moreInfo-info {
    color: var(--main-colour);
    padding: var(--grid-pad);
    /*    opacity: 0;*/

    transition: opacity 0.2s ease-in;
}

.moreInfo-info.active {


    /*    opacity: 1;*/
}



.more-info-close-btn {
    fill: var(--btn-text-colour);
    float: right;
}

.bm-logo {
    width: 60vw;
    height: 60vw;
    padding: 3%;
}

.jotform {
    min-height: 100%;
/*    height: 100%;*/
    max-height: 100%;
}

