* {
    font-family: "Raleway", sans-serif;
}

.pageOuter {
    width: 100%;
    min-height: 100vh;
    position: relative;
}

.pageBg {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0px;
    top: 0px;
    object-fit: cover;
    object-position: center;
    z-index: 1;
}

.pageOuter:before {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0px;
    top: 0px;
    z-index: 2;
    background: rgb(5, 61, 26);
    background: radial-gradient(circle, rgb(3, 47, 20) 0%, rgba(0, 0, 0, 1) 100%);
    opacity: 0.63;
}

.pageContents {
    width: 100%;
    min-height: 100vh;
    position: relative;
    z-index: 4;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.pageContents h3 {
    width: 100%;
    font-size: 40px;
    font-weight: 200;
    color: #fff;
    text-align: center;
    letter-spacing: 5px;
    margin: 0px;
    margin-bottom: 3px;
}

.pageContents h2 {
    width: 100%;
    font-size: 50px;
    font-weight: 800;
    color: #fff;
    text-align: center;
    letter-spacing: 3px;
    margin: 0px;
    margin-bottom: 30px;
}

.pageContents h2 b {
    color: #25d366;
}

.pageContents p {
    width: 80%;
    font-size: 15px;
    font-weight: 300;
    color: #fff;
    opacity: 0.6;
    text-align: center;
    letter-spacing: 2px;
    margin: 0px;
    margin-bottom: 3px;
    line-height:28px;
}

.pageBottomLinks {
    width: 100%;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin: 15px 0px;
}

.pageBottomLinks a {
    font-size: 11px;
    color: #fff;
    font-weight: 300;
}

.pageBottomLinks a::after {
    content: '';
    width: 1px;
    height: 11px;
    background-color: #fff;
    float: left;
    margin-right: 16px;
    margin-top: 2px;
    opacity: 0.3;
}

.pageBottomLinks a:first-child::after {
    display: none;
}

.pageContentsTopLine {
    width: 100%;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.pageTopLogosOuter
{
    width:100%;
    min-height:10px;
    float:left;
    display:flex;
    justify-content:center;
    align-items:center;
    gap:20px;
    margin-bottom:30px;
}

.pageTopLogoBox
{
    width:130px;
    height:130px;
    float:left;
    display:flex;
    justify-content:center;
    align-items:center;
}

.pageTopLogoBox img
{
    width:100px;
    height:100px;
    object-fit: contain;
    object-position:center;
}

.pageTopLogoSlash
{
    width:0.5px;
    height:100px;
    background-color:rgba(255,255,255,0.3);
}

.footerLogosOuter
{
    width:100%;
    min-height:10px;
    float:left;
    margin-bottom:15px;
    display:flex;
    align-items:center;
    justify-content:center;
    gap:10px;
}

.footerLogoBox
{
    width:50px;
    height:35px;
    display:flex;
    align-items:center;
    justify-content:center;
}

.footerLogoBox img
{
    width:35px;
    height:25px;
    object-fit: contain;
    object-position: center;
}

@media only screen and (max-width: 600px) 
{
    .pageContents h3
    {
        font-size:23px;
    }
    
    .pageContents h2
    {
        font-size:25px;
    }

    .pageContents p
    {
        font-size:14px;
    }

    .pageBottomLinks
    {
        height:auto;
        gap:4px;
        padding-top:14px;
        border-top:1px solid #ffffff3a;
    }

    .pageBottomLinks a
    {
        flex:1;
        text-align: center;
    }

    .pageBottomLinks a::after
    {
        display: none;
    }

    .pageTopLogoBox
    {
        width:80px;
        height:80px;
    }

    .pageTopLogoBox img
    {
        width:70px!important;
        height:80px;
    }
}