﻿@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@200;400;600;700&display=swap');

/**** TEXT OVERRIDES ********/

.spanTxt-sm {
    font-family: 'Oswald', sans-serif;
    font-size: 36px;
    font-weight: 200;
    text-transform: full-width;
    color: #fff;
}


.spanTxt {
    font-family: 'Oswald', sans-serif;
    font-size: 48px;
    font-weight: 200;
    color: #fff;
    text-transform: uppercase;
    /* offset-x | offset-y | blur-radius | color */
    /*            text-shadow: #fff 1px 0 10px;*/
}

.spanTxt-orange {
    font-family: 'Oswald', sans-serif;
    font-size: 48px;
    font-weight: 200;
    color: #ff6a00;
}

.spanTxt-blue {
    font-family: 'Oswald', sans-serif;
    font-size: 48px;
    font-weight: 200;
    color: #1f2a66;
}

.spanTxtBold {
    font-family: 'Oswald', sans-serif;
    font-size: 48px;
    font-weight: 600;
    color: #000;
}

.spanTxtBold-lightblue {
    font-family: 'Oswald', sans-serif;
    font-size: 48px;
    font-weight: 600;
    color: #05669d;
}

/**** OTHER OVERRIDES ********/

@media screen and (max-width: 768px) {
    .bgSentry360 {
        background-size: contain;
    }
}

@media screen and (max-width: 320px) {
    .bgSentry360 {
        background-size: contain;
    }
}

.wrapper {
    padding: 15px;
    padding-top: calc(10% - 100px);
    max-width: 100%;
}

#footer {
    font-family: Consolas, 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    text-align: right !important;
    padding: calc(25% - 150px);
    position: relative;
}

.logoImg {
    width: calc(30% - 100px) !important;
    position: absolute;
    /*    align-content: safe center;*/
    /*top: calc(20% - 100px) !important;*/
    left: 10% !important;
}

.copyright-container {
    padding: 0;
    padding-bottom: calc(2%) !important;
    height: 100%;
}

@media screen and (max-width: 1200px) {
    .logoImg {
        width: calc(35% - 100px) !important;
        position: relative;
        top: 115px !important;
        left: 5% !important;
    }
}

@media screen and (max-width: 1024px) {
    .logoImg {
        width: calc(35% - 100px) !important;
        position: relative;
        top: 88px !important;
        left: 5% !important;
    }

    .spanTxt, .spanTxt-blue, .spanTxtBold, .spanTxtBold-lightblue, .spanTxt-orange {
        font-size: 0.90em;
    }

    .spanTxt-sm {
        font-size: 0.90em;
    }
}

@media screen and (min-width: 991px) {
    .copyright-container {
        padding-right: calc(2%) !important;
    }
}

@media screen and (max-width: 991px) {
    .logoImg {
        width: calc(50% - 100px) !important;
        position: relative;
        top: 10px !important;
        margin-bottom: 30px;
        left: 30% !important;
    }
}


@media screen and (max-width: 768px) {
    .logoImg {
        width: calc(75% - 100px) !important;
        position: relative;
        top: 10px !important;
        margin-bottom: 30px;
        left: 20% !important;
    }
}

@media screen and (max-width: 576px) {
    .logoImg {
        width: calc(75% - 100px) !important;
        position: relative;
        top: 10px !important;
        margin-bottom: 30px;
        left: 20% !important;
    }

    .profile-card-2 {
        max-width:320px !important;
    }
}

@media screen and (max-width: 320px) {

    .logoImg {
        width: 100% !important;
        left: 5px !important;
    }

    .spanTxt, .spanTxt-blue, .spanTxtBold, .spanTxtBold-lightblue, .spanTxt-orange {
        font-size: 0.90em;
    }

    .spanTxt-sm {
        font-size: 0.90em;
    }
}

.versionNum {
    font-size: 20px;
    font-weight: bolder;
    color: #1f2a66;
}

.copyright {
    font-size: 16px;
    color: #000;
}

.container-fluid, .container {
    max-width: 1200px;
}

.card-container {
    padding: 60px 0px;
    /*-webkit-perspective: 1000;
    perspective: 1000;*/
}

.card-row {
    margin: 10px 15px;
    left: calc(45% - 50px) !important;
}

.profile-card-2 {
    max-width: 490px;
    height: 160px !important;
    max-height: calc(20% - 50px);
    background-color: transparent;
    box-shadow: 0px 0px 25px rgba(0, 0, 0, 0.1);
    background-position: top left;
    overflow: hidden;
    position: relative;
    margin: 0 auto;
    cursor: pointer;
    border-radius: 10px;
}

    .profile-card-2 img {
        transition: all linear 0.25s;
        background-size: contain;
    }

    .profile-card-2 .profile-name {
        position: absolute;
        font-family: 'Oswald', sans-serif;
        left: 30px;
        bottom: 70px;
        font-size: 48px;
        color: #FFF;
        text-shadow: 0px 0px 20px rgba(0, 0, 0, 0.5);
        font-weight: bold;
        transition: all linear 0.25s;
    }

    .profile-card-2 .profile-username {
        font-family: 'Oswald', sans-serif;
        position: absolute;
        bottom: 50px;
        left: 32px;
        color: #FFF;
        font-size: 13px;
        transition: all linear 0.25s;
    }

    .profile-card-2 .profile-icons .fa {
        margin: 5px;
    }

    .profile-card-2:hover img {
        filter: grayscale(100%);
    }

    .profile-card-2:hover .profile-name {
        bottom: 80px;
    }

    .profile-card-2:hover .profile-username {
        bottom: 60px;
    }

    .profile-card-2:hover .profile-icons {
        right: 40px;
    }