/* 6CONNEX VISION GALLERY TESTING */
/* ALL RIGHTS RESERVED */
/* Crafted by CRF */
/* MODIFIED: 5-14-2021 */

@keyframes introLogo {
    0%{filter: blur(40px);opacity: 0;transform: scale(1.2);}
    20%{filter: blur(40px);opacity: 0;transform: scale(1.2);}
    100%{filter: blur(0px);opacity: 1;transform: scale(1);}
}

/* VARIABLES */

:root {
    --a: #151A45;
    --b: #005D57;
    --c: #C08329;
    --d: #EDD089;
}

.blu {
    color: var(--a) !important;
}

.grn {
    color: var(--b) !important;
}

.org {
    color: var(--c) !important;
}

.orgLight {
    color: var(--d) !important;
}

/* RESET */

* {
    margin: 0;
    padding: 0;
}

a {
    color: inherit;
    text-decoration: none;
    transition: 1s ease;
}

/* STYLES */

.backContain {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: 0;
    padding: 0;
    background: url(media/lobbyImage.png) no-repeat center center;
    background-size: cover;
    transform: scale(1.1);
    animation: introBack 3s cubic-bezier(.98, .01, .58, 1) 1;
    z-index: -9;
}

.overlay {
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
}

.iconDoor {
    display: block;
    position: absolute;
    color: white;
    font-family: Barlow;
    font-weight: 300;
    cursor: pointer;
}

.iconDoor p {
    margin: -25% auto 0 auto;
    padding: 25% 10px 10px 10px;
    text-align: center;
    color: black;
    background: white;
    border-radius: 10px;
}

.iconContain {
    position: relative;
    display: block;
    margin: 0 auto;
    width:  25vw;
    height: 25vw;
    border: 6px solid #FFFFFF;
    border-radius: 100%;
    background-size: contain;
    background-position: center center;
    background-repeat: no-repeat;
}

#client {
    top: 60%;
    left: 50%;
    transform: translateX(-50%);
}

#client .iconContain {
    background-image: url(media/Icon_Clients.png);
    transform: scale(1.0);
}

#spotlight {
    top: 5%;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: none;
}

#spotlight .iconContain {
    background-image: url(media/Icon_Spotlight.png);
    transform: scale(0.75);
}

#practice {
    top: 40%;
    left: 80%;
    transform: translateX(-50%);
}

#practice .iconContain {
    background-image: url(media/Icon_BestPractices.png);
    transform: scale(0.85);
}

#resource {
    top: 40%;
    left: 20%;
    transform: translateX(-50%);
}

#resource .iconContain {
    background-image: url(media/Icon_Resources.png);
    transform: scale(0.85);
}

@media (min-width: 550px) {
    
    .iconContain {
        width: 75px;
        height: 75px;
    }
}

@media (min-width: 800px) {
    
    .iconContain {
        z-index: 3;
        transform: scale(1)!important;
        transition: 1s cubic-bezier(.99, 0, .35, 1.35);
    }
    
    #client {
        top: 55%;
        left: 50%;
        z-index: 99;
    }
    
    #spotlight {
        top: 45%;
        left: 40%;
    }
    
    #practice {
        top: 40%;
        left: 80%;
    }
    
    #resource {
        top: 40%;
        left: 20%;
    }
    
    .iconDoor p {
        position: absolute;
        display: block;
        top: 50%;
        white-space: nowrap;
        max-width: 75px;
        height: 50px;
        line-height: 50px;
        margin: 0;
        text-align: left;
        font-size: 14pt;
        padding: 0;
        border-radius: 100px;
        transform: translate(0,-50%);
        box-shadow: 0 15vh 25px rgba(0,0,0,0.2);
        overflow-x: hidden;
        z-index: 2;
        transition: 1s cubic-bezier(.99, 0, .35, 1.35);
    }
    
    @keyframes pulse {
        50%{filter: brightness(2);-webkit-filter: brightness(2);}
    }
    
    .iconDoor:hover .iconContain {
        transform: translateX(-25%) rotate(-30deg)!important;
        filter: brightness(1);
        -webkit-filter: brightness(1);
        animation: pulse 3s 0s cubic-bezier(.37, 0, .37, 1) infinite;
        transition: 2s cubic-bezier(.09, .95, 0, .95)
    }
    
    .iconDoor:hover p {
        max-width: 200px;
        padding: 0 25px 0 75px;
        transition: 1s cubic-bezier(.13, 1.5, .01, 1);
    }
}