



html, body {
    display: block;
    position: relative;
    margin: 0;
    padding: 0;
    width: 100%;
    min-height: 100%;
    background: rgba(245, 245, 245, 1);
}

.container {
    background: rgba(255, 255, 255, 1);
    border-radius: 6px;
    box-shadow: 0 0 0 1px rgba(0, 0, 0, .06);
    margin: 0 0 30px;
    padding: 23px 30px 30px;
    float: left;
    box-sizing: border-box;
    margin-left: 30px;
}

.container_centered {
    margin-left: auto;
    margin-right: auto;
    float: none;
}
.content_column {
    float: left;
}
.content_column .container {
    width: 100%;
}

.div_col {
    float: left;
    margin: 0;
    padding: 0;
}

.container_4_1 {
    width: calc(25% - 30px);
}
.container_4_2 {
    width: calc(50% - 30px);
}
.container_4_3 {
    width: calc(75% - 30px);
}
.container_4_4 {
    width: 100%;
}

.scooch_4_1 {
    margin-left: calc(25% + 30px);
}

.div_col.container_4_2 {
    margin-right: 30px;
}




#progress {
    width: 100%;
    position: relative;
}
#progress::after {
    content: '';
    width: 100%;
    height: 0;
    padding-bottom: 100%;
    display: block;
}
#progress .progress_indicator {
    width: 100%;
    height: 100%;
    display: block;
    position: absolute;
    background: rgba(22, 34, 76, 1);
    border-radius: 50%;
    overflow: hidden;
}
#progress .progress_indicator::after {
    content: '';
    width: 50%;
    height: 50%;
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    background: rgba(255, 255, 255, 1);
}
#progress h3 {
    width: 100%;
    text-align: center;
    position: absolute;
    top: 50%;
    margin-top: -24px;
}
#progress h2 {
    width: 100%;
    text-align: center;
    position: absolute;
    top: 50%;
    margin: 2px 0 0 0;
}
.progress_container {
    width: calc(100% - 20px);
    height: calc(100% - 20px);
    margin: 10px;
    display: block;
    position: absolute;
    background: rgba(245, 245, 245, 1);
    border-radius: 50%;
}
#progress .progress_container h2 {
    margin-top: -24px;
}
#progress .progress_container h3 {
    margin-top: 2px;
}




.container_1 {
    width: 100%;
}
.container_1 .row {
    width: 100%;
    display: flex;
}
.tile {
    width: calc(33.333333% - 30px);
    margin-left: 30px;
    margin-bottom: 29px;
    display: block;
    float: left;
    box-sizing: border-box;
    padding: 29px 29px 62px;
    cursor: pointer;
    flex: 1;
    position: relative;

    border-radius: 6px;
    box-shadow: 0 0 0 1px rgba(0, 0, 0, .1) inset, 0 0 0 0px rgba(55, 156, 241, 0);

    -webkit-transition: all linear 200ms;
       -moz-transition: all linear 200ms;
            transition: all linear 200ms;
}
.tile:hover {
    border-radius: 4px;
    background: rgba(55, 156, 241, 0);
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0) inset, 0 0 0 3px rgba(55, 156, 241, 1);

    -webkit-transition: all linear 140ms;
       -moz-transition: all linear 140ms;
            transition: all linear 140ms;
}
.tile {
    text-decoration: none;
}
.tile.highlight {
    box-shadow: 0 0 0 0px rgba(55, 156, 241, 0);
    background: rgba(22, 34, 76, 1);
    color: rgba(255, 255, 255, 1);
}
.tile.highlight:hover {
    box-shadow: 0 0 0 3px rgba(55, 156, 241, 1);
}
.tile.highlight p {
    color: rgba(255, 255, 255, .7);
}
.tile.highlight p span {
    font-weight: 600;
    color: rgba(255, 255, 255, 1);
}
.tile.highlight_1 h2:after {
    content: '';
    background: url(../img/leaf_01.svg) no-repeat;
    background-size: cover;
    position: absolute;
    left: -27px;
    margin-top: -7px;
    display: inline-block;
    width: 40px;
    height: 40px;
    margin-left: 6px;
    -webkit-animation: flickerAnimation 1s infinite;
       -moz-animation: flickerAnimation 1s infinite;
         -o-animation: flickerAnimation 1s infinite;
            animation: flickerAnimation 1s infinite;
}
@keyframes flickerAnimation {
    0%   { transform: rotate(90deg); }
    10%  { transform: rotate(110deg); }
    15%  { transform: rotate(90deg); }
    25%  { transform: rotate(110deg); }
    30%  { transform: rotate(90deg); }
    100% { transform: rotate(90deg); }
}
@-o-keyframes flickerAnimation{
    0%   { transform: rotate(90deg); }
    10%  { transform: rotate(110deg); }
    15%  { transform: rotate(90deg); }
    25%  { transform: rotate(110deg); }
    30%  { transform: rotate(90deg); }
    100% { transform: rotate(90deg); }
}
@-moz-keyframes flickerAnimation{
    0%   { transform: rotate(90deg); }
    10%  { transform: rotate(110deg); }
    15%  { transform: rotate(90deg); }
    25%  { transform: rotate(110deg); }
    30%  { transform: rotate(90deg); }
    100% { transform: rotate(90deg); }
}
@-webkit-keyframes flickerAnimation{
    0%   { transform: rotate(90deg); }
    10%  { transform: rotate(110deg); }
    15%  { transform: rotate(90deg); }
    25%  { transform: rotate(110deg); }
    30%  { transform: rotate(90deg); }
    100% { transform: rotate(90deg); }
}
.highlight_badge {
    position: absolute;
    bottom: -30px;
    right: 10px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(22, 34, 76, 1);
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 1) inset;

            animation: appleAnimation 2s infinite;
}
@keyframes appleAnimation {
    0%, 25%, 45%, 60%, 100% {
        transform: translateY(0);
        transition-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);;
    }
    40% {
        transform: translateY(-20px);
        transition-timing-function: cubic-bezier(0.190, 0.675, 0.055, 0.550);
    }
    52% {
        transform: translateY(-7px);
        transition-timing-function: cubic-bezier(0.190, 0.675, 0.055, 0.550);
    }
}
.highlight_badge .leaf {
    width: 8px;
    height: 8px;
    position: absolute;
    left: 50%;
    top: 50%;
}
.highlight_badge .leaf_1 {
    transform: rotate(0deg);
    margin: -10px 0 0 1px;
}
.highlight_badge .leaf_2 {
    transform: rotate(90deg);
    margin: 1px 0 0 1px;
}
.highlight_badge .leaf_3 {
    transform: rotate(90deg);
    margin: -10px 0 0 -10px;
}
.highlight_badge .leaf_4 {
    transform: rotate(0deg);
    margin: 1px 0 0 -10px;
}
.highlight_badge .leaf_5 {
    transform: rotate(45deg);
    margin: -4px 0 0 11px;
}
.highlight_badge .leaf_6 {
    transform: rotate(-45deg);
    margin: 11px 0 0 -4px;
}
.highlight_badge .leaf_7 {
    transform: rotate(45deg);
    margin: -4px 0 0 -20px;
}
.highlight_badge .leaf_8 {
    transform: rotate(-45deg);
    margin: -20px 0 0 -4px;
}



