.container {
    margin-right: auto;
    margin-left: auto;
    padding-left: 15px;
    padding-right: 15px;
}
@media (min-width: 768px) {
    .container {
        width: 750px;
    }
}
@media (min-width: 992px) {
    .container {
        width: 970px;
    }
}
@media (min-width: 1200px) {
    .container {
        width: 1200px;
    }
}

body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    position: relative;
    float: left;
    width: 100%;
    overflow-x: hidden;
    font-size: 16px;
    line-height: 24px;
}

body .splashpage{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    position: relative;
    margin: 0 auto;
    width: 100%;
    height: 100vh;
    overflow: hidden;

    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
}

body .splashpage::before{
    content: "";
    position: absolute;
    height: 100vh;
    width: 100%;
    top: 0;
    left: 0;
    background-color: rgba(0,0,0, 0.5);
}

body .splashpage a.button{
    transition: 200ms ease-in-out all;
    position: relative;
    display: inline-block;
    width: fit-content;
    color: #fff;
    border: 1px solid #fff;
    padding: 10px 25px;
    text-decoration: none;
    font-weight: 700;
    pointer-events: auto;
    border-radius: 5px;
}

body .splashpage a.button:hover{
    scale: 1.05;
}

body .splashpage .col-holder{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    width: 100%;
    height: 100vh;
}

body .splashpage .col-holder .topcol{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 100%;
    padding-bottom: 40px;
}

body .splashpage .col-holder .topcol img{
    display: inline-block;
    position: relative;
    width: unset;
    height: 100px;
}

body .splashpage .col-holder .topcol b{
    display: inline-block;
    position: relative;
    width: 100%;
    margin: 60px 0 20px 0;
    color: #fff;
    text-align: center;
}

body .splashpage .col-holder .half-columns{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    width: 100%;
}

body .splashpage .col-holder .half-columns .leftcol, body .splashpage .col-holder .half-columns .middlecol, body .splashpage .col-holder .half-columns .rightcol{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 33.3333%;
    pointer-events: none;
}

body .splashpage .col-holder .half-columns .leftcol img,  body .splashpage .col-holder .half-columns .middlecol img, body .splashpage .col-holder .half-columns .rightcol img{
    display: inline-block;
    position: relative;
    width: auto;
    height: 100%;
    max-height: 80px;
    margin-bottom: 20px;
}

@media(max-width:919px) {
    body .splashpage .col-holder .half-columns .leftcol, body .splashpage .col-holder .half-columns .middlecol, body .splashpage .col-holder .half-columns .rightcol{
        width: 100%;
        margin-bottom: 20px;
    }
}

@media(max-width:767px) {
    body .splashpage .col-holder .topcol{
        padding-bottom: 20px;
    }

    body .splashpage .col-holder .topcol img{
        width: 100%;
        height: auto;
        padding: 0 20px;
    }
}