
/*--------------------------------------------------------------
  Pages - General
--------------------------------------------------------------*/
.page_wrapper{
    text-align: center;
}

h2{
    font-size: 32px;
}
p{
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    font-family: 'ff mark pro', sans-serif;
    color: #273945;
}

/*--------------------------------------------------------------
  Pages - Welcome
--------------------------------------------------------------*/
.welcome_page{
    padding: 10px 20px 0 20px;
}
.welcome_page h2{
    color: #366784;
    font-weight: bold;
    font-size: 40px;
}
.welcome_page p{
    max-width: 670px;
    margin: auto;
    color: #366784;
}
.welcome_grid_wrapper{
    margin-top:30px;
}
.welcome_grid_wrapper a{
    text-decoration: none !important;
}
.welcome_grid_item{
    width: 100%;
    max-width: 500px;
    margin: 30px auto;
    height: 360px;
    border:1px solid #C0CFDA;
    display: block;
    background-color: #fff;
    border-radius: 5px;
}

.welcome_grid_item .background_image{
    background-size: cover;
    width: 100%;
    height: 270px;
    background-position: center;
    border-top-right-radius: 5px;
    border-top-left-radius: 5px;
    position: relative;
    margin-bottom: 25px;
}
.welcome_grid_item .icon{
    position: absolute;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.people_item .background_image{
    background-image: url('../assets/img/people_bg.png');
}
.people_item .icon{
    width: 80px;
    height: 90px;
    left: calc(50% - 40px);
    top: calc(50% - 45px);
    background-image: url('../assets/img/people_icon.png');
}

.files_item .background_image{
    background-image: url('../assets/img/files_bg.png');
}
.files_item .icon{
    width: 65px;
    height: 90px;
    left: calc(50% - 32.5px);
    top: calc(50% - 45px);
    background-image: url('../assets/img/files_icon.png');
}

.welcome_grid_item .label{
    font-size: 30px;
    margin-top: 25px;
    color: #B8C8D5;
}

@media only screen and (min-width: 1024px) {
    .welcome_page{
        padding-top: 40px;
    }
    .welcome_grid_item{
        width: 38%;
        max-width: 38%;
        height: 360px;
        border:1px solid #C0CFDA;
        display: inline-block;
        background-color: #fff;
        border-radius: 5px;
        margin: 10px;
    }


}