.tile .image {
    display: block;
    position: relative;
    width: calc(100% + 58px);
    margin: -29px -29px 28px;
}
.tile h2 {
    margin-bottom: 6px;
}
.tile h3 {
    position: absolute;
    bottom: 23px;
    left: 30px;
    color: rgba(55, 156, 241, 1);
}
.tile h3:after {
    content: '';
    display: inline-block;
    width: 20px;
    height: 14px;
    margin: 0 0 -2px -2px;
    opacity: 0;
    background: url(../img/arrow.svg) no-repeat center;
    background-size: contain;

    -webkit-transition: all linear 140ms;
       -moz-transition: all linear 140ms;
            transition: all linear 140ms;
}
.tile:hover h3:after {
    opacity: 1;
    margin: 0 0 -2px 8px;
}
.tile .image:before {
    content: '';
    display: block;
    width: 100%;
    height: 0;
    padding-bottom: 66.666666%;
    overflow: hidden;

    border-radius: 6px 6px 0 0;

    -webkit-transition: all linear 140ms;
       -moz-transition: all linear 140ms;
            transition: all linear 140ms;
}
.tile:hover .image:before {
    border-radius: 4px 4px 0 0;
}

#dash_01:before {
    background: url(../img/dash_01.jpg) center no-repeat;
    background-size: cover;
}
#dash_02:before {
    background: url(../img/dash_02.jpg) center no-repeat;
    background-size: cover;
}
#dash_03:before {
    background: url(../img/dash_03.jpg) center no-repeat;
    background-size: cover;
}
#dash_04:before {
    background: url(../img/dash_04.jpg) center no-repeat;
    background-size: cover;
}
#dash_05:before {
    background: url(../img/dash_05.jpg) center no-repeat;
    background-size: cover;
}
#dash_06:before {
    background: url(../img/dash_06.jpg) center no-repeat;
    background-size: cover;
}

#dash_univ:before {
    background: url(../img/dash_univ.jpg) center no-repeat;
    background-size: cover;
}
#dash_ct:before {
    background: url(../img/dash_ct.jpg) center no-repeat;
    background-size: cover;
}
#dash_story:before {
    background: rgba(197, 229, 254, 1);
}

.tile_2 {
    width: calc(66.666666% - 30px);
}
.tile_2 .image:before {
    padding-bottom: 33.333333%;
}
.tile_container {
    background: rgba(245, 245, 245, 1);
    width: calc(100% - 60px);
    margin-left: 30px;
    padding: 30px 30px 0;
    border-radius: 6px 0 0 6px;
    clear: both;
    overflow: auto;
    margin-bottom: 30px;
}
.tile_container .row {
    width: calc(66.666666% + 40px);
}
.tile_container_first {
    width: calc(33.333333% - 40px);
    display: block;
    float: left;
}
.tile_container_first #progress {
    margin: 30px 20%;
    width: 60%;
}
.tile_container .tile {
    background: rgba(255, 255, 255, 1);
    width: calc(33.333333% - 10px);
}

