﻿body {
    margin: 0;
    background-color: rgb(214,74,0);
    font-family: myriad-pro, sans-serif !important;
    overflow-x:hidden;
}
.MainHolder{
    display:flex;
    flex-direction:column;
    min-height:100vh;
    width:100%;
}
.AtsHolder {
    min-height: 50vh;
    background-color: rgb(214,74,0);
    background-image: url(ATS-White.png);
    background-repeat: no-repeat;
    background-position: center center;
    flex-grow: 1;
}

.SiteHolder {
    min-height: 50vh;
    flex-grow: 1;
    display:flex;
    flex-direction:row;
}
a.DelaySite {
    min-height: 50vh;
    background-color: rgb(255,255,255);
    background-image: url(DelayOkHead.png),url(HomeHeader.png);
    background-repeat: no-repeat,no-repeat;
    background-position: center center,center center;
    background-size: 350px, cover;
    flex-grow: 1;
    transition:1s all;
}
    a.DelaySite:hover {
        background-size: 550px, cover;
    }
a.JrnyMateSite {
    min-height: 50vh;
    background-color: rgb(255,255,255);
    background-image: url(JRNYMate.png),url(Welcome.jpeg);
    background-repeat: no-repeat,no-repeat;
    background-position: center center, center center;
    background-size: 350px, cover;
    flex-grow: 1;
    transition: 1s all;
}
        a.JrnyMateSite:hover {
            background-size: 550px, cover;
        }


.BottomBarHolder {
    bottom: 0;
    left: 0;
    width: calc(100vw - 40px);
    height: auto;
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

    .BottomBarHolder .Insurer {
        width: 100%;
        height: 100px;
        background-image: url(/Styles/BackgroundImages/DelayOKLogo.png);
        background-size: contain;
        background-repeat: no-repeat;
        background-position: center;
    }

    .BottomBarHolder .Copywright {
        width: 100%;
        height: auto;
        text-align: center;
        color: #fff;
        font-size: 14px;
        max-width: 800px;
    }

        .BottomBarHolder .Copywright p {
            max-width: 80%;
            margin-left: 10%;
            margin-bottom: 2px;
        }

    .BottomBarHolder .TermsLinks {
        width: 100%;
        height: auto;
        text-align: center;
        font-size: 20px;
        color: #fff;
        margin-bottom: 50px;
    }

        .BottomBarHolder .TermsLinks a {
            color: #777;
            text-decoration: none;
            border-right: 2px solid #777;
            padding-right: 10px;
            padding-left: 10px;
            font-weight: 400;
        }

            .BottomBarHolder .TermsLinks a:last-of-type {
                border-right: none;
            }

            .BottomBarHolder .TermsLinks a:hover {
                color: #fff;
                text-decoration: none;
            }

