/*Fonts*/
@font-face {
    font-family: 'gilroysemibold';
    src: url('/css/fonts/gilroy/radomir_tinkov_-_gilroy-semibold-webfont.woff2') format('woff2'), url('/css/fonts/gilroy/radomir_tinkov_-_gilroy-semibold-webfont.woff') format('woff');
    src: url('/css/fonts/gilroy/radomir_tinkov_-_gilroy-semibold-webfont.woff2') format('woff2'), url('/css/fonts/gilroy/radomir_tinkov_-_gilroy-semibold-webfont.woff') format('woff');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'gilroysemibold_italic';
    src: url('/css/fonts/gilroy/radomir_tinkov_-_gilroy-semibolditalic-webfont.woff2') format('woff2'), url('/css/fonts/gilroy/radomir_tinkov_-_gilroy-semibolditalic-webfont.woff') format('woff');
    src: url('/css/fonts/gilroy/radomir_tinkov_-_gilroy-semibolditalic-webfont.woff2') format('woff2'), url('/css/fonts/gilroy/radomir_tinkov_-_gilroy-semibolditalic-webfont.woff') format('woff');
    font-weight: 700;
    font-style: italic;
    font-display: swap;
}


@font-face {
    font-family: 'futuralight';
    src: url('/css/fonts/futura/futura_light_bt-webfont.woff2') format('woff2'), url('/css/fonts/futura/futura_light_bt-webfont.woff') format('woff');
    src: url('/css/fonts/futura/futura_light_bt-webfont.woff2') format('woff2'), url('/css/fonts/futura/futura_light_bt-webfont.woff') format('woff');
    font-weight: 100;
    font-style: normal;
    font-display: swap;
}


body, html {
    font-family: 'futuralight', sans-serif !important;
    font-size: 1.1rem;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'gilroysemibold', sans-serif !important;
    font-size:larger;
}


h1 {
    font-size:xx-large;
}

.text-black {
    color: #000000;
}

.agh-gray {
    color: #484848;
}

.agh-orange {
    color: #ff9900;
}

.agh-blue {
    color: #0097dc;
}

.agh-purple {
    color: #625bc4;
}

.agh-yellow {
    color: #ffd200;
}

.agh-red {
    color: #f42938;
}

.bg-agh-gray {
    background-color: #484848;
}

.bg-agh-orange {
    background-color: #ff9900;
}

.bg-agh-yellow {
    background-color: #ffd200;
}

.bg-agh-purple {
    background-color: #625bc4;
}

.bg-agh-orange-yellow-gradient {
    background: linear-gradient(90deg, #ff9900, #ffd200);
}

.border-agh-gray {
    border-color: #484848;
}

.top-purple-border {
    border-top: 5px solid #625bc4;
}

#library-cta:hover {
    color: #625bc4 !important;
}

.bottom-yellow-border {
    border-bottom: 5px solid;
    border-image-slice: 1;
    border-image-source: linear-gradient(to right, #ff9900, #ffd200, #ffd200);
}

#aghebs-logo {
    width: 200px;
}

#content a {
    font-weight: bold;
    color: #625bc4;
}

#content .list-group-item a {
    color: #484848;
}

#top-navigation {
    /*background-color: rgba(255,255,255,0.85);*/
    background-color: white;
    border-bottom: 10px solid;
    border-image-slice: 1;
    border-image-source: linear-gradient(to right, #ff9900, #ffd200, #ffd200);
}

    #top-navigation ul li {
        font-size: 1.5rem;
        margin-right: 1rem;
    }

        #top-navigation ul li a {
            color: #484848;
        }

.jumbotron {
    height: 85vh;
}

#jumbotron-cta h2 {
    line-height: 1;
    font-size: 3rem;
}

/* * * * * * * * * * * * * * * */
/*                             */
/*          V I D E O          */
/*                             */
/* * * * * * * * * * * * * * * */
#video-holder {
    position: relative;
    background: url('/images/consultant.jpg') 75% 25%;
    background-size: cover;
    height: 100%;
    min-height: 25rem;
    width: 100%;
    overflow: hidden;
}

    #video-holder video {
        position: absolute;
        top: 60%;
        left: 50%;
        width: auto;
        height: auto;
        z-index: 0;
        -ms-transform: translateX(-50%) translateY(-50%);
        -moz-transform: translateX(-50%) translateY(-50%);
        -webkit-transform: translateX(-50%) translateY(-50%);
        transform: translateX(-50%) translateY(-50%);
    }

    #video-holder .container {
        position: relative;
        z-index: 2;
    }

    #video-holder .overlay {
        position: absolute;
        top: 0;
        left: 0;
        height: 100%;
        width: 100%;
        background: rgba(0,0,0,0.3);
        z-index: 10;
    }

#jumbotron-cta {
    z-index: 11;
    background: linear-gradient(to right, #ff9900, #ffd200);
    color: white;
    position: relative;
    bottom: 50%;
    width: 38%;
}

    #jumbotron-cta .lead {
        font-size: 1.25rem;
    }

#sales-support-list, #plan-setup-list, #true-daily-list {
    list-style: none;
    padding-inline-start: 0;
}

    #sales-support-list li::before, #plan-setup-list li::before, #true-daily-list li::before {
        content: "\2713";
        color: #625bc4;
        margin-right: 0.5rem;
        font-weight: bold;
    }

/*Disables the hover effects for devices that don't have hovering (tablets/phones/etc.)*/
@media(hover:none) {
    #video-holder {
        background: url('/images/consultant.jpg') 30% 25%;
        background-size: cover;
    }

        #video-holder video {
            display: none;
        }

        #video-holder .overlay {
            display: none;
        }

    #jumbotron-cta {
        display: none;
    }
}

@media(min-width:1550px) {
    #jumbotron-cta {
        bottom: 50% !important;
        width: 38% !important;
    }

    #breadcrumbs {
        margin-top: 15vh !important;
    }
}

@media (min-width:1025px) {
    #jumbotron-cta {
        bottom: 45%;
        width: 50%;
    }
}

@media(max-width:1024px) {
    #jumbotron-cta {
        bottom: 38%;
        width: 100%;
        margin: 0 auto;
        text-align: center;
    }
}

@media(max-width:800px) {

    .jumbotron {
        height: 70vh;
    }

    #video-holder {
        background: url('/images/consultant.jpg') 30% 25%;
        background-size: cover;
    }

        #video-holder video {
            display: none;
        }

        #video-holder .overlay {
            display: none;
        }

    #jumbotron-cta {
        display: none;
    }

    .cta-button {
        width: 100% !important;
    }
}

@media(min-width:501px) {
    #breadcrumbs {
        margin-top: 22vh;
    }
}

@media(max-width:500px) {
    #aghebs-logo {
        width: 150px;
    }

    #breadcrumbs {
        margin-top: 17vh;
    }
}

@media(max-width:425px) {
    .jumbotron {
        height: 65vh;
    }

    #video-holder {
        height: 64vh;
    }

    h1 {
        font-size: 2rem;
    }
}
/*End of responsive design*/