.small, .container_1 .row.small {
    display: none;
}
.tile_blank {
    opacity: 0;
}

.collapsible {
        -webkit-transition: all linear 200ms;
           -moz-transition: all linear 200ms;
                transition: all linear 200ms;
}
.container_load_1.container_load_2 {
    height: 0;
    padding: 0;
    margin: 0;
    margin-left: 30px;
}
.container_load_2 {
    height: 256px;
    padding: 23px 30px 30px;
    margin: 0 0 30px;
    margin-left: 30px;
    opacity: 0;
    transform: translateY(-30px);
}





a.container {
    margin: 0 0 10px;
    text-decoration: none;
    padding: 23px 30px;
    position: relative;
    
        -webkit-transition: all linear 100ms;
           -moz-transition: all linear 100ms;
                transition: all linear 100ms;
}
a.container:hover {
    box-shadow: rgba(55, 156, 241, 1) 0px 0px 0px 3px;
}
a.container:after, ul.container li a:after {
    content: '';
    background: url(../img/arrow_right.svg) no-repeat;
    display: block;
    position: absolute;
    right: 20px;
    top: 26px;
    width: 9px;
    height: 20px;
    
        -webkit-transition: all linear 100ms;
           -moz-transition: all linear 100ms;
                transition: all linear 100ms;
}
a.container:hover:after, ul.container li a:hover:after {
    right: 15px;
}
ul.container {
    margin: 0 0 10px;
    padding-bottom: 0px;
    background: rgba(235, 235, 235, 1);
}
ul.container li {
    list-style-type: none;
}
ul.container li:first-child {
    margin: 0 0 24px;
}
ul.container li a {
    position: relative;
    z-index: 10;
    text-decoration: none;
    width: 100%;
    display: block;
    padding: 23px 30px;
    margin-left: -30px;
    background: rgba(255, 255, 255, 1);
    box-shadow: 0px -1px 0px 0px rgba(0, 0, 0, .1);
    
        -webkit-transition: all linear 100ms;
           -moz-transition: all linear 100ms;
                transition: all linear 100ms;
}
ul.container li a:hover {
    z-index: 100;
    box-shadow: rgba(55, 156, 241, 1) 0px 0px 0px 3px;
}
ul.container li:last-child a {
    border-radius: 0px 0px 6px 6px;
}
.inactive a {
    color: rgba(0, 0, 0, .5);
}
ul.container li.inactive a:hover {
    box-shadow: 0px -1px 0px 0px rgba(0, 0, 0, .1);
    z-index: 10;
}



.ht_section_header {
    background: rgba(138, 201, 251, 1);
    color: white;
    position: relative;
    border-radius: 6px;
    height: 60px;
    width: calc(100% - 60px);
    left: 30px;
    display: block;
    float: left;
    padding: 21px 30px;
    box-sizing: border-box;
}

.ht_section_header a {
    padding: 10px 15px !important;
    background: rgba(255, 255, 255, 0) !important;
    position: absolute !important;
    color: rgba(22, 34, 76, 1) !important;
    right: 10px;
    top: 10px;
    box-shadow: 0 0 0 1.5px rgba(22, 33, 76, 0) inset;
}
.ht_section_header a:hover {
    background: rgba(255, 255, 255, .07) !important;
    box-shadow: 0 0 0 1.5px rgba(22, 33, 76, 1) inset;
}

.ht_section_header a svg {
    width: 16px;
    margin: 2px 6px -4px 0;
    float: left;
    display: inline-block;
}











@media (max-width: 1150px) {

    #left_column {
        left: -250px;

        -webkit-transition: all linear 140ms;
           -moz-transition: all linear 140ms;
                transition: all linear 140ms;
    }

}


@media (max-width: 900px) {

    .tile {
        width: calc(33.333333% - 20px);
        margin-left: 20px;
        margin-bottom: 19px;
        padding: 19px 20px 52px;
    }
    .tile .image {
        width: calc(100% + 40px);
        margin: -19px -20px 18px;
    }
    .tile.highlight_1 h2:after {
        left: -25px;
        margin-top: 0px;
        width: 26px;
        height: 26px;
        margin-left: 12px;
    }
    .tile h3 {
        position: absolute;
        bottom: 14px;
        left: 20px;
        color: rgba(55, 156, 241, 1);
    }
    .tile h3:after {
        width: 14px;
        height: 11px;
    }
    .tile h2 {
        margin-bottom: 5px;
    }
    .tile.highlight p span {
        font-weight: 400;
    }

}


@media (max-width: 800px) {

    .small, .container_1 .row.small {
        display: flex;
    }
    .not_small {
        display: none;
    }

}





































