:root{
    --theme-color: #6F62FC;
    --text-color: #707070;
    --pending-color: #FF9D00;
}


::-webkit-scrollbar{
    width: 10px;
    height: 10px;
}

::-webkit-scrollbar:hover{
    background-color: #f5f5f8;
}

::-webkit-scrollbar-thumb {
    background-color: var(--theme-color);
    border-radius: 50px;
}

::-webkit-scrollbar-track {
    background-color: white;
    width: 5px;
    box-shadow: inset 0px 1px 3px rgba(0, 0, 0, 0.3);
    border-radius: 50px;
}

.roles-title{
    font-size: 72px;
    font-weight: bold;
    color: var(--theme-color);
}

.roles-text{
    font-size: 36px;
    color: var(--text-color);
    font-weight: lighter;
}

.top-screen-container{
    margin-top: 5%;
    margin-bottom: 3%;
}

.available-roles-title{
    text-align: center;
    font-weight: 200;
    color: var(--theme-color);
    margin-top: 5%;
    font-size: 24px;
}

.roles-container{
    padding-bottom: 40px
}

.roles-card{
    color: var(--theme-color);
    border: 1px solid var(--theme-color);
    padding: 10px;
    border-radius: 10px;
    box-shadow: 0px 1px 10px rgba(0, 0, 0, 0.1);
    margin-top: 20px;
}

.card-title{
    font-size: 18px;
    text-align: center;
    width: 100%;
    overflow: auto;
}

.role-functions{
    font-size: 14px;
    font-weight: 200;
    height: 150px;
    margin-bottom: 5px;
    overflow: auto;
}

.role-openings{
    text-align: center;
    background-color: var(--theme-color);
    color: white;
    border-radius: 50px;
    font-size: 14px;
    padding: 5px;
}

.more-btn{
    text-align: center;
    padding-bottom: 5px;
    padding-top: 5px;
    font-size: 16px;
}

.more-btn > i:hover{
    border-radius: 50px;
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.3);
    cursor: pointer;
}

.more-btn > i:active{
    box-shadow: inset 0px 0px 15px rgba(0, 0, 0, 0.3);
}

#sub-av-titles{
    font-size: 14px;
}

@media only screen and (max-width: 758px){
    .roles-title{
        font-size: 56px;
    }

    .roles-text{
        font-size: 30px;
    }

    .available-roles-title{
        font-size: 18px;
    }

    #sub-av-titles{
        font-size: 12px;
    }
    
}

@media only screen and (max-width: 565px){
    .roles-title{
        font-size: 40px;
    }

    .roles-text{
        font-size: 24px;
    }

    .available-roles-title{
        font-size: 18px;
    }

    #sub-av-titles{
        font-size: 12px;
    }
    
}

.number-circle{
    width: 65px;
    height: 65px;
    background-color: var(--theme-color);
    color: white;
    border-radius: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 36px;
    box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
}

.section-title-header{
    color: var(--theme-color);
    font-size: 24px;
    font-weight: 300;
    padding: 20px 0 20px 0;
}

.section-title-text{
    font-size: 18px;
    font-weight: lighter;
}

.quote{
    font-weight: lighter;
    font-style: italic;
    padding-top: 15px;
    padding-bottom: 20px;
}

.about-us{
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.section{
    margin: 20px 0 20px 0;
    display: flex;
    align-items: center;
}

@media only screen and (max-width: 992px){

    img{
        display: block;
    }
}

@media only screen and (max-width: 760px){

    img{
        display: block;
        height: 50%;
        margin-top: 50px;
    }

    .number-circle{
        width: 35px;
        height: 35px;
        font-size: 18px;
    }
    
    .section-title-header{
        font-size: 18px;
    }
    
    .section-title-text{
        font-size: 14px;
        font-weight: lighter;
        text-align: center;
    }
    
    .quote{
        font-size: 14px;
    }
    
    .about-us{
        font-size: 14px;
    }
    
}


