/* ---------------------------------------------------------------------------------------------------------------------
    WordPress Core Classes
--------------------------------------------------------------------------------------------------------------------- */
.alignnone {
    margin: 0 1em 1em 0;
}

.alignright {
    float: right;
    margin: 0 0 1em 1em;
}

.alignleft {
    float: left;
    margin: 0 1em 1em 0;
}

.aligncenter {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.wp-caption {
    background: #fff;
    border: 1px solid #f0f0f0;
    max-width: 96%;
    padding: 5px 3px 10px;
    text-align: center;
}

.wp-caption img {
    border: 0 none;
    height: auto;
    margin: 0;
    max-width: 98.5%;
    padding: 0;
    width: auto;
}

.wp-caption.alignnone {
    margin: 0 1em 1em 0;
}

.wp-caption.alignleft {
    float: left;
    margin: 0 1em 1em 0;
}

.wp-caption.alignright {
    float: right;
    margin: 0 0 1em 1em;
}

/* Stick Admin Bar To The Top */
body.admin-bar {
    margin-top: 32px !important;
}

@media screen and ( max-width: 782px ) {
    body.admin-bar {
        margin-top: 46px !important;
    }
}

@media screen and ( max-width: 600px ) {
    body.admin-bar {
        margin-top: 46px !important;
    }
}

img.aligncenter {
    margin-top: 35px;
    margin-bottom: 35px;
}

/* ---------------------------------------------------------------------------------------------------------------------
    General fixes
--------------------------------------------------------------------------------------------------------------------- */
body {
    -webkit-font-smoothing: antialiased;
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

input[type=button] {
    -webkit-appearance: none;
    -moz-appearance: none;
}

/* Placeholder Styling */
::-webkit-input-placeholder {
    color: #666666;
}

::-moz-placeholder {
    color: #666666;
}

::-o-placeholder {
    color: #666666;
}

:-ms-input-placeholder {
    color: #666666;
}

input:-moz-placeholder {
    color: #666666;
}

/* Input Styling */
input[type="text"],
input[type="password"],
input[type="date"],
input[type="datetime"],
input[type="datetime-local"],
input[type="month"],
input[type="week"],
input[type="email"],
input[type="number"],
input[type="search"],
input[type="tel"],
input[type="time"],
input[type="url"],
textarea {

}

embed, iframe, object {
    max-width: 100%;
}

.column + .column:last-child,
.columns + .column:last-child,
.column + .columns:last-child,
.columns + .columns:last-child {
    float: left;
}

div.text-center {
    width: 100%;
}

.sticky-container {
    z-index: 1000;
}

/* ---------------------------------------------------------------------------------------------------------------------
    Typography
--------------------------------------------------------------------------------------------------------------------- */
a:focus {
    outline: none;
}

p:empty {
    display: none;
}

body, h1, h2, h3, h4, h5, h6, p, a {
    font-family: "Josefin Sans", sans-serif;
    transition: color .3s ease;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 400;
}

img.alignright {
    float: right;
    margin: 0 0 1em 1em;
}

img.alignleft {
    float: left;
    margin: 0 1em 1em 0;
}

img.aligncenter {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

a {
    color: #33aedd;
    transition: color .2s ease;
}

body[user-type="policy-maker"] a {
    color: #368786;
}

body[user-type="student"] a {
    color: #c4c95f;
}

body[user-type="teacher-or-counselor"] a {
    color: #ffcb4e;
}

body[user-type="parent"] a {
    color: #f6921e;
}

body[user-type="community-member"] a {
    color: #901c1f;
}

body[user-type="school-administrator"] a {
    color: #5d193c;
}

a:hover {
    color: #222;
    transition: color .2s ease;
}



/* ---------------------------------------------------------------------------------------------------------------------
    Clearfix
--------------------------------------------------------------------------------------------------------------------- */
.clearfix:before, .clearfix:after {
    content: "\0020";
    display: block;
    height: 0;
    overflow: hidden;
}

.clearfix:after {
    clear: both;
}

.clearfix {
    zoom: 1;
}


/* ---------------------------------------------------------------------------------------------------------------------
    Basic Styles
--------------------------------------------------------------------------------------------------------------------- */
.grid-container {
    max-width: 1300px;
}

body[user-type] .btn {
    display: inline-block;
    background-color: transparent;
    border: 1px solid #fff;
    border-radius: 50px;

    font-size: 17px;
    font-weight: 400;
    color: #fff;

    padding: 14px 35px;
    margin: 0;

    transition: all .2s linear;
}

body[user-type] .btn:hover {
    background-color: #fff;
    text-decoration: none !important;
    color: #222;

    transition: all .2s linear;
}

.btn svg.fa-long-arrow-alt-right,
.btn svg.fa-long-arrow-right {
    position: relative;
    top: 2px;
    left: 0;
    margin-left: 1px;
    transition: left .15s linear;
}

.btn:hover svg.fa-long-arrow-alt-right,
.btn:hover svg.fa-long-arrow-right {
    left: 5px;
    transition: left .15s linear .15s;
}

body[user-type] .btn.btn-colored {
    background-color: transparent;
    border: 1px solid #33aedd;
    color: #33aedd;

    transition: all .2s linear;
}

body[user-type="policy-maker"] .btn.btn-colored {
    border: 1px solid #368786;
    color: #368786;
}

body[user-type="student"] .btn.btn-colored {
    border: 1px solid #c4c95f;
    color: #c4c95f;
}

body[user-type="teacher-or-counselor"] .btn.btn-colored {
    border: 1px solid #ffcb4e;
    color: #ffcb4e;
}

body[user-type="parent"] .btn.btn-colored {
    border: 1px solid #f6921e;
    color: #f6921e;
}

body[user-type="community-member"] .btn.btn-colored {
    border: 1px solid #901c1f;
    color: #901c1f;
}

body[user-type="school-administrator"] .btn.btn-colored {
    border: 1px solid #5d193c;
    color: #5d193c;
}

body[user-type] .btn.btn-colored:hover,
body[user-type] .btn.btn-colored.hovered {
    background-color: #33aedd;
    color: #fff;
}

body[user-type="policy-maker"] .btn.btn-colored:hover,
body[user-type="policy-maker"] .btn.btn-colored.hovered {
    background-color: #368786;
    color: #fff;
}

body[user-type="student"] .btn.btn-colored:hover,
body[user-type="student"] .btn.btn-colored.hovered {
    background-color: #c4c95f;
    color: #222;
}

body[user-type="teacher-or-counselor"] .btn.btn-colored:hover,
body[user-type="teacher-or-counselor"] .btn.btn-colored.hovered {
    background-color: #ffcb4e;
    color: #222;
}

body[user-type="parent"] .btn.btn-colored:hover,
body[user-type="parent"] .btn.btn-colored.hovered {
    background-color: #f6921e;
    color: #fff;
}

body[user-type="community-member"] .btn.btn-colored:hover,
body[user-type="community-member"] .btn.btn-colored.hovered {
    background-color: #901c1f;
    color: #fff;
}

body[user-type="school-administrator"] .btn.btn-colored:hover,
body[user-type="school-administrator"] .btn.btn-colored.hovered {
    background-color: #5d193c;
    color: #fff;
}

body[user-type] .back-button {
    width: 100%;
    padding: 15px 30px;
    text-align: center;
    font-size: 16px;
    font-weight: 600;
    margin: 1px 0 35px;
    border-radius: 7px;
}

body[user-type] .back-button svg {
    margin-right: 5px;
    position: relative;
    top: 1px;
    right: 0;
    transition: right .2s linear;
}

body[user-type] .back-button:hover svg {
    right: 5px;
    transition: right .2s linear;
}

body[user-type] section#masthead .back-button {
    border-radius: 50px;
    width: auto;
    margin: 0;
}


/* ---------------------------------------------------------------------------------------------------------------------
    Animate CSS
--------------------------------------------------------------------------------------------------------------------- */
.animated {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

@-webkit-keyframes fadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

.fadeIn {
    -webkit-animation-name: fadeIn;
    animation-name: fadeIn;
}

@-webkit-keyframes fadeInLeft {
    0% {
        opacity: 0;
        -webkit-transform: translateX(-20px);
        transform: translateX(-20px);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}

@keyframes fadeInLeft {
    0% {
        opacity: 0;
        -webkit-transform: translateX(-20px);
        -ms-transform: translateX(-20px);
        transform: translateX(-20px);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0);
    }
}

.fadeInLeft {
    -webkit-animation-name: fadeInLeft;
    animation-name: fadeInLeft;
}

@-webkit-keyframes fadeInRight {
    0% {
        opacity: 0;
        -webkit-transform: translateX(20px);
        transform: translateX(20px);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    0% {
        opacity: 0;
        -webkit-transform: translateX(20px);
        -ms-transform: translateX(20px);
        transform: translateX(20px);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0);
    }
}

.fadeInRight {
    -webkit-animation-name: fadeInRight;
    animation-name: fadeInRight;
}

@-webkit-keyframes fadeInUp {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, 25px, 0);
        transform: translate3d(0, 25px, 0);
    }

    to {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, 25px, 0);
        transform: translate3d(0, 25px, 0);
    }

    to {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

.fadeInUp {
    -webkit-animation-name: fadeInUp;
    animation-name: fadeInUp;
}

@-webkit-keyframes moveWaveBackground {
    0% {
        background-position: 0 bottom;
    }

    100% {
        background-position: 20000px bottom;
    }
}

@keyframes moveWaveBackground {
    0% {
        background-position: 0 bottom;
    }

    100% {
        background-position: 20000px bottom;
    }
}




/* ---------------------------------------------------------------------------------------------------------------------
    Social | Media Networks
--------------------------------------------------------------------------------------------------------------------- */
.soc-media {
    display: inline-block;
    vertical-align: middle;
    line-height: 0;
}

.soc-media .sm-item {
    display: inline-block;
    margin: 1px;
}

.soc-media .sm-item > svg {
    width: 25px;
    height: 25px;
    line-height: 25px;
    color: #33aedd;
    background-color: transparent;
    text-align: center;
    border-radius: 2px;
    padding: 5px;
    transition: background-color .2s ease;
}

.soc-media .sm-item:hover > svg {
    color: #fff !important;
    cursor: pointer;
    transition: background-color .2s ease;
}

.soc-media .sm-item:before {
    display: none;
}

.soc-media .sm-item:hover .fa-vk {
    background: #45668e;
}

.soc-media .sm-item:hover .fa-facebook-f {
    background: #3b5998;
}

.soc-media .sm-item:hover .fa-twitter {
    background: #00aced;
}

.soc-media .sm-item:hover .fa-google-plus-g {
    background: #dd4b39;
}

.soc-media .sm-item:hover .fa-linkedin-in {
    background: #0177B5;
}

.soc-media .sm-item:hover .fa-youtube {
    background: #bb0000;
}

.soc-media .sm-item:hover .fa-vimeo-v {
    background: #45bbff;
}

.soc-media .sm-item:hover .fa-instagram {
    background: #517fa4;
}

.soc-media .sm-item:hover .fa-pinterest-p {
    background: #CB2027;
}

.soc-media .sm-item:hover .fa-dribbble {
    background: #F26798;
}

.soc-media .sm-item:hover .fa-yelp {
    background: #BE2F25;
}

.soc-media .sm-item:hover .fa-flickr {
    background: #0063DB;
}

.soc-media .sm-item:hover .fa-vine {
    background: #00BF8F;
}

.soc-media .sm-item:hover .fa-rss {
    background: #e6c400;
}



/* ---------------------------------------------------------------------------------------------------------------------
    WP Comments Styles
--------------------------------------------------------------------------------------------------------------------- */
.comments-wrap {
    padding: 0 0 50px;
}

.comments-wrap .comment {
    padding-bottom: 15px;
    margin-bottom: 32px;
    border-bottom: 1px solid #e5e5e5;
}

.comments-wrap .children {
    margin-left: 0;
}

.comments-wrap .children .comment {
    padding-left: 55px;
}

.comments-wrap h3#comments {
    font-size: 30px;
    font-weight: 600;
    line-height: 1.2;
    color: #292929;
    margin: 0 0 25px 0;
}

.comments-wrap ol.commentlist {
    margin: 0 0 30px 0;
    list-style: none;
}

.comment-author-user-pic {
    display: inline-block;
    border: 1px solid #dedede;
    border-radius: 50%;
    overflow: hidden;
    float: left;
    margin-right: 15px;
}

.comment-author {
    margin-bottom: 15px;
}

.comment-author-meta {
    padding-top: 4px;
}

.comment-author-meta .name {
    font-size: 14px;
    font-weight: 600;
    font-style: normal;
    line-height: 1.6;
    color: #27282d;
    margin: 0;
}

.comment-author-meta .comment-reply-link {
    font-size: 14px;
    font-weight: 600;
    line-height: 1.6;
    color: #136ba2;
    margin: 0;
}

.comment-author-meta .comment-meta.commentmetadata {
    font-size: 14px;
    font-weight: 400;
    line-height: 1.6;
    color: #adadad;
    margin: 0;
}

.comment-author-meta .comment-edit-link {
    font-size: 14px;
    font-weight: 500;
    line-height: 1.6;
    color: #0d9a65;
}

.comment-author-meta .comment-reply-link:hover,
.comment-author-meta .comment-edit-link:hover {
    text-decoration: underline;
}

.comment-text p {
    font-size: 18px;
    font-weight: 400;
    font-style: normal;
    line-height: 1.6;
    color: #787878;
    margin: 0 0 15px 0;
}

.comments-wrap .comment .comment-awaiting-moderation {
    font-size: 14px;
    font-weight: 400;
    font-style: italic;
    line-height: 1.6;
    color: #a20000;
    margin: 0 0 7px 0;
    display: inline-block;
}

#respond {
    padding-top: 10px;
}

#respond .comment-reply-title {
    font-size: 30px;
    font-weight: 500;
    line-height: 1.2;
    color: #27282d;
    margin: 0 0 5px 0;
}

#respond .comment-reply-title a {
    font-size: 30px;
    font-weight: 500;
    line-height: 1.2;
    color: #136ba2;
}

#respond .comment-reply-title a:hover {
    text-decoration: underline;
}

#respond .comment-reply-title small a {
    font-size: 13px;
    font-weight: 600;
    color: #fff;
    vertical-align: middle;
    display: inline-block;
    background-color: #cacaca;
    padding: 3px 7px;
    border-radius: 3px;
    transition: all .2s linear;
    position: relative;
    top: -4px;
}

#respond .comment-reply-title small a:hover {
    background-color: #c12c08;
    text-decoration: none;
    transition: all .2s linear;
}

#respond .comment-notes {
    font-size: 14px;
    font-weight: 400;
    line-height: 1.2;
    color: #27282d;
    margin: 0 0 25px 0;
}

#respond input,
#respond textarea {
    border-radius: 0;
    background-color: #f9f9f9;
}

#respond textarea {
    padding: 20px 25px;
    font-size: 14px;
    color: #222;
}

#respond textarea:focus {
    box-shadow: none;
}

#respond label {
    font-size: 15px;
    font-weight: 400;
    line-height: 1.2;
    color: #4d4d4d;
    margin: 0 0 4px 0;
}

#respond #submit {
    background-color: #33aedd;
    display: inline-block;
    border: none;
    padding: 14px 45px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.2;
    color: #fff;
    margin: 10px 0 0 0;
    cursor: pointer;
    transition: all .15s linear;
    outline: none !important;
}

#respond #submit:hover {
    background-color: #222 !important;
    color: #fff !important;
    transition: all .2s linear;
}

.comment-list-title {
    font-size: 30px;
    font-weight: 600;
    line-height: 1.2;
    color: #27282d;
    margin: 0 0 40px 0;
}

.comment-list-title span {
    background-color: #33aedd;
    display: inline-block;
    width: 46px;
    height: 46px;
    line-height: 46px;
    border-radius: 50%;
    text-align: center;
    color: #fff;
    font-size: 24px;
    margin-right: 5px;
    position: relative;
    top: -3px;
}

#respond .logged-in-as a {
    font-size: 15px;
    font-weight: 500;
    line-height: 1.6;
    color: #33aedd;
    margin: 0;
}

#respond .logged-in-as a:hover {
    text-decoration: underline;
}

#respond .math-captcha-form {
    display: block;
    background-color: #fff7e8;
    padding: 10px;
    border-radius: 5px;
}

#respond .math-captcha-form > label {
    display: inline-block;
    font-weight: 500;
    margin-right: 15px;
    text-transform: uppercase;
}

#respond .math-captcha-form > label br {
    display: none;
}

#respond .math-captcha-form > label:after {
    content: ":";
}

#respond .math-captcha-form > span {
    display: inline-block;
    color: #0e9a65;
    font-weight: 600;
    vertical-align: middle;
}

#respond .math-captcha-form input[type="text"].mc-input {
    display: inline-block;
    width: 100px !important;
    text-align: center;
    font-size: 16px;
    color: #0e9a65;
    vertical-align: middle;
}

#respond .g-recaptcha {
    margin-bottom: 25px;
    overflow: hidden;
    border: 1px solid #cecece;
    border-radius: 3px;
    background-color: #f9f9f9;
}

#respond .g-recaptcha > div {
    width: 215px !important;
    height: 50px !important;
    position: relative !important;
    left: -3px !important;
    top: -10px !important;
}

.pagination-wrap {
    margin: 25px 0 0 0;
}

.pagination-wrap .pagination {
    list-style: none;
    text-align: center;
    margin: 0;
}

.pagination-wrap .pagination > li {
    display: inline-block;
}

.pagination-wrap .pagination > li > * {
    background-color: transparent;
    display: inline-block;
    padding: 2px;
    min-width: 50px;
    min-height: 50px;
    line-height: 42px;
    font-size: 14px;
    font-weight: 600;
    color: #b5b5b5;
    border-radius: 50px;
    border: 2px solid #b5b5b5;
    transition: all .15s linear;
}

.pagination-wrap .pagination > li > *.dots,
.pagination-wrap .pagination > li:hover > *.dots {
    border: 2px dashed #b5b5b5 !important;
    color: #b5b5b5;
    transition: all .2s linear;
}

.pagination-wrap .pagination > li:hover > *,
.pagination-wrap .pagination > li > *.current {
    border: 2px solid #33aedd;
    color: #33aedd;
}

body[user-type="policy-maker"] .pagination-wrap .pagination > li:hover > *,
body[user-type="policy-maker"] .pagination-wrap .pagination > li > *.current {
    border: 2px solid #368786;
    color: #368786;
}

body[user-type="student"] .pagination-wrap .pagination > li:hover > *,
body[user-type="student"] .pagination-wrap .pagination > li > *.current {
    border: 2px solid #c4c95f;
    color: #c4c95f;
}

body[user-type="teacher-or-counselor"] .pagination-wrap .pagination > li:hover > *,
body[user-type="teacher-or-counselor"] .pagination-wrap .pagination > li > *.current {
    border: 2px solid #ffcb4e;
    color: #ffcb4e;
}

body[user-type="parent"] .pagination-wrap .pagination > li:hover > *,
body[user-type="parent"] .pagination-wrap .pagination > li > *.current {
    border: 2px solid #f6921e;
    color: #f6921e;
}

body[user-type="community-member"] .pagination-wrap .pagination > li:hover > *,
body[user-type="community-member"] .pagination-wrap .pagination > li > *.current {
    border: 2px solid #901c1f;
    color: #901c1f;
}

body[user-type="school-administrator"] .pagination-wrap .pagination > li:hover > *,
body[user-type="school-administrator"] .pagination-wrap .pagination > li > *.current {
    border: 2px solid #5d193c;
    color: #5d193c;
}

.pagination-wrap .pagination > li > *:before,
.pagination-wrap .pagination > li > *:after {
    display: none;
}

.comment-form-wrap {
    animation-delay: .35s;
}

body[user-type="policy-maker"] .comment-list-title span,
body[user-type="policy-maker"] #respond #submit {
    background-color: #368786;
}

body[user-type="student"] .comment-list-title span,
body[user-type="student"] #respond #submit {
    background-color: #c4c95f;
}

body[user-type="teacher-or-counselor"] .comment-list-title span,
body[user-type="teacher-or-counselor"] #respond #submit {
    background-color: #ffcb4e;
}

body[user-type="parent"] .comment-list-title span,
body[user-type="parent"] #respond #submit {
    background-color: #f6921e;
}

body[user-type="community-member"] .comment-list-title span,
body[user-type="community-member"] #respond #submit {
    background-color: #901c1f;
}

body[user-type="school-administrator"] .comment-list-title span,
body[user-type="school-administrator"] #respond #submit {
    background-color: #5d193c;
}

body[user-type="policy-maker"] #respond .logged-in-as a {
    color: #368786;
}

body[user-type="student"] #respond .logged-in-as a {
    color: #c4c95f;
}

body[user-type="teacher-or-counselor"] #respond .logged-in-as a {
    color: #ffcb4e;
}

body[user-type="parent"] #respond .logged-in-as a {
    color: #f6921e;
}

body[user-type="community-member"] #respond .logged-in-as a {
    color: #901c1f;
}

body[user-type="school-administrator"] #respond .logged-in-as a {
    color: #5d193c;
}

#respond input[type="text"]:focus,
#respond textarea:focus {
    border-color: #33aedd;
}

body[user-type="policy-maker"] #respond input[type="text"]:focus,
body[user-type="policy-maker"] #respond textarea:focus {
    border-color: #368786;
}

body[user-type="student"] #respond input[type="text"]:focus,
body[user-type="student"] #respond textarea:focus {
    border-color: #c4c95f;
}

body[user-type="teacher-or-counselor"] #respond input[type="text"]:focus,
body[user-type="teacher-or-counselor"] #respond textarea:focus {
    border-color: #ffcb4e;
}

body[user-type="parent"] #respond input[type="text"]:focus,
body[user-type="parent"] #respond textarea:focus {
    border-color: #f6921e;
}

body[user-type="community-member"] #respond input[type="text"]:focus,
body[user-type="community-member"] #respond textarea:focus {
    border-color: #901c1f;
}

body[user-type="school-administrator"] #respond input[type="text"]:focus,
body[user-type="school-administrator"] #respond textarea:focus {
    border-color: #5d193c;
}




/* ---------------------------------------------------------------------------------------------------------------------
    GF: Reset
--------------------------------------------------------------------------------------------------------------------- */
body .gform_wrapper {
    overflow: inherit;
    margin: 10px 0 20px 0;
    max-width: 100%;
}

body .gform_wrapper .top_label div.ginput_container {
    margin-top: 0 !important;
}

body .gform_wrapper .gform_body {
    width: 100% !important;
}

body .gform_wrapper.gform_validation_error .gform_body ul li.gfield.gfield_error:not(.gf_left_half):not(.gf_right_half) {
    max-width: 100% !important;
}

body .gform_wrapper ul li.gfield {
    margin-top: 0 !important;
}

body .gform_wrapper .top_label .gfield_label {
    display: none;
}

body .gform_wrapper ul.gform_fields li.gfield {
    padding-right: 0;
}

body .gform_wrapper li.gfield.gfield_error,
body .gform_wrapper li.gfield.gfield_error.gfield_contains_required.gfield_creditcard_warning {
    background-color: transparent;
    border-top: none;
    border-bottom: none;
    padding-bottom: 0;
    padding-top: 0;
    margin-top: 0 !important;
    margin-bottom: 15px !important;
}

body .gform_wrapper .field_description_below .gfield_description {
    padding-top: 0;
}

input:not([type]), input[type="text"], input[type="password"], input[type="date"], input[type="datetime"],
input[type="datetime-local"], input[type="month"], input[type="week"], input[type="email"], input[type="number"],
input[type="search"], input[type="tel"], input[type="time"], input[type="url"], input[type="color"], textarea {
    margin: 0 0 20px 0;
}

body .gform_wrapper .gform_footer {
    padding: 0;
    margin: 0;
    position: relative;
    text-align: center;
}

body .gform_wrapper .gform_footer input.button,
body .gform_wrapper .gform_footer input[type=submit],
body .gform_wrapper .gform_page_footer input.button,
body .gform_wrapper .gform_page_footer input[type=submit] {
    margin: 0;
}

body .gform_wrapper .gform_ajax_spinner {
    position: absolute;
    top: 16px;
    left: calc(50% + 75px);
    background-color: rgba(255, 255, 255, 0.8);
    padding: 0;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.65);
}


/* ---------------------------------------------------------------------------------------------------------------------
    GF :: Customization
--------------------------------------------------------------------------------------------------------------------- */
.contact-form-wrap {
    background-color: #fff;
    padding: 40px 45px 30px;
    margin: 50px 0 20px !important;
    box-shadow: 3px 7px 15px rgba(0, 0, 0, 0.1);
}

body .gform_wrapper div.validation_error {
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    border: none;
    border-radius: 3px;
    background-color: #c74747;
    padding: 16px 10px;
    width: 100%;
}

body .gform_confirmation_wrapper {
    background-color: #31a26b;
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    text-align: center;
    padding: 25px 10px;
    border-radius: 3px;
}

input:not([type]), input[type="text"], input[type="password"], input[type="date"], input[type="datetime"],
input[type="datetime-local"], input[type="month"], input[type="week"], input[type="email"], input[type="number"],
input[type="search"], input[type="tel"], input[type="time"], input[type="url"], input[type="color"], textarea {
    border-color: #b2b2b2;
    height: 52px;
    box-shadow: none;
    font-size: 14px;
    padding: 5px 25px;
    box-shadow: none !important;
}

body .gform_wrapper input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]):not([type=file]) {
    padding: 5px 25px;
}

body .gform_wrapper textarea.large {
    height: 172px;
    width: 100%;
    padding: 20px 25px;
}

body .gform_wrapper ul.gform_fields li.gfield.half-left {
    width: 50%;
    float: left;
    padding-right: 8px;
    clear: none;
}

body .gform_wrapper ul.gform_fields li.gfield.half-right {
    width: 50%;
    float: right;
    padding-left: 8px;
    clear: none;
}

body .gform_wrapper li.gfield_error input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]):not([type=file]),
body .gform_wrapper li.gfield_error textarea {
    border: 1px solid #c74747;
}

body .gform_wrapper .validation_message {
    color: #c12c2c;
    font-weight: 500;
    font-size: 10px;
}

body .gform_wrapper li.gfield.gfield_error.gfield_contains_required div.ginput_container,
body .gform_wrapper li.gfield.gfield_error.gfield_contains_required label.gfield_label {
    margin-top: 0;
}

body .gform_wrapper input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]):not([type=file]),
body .gform_wrapper textarea.large {
    background-color: #fcfcfc;
    font-size: 14px;
    border-radius: 5px;
}

input:not([type]):focus, input[type="text"]:focus, input[type="password"]:focus, input[type="date"]:focus,
input[type="datetime"]:focus, input[type="datetime-local"]:focus, input[type="month"]:focus, input[type="week"]:focus,
input[type="email"]:focus, input[type="number"]:focus, input[type="search"]:focus, input[type="tel"]:focus,
input[type="time"]:focus, input[type="url"]:focus, input[type="color"]:focus, textarea:focus {
    background: transparent !important;
    border-color: #33aedd;
    outline: none;
}

body #page-content.content-contact-us .gform_wrapper {
    padding-right: 20px;
}

body .gform_wrapper .gform_footer input.button,
body .gform_wrapper .gform_footer input[type=submit],
body .gform_wrapper .gform_page_footer input.button,
body .gform_wrapper .gform_page_footer input[type=submit] {
    background-color: transparent;
    border-color: #555;
    border-width: 1px;
    font-weight: 400;
    font-size: 16px;
    color: #555;
    border-radius: 50px;
    padding: 18px 55px;
    transition: all .2s linear;
}

body .gform_wrapper .gform_footer input.button:hover,
body .gform_wrapper .gform_footer input[type=submit]:hover,
body .gform_wrapper .gform_page_footer input.button:hover,
body .gform_wrapper .gform_page_footer input[type=submit]:hover {
    border-color: #33aedd;
    background-color: #33aedd;
    color: #fff;
    transition: all .2s linear;
}

body[user-type="policy-maker"] .gform_wrapper .gform_footer input.button:hover,
body[user-type="policy-maker"] .gform_wrapper .gform_footer input[type=submit]:hover,
body[user-type="policy-maker"] .gform_wrapper .gform_page_footer input.button:hover,
body[user-type="policy-maker"] .gform_wrapper .gform_page_footer input[type=submit]:hover {
    border-color: #368786;
    background-color: #368786;
}

body[user-type="student"] .gform_wrapper .gform_footer input.button:hover,
body[user-type="student"] .gform_wrapper .gform_footer input[type=submit]:hover,
body[user-type="student"] .gform_wrapper .gform_page_footer input.button:hover,
body[user-type="student"] .gform_wrapper .gform_page_footer input[type=submit]:hover {
    border-color: #c4c95f;
    background-color: #c4c95f;
}

body[user-type="teacher-or-counselor"] .gform_wrapper .gform_footer input.button:hover,
body[user-type="teacher-or-counselor"] .gform_wrapper .gform_footer input[type=submit]:hover,
body[user-type="teacher-or-counselor"] .gform_wrapper .gform_page_footer input.button:hover,
body[user-type="teacher-or-counselor"] .gform_wrapper .gform_page_footer input[type=submit]:hover {
    border-color: #ffcb4e;
    background-color: #ffcb4e;
}

body[user-type="parent"] .gform_wrapper .gform_footer input.button:hover,
body[user-type="parent"] .gform_wrapper .gform_footer input[type=submit]:hover,
body[user-type="parent"] .gform_wrapper .gform_page_footer input.button:hover,
body[user-type="parent"] .gform_wrapper .gform_page_footer input[type=submit]:hover {
    border-color: #f6921e;
    background-color: #f6921e;
}

body[user-type="community-member"] .gform_wrapper .gform_footer input.button:hover,
body[user-type="community-member"] .gform_wrapper .gform_footer input[type=submit]:hover,
body[user-type="community-member"] .gform_wrapper .gform_page_footer input.button:hover,
body[user-type="community-member"] .gform_wrapper .gform_page_footer input[type=submit]:hover {
    border-color: #901c1f;
    background-color: #901c1f;
}

body[user-type="school-administrator"] .gform_wrapper .gform_footer input.button:hover,
body[user-type="school-administrator"] .gform_wrapper .gform_footer input[type=submit]:hover,
body[user-type="school-administrator"] .gform_wrapper .gform_page_footer input.button:hover,
body[user-type="school-administrator"] .gform_wrapper .gform_page_footer input[type=submit]:hover {
    border-color: #5d193c;
    background-color: #5d193c;
}

.hidden-field {
    display: none !important;
}

body .gform_wrapper .top_label li ul.gfield_checkbox {
    width: 100%;
    margin: 0 0 24px 0;
}

body .gform_wrapper .gfield_checkbox li input[type=checkbox] {
    display: none;
}

body .gform_wrapper .gfield_checkbox li input[type=checkbox] + label {
    font-weight: 400;
    color: #a2a2a2;
    transition: color .2s linear;
}

body .gform_wrapper .gfield_checkbox li input[type=checkbox] + label:before {
    display: inline-block;
    width: 20px;
    height: 24px;
    font-family: "FontAwesome", sans-serif;
    font-size: 24px;
    line-height: 24px;
    color: #bdbdbd;
    content: "\f096";
    text-align: center;
    padding-right: 30px;
    position: relative;
    top: 4px;
    left: 1px;
    transition: color .2s linear;
}

body .gform_wrapper .gfield_checkbox li input[type=checkbox]:checked + label {
    color: #222;
    font-weight: 400 !important;
    transition: color .2s linear;
}

body .gform_wrapper .gfield_checkbox li input[type=checkbox]:checked + label:before {
    color: #139c68;
    content: "\f046";
    transition: color .2s linear;
}



/* ---------------------------------------------------------------------------------------------------------------------
    Header Styles
--------------------------------------------------------------------------------------------------------------------- */
header {
    z-index: 1000 !important;
    background-color: #fff;
}

section#masthead {
    background-color: #eee;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    height: 520px;
    position: relative;
}

section#masthead:before {
    /*background-color: rgba(0, 0, 0, 0.7);*/
    background-color: rgba(0, 0, 0, 0.5);
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 400;
}

section#masthead .mh-caption-wrap {
    width: 100%;
    position: absolute;
    left: 0;
    bottom: 55px;
    z-index: 500;

    text-align: center;
}

section#masthead .cat-icon-wrap {
    font-size: 106px;
    color: #33aedd;
    line-height: 1.1;
    padding: 0 0 20px 0;
    margin: 0 0 34px 0;
    position: relative;
}

section#masthead .cat-icon-wrap:after {
    content: "";
    display: block;
    width: 44px;
    height: 1px;

    position: absolute;
    left: calc( 50% - 22px );
    bottom: 0;

    background-color: #33aedd;
}

section#masthead .cat-icon-wrap .cat-name {
    font-size: 44px;
    font-weight: 600;
    display: block;
}

section#masthead .mh-caption-wrap h2 {
    font-size: 46px;
    text-transform: uppercase;
    color: #fff;
    line-height: 1;
    margin: 0 0 25px 0;
}

section#masthead .mh-caption-wrap h2 .category-name {
    color: #fff;
}

section#masthead .mh-caption-wrap p {
    font-size: 20px;
    color: #fff;
    line-height: 1.5;
    margin: 0 0 25px 0;
}

section#masthead .mh-caption-wrap p a:hover {
    text-decoration: underline;
}

section#masthead .mh-caption-wrap .mh-caption > :last-child {
    margin-bottom: 0;
}

section#masthead .buttons-set {
    text-align: center;
}

section#masthead .buttons-set .divider {
    display: inline-block;
    padding: 0 30px;
    font-size: 20px;
    color: #a3a3a3;
}

section#masthead .buttons-set .btn {
    min-width: 285px;
    padding: 12px 35px;
    margin: 5px 5px 0 5px;
}

.logo-set .logo {
    display: inline-block;
    background-image: url(../images/logo-default.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    width: 190px;
    height: 60px;
    vertical-align: middle;
    margin: 0 25px 0 25px;
}

body[user-type="policy-maker"] .logo-set .logo {
    background-image: url(../images/logo-policy-maker.svg);
}

body[user-type="student"] .logo-set .logo {
    background-image: url(../images/logo-student.svg);
}

body[user-type="teacher-or-counselor"] .logo-set .logo {
    background-image: url(../images/logo-teacher-or-counselor.svg);
}

body[user-type="parent"] .logo-set .logo {
    background-image: url(../images/logo-parent.svg);
}

body[user-type="community-member"] .logo-set .logo {
    background-image: url(../images/logo-community-member.svg);
}

body[user-type="school-administrator"] .logo-set .logo {
    background-image: url(../images/logo-school-administrator.svg);
}

.logo-set .logo-gflec {
    display: inline-block;
    background-image: url(../images/logo-gflec.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    width: 65px;
    height: 32px;

    vertical-align: middle;
}

.hidden-logo-repo {
    width: 0;
    height: 0;
    padding: 0;
    margin: 0;
}

.logo-set .logo-pwc {
    display: inline-block;
    background-image: url(../images/logo-pwc.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    width: 38px;
    height: 30px;

    vertical-align: middle;
}

body header .header-top {
    background-color: #fff;
    padding: 15px 0;
}

body header .user-type-selector-wrap {
    background-color: #084166;
    padding: 20px 0 15px;
    transition: background-color .35s linear;
}

body[user-type="policy-maker"] header .user-type-selector-wrap {
    background-color: #368786;
}

body[user-type="student"] header .user-type-selector-wrap {
    background-color: #c4c95f;
}

body[user-type="teacher-or-counselor"] header .user-type-selector-wrap {
    background-color: #ffcb4e;
}

body[user-type="parent"] header .user-type-selector-wrap {
    background-color: #f6921e;
}

body[user-type="community-member"] header .user-type-selector-wrap {
    background-color: #901c1f;
}

body[user-type="school-administrator"] header .user-type-selector-wrap {
    background-color: #5d193c;
}

.user-type-selector-wrap {
    text-align: right;
    position: relative;
}

.user-type-selector-wrap:before,
footer:before {
    background-image: url(../images/colorful-line.svg);
    background-position: center;
    background-repeat: repeat-y;
    background-size: 100%;
    content: "";
    display: block;
    width: 100%;
    height: 5px;
    position: absolute;
    top: 0;
    left: 0;
    box-shadow: 0 2px 1px rgba(0, 0, 0, 0.03);
}

.user-type-selector-container {
    display: inline-block;
    max-width: 550px;
    width: 100%;
    position: relative;
    padding: 0 0 0 80px;
    margin: 0 103px 0 0;
}

.user-type-selector-container .iam {
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    display: inline-block;
    position: absolute;
    top: 50%;
    left: 0;

    -webkit-transform: translate( 0, -50% );
    -moz-transform:    translate( 0, -50% );
    -ms-transform:     translate( 0, -50% );
    -o-transform:      translate( 0, -50% );
    transform:         translate( 0, -50% );
}

.user-type-selector-container select,
.user-type-selector-container .select2 {
    background-color: #fff;
    width: 100%;
    height: 40px;
    border: none;
    border-radius: 50px;
    padding: 5px 35px 5px 20px;
    font-size: 16px;
    font-weight: 400;
    color: #7f7f7f;

    text-align: center;
    text-align-last: center;
    margin: 0;
}

#user-type-selector:focus {
    box-shadow: none;
}

body .select2-container--default .select2-selection--single .select2-selection__rendered {
    padding: 0;
    line-height: 2;
    outline: none !important;
}

body .select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 26px;
    position: absolute;
    top: 6px;
    right: 12px;
    width: 20px;
}

body .select2-container--default .select2-selection--single {
    border: none;
    border-radius: 0;
    outline: none !important;
}

body .select2-container {
    padding: 1px 0 0 0;
    border-radius: 25px;
}

body .select2-container--open .select2-dropdown--below {
    border-radius: 20px !important;
    overflow: hidden;
}

body .select2-container--default .select2-results>.select2-results__options {
    max-height: 300px;
}

body .select2-container--default .select2-results__option--highlighted[aria-selected],
body .select2-container--default .select2-results__option[aria-selected=true] {
    background-color: #f5f5f5;
    color: #2b2b2b;
}

body .select2-results__option {
    padding: 8px;
    text-align: center;
}

body .select2-results__option[id*="policy-maker"]:hover,
body .select2-results__option[aria-selected=true][id*="policy-maker"] {
    background-color: #368786;
    color: #fff;
}

body .select2-results__option[id*="student"]:hover,
body .select2-results__option[aria-selected=true][id*="student"] {
    background-color: #c4c95f;
    color: #fff;
}

body .select2-results__option[id*="teacher-or-counselor"]:hover,
body .select2-results__option[aria-selected=true][id*="teacher-or-counselor"] {
    background-color: #ffcb4e;
    color: #fff;
}

body .select2-results__option[id*="parent"]:hover,
body .select2-results__option[aria-selected=true][id*="parent"] {
    background-color: #f6921e;
    color: #fff;
}

body .select2-results__option[id*="community-member"]:hover,
body .select2-results__option[aria-selected=true][id*="community-member"] {
    background-color: #901c1f;
    color: #fff;
}

body .select2-results__option[id*="school-administrator"]:hover,
body .select2-results__option[aria-selected=true][id*="school-administrator"] {
    background-color: #5d193c;
    color: #fff;
}

#search-form {
    position: relative;
    display: inline-block;
    max-width: 290px;
    width: 100%;
}

#search-form ::-webkit-input-placeholder {
    color: #fff;
}

#search-form ::-moz-placeholder {
    color: #fff;
}

#search-form ::-o-placeholder {
    color: #fff;
}

#search-form :-ms-input-placeholder {
    color: #fff;
}

#search-form input:-moz-placeholder {
    color: #fff;
}

#search-form #search-input {
    border: 1px solid #fff;
    font-size: 13px;
    font-weight: 400;
    color: #fff;
    width: 100%;
    height: 40px;
    border-radius: 50px;
    background-color: transparent;
    box-shadow: none;
    padding: 5px 50px 5px 20px;
    margin: 0;
}

#search-form #search-input:focus {
    color: #fff;
    background-color: transparent !important;
}

#search-form #search-button {
    background-color: transparent;
    width: 36px;
    height: 36px;
    line-height: 40px;
    text-align: center;
    font-size: 16px;
    color: #fff;
    border-radius: 50%;

    position: absolute;
    top: 50%;
    right: 2px;
    cursor: pointer;

    -webkit-transform: translate( 0, -50% );
    -moz-transform:    translate( 0, -50% );
    -ms-transform:     translate( 0, -50% );
    -o-transform:      translate( 0, -50% );
    transform:         translate( 0, -50% );
}

#search-form #search-button:hover {
    background-color: #fff;
    color: #2b2b2b;
}

.sticky-right-menu-wrap {
    visibility: hidden;

    position: fixed;
    top: 50%;
    right: -15px;
    list-style: none;
    min-width: 100px;
    margin: 0;
    padding: 58px 10px 18px 16px;

    -webkit-transform: translate( 0, -50% );
    -moz-transform:    translate( 0, -50% );
    -ms-transform:     translate( 0, -50% );
    -o-transform:      translate( 0, -50% );
    transform:         translate( 0, -50% );

    opacity: 0;
    z-index: 1000;
    overflow: hidden;

    background: rgba(251, 251, 251, 0.87);
    box-shadow: 0 2px 25px rgba(0, 0, 0, 0.08);
    border-radius: 3px 0 0 3px;

    transition: all .6s linear;
}

.sticky-right-menu-wrap[view="closed"] {
    background: transparent;
    box-shadow: 0 0 0 rgba(0, 0, 0, 0);
    filter: none;

    transition: all .6s linear;
}

.right-menu-tumbler {
    background-color: #33aedd;
    color: #fff;
    font-size: 23px;
    width: 36px;
    height: 36px;
    line-height: 45px;
    border-radius: 50%;
    text-align: center;
    padding: 0;
    margin: 0;
    position: absolute;
    top: 20px;
    right: 4px;
}

body[user-type="policy-maker"] .right-menu-tumbler {
    background-color: #368786;
}

body[user-type="student"] .right-menu-tumbler {
    background-color: #c4c95f;
}

body[user-type="teacher-or-counselor"] .right-menu-tumbler {
    background-color: #ffcb4e;
}

body[user-type="parent"] .right-menu-tumbler {
    background-color: #f6921e;
}

body[user-type="community-member"] .right-menu-tumbler {
    background-color: #901c1f;
}

body[user-type="school-administrator"] .right-menu-tumbler {
    background-color: #5d193c;
}

.right-menu-tumbler svg {
    position: relative;
    left: 1px;

    transition: all .2s linear;
}

.sticky-right-menu-wrap h5 {
    position: absolute;
    font-size: 18px;
    text-transform: uppercase;
    top: 30px;
    right: 52px;
    opacity: 1;
    transition: all .2s linear;
}

.sticky-right-menu-wrap[view="closed"] h5 {
    opacity: 0;
    transition: all .2s linear;
}

.sticky-right-menu-wrap[view="closed"] .right-menu-tumbler svg {
    -webkit-transform: rotate( 180deg );
    -moz-transform:    rotate( 180deg );
    -ms-transform:     rotate( 180deg );
    -o-transform:      rotate( 180deg );
    transform:         rotate( 180deg );

    left: -1px;
    transition: all .2s linear;
}

.right-menu-tumbler:hover {
    cursor: pointer;
}

.sticky-right-menu-wrap.visible {
    visibility: visible;
    right: 0;
    opacity: 1;

    transition: all .5s linear;
}

.sticky-right-menu {
    position: relative;
    padding: 15px 0 20px;
    margin: 0;
}

.sticky-right-menu:after {
    content: "";
    width: 1px;
    height: 100%;
    background-color: #000;

    position: absolute;
    top: -2px;
    right: 11px;
    z-index: 500;
}

.sticky-right-menu li {
    display: block;
    margin: 0 0 12px 0;
    text-align: right;
}

.sticky-right-menu li:last-child {
    margin-bottom: 0;
}

.sticky-right-menu li a {
    font-size: 17px;
    color: #636363;
    word-break: keep-all;
    text-shadow: 0 0 15px #fff;

    position: relative;
    transition: all .2s linear;
}

.sticky-right-menu li a:hover,
.sticky-right-menu li a.is-active {
    color: #000;
    transition: all .2s linear;
}

.sticky-right-menu li a:after {
    background-color: #fff;
    content: "";
    display: inline-block;
    margin: 0 0 0 8px;
    border: 1px solid #000;
    border-radius: 50%;
    width: 22px;
    height: 22px;
    vertical-align: middle;
    position: relative;
    top: -2px;

    z-index: 1000;
}

.sticky-right-menu li a:before {
    background-color: #33aedd;
    content: "";
    display: block;
    border-radius: 50%;
    width: 12px;
    height: 12px;
    position: absolute;
    top: 1px;
    right: 5px;
    opacity: 0;
    transition: opacity .2s linear;

    z-index: 1010;
}

body[user-type="policy-maker"] .sticky-right-menu li a:before {
    background-color: #368786;
}

body[user-type="student"] .sticky-right-menu li a:before {
    background-color: #c4c95f;
}

body[user-type="teacher-or-counselor"] .sticky-right-menu li a:before {
    background-color: #ffcb4e;
}

body[user-type="parent"] .sticky-right-menu li a:before {
    background-color: #f6921e;
}

body[user-type="community-member"] .sticky-right-menu li a:before {
    background-color: #901c1f;
}

body[user-type="school-administrator"] .sticky-right-menu li a:before {
    background-color: #5d193c;
}

.sticky-right-menu li a.is-active:before {
    opacity: 1;
    transition: opacity .2s linear;
}

.sticky-right-menu li a span {
    position: relative;
    opacity: 1;
    right: 0;

    transition: opacity .3s linear, right .25s linear;
}

.sticky-right-menu-wrap[view="closed"] .sticky-right-menu li a span {
    opacity: 0;
    right: -15px;

    transition: opacity .3s linear, right .25s linear;
}

.sticky-right-menu-wrap .sticky-right-menu li:nth-child( 2 ) a span {
    transition-delay: .1s;
}

.sticky-right-menu-wrap .sticky-right-menu li:nth-child( 3 ) a span {
    transition-delay: .15s;
}

.sticky-right-menu-wrap .sticky-right-menu li:nth-child( 4 ) a span {
    transition-delay: .2s;
}

.sticky-right-menu-wrap .sticky-right-menu li:nth-child( 5 ) a span {
    transition-delay: .25s;
}

.sticky-right-menu-wrap .sticky-right-menu li:nth-child( 6 ) a span {
    transition-delay: .3s;
}

.sticky-right-menu-wrap .sticky-right-menu li:nth-child( 7 ) a span {
    transition-delay: .35s;
}

.sticky-right-menu-wrap .sticky-right-menu li:nth-child( 8 ) a span {
    transition-delay: .4s;
}

.sticky-right-menu-wrap .sticky-right-menu li:nth-child( 9 ) a span {
    transition-delay: .45s;
}

.sticky-right-menu-wrap .sticky-right-menu li:nth-child( 10 ) a span {
    transition-delay: .5s;
}

.sticky-right-menu-wrap .sticky-right-menu li:nth-child( 11 ) a span {
    transition-delay: .55s;
}

.sticky-right-menu-wrap .sticky-right-menu li:nth-child( 12 ) a span {
    transition-delay: .6s;
}



/* ---------------------------------------------------------------------------------------------------------------------
    TMPL: Home Page
--------------------------------------------------------------------------------------------------------------------- */
#primary-slider-section {
    position: relative;
    overflow: hidden;
}

#primary-slider {
    background-color: #222;
    height: 100vh;
    margin: 0;
}

#primary-slider.loading:before {
    background-color: rgba(18, 63, 104, 0.78);
    display: block;
    content: "";
    width: 100%;
    height: 100%;

    position: absolute;
    top: 0;
    left: 0;
    transition: background-color 1s linear;

    z-index: 800;
}

body[user-type="policy-maker"] #primary-slider.loading:before {
    background-color: rgba(64, 136, 136, 0.75);
}

body[user-type="student"] #primary-slider.loading:before {
    background-color: rgba(197, 202, 83, 0.75);
}

body[user-type="teacher-or-counselor"] #primary-slider.loading:before {
    background-color: rgba(250, 204, 56, 0.75);
}

body[user-type="parent"] #primary-slider.loading:before {
    background-color: rgba(246, 146, 30, 0.75);
}

body[user-type="community-member"] #primary-slider.loading:before {
    background-color: rgba(144, 28, 31, 0.75);
}

body[user-type="school-administrator"] #primary-slider.loading:before {
    background-color: rgba(93, 25, 60, 0.75);
}

#primary-slider.loading:after {
    background-image: url(../images/ajax-loader.gif);
    background-repeat: no-repeat;
    background-position: center;
    background-color: #fff;
    border-radius: 50%;
    display: block;
    content: "";
    width: 50px;
    height: 50px;
    opacity: 0.8;

    position: absolute;
    top: 50%;
    left: 50%;

    -webkit-transform: translate( -50%, -50% );
    -moz-transform:    translate( -50%, -50% );
    -ms-transform:     translate( -50%, -50% );
    -o-transform:      translate( -50%, -50% );
    transform:         translate( -50%, -50% );

    z-index: 801;
}

body #primary-slider {
    height: calc( 100vh - 165px );
}

body.admin-bar #primary-slider {
    height: calc( 100vh - 197px );
}

#primary-slider .slick-list,
#primary-slider .slick-track,
#primary-slider .slide {
    height: inherit;
    outline: none !important;
}

#primary-slider .slide {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center top;
}

#primary-slider .slide:before {
    background: -moz-linear-gradient(top, rgba(0,0,0,0) 0%, rgba(0,0,0,0) 30%, rgba(0,0,0,0.5) 60%, rgba(0,0,0,1) 100%);
    background: -webkit-linear-gradient(top, rgba(0,0,0,0) 0%,rgba(0,0,0,0) 30%,rgba(0,0,0,0.5) 60%,rgba(0,0,0,1) 100%);
    background: linear-gradient(to bottom, rgba(0,0,0,0) 0%,rgba(0,0,0,0) 30%,rgba(0,0,0,0.5) 60%,rgba(0,0,0,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00000000', endColorstr='#000000',GradientType=0 );

    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 400;
}

#primary-slider .slide-caption-wrap {
    width: 100%;

    position: absolute;
    top: 45%;
    left: 0;

    -webkit-transform: translate( 0, -50% );
    -moz-transform:    translate( 0, -50% );
    -ms-transform:     translate( 0, -50% );
    -o-transform:      translate( 0, -50% );
    transform:         translate( 0, -50% );

    z-index: 500;
}

#primary-slider .slide-caption {
    max-width: 685px;
    width: 100%;
    padding: 0 0 0 45px;
    position: relative;
}

#primary-slider .slide-caption h3 {
    font-size: 70px;
    font-weight: 300;
    line-height: 1;
    color: #fff;
    margin: 0;
}

#primary-slider .slide-caption h3 strong {
    font-weight: 600;
}

#primary-slider .slide-caption p {
    font-size: 20px;
    font-weight: 400;
    line-height: 1.25;
    color: #fff;
    margin: 10px 0 0;
}

#primary-slider .btn {
    margin: 20px 0 0;
}

#primary-slider .slide-caption > svg {
    opacity: 0.9;
    position: absolute;
    top: 50%;
    left: 0;

    -webkit-transform: translate( 0, -50% );
    -moz-transform:    translate( 0, -50% );
    -ms-transform:     translate( 0, -50% );
    -o-transform:      translate( 0, -50% );
    transform:         translate( 0, -50% );

    z-index: 100;
}

#primary-slider .slide-caption-bg {
    transition: all .35s linear;
}

#primary-slider .slide-caption > :not( svg ) {
    position: relative;
    z-index: 200;
}

body[user-type="policy-maker"] #primary-slider .slide-caption-bg {
    fill: #368786;
}

body[user-type="student"] #primary-slider .slide-caption-bg {
    fill: #c4c95f;
}

body[user-type="teacher-or-counselor"] #primary-slider .slide-caption-bg {
    fill: #ffcb4e;
}

body[user-type="parent"] #primary-slider .slide-caption-bg {
    fill: #f6921e;
}

body[user-type="community-member"] #primary-slider .slide-caption-bg {
    fill: #901c1f;
}

body[user-type="school-administrator"] #primary-slider .slide-caption-bg {
    fill: #5d193c;
}

.scroll-down {
    display: inline-block;
    font-size: 12px;
    color: #fff !important;
    text-align: center;
    opacity: 0.8;

    position: absolute;
    bottom: 27px;
    left: calc( 50% - 32px );

    transition: opacity .2s linear;
    z-index: 500;
}

.scroll-down:hover {
    opacity: 1;
    transition: opacity .2s linear;
}

.scroll-down:after {
    background-color: #fff;
    content: "";
    display: block;
    width: 1px;
    height: 36px;
    margin: 10px auto 0;
    transition: background-color .2s linear;
}

#primary-slider .slick-dots {
    display: none;
    width: 100%;
    text-align: left;
    max-width: 1300px;
    padding: 0 15px;

    position: absolute;
    left: 50%;
    bottom: 75px;

    -webkit-transform: translate( -50%, 0 );
    -moz-transform:    translate( -50%, 0 );
    -ms-transform:     translate( -50%, 0 );
    -o-transform:      translate( -50%, 0 );
    transform:         translate( -50%, 0 );

    z-index: 300;
}

#primary-slider .slick-arrow + .slick-dots {
    display: block;
}

#primary-slider .slick-dots > li button {
    position: relative;
    width: 18px;
    height: 18px;
    border: 1px solid transparent;
    border-radius: 50%;
    text-align: center;
    padding: 0;

    transition: all .2s linear;
}

#primary-slider .slick-dots > li button:before {
    content: "";
    display: inline-block;
    width: 6px;
    height: 6px;
    border: 1px solid #fff;
    border-radius: 50%;
    opacity: 1;

    position: absolute;
    left: 50%;
    top: 50%;

    -webkit-transform: translate( -50%, -50% );
    -moz-transform:    translate( -50%, -50% );
    -ms-transform:     translate( -50%, -50% );
    -o-transform:      translate( -50%, -50% );
    transform:         translate( -50%, -50% );

    transition: all .2s linear;
}

#primary-slider .slick-dots > li:hover button,
#primary-slider .slick-dots > li.slick-active button {
    border: 1px solid #fff;
    transition: all .2s linear;
}

#primary-slider .slick-dots > li:hover button:before,
#primary-slider .slick-dots > li.slick-active button:before {
    background-color: #fff;
    transition: all .2s linear;
}

#primary-slider .slick-next,
#primary-slider .slick-prev {
    width: 50px;
    height: 34px;
    font-size: 34px;
    color: #fff;
    z-index: 500;
    text-align: center;
    opacity: .3;

    transition: all .2s linear;
}

#primary-slider .slick-next {
    right: 0;
}

#primary-slider .slick-prev {
    left: 0;
}

#primary-slider .slick-next:before,
#primary-slider .slick-prev:before {
    display: none;
}

#primary-slider .slick-next:hover,
#primary-slider .slick-prev:hover {
    opacity: 1;
    color: #084166;
    transition: all .2s linear;
}

body[user-type="policy-maker"] #primary-slider .slick-next:hover,
body[user-type="policy-maker"] #primary-slider .slick-prev:hover {
    color: #368786;
}

body[user-type="student"] #primary-slider .slick-next:hover,
body[user-type="student"] #primary-slider .slick-prev:hover {
    color: #c4c95f;
}

body[user-type="teacher-or-counselor"] #primary-slider .slick-next:hover,
body[user-type="teacher-or-counselor"] #primary-slider .slick-prev:hover {
    color: #ffcb4e;
}

body[user-type="parent"] #primary-slider .slick-next:hover,
body[user-type="parent"] #primary-slider .slick-prev:hover {
    color: #f6921e;
}

body[user-type="community-member"] #primary-slider .slick-next:hover,
body[user-type="community-member"] #primary-slider .slick-prev:hover {
    color: #901c1f;
}

body[user-type="school-administrator"] #primary-slider .slick-next:hover,
body[user-type="school-administrator"] #primary-slider .slick-prev:hover {
    color: #5d193c;
}

.slider-bottom-wave {
    width: 100%;
    position: absolute;
    left: 50%;
    bottom: -55px;
    min-width: 1920px;

    -webkit-transform: translate( -50%, 0 ) scale( 1.1 );
    -moz-transform:    translate( -50%, 0 ) scale( 1.1 );
    -ms-transform:     translate( -50%, 0 ) scale( 1.1 );
    -o-transform:      translate( -50%, 0 ) scale( 1.1 );
    transform:         translate( -50%, 0 ) scale( 1.1 );

    z-index: 900;
}

body.home {
    background-image: url(../images/page-bg-texture.png);
    background-position: center top;
    background-repeat: repeat-y;
}

section#step-1 {
    margin: 0 0 50px 0;
}

.general-content {
    padding: 65px 0 30px;
}

.general-content p {
    font-size: 20px;
    line-height: 1.4;
    color: #666666;
}

.general-content p strong {
    color: #000;
}

.step-subtitle {
    font-size: 36px;
    font-style: italic;
    line-height: 1;
    text-align: center;
    color: #a6a6a6;
    padding: 20px 0 0 0;
    margin: 0 0 20px 0;
}

.step-title {
    font-size: 50px;
    color: #33aedd;
    line-height: 1;
    text-align: center;
    margin: 0 0 25px 0;

    transition: color .35s linear;
}

.step-title em {
    font-weight: 300;
}

body[user-type="policy-maker"] .step-title {
    color: #368786;
}

body[user-type="student"] .step-title {
    color: #c4c95f;
}

body[user-type="teacher-or-counselor"] .step-title {
    color: #ffcb4e;
}

body[user-type="parent"] .step-title {
    color: #f6921e;
}

body[user-type="community-member"] .step-title {
    color: #901c1f;
}

body[user-type="school-administrator"] .step-title {
    color: #5d193c;
}

.user-type-container {
    font-size: 0;
    letter-spacing: 0;
}

.user-type-container .user-type-item {
    background-color: #fff;

    display: inline-block;
    width: 31.33%;
    margin: 1%;
    min-height: 280px;
    position: relative;
    overflow: hidden;

    border-radius: 15px;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.12);

    transition: background-color .2s linear;
    cursor: pointer;
}

.user-type-container .user-type-item:before {
    display: block;
    background-repeat: repeat-x;
    background-size: 100%;
    background-position: 0 bottom;

    width: 100%;
    height: 100%;
    content: "";

    position: absolute;
    top: 0;
    left: 0;

    z-index: 500;
}

.user-type-container .user-type-item.active:before,
.user-type-container .user-type-item:hover:before {
    -webkit-animation-duration: 400s;
    animation-duration: 400s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;

    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;

    -webkit-animation-name: moveWaveBackground;
    animation-name: moveWaveBackground;

    opacity: 0.15;
}


.user-type-container .user-type-item[user-type="policy-maker"]:before {
    background-image: url( ../images/wave-policy-maker.svg );
}

.user-type-container .user-type-item[user-type="school-administrator"]:before {
    background-image: url( ../images/wave-school-admin.svg );
}

.user-type-container .user-type-item[user-type="teacher-or-counselor"]:before {
    background-image: url( ../images/wave-teacher-or-counselor.svg );
}

.user-type-container .user-type-item[user-type="parent"]:before {
    background-image: url( ../images/wave-parent.svg );
}

.user-type-container .user-type-item[user-type="community-member"]:before {
    background-image: url( ../images/wave-community-member.svg );
}

.user-type-container .user-type-item[user-type="student"]:before {
    background-image: url( ../images/wave-student.svg );
}

.user-type-container .user-type-item[user-type="policy-maker"].active,
.user-type-container .user-type-item[user-type="policy-maker"]:hover {
    background-color: #368786;
}

.user-type-container .user-type-item[user-type="student"].active,
.user-type-container .user-type-item[user-type="student"]:hover {
    background-color: #c4c95f;
}

.user-type-container .user-type-item[user-type="teacher-or-counselor"].active,
.user-type-container .user-type-item[user-type="teacher-or-counselor"]:hover {
    background-color: #ffcb4e;
}

.user-type-container .user-type-item[user-type="parent"].active,
.user-type-container .user-type-item[user-type="parent"]:hover {
    background-color: #f6921e;
}

.user-type-container .user-type-item[user-type="community-member"].active,
.user-type-container .user-type-item[user-type="community-member"]:hover {
    background-color: #901c1f;
}

.user-type-container .user-type-item[user-type="school-administrator"].active,
.user-type-container .user-type-item[user-type="school-administrator"]:hover {
    background-color: #5d193c;
}

.user-type-container .user-type-item:after {
    background-position: left center;
    background-repeat: no-repeat;
    background-size: contain;
    display: block;
    content: "";
    height: 100%;
    width: 90%;

    position: absolute;
    top: 0;
    left: 0;

    z-index: 600;
}

.user-type-container .user-type-item[user-type="policy-maker"]:after {
    background-image: url( ../images/illustration-policy-maker.svg );
}

.user-type-container .user-type-item[user-type="school-administrator"]:after {
    background-image: url( ../images/illustration-school-admin.svg );
}

.user-type-container .user-type-item[user-type="teacher-or-counselor"]:after {
    background-image: url( ../images/illustration-teacher-or-counselor.svg );
}

.user-type-container .user-type-item[user-type="parent"]:after {
    background-image: url( ../images/illustration-parent.svg );
}

.user-type-container .user-type-item[user-type="community-member"]:after {
    background-image: url( ../images/illustration-community-member.svg );
}

.user-type-container .user-type-item[user-type="student"]:after {
    background-image: url( ../images/illustration-student.svg );
}

.user-type-container .user-type-item .name {
    position: absolute;
    top: 50%;
    right: 25px;
    display: block;
    width: 165px;
    text-align: center;

    font-size: 24px;
    font-weight: 600;
    letter-spacing: 0.5px;
    line-height: 1.2;
    margin: 0;

    -webkit-transform: translate( 0, -50% );
    -moz-transform:    translate( 0, -50% );
    -ms-transform:     translate( 0, -50% );
    -o-transform:      translate( 0, -50% );
    transform:         translate( 0, -50% );

    z-index: 650;
}

.user-type-container .user-type-item[user-type="policy-maker"] .name {
    color: #368786;
}

.user-type-container .user-type-item[user-type="school-administrator"] .name {
    color: #5d193c;
}

.user-type-container .user-type-item[user-type="teacher-or-counselor"] .name {
    color: #ffcb4e;
}

.user-type-container .user-type-item[user-type="parent"] .name {
    color: #f6921e;
}

.user-type-container .user-type-item[user-type="community-member"] .name {
    color: #901c1f;
}

.user-type-container .user-type-item[user-type="student"] .name {
    color: #c4c95f;
}

.user-type-container .user-type-item.active .name,
.user-type-container .user-type-item:hover .name {
    color: #fff !important;
    text-shadow: 0 0 1px rgba(0, 0, 0, 0.3);
}

section#step-2 {
    padding: 0 0 50px 0;
}

.i-want-container {
    font-size: 0;
    letter-spacing: 0;
}

.i-want-item {
    background-color: rgba(255, 255, 255, 0.25);
    display: inline-block;
    vertical-align: middle;
    width: 23%;
    margin: 1%;
    text-align: center;
    position: relative;
    border-radius: 15px;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.12);
    cursor: pointer;
    padding: 0 0 28px;

    transition: background-color .2s linear;
}

.i-want-item.active,
.i-want-item:hover {
    background-color: #33aedd;
}

body[user-type="policy-maker"] .i-want-item.active,
body[user-type="policy-maker"] .i-want-item:hover {
    background-color: #368786;
}

body[user-type="student"] .i-want-item.active,
body[user-type="student"] .i-want-item:hover {
    background-color: #c4c95f;
}

body[user-type="teacher-or-counselor"] .i-want-item.active,
body[user-type="teacher-or-counselor"] .i-want-item:hover {
    background-color: #ffcb4e;
}

body[user-type="parent"] .i-want-item.active,
body[user-type="parent"] .i-want-item:hover {
    background-color: #f6921e;
}

body[user-type="community-member"] .i-want-item.active,
body[user-type="community-member"] .i-want-item:hover {
    background-color: #901c1f;
}

body[user-type="school-administrator"] .i-want-item.active,
body[user-type="school-administrator"] .i-want-item:hover {
    background-color: #5d193c;
}


.i-want-item:after {
    content: "";
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;

    border-top: 20px solid transparent;

    position: absolute;
    left: calc( 50% - 10px );
    bottom: 0;
}

.i-want-item.active:after {
    bottom: -20px;
    transition: bottom .25s linear;
    transition-delay: .25s;
}

body[user-type="policy-maker"] .i-want-item.active:after {
    border-top: 20px solid #368786;
}

body[user-type="student"] .i-want-item.active:after {
    border-top: 20px solid #c4c95f;
}

body[user-type="teacher-or-counselor"] .i-want-item.active:after {
    border-top: 20px solid #ffcb4e;
}

body[user-type="parent"] .i-want-item.active:after {
    border-top: 20px solid #f6921e;
}

body[user-type="community-member"] .i-want-item.active:after {
    border-top: 20px solid #901c1f;
}

body[user-type="school-administrator"] .i-want-item.active:after {
    border-top: 20px solid #5d193c;
}

.i-want-item .icon-wrap {
    margin: 0 0 6px 0;
    height: 120px;
    position: relative;
    overflow: hidden;
    border-radius: 13px 13px 0 0;
}

.i-want-item .icon-wrap:before {
    background-color: transparent;
    content: "";
    display: block;
    width: 115%;
    height: 100%;
    border-radius: 0 0 50% 50%;

    position: absolute;
    top: -5px;
    left: 50%;

    -webkit-transform: translate( -50%, 0 );
    -moz-transform:    translate( -50%, 0 );
    -ms-transform:     translate( -50%, 0 );
    -o-transform:      translate( -50%, 0 );
    transform:         translate( -50%, 0 );

    transition-delay: .2s;
}

.i-want-item.active .icon-wrap:before,
.i-want-item:hover .icon-wrap:before {
    background-color: #fff;
    transition: background-color 0s linear;
}

.i-want-item .icon-wrap svg {
    font-size: 60px;
    color: #33aedd;
    position: absolute;
    top: 55%;
    left: 50%;

    -webkit-transform: translate( -50%, -50% );
    -moz-transform:    translate( -50%, -50% );
    -ms-transform:     translate( -50%, -50% );
    -o-transform:      translate( -50%, -50% );
    transform:         translate( -50%, -50% );
}

body[user-type="policy-maker"] .i-want-item .icon-wrap svg {
    color: #368786;
}

body[user-type="student"] .i-want-item .icon-wrap svg {
    color: #c4c95f;
}

body[user-type="teacher-or-counselor"] .i-want-item .icon-wrap svg {
    color: #ffcb4e;
}

body[user-type="parent"] .i-want-item .icon-wrap svg {
    color: #f6921e;
}

body[user-type="community-member"] .i-want-item .icon-wrap svg {
    color: #901c1f;
}

body[user-type="school-administrator"] .i-want-item .icon-wrap svg {
    color: #5d193c;
}

.i-want-item .title {
    background-color: #33aedd;
    font-size: 18px;
    font-weight: 600;
    line-height: 1;
    text-align: center;
    color: #fff;
    display: inline-block;
    padding: 10px 30px;
    border-radius: 25px;
    margin: 0 0 20px 0;
    min-width: 140px;
}

body[user-type="policy-maker"] .i-want-item .title {
    background-color: #368786;
}

body[user-type="student"] .i-want-item .title {
    background-color: #c4c95f;
}

body[user-type="teacher-or-counselor"] .i-want-item .title {
    background-color: #ffcb4e;
}

body[user-type="parent"] .i-want-item .title {
    background-color: #f6921e;
}

body[user-type="community-member"] .i-want-item .title {
    background-color: #901c1f;
}

body[user-type="school-administrator"] .i-want-item .title {
    background-color: #5d193c;
}

.i-want-item .description {
    display: block;
    font-size: 20px;
    font-weight: 500;
    line-height: 1.25;
    text-align: center;
    color: #666666;
    padding: 0 25px;
}

.i-want-item.active .description,
.i-want-item:hover .description {
    color: #fff;
}

.i-want-desk-accordion {
    overflow: hidden;
}

.i-want-desk {
    background-color: #fff;
    border-radius: 15px;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.12);

    padding: 50px 50px 45px;
    margin: 50px auto 50px;
    width: 98%;
    max-width: 1750px;
}

.i-want-desk .title {
    font-size: 28px;
    font-weight: 600;
    line-height: 1.5;
    color: #222;
    text-align: center;
    margin: 0 0 35px 0;
}

.i-want-desk .title:empty,
.i-want-desk .description:empty {
    display: none;
}

body[user-type="policy-maker"] .i-want-desk .title {
    color: #368786;
}

body[user-type="student"] .i-want-desk .title {
    color: #c4c95f;
}

body[user-type="teacher-or-counselor"] .i-want-desk .title {
    color: #ffcb4e;
}

body[user-type="parent"] .i-want-desk .title {
    color: #f6921e;
}

body[user-type="community-member"] .i-want-desk .title {
    color: #901c1f;
}

body[user-type="school-administrator"] .i-want-desk .title {
    color: #5d193c;
}

.i-want-desk .description {
    -webkit-columns: 300px 2;
    -moz-columns: 300px 2;
    columns: 300px 2;

    -webkit-column-gap: 30px;
    -moz-column-gap: 30px;
    column-gap: 30px;

    margin-bottom: 15px;
}

.i-want-desk .description p,
.i-want-desk .description li,
.i-want-desk .repo-top-desc {
    font-size: 20px;
    font-weight: 400;
    line-height: 1.75;
    color: #666666;
    margin: 0 0 20px 0;
}

.i-want-desk .repo-top-desc {
    text-align: center;
    margin-top: 25px;
    margin-bottom: 35px;
    font-weight: 600;
    font-style: italic;
    color: #222;
}

.i-want-desk .repo-top-desc .btn {
    margin-top: 12px;
    font-style: normal;
}

.i-want-desk .bottom-button-wrap {
    text-align: center;
    margin: 45px 0 0 0;
}

.i-want-desk .description li {
    margin: 0 0 15px 0;
}

.i-want-desk .description > p:nth-child( even ) {
    margin-right: 0;
}

.i-want-desk .description p strong {
    font-weight: 600;
    color: #222;
}

.i-want-desk .description a {
    font-weight: 600;
    color: #33aedd;
}

body[user-type="policy-maker"] .i-want-desk .description a {
    color: #368786;
}

body[user-type="student"] .i-want-desk .description a {
    color: #c4c95f;
}

body[user-type="teacher-or-counselor"] .i-want-desk .description a {
    color: #ffcb4e;
}

body[user-type="parent"] .i-want-desk .description a {
    color: #f6921e;
}

body[user-type="community-member"] .i-want-desk .description a {
    color: #901c1f;
}

body[user-type="school-administrator"] .i-want-desk .description a {
    color: #5d193c;
}

.i-want-desk .description a:hover {
    text-decoration: underline;
}

.board-scroll-desk {
    background-color: #f7fafc;
    padding: 30px 25px;
    border-radius: 8px;
}

body[user-type="policy-maker"] .board-scroll-desk.downloadable-documents-container {
    background-color: rgba(54, 135, 134, 0.15);
}

body[user-type="student"] .board-scroll-desk.downloadable-documents-container {
    background-color: rgba(196, 201, 95, 0.15);
}

body[user-type="teacher-or-counselor"] .board-scroll-desk.downloadable-documents-container {
    background-color: rgba(255, 203, 78, 0.15);
}

body[user-type="parent"] .board-scroll-desk.downloadable-documents-container {
    background-color: rgba(246, 146, 30, 0.15);
}

body[user-type="community-member"] .board-scroll-desk.downloadable-documents-container {
    background-color: rgba(144, 28, 31, 0.15);
}

body[user-type="school-administrator"] .board-scroll-desk.downloadable-documents-container {
    background-color: rgba(93, 25, 60, 0.16);
}

.board-scroll-desk > h4 {
    font-size: 20px;
    font-weight: 800;
    line-height: 1.2;
    text-align: center;
    text-transform: uppercase;
    color: #343434;
    margin: 0 0 20px 0;
}

body[user-type="policy-maker"] .board-scroll-desk.downloadable-documents-container > h4 {
    color: #368786;
}

body[user-type="student"] .board-scroll-desk.downloadable-documents-container > h4 {
    color: #c4c95f;
}

body[user-type="teacher-or-counselor"] .board-scroll-desk.downloadable-documents-container > h4 {
    color: #ffcb4e;
}

body[user-type="parent"] .board-scroll-desk.downloadable-documents-container > h4 {
    color: #f6921e;
}

body[user-type="community-member"] .board-scroll-desk.downloadable-documents-container > h4 {
    color: #901c1f;
}

body[user-type="school-administrator"] .board-scroll-desk.downloadable-documents-container > h4 {
    color: #5d193c;
}

.board-scroll-desk .important-links,
.board-scroll-desk .downloadable-documents {
    height: 400px;
    position: relative;
    overflow: hidden;
}

.board-scroll-desk .no-items {
    background-color: rgba(255, 255, 255, 0.35);
    display: block;
    width: 100%;
    height: 400px;
    padding: 5px;
    font-size: 20px;
    font-weight: 600;
    text-align: center;
    font-style: italic;
    color: #a6aaad;
    line-height: 400px;
    border-radius: 6px;

    z-index: 500;
}

.i-desk-item {
    display: block;
    background-color: #fff;
    padding: 20px;
    position: relative;
    z-index: 600;
    border-radius: 6px;
    margin-bottom: 10px;
}

.i-desk-item h5,
.i-desk-item a.l-title {
    display: block;
    font-size: 20px;
    font-weight: 600;
    line-height: 1.2;
    color: #343434;
    margin: 0 0 7px 0;

    transition: color .2s linear;
}

.i-desk-item p {
    font-size: 20px;
    font-weight: 500;
    line-height: 1.4;
    color: #666666;
    margin: 0 0 8px 0;

    transition: color .2s linear;
}

.i-desk-item a:not(.l-title) {
    font-size: 20px;
    font-weight: 600;
    line-height: 1.2;
    color: #33aedd;
    margin: 0;

    transition: color .2s linear;
}

.i-desk-item a.l-title:hover {
    color: #33aedd;
}

body[user-type="policy-maker"] .i-desk-item a:not(.l-title),
body[user-type="policy-maker"] .i-desk-item a.l-title:hover {
    color: #368786;
}

body[user-type="student"] .i-desk-item a:not(.l-title),
body[user-type="student"] .i-desk-item a.l-title:hover {
    color: #c4c95f;
}

body[user-type="teacher-or-counselor"] .i-desk-item a:not(.l-title),
body[user-type="teacher-or-counselor"] .i-desk-item a.l-title:hover {
    color: #ffcb4e;
}

body[user-type="parent"] .i-desk-item a:not(.l-title),
body[user-type="parent"] .i-desk-item a.l-title:hover {
    color: #f6921e;
}

body[user-type="community-member"] .i-desk-item a:not(.l-title),
body[user-type="community-member"] .i-desk-item a.l-title:hover {
    color: #901c1f;
}

body[user-type="school-administrator"] .i-desk-item a:not(.l-title),
body[user-type="school-administrator"] .i-desk-item a.l-title:hover {
    color: #5d193c;
}

.i-desk-item a svg.fa-long-arrow-alt-right,
.i-desk-item a svg.fa-long-arrow-right {
    position: relative;
    top: 1px;
    left: 0;
    transition: left .15s linear;
}

.i-desk-item a:hover svg.fa-long-arrow-alt-right,
.i-desk-item a:hover svg.fa-long-arrow-right {
    left: 4px;
    transition: left .15s linear .15s;
}

.board-scroll-desk .downloadable-documents .i-desk-item {
    padding-left: 80px;
}

.board-scroll-desk .downloadable-documents .i-desk-item:hover {
    background-color: #33aedd;
}

body[user-type="policy-maker"] .board-scroll-desk .downloadable-documents .i-desk-item:hover {
    background-color: #368786;
}

body[user-type="student"] .board-scroll-desk .downloadable-documents .i-desk-item:hover {
    background-color: #c4c95f;
}

body[user-type="teacher-or-counselor"] .board-scroll-desk .downloadable-documents .i-desk-item:hover {
    background-color: #ffcb4e;
}

body[user-type="parent"] .board-scroll-desk .downloadable-documents .i-desk-item:hover {
    background-color: #f6921e;
}

body[user-type="community-member"] .board-scroll-desk .downloadable-documents .i-desk-item:hover {
    background-color: #901c1f;
}

body[user-type="school-administrator"] .board-scroll-desk .downloadable-documents .i-desk-item:hover {
    background-color: #5d193c;
}

.board-scroll-desk .downloadable-documents .i-desk-item:before {
    font-family: "Font Awesome 5 Light";
    content: "\f56d";
    font-size: 20px;
    display: none;
}

.board-scroll-desk .downloadable-documents .i-desk-item svg {
    font-size: 46px;
    color: #33aedd;
    position: absolute;
    top: 22px;
    left: 25px;

    transition: color .2s linear;
}

body[user-type="policy-maker"] .board-scroll-desk .downloadable-documents .i-desk-item svg {
    color: #368786;
}

body[user-type="student"] .board-scroll-desk .downloadable-documents .i-desk-item svg {
    color: #c4c95f;
}

body[user-type="teacher-or-counselor"] .board-scroll-desk .downloadable-documents .i-desk-item svg {
    color: #ffcb4e;
}

body[user-type="parent"] .board-scroll-desk .downloadable-documents .i-desk-item svg {
    color: #f6921e;
}

body[user-type="community-member"] .board-scroll-desk .downloadable-documents .i-desk-item svg {
    color: #901c1f;
}

body[user-type="school-administrator"] .board-scroll-desk .downloadable-documents .i-desk-item svg {
    color: #5d193c;
}

.i-desk-item > :last-child {
    margin-bottom: 0;
}

.board-scroll-desk .downloadable-documents .i-desk-item:hover svg,
.board-scroll-desk .downloadable-documents .i-desk-item:hover h5,
.board-scroll-desk .downloadable-documents .i-desk-item:hover p {
    color: #fff !important;
}

body .mCSB_scrollTools .mCSB_draggerRail {
    background-color: #000;
    background-color: rgba(0, 0, 0, 0.1);
    filter: "alpha(opacity=10)";
    -ms-filter: "alpha(opacity=10)";
}

body .board-scroll-desk .important-links .mCSB_dragger_bar,
body .board-scroll-desk .important-links .mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar,
body .board-scroll-desk .important-links .mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar,
body .board-scroll-desk .downloadable-documents .mCSB_dragger_bar,
body .board-scroll-desk .downloadable-documents .mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar,
body .board-scroll-desk .downloadable-documents .mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar,
body .repo-app .mCSB_dragger_bar,
body .repo-app .mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar,
body .repo-app .mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar {
    background-color: #c6d9e6;
}

body[user-type="default"] .repo-app .mCSB_dragger .mCSB_dragger_bar,
body[user-type="default"] .board-scroll-desk .downloadable-documents .mCSB_dragger .mCSB_dragger_bar {
    background-color: #33aedd !important;
}

body[user-type="policy-maker"] .repo-app .mCSB_dragger .mCSB_dragger_bar,
body[user-type="policy-maker"] .board-scroll-desk .downloadable-documents .mCSB_dragger .mCSB_dragger_bar {
    background-color: #368786 !important;
}

body[user-type="student"] .repo-app .mCSB_dragger .mCSB_dragger_bar,
body[user-type="student"] .board-scroll-desk .downloadable-documents .mCSB_dragger .mCSB_dragger_bar {
    background-color: #c4c95f !important;
}

body[user-type="teacher-or-counselor"] .repo-app .mCSB_dragger .mCSB_dragger_bar,
body[user-type="teacher-or-counselor"] .board-scroll-desk .downloadable-documents .mCSB_dragger .mCSB_dragger_bar {
    background-color: #ffcb4e !important;
}

body[user-type="parent"] .repo-app .mCSB_dragger .mCSB_dragger_bar,
body[user-type="parent"] .board-scroll-desk .downloadable-documents .mCSB_dragger .mCSB_dragger_bar {
    background-color: #f6921e !important;
}

body[user-type="community-member"] .repo-app .mCSB_dragger .mCSB_dragger_bar,
body[user-type="community-member"] .board-scroll-desk .downloadable-documents .mCSB_dragger .mCSB_dragger_bar {
    background-color: #901c1f !important;
}

body[user-type="school-administrator"] .repo-app .mCSB_dragger .mCSB_dragger_bar,
body[user-type="school-administrator"] .board-scroll-desk .downloadable-documents .mCSB_dragger .mCSB_dragger_bar {
    background-color: #5d193c !important;
}












/* ---------------------------------------------------------------------------------------------------------------------
    ARTICLE / NEWS / BLOG
--------------------------------------------------------------------------------------------------------------------- */
.featured-articles-wrap {
    padding: 25px 0 0;
}

.featured-articles-wrap h3 {
    font-size: 40px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 4px;
    text-align: center;
    text-transform: uppercase;
    color: #4d4d4d;
    margin: 0 0 40px;
}

.featured-articles-container {
    font-size: 0;
    letter-spacing: 0;
    text-align: center;
}

.article-item {
    background-color: #fff;
    display: inline-block;
    vertical-align: top;

    width: 31.33%;
    margin: 1%;

    position: relative;
    border-radius: 8px;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.12);

    transition: background-color .2s linear;
}

.article-item.no-image {
    border-radius: 0 0 8px 8px;
}

.webinar-item:hover,
.article-item:not(.no-single-page):hover,
.archive-news-items:not( .list ) .article-item.no-single-page:hover {
    background-color: #33aedd;
}

body[user-type="policy-maker"] .webinar-item:hover,
body[user-type="policy-maker"] .article-item:not(.no-single-page):hover,
body[user-type="policy-maker"] .archive-news-items:not( .list ) .article-item.no-single-page:hover {
    background-color: #368786;
}

body[user-type="student"] .webinar-item:hover,
body[user-type="student"] .article-item:not(.no-single-page):hover,
body[user-type="student"] .archive-news-items:not( .list ) .article-item.no-single-page:hover {
    background-color: #c4c95f;
}

body[user-type="teacher-or-counselor"] .webinar-item:hover,
body[user-type="teacher-or-counselor"] .article-item:not(.no-single-page):hover,
body[user-type="teacher-or-counselor"] .archive-news-items:not( .list ) .article-item.no-single-page:hover {
    background-color: #ffcb4e;
}

body[user-type="parent"] .webinar-item:hover,
body[user-type="parent"] .article-item:not(.no-single-page):hover,
body[user-type="parent"] .archive-news-items:not( .list ) .article-item.no-single-page:hover {
    background-color: #f6921e;
}

body[user-type="community-member"] .webinar-item:hover,
body[user-type="community-member"] .article-item:not(.no-single-page):hover,
body[user-type="community-member"] .archive-news-items:not( .list ) .article-item.no-single-page:hover {
    background-color: #901c1f;
}

body[user-type="school-administrator"] .webinar-item:hover,
body[user-type="school-administrator"] .article-item:not(.no-single-page):hover,
body[user-type="school-administrator"] .archive-news-items:not( .list ) .article-item.no-single-page:hover {
    background-color: #5d193c;
}

.article-item .article-thumbnail,
.single-article-content div.article-thumbnail {
    height: 350px;
    background-color: #eee;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    border-radius: 7px 7px 0 0;

    display: block;
    width: 100%;

    overflow: hidden;
    margin: 0;
    position: relative;
}

.single-article-content img.article-thumbnail {
    height: auto;
    width: auto;
    max-width: 100%;
    display: block;
    margin: 0 auto;
}

.single-article-content div.article-thumbnail.post-gallery {
    height: 575px;
    margin-bottom: 35px;
    border-radius: 0;
}

.archive-news-items.list .article-item .article-thumbnail.no-image {
    display: none;
}

.single-article-content .article-thumbnail {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    display: block;
    border-radius: 0;
    border-bottom: none;
    width: 100%;
    height: 575px;
    margin-bottom: 35px;
    position: relative;
}

section.gallery.regular .single-article-content .article-thumbnail {
    height: 670px;
}

section.gallery.full .single-article-content .article-thumbnail {
    height: 670px;
}

.article-item .article-thumbnail .slick-next,
.article-item .article-thumbnail .slick-prev,
.single-article-content .article-thumbnail .slick-next,
.single-article-content .article-thumbnail .slick-prev {
    background-color: #fff;
    text-align: center;
    font-size: 18px;
    color: #222;
    width: 38px;
    height: 46px;
    padding: 14px 0;
    opacity: .3;
    z-index: 500;
    transition: all .15s linear;
}

.article-item .article-thumbnail .slick-next,
.single-article-content .article-thumbnail .slick-next {
    right: 0;
    border-radius: 15px 0 0 15px;
}

.article-item .article-thumbnail .slick-prev,
.single-article-content .article-thumbnail .slick-prev {
    left: 0;
    border-radius: 0 15px 15px 0;
}

.article-item .article-thumbnail .slick-next:before,
.article-item .article-thumbnail .slick-prev:before,
.single-article-content .article-thumbnail .slick-next:before,
.single-article-content .article-thumbnail .slick-prev:before {
    display: none;
}

.article-item .article-thumbnail .slick-next:hover,
.article-item .article-thumbnail .slick-prev:hover,
.single-article-content .article-thumbnail .slick-next:hover,
.single-article-content .article-thumbnail .slick-prev:hover {
    opacity: .9;
    transition: all .2s linear;
}

.featured-articles-container > .article-item:nth-child( 1 ) {
    animation-delay: .5s;
}

.featured-articles-container > .article-item:nth-child( 2 ) {
    animation-delay: .8s;
}

.featured-articles-container > .article-item:nth-child( 3 ) {
    animation-delay: 1.1s;
}

.article-item .article-thumbnail .slick-list,
.article-item .article-thumbnail .slick-track,
.single-article-content .article-thumbnail .slick-list,
.single-article-content .article-thumbnail .slick-track {
    height: inherit;
}

.article-item .article-thumbnail .slide,
.single-article-content .article-thumbnail .slide {
    display: block;
    background-color: #fff;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;

    height: inherit;
}

.webinar-item .webinar-thumbnail:before,
.article-item .article-thumbnail.post-video:before,
.single-article-content .article-thumbnail.post-video:before {
    background-color: rgba(18, 18, 18, 0.35);
    content: "";
    display: block;
    width: 100%;
    height: 100%;

    position: absolute;
    top: 0;
    left: 0;

    transition: background-color .2s linear;
}

.webinar-item .webinar-thumbnail svg,
.article-item .article-thumbnail.post-video svg,
.single-article-content .article-thumbnail.post-video svg {
    position: absolute;
    top: 50%;
    left: 50%;

    font-size: 42px;
    color: #fff;

    -webkit-transform: translate( -50%, -50% );
    -moz-transform:    translate( -50%, -50% );
    -ms-transform:     translate( -50%, -50% );
    -o-transform:      translate( -50%, -50% );
    transform:         translate( -50%, -50% );

    transition: color .3s linear;

    -webkit-filter: drop-shadow( 0 0 14px rgb(255, 255, 255) );
    filter:         drop-shadow( 0 0 14px rgb(255, 255, 255) );
}

.single-article-content .article-thumbnail.post-video svg {
    font-size: 54px;
}

body[user-type="policy-maker"] .webinar-thumbnail svg,
body[user-type="policy-maker"] .article-thumbnail.post-video svg {
    color: #368786;
}

body[user-type="student"] .webinar-thumbnail svg,
body[user-type="student"] .article-thumbnail.post-video svg {
    color: #c4c95f;
}

body[user-type="teacher-or-counselor"] .webinar-thumbnail svg,
body[user-type="teacher-or-counselor"] .article-thumbnail.post-video svg {
    color: #ffcb4e;
}

body[user-type="parent"] .webinar-thumbnail svg,
body[user-type="parent"] .article-thumbnail.post-video svg {
    color: #f6921e;
}

body[user-type="community-member"] .webinar-thumbnail svg,
body[user-type="community-member"] .article-thumbnail.post-video svg {
    color: #901c1f;
}

body[user-type="school-administrator"] .webinar-thumbnail svg,
body[user-type="school-administrator"] .article-thumbnail.post-video svg {
    color: #5d193c;
}

body[user-type] .webinar-thumbnail:hover svg,
body[user-type] .article-thumbnail.post-video:hover svg {
    color: #33aedd;
    transition: color .4s linear;
}

body[user-type="policy-maker"] .article-item .article-item-content,
body[user-type="policy-maker"] .webinar-item .webinar-item-content {
    border-top: 4px solid #368786;
}

body[user-type="student"] .article-item .article-item-content,
body[user-type="student"] .webinar-item .webinar-item-content {
    border-top: 4px solid #c4c95f;
}

body[user-type="teacher-or-counselor"] .article-item .article-item-content,
body[user-type="teacher-or-counselor"] .webinar-item .webinar-item-content {
    border-top: 4px solid #ffcb4e;
}

body[user-type="parent"] .article-item .article-item-content,
body[user-type="parent"] .webinar-item .webinar-item-content {
    border-top: 4px solid #f6921e;
}

body[user-type="community-member"] .article-item .article-item-content,
body[user-type="community-member"] .webinar-item .webinar-item-content {
    border-top: 4px solid #901c1f;
}

body[user-type="school-administrator"] .article-item .article-item-content,
body[user-type="school-administrator"] .webinar-item .webinar-item-content {
    border-top: 4px solid #5d193c;
}

.article-item .article-thumbnail:not(.post-gallery):not(.post-video):before,
.live-webinar-wrap .webinar-item .webinar-thumbnail:after {
    display: block;
    content: "";
    width: 100%;
    height: 100%;

    position: absolute;
    top: 0;
    left: 0;

    background: -moz-linear-gradient(top, rgba(0,0,0,0) 0%, rgba(51,174,221,1) 100%);
    background: -webkit-linear-gradient(top, rgba(0,0,0,0) 0%,rgba(51,174,221,1) 100%);
    background: linear-gradient(to bottom, rgba(0,0,0,0) 0%,rgba(51,174,221,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00000000', endColorstr='#33aedd',GradientType=0 );

    opacity: 0;
    transition: opacity .2s linear;
}

.live-webinar-wrap .webinar-item .webinar-thumbnail:after {
    top: auto;
    bottom: 0;
    height: 150px;
}

body[user-type="policy-maker"] .article-item .article-thumbnail:not(.post-gallery):not(.post-video):before,
body[user-type="policy-maker"] .live-webinar-wrap .webinar-item .webinar-thumbnail:after {
    background: -moz-linear-gradient(top, rgba(0,0,0,0) 0%, rgba(54,135,134,1) 100%);
    background: -webkit-linear-gradient(top, rgba(0,0,0,0) 0%,rgba(54,135,134,1) 100%);
    background: linear-gradient(to bottom, rgba(0,0,0,0) 0%,rgba(54,135,134,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00000000', endColorstr='#368786',GradientType=0 );
}

body[user-type="student"] .article-item .article-thumbnail:not(.post-gallery):not(.post-video):before,
body[user-type="student"] .live-webinar-wrap .webinar-item .webinar-thumbnail:after {
    background: -moz-linear-gradient(top, rgba(0,0,0,0) 0%, rgba(196,201,95,1) 100%);
    background: -webkit-linear-gradient(top, rgba(0,0,0,0) 0%,rgba(196,201,95,1) 100%);
    background: linear-gradient(to bottom, rgba(0,0,0,0) 0%,rgba(196,201,95,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00000000', endColorstr='#c4c95f',GradientType=0 );
}

body[user-type="teacher-or-counselor"] .article-item .article-thumbnail:not(.post-gallery):not(.post-video):before,
body[user-type="teacher-or-counselor"] .live-webinar-wrap .webinar-item .webinar-thumbnail:after {
    background: -moz-linear-gradient(top, rgba(0,0,0,0) 0%, rgba(255,203,78,1) 100%);
    background: -webkit-linear-gradient(top, rgba(0,0,0,0) 0%,rgba(255,203,78,1) 100%);
    background: linear-gradient(to bottom, rgba(0,0,0,0) 0%,rgba(255,203,78,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00000000', endColorstr='#ffcb4e',GradientType=0 );
}

body[user-type="parent"] .article-item .article-thumbnail:not(.post-gallery):not(.post-video):before,
body[user-type="parent"] .live-webinar-wrap .webinar-item .webinar-thumbnail:after {
    background: -moz-linear-gradient(top, rgba(0,0,0,0) 0%, rgba(246,146,30,1) 100%);
    background: -webkit-linear-gradient(top, rgba(0,0,0,0) 0%,rgba(246,146,30,1) 100%);
    background: linear-gradient(to bottom, rgba(0,0,0,0) 0%,rgba(246,146,30,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00000000', endColorstr='#f6921e',GradientType=0 );
}

body[user-type="community-member"] .article-item .article-thumbnail:not(.post-gallery):not(.post-video):before,
body[user-type="community-member"] .live-webinar-wrap .webinar-item .webinar-thumbnail:after {
    background: -moz-linear-gradient(top, rgba(0,0,0,0) 0%, rgba(144,28,31,1) 100%);
    background: -webkit-linear-gradient(top, rgba(0,0,0,0) 0%,rgba(144,28,31,1) 100%);
    background: linear-gradient(to bottom, rgba(0,0,0,0) 0%,rgba(144,28,31,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00000000', endColorstr='#901c1f',GradientType=0 );
}

body[user-type="school-administrator"] .article-item .article-thumbnail:not(.post-gallery):not(.post-video):before,
body[user-type="school-administrator"] .live-webinar-wrap .webinar-item .webinar-thumbnail:after {
    background: -moz-linear-gradient(top, rgba(0,0,0,0) 0%, rgba(93,25,60,1) 100%);
    background: -webkit-linear-gradient(top, rgba(0,0,0,0) 0%,rgba(93,25,60,1) 100%);
    background: linear-gradient(to bottom, rgba(0,0,0,0) 0%,rgba(93,25,60,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00000000', endColorstr='#5d193c',GradientType=0 );
}

.webinar-item .webinar-thumbnail:after {
    display: block;
    content: "";
    width: 150px;
    height: 100%;

    position: absolute;
    top: 0;
    right: 0;

    background: -moz-linear-gradient(left, rgba(0,0,0,0) 0%, rgba(51,174,221,1) 100%);
    background: -webkit-linear-gradient(left, rgba(0,0,0,0) 0%,rgba(51,174,221,1) 100%);
    background: linear-gradient(to right, rgba(0,0,0,0) 0%,rgba(51,174,221,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00000000', endColorstr='#33aedd',GradientType=0 );

    opacity: 0;
    transition: opacity .2s linear;
}

body[user-type="policy-maker"] .webinar-item .webinar-thumbnail:after {
    background: -moz-linear-gradient(left, rgba(0,0,0,0) 0%, rgba(54,135,134,1) 100%);
    background: -webkit-linear-gradient(left, rgba(0,0,0,0) 0%,rgba(54,135,134,1) 100%);
    background: linear-gradient(to right, rgba(0,0,0,0) 0%,rgba(54,135,134,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00000000', endColorstr='#368786',GradientType=0 );
}

body[user-type="student"] .webinar-item .webinar-thumbnail:after {
    background: -moz-linear-gradient(left, rgba(0,0,0,0) 0%, rgba(196,201,95,1) 100%);
    background: -webkit-linear-gradient(left, rgba(0,0,0,0) 0%,rgba(196,201,95,1) 100%);
    background: linear-gradient(to right, rgba(0,0,0,0) 0%,rgba(196,201,95,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00000000', endColorstr='#c4c95f',GradientType=0 );
}

body[user-type="teacher-or-counselor"] .webinar-item .webinar-thumbnail:after {
    background: -moz-linear-gradient(left, rgba(0,0,0,0) 0%, rgba(255,203,78,1) 100%);
    background: -webkit-linear-gradient(left, rgba(0,0,0,0) 0%,rgba(255,203,78,1) 100%);
    background: linear-gradient(to right, rgba(0,0,0,0) 0%,rgba(255,203,78,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00000000', endColorstr='#ffcb4e',GradientType=0 );
}

body[user-type="parent"] .webinar-item .webinar-thumbnail:after {
    background: -moz-linear-gradient(left, rgba(0,0,0,0) 0%, rgba(246,146,30,1) 100%);
    background: -webkit-linear-gradient(left, rgba(0,0,0,0) 0%,rgba(246,146,30,1) 100%);
    background: linear-gradient(to right, rgba(0,0,0,0) 0%,rgba(246,146,30,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00000000', endColorstr='#f6921e',GradientType=0 );
}

body[user-type="community-member"] .webinar-item .webinar-thumbnail:after {
    background: -moz-linear-gradient(left, rgba(0,0,0,0) 0%, rgba(144,28,31,1) 100%);
    background: -webkit-linear-gradient(left, rgba(0,0,0,0) 0%,rgba(144,28,31,1) 100%);
    background: linear-gradient(to right, rgba(0,0,0,0) 0%,rgba(144,28,31,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00000000', endColorstr='#901c1f',GradientType=0 );
}

body[user-type="school-administrator"] .webinar-item .webinar-thumbnail:after {
    background: -moz-linear-gradient(left, rgba(0,0,0,0) 0%, rgba(93,25,60,1) 100%);
    background: -webkit-linear-gradient(left, rgba(0,0,0,0) 0%,rgba(93,25,60,1) 100%);
    background: linear-gradient(to right, rgba(0,0,0,0) 0%,rgba(93,25,60,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00000000', endColorstr='#5d193c',GradientType=0 );
}

.article-item:hover .article-thumbnail:not(.post-gallery):not(.post-video):before,
.webinar-item:hover .webinar-thumbnail:after {
    opacity: 1;
}

.article-item .article-item-content {
    border-top: 4px solid #33aedd;
    padding: 25px 45px 90px;
    position: relative;
    text-align: center;
}

.article-item .article-item-content > h4,
.webinar-item .webinar-item-content > h4 {
    font-size: 26px;
    line-height: 1.1;
    font-weight: 600;
    text-align: left;
    color: #000;
    margin: 0 0 10px 0;

    transition: background-color .2s linear;
}

.webinar-item .webinar-item-content > h4 {
    text-align: center;
}

.archive-news-container.list .article-item.no-single-page .article-item-content > h4 {
    margin: 0 0 18px 0;
}

.article-item .article-item-content > h4 > a,
.webinar-item .webinar-item-content > h4 > a {
    color: inherit;
}

.article-item .article-item-content > h4 > a:hover {
    text-decoration: underline;
}

.article-item .article-item-content .article-item-description {
    margin-bottom: 15px;
    text-align: left;
}

.archive-news-container.list .article-item.no-single-page .article-item-content .article-item-description {
    display: none;
}

.article-item .article-item-content .article-item-description p,
.archive-news-container.list .article-item .article-item-content .article-item-no-page-content p {
    font-size: 20px;
    line-height: 1.5;
    color: #666666;
    margin: 0 0 15px 0;
    text-align: left;

    transition: background-color .2s linear;
}

.archive-news-container.list .article-item .article-item-content .article-item-no-page-content p {
    color: #696969;
    margin: 0 0 20px 0;
}

.archive-news-container.list .article-item .article-item-content .article-item-no-page-content a {
    font-weight: 700;
    color: #434343;
    text-decoration: underline;
}

.archive-news-container.list .article-item .article-item-no-page-content a:hover {
    color: #33aedd !important;
}

body[user-type="policy-maker"] .archive-news-container.list .article-item .article-item-no-page-content a:hover {
    color: #368786 !important;
}

body[user-type="student"] .archive-news-container.list .article-item .article-item-no-page-content a:hover {
    color: #c4c95f !important;
}

body[user-type="teacher-or-counselor"] .archive-news-container.list .article-item .article-item-no-page-content a:hover {
    color: #ffcb4e !important;
}

body[user-type="parent"] .archive-news-container.list .article-item .article-item-no-page-content a:hover {
    color: #f6921e !important;
}

body[user-type="community-member"] .archive-news-container.list .article-item .article-item-no-page-content a:hover {
    color: #901c1f !important;
}

body[user-type="school-administrator"] .archive-news-container.list .article-item .article-item-no-page-content a:hover {
    color: #5d193c !important;
}

section#archive-news .archive-news-container.list .article-item .article-item-content .article-item-no-page-content strong {
    color: #3b3b3b;
}

.article-item .article-item-content .article-item-description > :last-child,
section#archive-news .archive-news-container.list .article-item .article-item-content .article-item-no-page-content > :last-child {
    margin-bottom: 0;
}

.article-item .article-item-content .article-item-no-page-content {
    display: none;
}

section#archive-news .archive-news-container.list .article-item .article-item-content .article-item-no-page-content {
    display: block;
    text-align: left;
    margin-bottom: 30px;
    padding: 0 20px;
}

section#archive-news .archive-news-container.list .article-item .article-item-content .article-item-no-page-content img.aligncenter {
    margin-top: 20px;
    margin-bottom: 20px;
}

.article-categories-wrap {}

.article-categories-wrap .article-category {
    display: inline-block;
    border: 1px solid #989898;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 400;
    line-height: 1.2;
    color: #989898;
    padding: 7px 15px;
    margin: 0 7px 10px 0;

    transition: all .2s linear;
}

.article-item:not( .no-single-page ) .article-categories-wrap .article-category:hover,
.archive-news-items:not( .list ) .article-item.no-single-page .article-categories-wrap .article-category:hover {
    background-color: #fff;
    color: #33aedd !important;
}

.archive-news-items.list .article-item.no-single-page .article-categories-wrap .article-category:hover {
    border: 1px solid #3b3b3b;
    background-color: #3b3b3b;
    color: #fff;
}

body[user-type="policy-maker"] .article-item:not( .no-single-page ) .article-categories-wrap .article-category:hover,
body[user-type="policy-maker"] .archive-news-items:not( .list ) .article-item.no-single-page .article-categories-wrap .article-category:hover {
    color: #368786 !important;
}

body[user-type="student"] .article-item:not( .no-single-page ) .article-categories-wrap .article-category:hover,
body[user-type="student"] .archive-news-items:not( .list ) .article-item.no-single-page .article-categories-wrap .article-category:hover {
    color: #c4c95f !important;
}

body[user-type="teacher-or-counselor"] .article-item:not( .no-single-page ) .article-categories-wrap .article-category:hover,
body[user-type="teacher-or-counselor"] .archive-news-items:not( .list ) .article-item.no-single-page .article-categories-wrap .article-category:hover {
    color: #ffcb4e !important;
}

body[user-type="parent"] .article-item:not( .no-single-page ) .article-categories-wrap .article-category:hover,
body[user-type="parent"] .archive-news-items:not( .list ) .article-item.no-single-page .article-categories-wrap .article-category:hover {
    color: #f6921e !important;
}

body[user-type="community-member"] .article-item:not( .no-single-page ) .article-categories-wrap .article-category:hover,
body[user-type="community-member"] .archive-news-items:not( .list ) .article-item.no-single-page .article-categories-wrap .article-category:hover {
    color: #901c1f !important;
}

body[user-type="school-administrator"] .article-item:not( .no-single-page ) .article-categories-wrap .article-category:hover,
body[user-type="school-administrator"] .archive-news-items:not( .list ) .article-item.no-single-page .article-categories-wrap .article-category:hover {
    color: #5d193c !important;
}

.webinar-item:hover .webinar-description-wrap *,
.webinar-item:hover .webinar-item-content > h4,

.archive-news-container.list .article-item:not(.no-single-page):hover .article-item-content .article-item-no-page-content *,
.article-item:not(.no-single-page):hover .article-item-content .article-item-description p,
.article-item:not(.no-single-page):hover .article-item-content > h4,

.archive-news-items:not( .list ) .article-item.no-single-page:hover .article-item-content .article-item-no-page-content *,
.archive-news-items:not( .list ) .article-item.no-single-page:hover .article-item-content .article-item-description p,
.archive-news-items:not( .list ) .article-item.no-single-page:hover .article-item-content > h4 {
    color: #fff !important;
}

.article-item:not(.no-single-page):hover .article-categories-wrap .article-category,
.archive-news-items:not( .list ) .article-item.no-single-page:hover .article-categories-wrap .article-category {
    border: 1px solid #fff;
    color: #fff;
}

.article-item .read-more,
.webinar-item .read-more {
    background-color: #33aedd;
    display: block;
    width: 175px;
    border: 1px solid #fff;
    border-radius: 50px;
    font-size: 17px;
    font-weight: 600;
    line-height: 1.2;
    text-align: center;
    color: #fff;
    padding: 12px 24px;
    margin: 0;

    position: absolute;
    left: 50%;
    bottom: 30px;

    -webkit-transform: translate( -50%, 0 );
    -moz-transform:    translate( -50%, 0 );
    -ms-transform:     translate( -50%, 0 );
    -o-transform:      translate( -50%, 0 );
    transform:         translate( -50%, 0 );
}

body[user-type="policy-maker"] section#masthead .cat-icon-wrap:after,
body[user-type="policy-maker"] .article-item .read-more,
body[user-type="policy-maker"] .webinar-item .read-more {
    background-color: #368786;
}

body[user-type="student"] section#masthead .cat-icon-wrap:after,
body[user-type="student"] .article-item .read-more,
body[user-type="student"] .webinar-item .read-more {
    background-color: #c4c95f;
}

body[user-type="teacher-or-counselor"] section#masthead .cat-icon-wrap:after,
body[user-type="teacher-or-counselor"] .article-item .read-more,
body[user-type="teacher-or-counselor"] .webinar-item .read-more {
    background-color: #ffcb4e;
}

body[user-type="parent"] section#masthead .cat-icon-wrap:after,
body[user-type="parent"] .article-item .read-more,
body[user-type="parent"] .webinar-item .read-more {
    background-color: #f6921e;
}

body[user-type="community-member"] section#masthead .cat-icon-wrap:after,
body[user-type="community-member"] .article-item .read-more,
body[user-type="community-member"] .webinar-item .read-more {
    background-color: #901c1f;
}

body[user-type="school-administrator"] section#masthead .cat-icon-wrap:after,
body[user-type="school-administrator"] .article-item .read-more,
body[user-type="school-administrator"] .webinar-item .read-more {
    background-color: #5d193c;
}

.article-item .read-more svg,
.webinar-item .read-more svg {
    position: relative;
    top: 1px;
    left: 0;
    margin-left: 3px;
    transition: left .15s linear;
}

.webinar-item .read-more:hover svg.fa-long-arrow-right,
.article-item .read-more:hover svg.fa-long-arrow-right,
.article-item a.article-thumbnail:hover + .article-item-content .read-more svg.fa-long-arrow-right {
    left: 5px;
    transition: left .15s linear .15s;
}

.webinar-item .read-more:hover,
.article-item .read-more:hover,
.article-item a.article-thumbnail:hover + .article-item-content .read-more {
    background-color: #fff;
    color: #33aedd;
}

body[user-type="policy-maker"] .webinar-item .read-more:hover,
body[user-type="policy-maker"] .article-item .read-more:hover,
body[user-type="policy-maker"] .article-item a.article-thumbnail:hover + .article-item-content .read-more {
    background-color: #fff;
    color: #368786;
}

body[user-type="student"] .webinar-item .read-more:hover,
body[user-type="student"] .article-item .read-more:hover,
body[user-type="student"] .article-item a.article-thumbnail:hover + .article-item-content .read-more {
    background-color: #fff;
    color: #c4c95f;
}

body[user-type="teacher-or-counselor"] .webinar-item .read-more:hover,
body[user-type="teacher-or-counselor"] .article-item .read-more:hover,
body[user-type="teacher-or-counselor"] .article-item a.article-thumbnail:hover + .article-item-content .read-more {
    background-color: #fff;
    color: #ffcb4e;
}

body[user-type="parent"] .webinar-item .read-more:hover,
body[user-type="parent"] .article-item .read-more:hover,
body[user-type="parent"] .article-item a.article-thumbnail:hover + .article-item-content .read-more {
    background-color: #fff;
    color: #f6921e;
}

body[user-type="community-member"] .webinar-item .read-more:hover,
body[user-type="community-member"] .article-item .read-more:hover,
body[user-type="community-member"] .article-item a.article-thumbnail:hover + .article-item-content .read-more {
    background-color: #fff;
    color: #901c1f;
}

body[user-type="school-administrator"] .webinar-item .read-more:hover,
body[user-type="school-administrator"] .article-item .read-more:hover,
body[user-type="school-administrator"] .article-item a.article-thumbnail:hover + .article-item-content .read-more {
    background-color: #fff;
    color: #5d193c;
}

.featured-articles-wrap .button-wrap {
    padding-top: 40px;
    text-align: center;
}

.single-article-content {
    margin: 45px 0 37px;
}

.post-date {
    font-size: 12px;
    font-style: italic;
    line-height: 1.5;
    color: #666666;
    font-weight: 600;
    margin: 45px 0 37px;
    text-align: center;
    display: block;
    position: relative;
}

.article-item .post-date {
    margin: 0 0 15px 0;
}

.archive-news-container.list .article-item.no-single-page .post-date {
    margin: 5px 0 25px 0;
}

.webinar-item:hover .post-date,
.article-item:not(.no-single-page):hover .post-date,
.archive-news-items:not( .list ) .article-item.no-single-page:hover .post-date {
    color: #fff;
}

.post-date:before,
.post-date:after {
    display: inline-block;
    width: 25px;
    height: 1px;
    background-color: #666666;
    vertical-align: middle;
    margin: 0 15px;
    content: "";
}

.webinar-item:hover .post-date:before,
.webinar-item:hover .post-date:after,
.article-item:not(.no-single-page):hover .post-date:before,
.article-item:not(.no-single-page):hover .post-date:after,
.archive-news-items:not( .list ) .article-item.no-single-page:hover .post-date:before,
.archive-news-items:not( .list ) .article-item.no-single-page:hover .post-date:after {
    background-color: #fff;
}

body.single .share-box {
    background-color: #fafafa;
    padding: 15px 0;
    margin: 15px 0 55px;
    text-align: center;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
}

body.single section[pb-section]:not( .gray ) + .grid-container .share-box {
    margin: 10px 0 55px;
}

body.single .share-box .text {
    text-transform: uppercase;
    font-size: 10px;
    font-weight: 600;
    color: #676767;
    letter-spacing: .5px;
    display: inline-block;
    margin-right: 10px;
}

body.single .share-box > a {
    display: inline-block;
    font-size: 14px;
    color: #808080;
    width: 32px;
    height: 32px;
    text-align: center;
    line-height: 36px;
    background-color: transparent;
    border-radius: 3px;
}

body.single .share-box > a:hover {
    background-color: #808080;
    color: #fff;
}

.sb-title  {
    font-size: 20px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: .5px;
    color: #000;
    text-transform: uppercase;
    margin: 0 0 15px 0;
}

.sidebar-categories,
.sidebar-latest-posts {
    margin-bottom: 50px;
}

.sidebar-categories .categories {
    margin: 0;
    list-style: none;
}

.sidebar-categories .categories > li {
    display: block;
    width: 100%;
    margin: 0 0 7px 0;
}

.sidebar-categories .categories > li > a.category-item {
    display: block;
    width: 100%;
    border-left: 4px solid #c9c9c9;
    background-color: #f4f4f4;
    padding: 11px 5px 11px 20px;
    color: #222;
    font-size: 16px;
    font-weight: 500;

    transition: all .2s linear;
}

.sidebar-categories .categories > li:hover > a.category-item {
    background-color: rgba(51, 174, 221, 0.2);
    border-left: 4px solid #33aedd;
    color: #33aedd;
}

.sidebar-categories .categories > li.active > a.category-item {
    background-color: #33aedd;
    border-left: 4px solid #33aedd;
    color: #fff;
}

body[user-type="policy-maker"] .sidebar-categories .categories > li:hover > a.category-item  {
    background-color: rgba(54, 135, 134, 0.2);
    border-left: 4px solid #368786;
    color: #297271;
}

body[user-type="policy-maker"] .sidebar-categories .categories > li.active > a.category-item  {
    background-color: #368786;
    border-left: 4px solid #368786;
    color: #fff;
}

body[user-type="student"] .sidebar-categories .categories > li:hover > a.category-item{
    background-color: rgba(196, 201, 95, 0.2);
    border-left: 4px solid #c4c95f;
    color: #b6bc44;
}

body[user-type="student"] .sidebar-categories .categories > li.active > a.category-item {
    background-color: #c4c95f;
    border-left: 4px solid #c4c95f;
    color: #fff;
}

body[user-type="teacher-or-counselor"] .sidebar-categories .categories > li:hover > a.category-item {
    background-color: rgba(255, 203, 78, 0.2);
    border-left: 4px solid #ffcb4e;
    color: #f0b72f;
}

body[user-type="teacher-or-counselor"] .sidebar-categories .categories > li.active > a.category-item {
    background-color: #ffcb4e;
    border-left: 4px solid #ffcb4e;
    color: #fff;
}

body[user-type="parent"] .sidebar-categories .categories > li:hover > a.category-item {
    background-color: rgba(246, 146, 30, 0.2);
    border-left: 4px solid #f6921e;
    color: #f6921e;
}

body[user-type="parent"] .sidebar-categories .categories > li.active > a.category-item {
    background-color: #f6921e;
    border-left: 4px solid #f6921e;
    color: #fff;
}

body[user-type="community-member"] .sidebar-categories .categories > li:hover > a.category-item {
    background-color: rgba(144, 28, 31, 0.2);
    border-left: 4px solid #901c1f;
    color: #901c1f;
}

body[user-type="community-member"] .sidebar-categories .categories > li.active > a.category-item {
    background-color: #901c1f;
    border-left: 4px solid #901c1f;
    color: #fff;
}

body[user-type="school-administrator"] .sidebar-categories .categories > li:hover > a.category-item {
    background-color: rgba(93, 25, 60, 0.2);
    border-left: 4px solid #5d193c;
    color: #5d193c;
}

body[user-type="school-administrator"] .sidebar-categories .categories > li.active > a.category-item {
    background-color: #5d193c;
    border-left: 4px solid #5d193c;
    color: #fff;
}


.sidebar-categories .categories > li > .sub-categories {
    display: none;
    background-color: rgba(51, 174, 221, 0.2);
    padding: 24px 10px 10px 24px;
    margin: 0;
    list-style: none;
}

.sidebar-categories .categories > li.active > .sub-categories {
    display: block;
}

body[user-type="policy-maker"] .sidebar-categories .categories > li > .sub-categories {
    background-color: rgba(54, 135, 134, 0.2);
}

body[user-type="student"] .sidebar-categories .categories > li > .sub-categories {
    background-color: rgba(196, 201, 95, 0.2);
}

body[user-type="teacher-or-counselor"] .sidebar-categories .categories > li > .sub-categories {
    background-color: rgba(255, 203, 78, 0.2);
}

body[user-type="parent"] .sidebar-categories .categories > li > .sub-categories {
    background-color: rgba(246, 146, 30, 0.2);
}

body[user-type="community-member"] .sidebar-categories .categories > li > .sub-categories {
    background-color: rgba(144, 28, 31, 0.2);
}

body[user-type="school-administrator"] .sidebar-categories .categories > li > .sub-categories {
    background-color: rgba(93, 25, 60, 0.2);
}

.sidebar-categories .categories > li > .sub-categories > li {
    margin: 0 0 10px;
}

.sidebar-categories .categories > li > .sub-categories > li > a {
    font-size: 15px;
    line-height: 1.2;
    display: inline-block;
    padding: 4px 0 4px 25px;
    position: relative;
    color: #33aedd;
    transition: color .2s linear;
}

body[user-type="policy-maker"] .sidebar-categories .categories > li > .sub-categories > li > a {
    color: #368786;
}

body[user-type="student"] .sidebar-categories .categories > li > .sub-categories > li > a {
    color: #c4c95f;
}

body[user-type="teacher-or-counselor"] .sidebar-categories .categories > li > .sub-categories > li > a {
    color: #ffcb4e;
}

body[user-type="parent"] .sidebar-categories .categories > li > .sub-categories > li > a {
    color: #f6921e;
}

body[user-type="community-member"] .sidebar-categories .categories > li > .sub-categories > li > a {
    color: #901c1f;
}

body[user-type="school-administrator"] .sidebar-categories .categories > li > .sub-categories > li > a {
    color: #5d193c;
}

.sidebar-categories .categories > li > .sub-categories > li:hover > a,
.sidebar-categories .categories > li > .sub-categories > li.active > a {
    color: #222 !important;
}

.sidebar-categories .categories > li > .sub-categories > li > a > svg {
    -webkit-transform: rotate( 90deg );
    -moz-transform:    rotate( 90deg );
    -ms-transform:     rotate( 90deg );
    -o-transform:      rotate( 90deg );
    transform:         rotate( 90deg );

    position: absolute;
    top: 3px;
    left: 0;

    margin: 0 6px 0 4px;
}

.sidebar-post-item {
    position: relative;
    display: inline-block;
    width: 100%;
    margin: 0 0 35px 0;
}

.sidebar-post-item:last-child {
    margin-bottom: 0;
}

.sidebar-post-item .live {
    font-size: 12px;
    color: #000;
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: #fff;
    border-radius: 50px;
    padding: 5px 0 2px 11px;
    z-index: 500;
    opacity: 0.9;
}

.sidebar-post-item img {
    border: 1px solid #eee;
    border-radius: 5px;
    margin-bottom: 17px;

    filter: url("data:image/svg+xml;utf8,&lt;svg xmlns=\'http://www.w3.org/2000/svg\'&gt;&lt;filter id=\'grayscale\'&gt;&lt;feColorMatrix type=\'matrix\' values=\'0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0 0 0 1 0\'/&gt;&lt;/filter&gt;&lt;/svg&gt;#grayscale");
    filter: gray;
    -webkit-filter: grayscale(100%);

    transition: all .2s linear;
}

.sidebar-post-item:hover img {
    filter: url("data:image/svg+xml;utf8,&lt;svg xmlns=\'http://www.w3.org/2000/svg\'&gt;&lt;filter id=\'grayscale\'&gt;&lt;feColorMatrix type=\'matrix\' values=\'1 0 0 0 0, 0 1 0 0 0, 0 0 1 0 0, 0 0 0 1 0\'/&gt;&lt;/filter&gt;&lt;/svg&gt;#grayscale");
    -webkit-filter: grayscale(0%);
}

.sidebar-post-item h4 {
    font-size: 20px;
    font-weight: 600;
    line-height: 1.2;
    margin: 0 0 8px;
    color: #222;
}

.sidebar-post-item:hover h4 {
    color: #33aedd;
}

body[user-type="policy-maker"] .sidebar-post-item:hover h4 {
    color: #368786 !important;
}

body[user-type="student"] .sidebar-post-item:hover h4 {
    color: #c4c95f !important;
}

body[user-type="teacher-or-counselor"] .sidebar-post-item:hover h4 {
    color: #ffcb4e !important;
}

body[user-type="parent"] .sidebar-post-item:hover h4 {
    color: #f6921e !important;
}

body[user-type="community-member"] .sidebar-post-item:hover h4 {
    color: #901c1f !important;
}

body[user-type="school-administrator"] .sidebar-post-item:hover h4 {
    color: #5d193c !important;
}

.sidebar-post-item p {
    font-size: 12px;
    font-weight: 400;
    line-height: 1.5;
    margin: 0;
    color: #6c6c6c;
}

.tags {
    font-size: 0;
}

body[user-type] .tags > a {
    display: inline-block;
    padding: 7px 15px;
    margin: 0 8px 8px 0;
    border: 1px solid #222;
    border-radius: 50px;
    font-size: 12px;
    line-height: 1.2;
    color: #222;
    text-align: center;
}

body[user-type] .tags > a:hover,
body[user-type] .tags > a.active {
    border: 1px solid #33aedd;
    background-color: #33aedd;
    color: #fff;
}

body[user-type="policy-maker"] .tags > a:hover,
body[user-type="policy-maker"] .tags > a.active {
    background-color: #368786;
    border: 1px solid #368786;
}

body[user-type="student"] .tags > a:hover,
body[user-type="student"] .tags > a.active {
    background-color: #c4c95f;
    border: 1px solid #c4c95f;
}

body[user-type="teacher-or-counselor"] .tags > a:hover,
body[user-type="teacher-or-counselor"] .tags > a.active {
    background-color: #ffcb4e;
    border: 1px solid #ffcb4e;
}

body[user-type="parent"] .tags > a:hover,
body[user-type="parent"] .tags > a.active {
    background-color: #f6921e;
    border: 1px solid #f6921e;
}

body[user-type="community-member"] .tags > a:hover,
body[user-type="community-member"] .tags > a.active {
    background-color: #901c1f;
    border: 1px solid #901c1f;
}

body[user-type="school-administrator"] .tags > a:hover,
body[user-type="school-administrator"] .tags > a.active {
    background-color: #5d193c;
    border: 1px solid #5d193c;
}


.filter-news-box {
    position: relative;
    padding-left: 25%;
    margin-bottom: 50px;
}

.filter-news-box .view {
    background-color: #f4f4f4;
    padding: 14px 25px;
    border-radius: 50px;
    position: absolute;
    top: 0;
    left: 0;
    width: calc( 25% - 20px );
    text-align: center;
    font-size: 0;
    color: #222;
}

.filter-news-box .view .name {
    display: inline-block;
    margin: 0 5px 0 0;
    font-size: 16px;
    color: #222;
}

.filter-news-box .view .view-btn {
    display: inline-block;
    width: 24px;
    height: 24px;
    text-align: center;
    line-height: 28px;
    margin: 0 1px;
    font-size: 17px;
    color: #222;
}

.filter-news-box .view .view-btn.active,
.filter-news-box .view .view-btn:hover {
    color: #33aedd;
    cursor: pointer;

    transition: color .2s linear;
}

body[user-type="policy-maker"] .filter-news-box .view .view-btn.active,
body[user-type="policy-maker"] .filter-news-box .view .view-btn:hover,
body[user-type="policy-maker"] .filter-news-box .search input {
    color: #368786;
}

body[user-type="student"] .filter-news-box .view .view-btn.active,
body[user-type="student"] .filter-news-box .view .view-btn:hover,
body[user-type="student"] .filter-news-box .search input {
    color: #c4c95f;
}

body[user-type="teacher-or-counselor"] .filter-news-box .view .view-btn.active,
body[user-type="teacher-or-counselor"] .filter-news-box .view .view-btn:hover,
body[user-type="teacher-or-counselor"] .filter-news-box .search input {
    color: #ffcb4e;
}

body[user-type="parent"] .filter-news-box .view .view-btn.active,
body[user-type="parent"] .filter-news-box .view .view-btn:hover,
body[user-type="parent"] .filter-news-box .search input {
    color: #f6921e;
}

body[user-type="community-member"] .filter-news-box .view .view-btn.active,
body[user-type="community-member"] .filter-news-box .view .view-btn:hover,
body[user-type="community-member"] .filter-news-box .search input {
    color: #901c1f;
}

body[user-type="school-administrator"] .filter-news-box .view .view-btn.active,
body[user-type="school-administrator"] .filter-news-box .view .view-btn:hover,
body[user-type="school-administrator"] .filter-news-box .search input {
    color: #5d193c;
}

.filter-news-box .search {
    position: relative;
}

.filter-news-box .search input {
    border: 1px solid #ccc;
    height: 54px;
    border-radius: 50px;
    padding: 5px 50px 5px 35px;
    font-size: 16px;
    font-weight: 400;
    color: #33aedd;
    margin: 0;

    transition: all .2s linear;
}

.filter-news-box .search input:focus {
    border-color: #33aedd;
}

body[user-type="policy-maker"] .search input:focus {
    border-color: #368786;
}

body[user-type="student"] .search input:focus {
    border-color: #c4c95f;
}

body[user-type="teacher-or-counselor"] .search input:focus {
    border-color: #ffcb4e;
}

body[user-type="parent"] .search input:focus {
    border-color: #f6921e;
}

body[user-type="community-member"] .search input:focus {
    border-color: #901c1f;
}

body[user-type="school-administrator"] .search input:focus {
    border-color: #5d193c;
}

.filter-news-box .search button {
    background-color: transparent;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 16px;
    color: #8b8b8b;
    text-align: center;
    line-height: 54px;
    position: absolute;
    top: 50%;
    right: 2px;
    -webkit-transform: translate( 0, -50% );
    -moz-transform:    translate( 0, -50% );
    -ms-transform:     translate( 0, -50% );
    -o-transform:      translate( 0, -50% );
    transform:         translate( 0, -50% );
    transition: background-color .2s linear;
}

.filter-news-box .search button:hover {
    color: #fff;
    background-color: #33aedd;
    transition: background-color .2s linear;
    cursor: pointer;
}

body[user-type="policy-maker"] .filter-news-box .search button:hover {
    background-color: #368786;
}

body[user-type="student"] .filter-news-box .search button:hover {
    background-color: #c4c95f;
}

body[user-type="teacher-or-counselor"] .filter-news-box .search button:hover {
    background-color: #ffcb4e;
}

body[user-type="parent"] .filter-news-box .search button:hover {
    background-color: #f6921e;
}

body[user-type="community-member"] .filter-news-box .search button:hover {
    background-color: #901c1f;
}

body[user-type="school-administrator"] .filter-news-box .search button:hover {
    background-color: #5d193c;
}

section#masthead.taxonomy-archive .mh-caption-wrap h2 {
    color: #33aedd;
}

body[user-type="policy-maker"] section#masthead.taxonomy-archive .mh-caption-wrap h2 {
    color: #368786;
}

body[user-type="student"] section#masthead.taxonomy-archive .mh-caption-wrap h2 {
    color: #c4c95f;
}

body[user-type="teacher-or-counselor"] section#masthead.taxonomy-archive .mh-caption-wrap h2 {
    color: #ffcb4e;
}

body[user-type="parent"] section#masthead.taxonomy-archive .mh-caption-wrap h2 {
    color: #f6921e;
}

body[user-type="community-member"] section#masthead.taxonomy-archive .mh-caption-wrap h2 {
    color: #901c1f;
}

body[user-type="school-administrator"] section#masthead.taxonomy-archive .mh-caption-wrap h2 {
    color: #5d193c;
}

section#masthead.taxonomy-archive .mh-caption-wrap h2 .category-name {
    color: #fff !important;
}

























/* ---------------------------------------------------------------------------------------------------------------------
    PAGE BUILDER (PB)
--------------------------------------------------------------------------------------------------------------------- */
section[pb-section] {
    /*margin: 45px 0 0 0;*/
    padding: 50px 0 25px 0;
}

.single-article-main-content + section[pb-section]:not(.gray) {
    padding: 0 0 25px 0;
}

section[pb-section].gray {
    background-color: #f6f6f6;
}

body.archive,
body.single-news,
body.page-template-default {
    background-color: #fff;
    background-image: none;
}

.pb-section-title,
.single-article-content .main-content > h3,
.page-regular-content h3 {
    font-size: 42px;
    font-weight: 400;
    line-height: 1;
    text-align: center;
    color: #33aedd;
    margin: 0 0 27px 0;
}

.pb-section-subtitle,
.page-regular-content h4 {
    display: block;
    font-size: 20px;
    font-weight: 800;
    font-style: italic;
    line-height: 1.5;
    text-align: center;
    color: #2a2a2a;
    margin: 0 auto 35px;
    width: 100%;
    max-width: 900px;
}

section[pb-section] p,
section[pb-section] li,
.single-article-content .main-content p,
.single-article-content .main-content li,
.page-regular-content p,
.page-regular-content li {
    font-size: 20px;
    line-height: 1.5;
    color: #676767;
    font-weight: 400;
    margin: 0 0 25px 0;
}

section[pb-section] ul,
section[pb-section] ol,
.page-regular-content ul:not(.accordion),
.page-regular-content ol,
.i-want-desk .description ul,
.i-want-desk .description ol {
    padding: 5px 0 0 0;
    margin: 0 0 25px 0;
    list-style: none;
}

section[pb-section] li,
.page-regular-content li,
.i-want-desk .description li {
    line-height: 1.5;
    margin: 0 0 15px 0;
    padding: 0 0 0 24px;
    position: relative;
}

section[pb-section] ul li:before,
.page-regular-content ul:not(.accordion) li:before,
.i-want-desk .description li:before {
    display: none;
    font-family: "Font Awesome 5 Regular";
    content: "\f111";
}

section[pb-section] li svg,
.page-regular-content li svg,
.i-want-desk .description li svg {
    position: absolute;
    left: 0;
    top: 8px;
    font-size: 10px;
    color: #33aedd;
}

section[pb-section] ol,
.page-regular-content ol,
.i-want-desk .description ol {
    counter-reset: li;
}

section[pb-section] ol li::before,
.page-regular-content ol li::before,
.i-want-desk .description ol li::before {
    content: counter( li );
    color: #33aedd;
    display: inline-block;
    counter-increment: li;

    position: absolute;
    left: 0;
    top: 0;
}

section[pb-section] quote {
    display: block;
    padding: 20px 0 0 0;
    position: relative;
}

section[pb-section] quote:before {
    font-family: "Font Awesome 5 Regular";
    content: "\f10e";
    display: none;
}

section[pb-section] quote > svg {
    font-size: 147px;
    color: #33aedd;
    opacity: 0.25;

    position: absolute;
    top: -10px;
    left: 50%;

    -webkit-transform: translate( -50%, 0 );
    -moz-transform:    translate( -50%, 0 );
    -ms-transform:     translate( -50%, 0 );
    -o-transform:      translate( -50%, 0 );
    transform:         translate( -50%, 0 );
}

section[pb-section] quote p {
    font-size: 24px;
    font-weight: 400;
    font-style: italic;
    line-height: 1.4;
    text-align: center;
}

section[pb-section] quote .name {
    font-size: 16px;
    font-weight: 600;
    color: #343434;
    line-height: 1.4;
    text-align: center;
    margin: 0 0 15px 0;
    letter-spacing: 0.1px;
}

section[pb-section].graphics-and-paragraph-2-columns .gap-container,
section[pb-section].graphics-and-paragraph-2-columns-small .gap-container,
section[pb-section].graphics-and-paragraph-2-columns-full .gap-container {
    padding-left: calc( 50% + 15px );
}

section[pb-section].paragraph-and-graphics-2-columns .gap-container,
section[pb-section].paragraph-and-graphics-2-columns-small .gap-container,
section[pb-section].paragraph-and-graphics-2-columns-full .gap-container {
    padding-right: calc( 50% + 15px );
}

.gap-container {
    position: relative;
}

.gap-container .gap-image {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    background-color: transparent;
    border-radius: 5px;

    display: block;
    width: calc( 50% - 15px );
    height: 100%;

    position: absolute;
    top: 0;
    left: 0;
}

section[pb-section].paragraph-and-graphics-2-columns .gap-container .gap-image,
section[pb-section].paragraph-and-graphics-2-columns-small .gap-container .gap-image,
section[pb-section].paragraph-and-graphics-2-columns-full .gap-container .gap-image {
    left: auto;
    right: 0;
}

section[pb-section] p a,
section[pb-section] li a,
.single-article-content .main-content a,
.page-regular-content a {
    color: #33aedd;
    font-weight: 700;
}

section[pb-section] p a:hover,
section[pb-section] li a:hover,
.single-article-content .main-content a:hover,
.page-regular-content a:hover {
    text-decoration: underline;
}

body[user-type="policy-maker"] .repo-app .repo-navigation .search,
body[user-type="policy-maker"] section#masthead .cat-icon-wrap,
body[user-type="policy-maker"] .pb-section-title,
body[user-type="policy-maker"] section[pb-section] p a,
body[user-type="policy-maker"] section[pb-section] li a,
body[user-type="policy-maker"] section[pb-section] li svg,
body[user-type="policy-maker"] section[pb-section] quote > svg,
body[user-type="policy-maker"] section[pb-section] ol li::before,
body[user-type="policy-maker"] .single-article-content .main-content > h3,
body[user-type="policy-maker"] .single-article-content .main-content a,
body[user-type="policy-maker"] .page-regular-content a,
body[user-type="policy-maker"] .page-regular-content h3,
body[user-type="policy-maker"] .page-regular-content li svg,
body[user-type="policy-maker"] .page-regular-content li::before,
body[user-type="policy-maker"] .i-want-desk .description li svg {
    color: #368786;
}

body[user-type="student"] .repo-app .repo-navigation .search,
body[user-type="student"] section#masthead .cat-icon-wrap,
body[user-type="student"] .pb-section-title,
body[user-type="student"] section[pb-section] p a,
body[user-type="student"] section[pb-section] li a,
body[user-type="student"] section[pb-section] li svg,
body[user-type="student"] section[pb-section] quote > svg,
body[user-type="student"] section[pb-section] ol li::before,
body[user-type="student"] .single-article-content .main-content > h3,
body[user-type="student"] .single-article-content .main-content a,
body[user-type="student"] .page-regular-content a,
body[user-type="student"] .page-regular-content h3,
body[user-type="student"] .page-regular-content li svg,
body[user-type="student"] .page-regular-content li::before,
body[user-type="student"] .i-want-desk .description li svg {
    color: #c4c95f;
}

body[user-type="teacher-or-counselor"] .repo-app .repo-navigation .search,
body[user-type="teacher-or-counselor"] section#masthead .cat-icon-wrap,
body[user-type="teacher-or-counselor"] .pb-section-title,
body[user-type="teacher-or-counselor"] section[pb-section] p a,
body[user-type="teacher-or-counselor"] section[pb-section] li a,
body[user-type="teacher-or-counselor"] section[pb-section] li svg,
body[user-type="teacher-or-counselor"] section[pb-section] quote > svg,
body[user-type="teacher-or-counselor"] section[pb-section] ol li::before,
body[user-type="teacher-or-counselor"] .single-article-content .main-content > h3,
body[user-type="teacher-or-counselor"] .single-article-content .main-content a,
body[user-type="teacher-or-counselor"] .page-regular-content a,
body[user-type="teacher-or-counselor"] .page-regular-content h3,
body[user-type="teacher-or-counselor"] .page-regular-content li svg,
body[user-type="teacher-or-counselor"] .page-regular-content li::before,
body[user-type="teacher-or-counselor"] .i-want-desk .description li svg {
    color: #ffcb4e;
}

body[user-type="parent"] .repo-app .repo-navigation .search,
body[user-type="parent"] section#masthead .cat-icon-wrap,
body[user-type="parent"] .pb-section-title,
body[user-type="parent"] section[pb-section] p a,
body[user-type="parent"] section[pb-section] li a,
body[user-type="parent"] section[pb-section] li svg,
body[user-type="parent"] section[pb-section] quote > svg,
body[user-type="parent"] section[pb-section] ol li::before,
body[user-type="parent"] .single-article-content .main-content > h3,
body[user-type="parent"] .single-article-content .main-content a,
body[user-type="parent"] .page-regular-content a,
body[user-type="parent"] .page-regular-content h3,
body[user-type="parent"] .page-regular-content li svg,
body[user-type="parent"] .page-regular-content li::before,
body[user-type="parent"] .i-want-desk .description li svg {
    color: #f6921e;
}

body[user-type="community-member"] .repo-app .repo-navigation .search,
body[user-type="community-member"] section#masthead .cat-icon-wrap,
body[user-type="community-member"] .pb-section-title,
body[user-type="community-member"] section[pb-section] p a,
body[user-type="community-member"] section[pb-section] li a,
body[user-type="community-member"] section[pb-section] li svg,
body[user-type="community-member"] section[pb-section] quote > svg,
body[user-type="community-member"] section[pb-section] ol li::before,
body[user-type="community-member"] .single-article-content .main-content > h3,
body[user-type="community-member"] .single-article-content .main-content a,
body[user-type="community-member"] .page-regular-content a,
body[user-type="community-member"] .page-regular-content h3,
body[user-type="community-member"] .page-regular-content li svg,
body[user-type="community-member"] .page-regular-content li::before,
body[user-type="community-member"] .i-want-desk .description li svg {
    color: #901c1f;
}

body[user-type="school-administrator"] .repo-app .repo-navigation .search,
body[user-type="school-administrator"] section#masthead .cat-icon-wrap,
body[user-type="school-administrator"] .pb-section-title,
body[user-type="school-administrator"] section[pb-section] p a,
body[user-type="school-administrator"] section[pb-section] li a,
body[user-type="school-administrator"] section[pb-section] li svg,
body[user-type="school-administrator"] section[pb-section] quote > svg,
body[user-type="school-administrator"] section[pb-section] ol li::before,
body[user-type="school-administrator"] .single-article-content .main-content > h3,
body[user-type="school-administrator"] .single-article-content .main-content a,
body[user-type="school-administrator"] .page-regular-content a,
body[user-type="school-administrator"] .page-regular-content h3,
body[user-type="school-administrator"] .page-regular-content li svg,
body[user-type="school-administrator"] .page-regular-content li::before,
body[user-type="school-administrator"] .i-want-desk .description li svg {
    color: #5d193c;
}

.pb-graphics {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    display: block;
    width: 100%;
    padding-bottom: 65%;

    border-radius: 5px;
    margin-bottom: 35px;
}

.pb-graphics.pb-graphics-30.pb-graphics-30-70,
.pb-graphics.pb-graphics-30.pb-graphics-70-30 {
    padding-bottom: 100%;
}

.pb-graphics.pb-graphics-70.pb-graphics-30-70,
.pb-graphics.pb-graphics-70.pb-graphics-70-30 {
    padding-bottom: 47.83%;
}

.graphics-1-column-small .pb-graphics {
    padding-bottom: 60%;
}

.graphics-1-column img {
    display: block;
    margin: 0 auto 30px;
    max-width: 100%;
}

.graphics-2-columns-30-70-full .pb-graphics.pb-graphics-70.pb-graphics-30-70,
.graphics-2-columns-30-70-full .pb-graphics.pb-graphics-70.pb-graphics-70-30,
.graphics-2-columns-70-30-full .pb-graphics.pb-graphics-70.pb-graphics-30-70,
.graphics-2-columns-70-30-full .pb-graphics.pb-graphics-70.pb-graphics-70-30 {
    padding-bottom: 48.55%;
}


section[pb-section]:not( .gray ) + section[pb-section]:not( .gray ),
section[pb-section].gray + section[pb-section].gray {
    padding-top: 0;
    margin-top: -20px;
}

section[pb-section].gray + section.article-contact {
    padding-top: 40px;
}

section[pb-section].video .single-article-content,
section[pb-section].gallery .single-article-content {
    margin: 0;
}

.repo-app {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 12px 60px rgba(0, 0, 0, 0.25);
    padding: 35px 25px;
    margin: 5px 0 40px;
    overflow: hidden;

    position: relative;
}

.repo-app.loading:before {
    background-color: rgba(255, 255, 255, 0.8);
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;

    z-index: 500;
}

.repo-app:after {
    font-family: "Font Awesome 5 Light";
    content: "\f021";
    display: none;
}

.repo-app > svg {
    display: none;
}

.repo-app.loading > svg {
    display: inline-block;
    font-size: 70px;
    color: rgba(51, 174, 221, 0.5);
    position: absolute;
    top: calc( 50% - 38px );
    left: calc( 50% - 38px );

    animation: fa-spin 2s infinite linear;
    z-index: 600;
}

body[user-type="policy-maker"] .repo-app > svg {
    color: rgba(54, 135, 134, 0.5);
}

body[user-type="student"] .repo-app > svg {
    color: rgba(196, 201, 95, 0.5);
}

body[user-type="teacher-or-counselor"] .repo-app > svg {
    color: rgba(255, 203, 78, 0.5);
}

body[user-type="parent"] .repo-app > svg {
    color: rgba(246, 146, 30, 0.5);
}

body[user-type="community-member"] .repo-app > svg {
    color: rgba(144, 28, 31, 0.5);
}

body[user-type="school-administrator"] .repo-app > svg {
    color: rgba(93, 25, 60, 0.5);
}

.repo-app .repo-navigation {
    padding: 0 100px 0 400px;
    position: relative;
}

.repo-app.spec-term-mode .repo-navigation {
    padding: 0 100px;
}

.repo-app .repo-navigation:after {
    font-family: "Font Awesome 5 Regular";
    content: "\f002";
    display: none;
}

.repo-app .repo-navigation svg {
    position: absolute;
    top: 13px;
    right: 117px;
    font-size: 18px;
    color: #e7e7e7;
}

.repo-app .repo-navigation select,
.repo-app .repo-navigation .select2 {
    background-color: #f9f9f9;
    position: absolute;
    top: 0;
    left: 100px;
    width: 280px !important;
    height: 46px;
    border-radius: 50px;
    border: 1px solid #e6e6e6;
    padding: 7px 25px;
}

.repo-app.spec-term-mode .repo-navigation select,
.repo-app.spec-term-mode .repo-navigation .select2 {
    display: none;
}

.repo-app .repo-navigation .select2 .select2-selection--single {
    background-color: transparent;
    text-align: center;
}

body .repo-app .repo-navigation .select2 .select2-selection--single .select2-selection__arrow {
    height: 26px;
    position: absolute;
    top: 10px;
    right: 12px;
    width: 20px;
}

.repo-app-dropdown .select2-results > .select2-results__options {
    padding: 6px 6px 2px 6px;
}

body .select2-container--open .select2-dropdown--below.repo-app-dropdown {
    border: 1px solid #e6e6e6 !important;
}

body .repo-app-dropdown .select2-results__option {
    border-radius: 50px;
    margin-bottom: 4px;
}

body .select2-container--open .select2-dropdown--below.repo-app-dropdown {
    border-radius: 26px !important;
    box-shadow: 8px 14px 25px rgba(0, 0, 0, 0.15);
}

.repo-app .repo-navigation .select2 .select2-selection--single .select2-selection__rendered {
    color: #757575;
    font-size: 16px;
    line-height: 28px;
}

.repo-app .repo-navigation .search {
    background-color: #f9f9f9;
    border: 1px solid #e6e6e6;
    height: 46px;
    padding: 0 50px 0 25px;
    font-size: 16px;
    font-style: italic;
    color: #33aedd;
    border-radius: 50px;
    margin: 0;
}

.repo-app .repo-navigation ::-webkit-input-placeholder {
    color: #757575;
}

.repo-app .repo-navigation ::-moz-placeholder {
    color: #757575;
}

.repo-app .repo-navigation ::-o-placeholder {
    color: #757575;
}

.repo-app .repo-navigation :-ms-input-placeholder {
    color: #757575;
}

.repo-app .repo-navigation input:-moz-placeholder {
    color: #757575;
}

body[user-type="default"] .repo-app .repo-navigation .search:focus,
body[user-type="default"] .repo-item:hover .address {
    border-color: #33aedd;
}

body[user-type="policy-maker"] .repo-app .repo-navigation .search:focus,
body[user-type="policy-maker"] .repo-item:hover .address {
    border-color: #368786;
}

body[user-type="student"] .repo-app .repo-navigation .search:focus,
body[user-type="student"] .repo-item:hover .address {
    border-color: #c4c95f;
}

body[user-type="teacher-or-counselor"] .repo-app .repo-navigation .search:focus,
body[user-type="teacher-or-counselor"] .repo-item:hover .address {
    border-color: #ffcb4e;
}

body[user-type="parent"] .repo-app .repo-navigation .search:focus,
body[user-type="parent"] .repo-item:hover .address {
    border-color: #f6921e;
}

body[user-type="community-member"] .repo-app .repo-navigation .search:focus,
body[user-type="community-member"] .repo-item:hover .address {
    border-color: #901c1f;
}

body[user-type="school-administrator"] .repo-app .repo-navigation .search:focus,
body[user-type="school-administrator"] .repo-item:hover .address {
    border-color: #5d193c;
}

.repo-app .repo-content {
    margin: 30px 0 0 0;
    height: 445px;
}

.repo-app.board {
    padding: 35px 35px;
}

.repo-app.board .repo-content {
    height: auto !important;
    max-height: none !important;
    margin: 0;
}

.repo-app .repo-content .mCSB_container > :last-child {
    margin-bottom: 0;
}

.repo-item {
    background-color: #fafafa;
    border: 1px solid #fafafa;
    border-radius: 8px;

    padding: 20px 190px 20px 105px;
    margin: 0 0 15px 0;
    position: relative;

    transition: all .2s linear;
}

.repo-item h4,
section[pb-section] .repo-item h4 {
    font-size: 20px;
    line-height: 1.2;
    color: #000;
    margin: 0 0 8px 0;

    transition: all .2s linear;
}

.repo-item p,
section[pb-section] .repo-item p {
    font-size: 17px;
    line-height: 1.35;
    color: #757575;
    margin: 0 0 10px 0;

    transition: all .2s linear;
}

.repo-item .address {
    padding: 10px 0 0;
    border-top: 1px dotted #c5c5c5;
    transition: all .2s linear;
}

body[user-type] .repo-item .btn {
    font-size: 14px;
    padding: 10px 30px;
    min-width: 132px;

    position: absolute;
    top: 50%;
    right: 30px;

    -webkit-transform: translate( 0, -50% );
    -moz-transform:    translate( 0, -50% );
    -ms-transform:     translate( 0, -50% );
    -o-transform:      translate( 0, -50% );
    transform:         translate( 0, -50% );
}

.repo-item .repo-item-info :last-child {
    margin-bottom: 0;
}

.repo-item:before {
    font-family: "Font Awesome 5 Solid";
    content: "\f1b3";
}

section[pb-section].directory .repo-item:before {
    content: "\f6cf";
}

.repo-item > svg {
    font-size: 50px;
    color: #c4c4c4;

    position: absolute;
    top: 50%;
    left: 30px;

    -webkit-transform: translate( 0, -50% );
    -moz-transform:    translate( 0, -50% );
    -ms-transform:     translate( 0, -50% );
    -o-transform:      translate( 0, -50% );
    transform:         translate( 0, -50% );

    transition: all .2s linear;
}

.repo-item:hover {
    background-color: rgba(51, 174, 221, 0.1);
    border: 1px solid #33aedd;
}

section[pb-section] .repo-item:hover > svg {
    color: #33aedd;
}

body[user-type="policy-maker"] .repo-item:hover > svg {
    color: #368786;
}

body[user-type="student"] .repo-item:hover > svg {
    color: #c4c95f;
}

body[user-type="teacher-or-counselor"] .repo-item:hover > svg {
    color: #ffcb4e;
}

body[user-type="parent"] .repo-item:hover > svg {
    color: #f6921e;
}

body[user-type="community-member"] .repo-item:hover > svg {
    color: #901c1f;
}

body[user-type="school-administrator"] .repo-item:hover > svg {
    color: #5d193c;
}

section[pb-section] .repo-item:hover h4,
section[pb-section] .repo-item:hover p,
body[user-type="policy-maker"] .repo-item:hover h4,
body[user-type="policy-maker"] .repo-item:hover p,
body[user-type="student"] .repo-item:hover h4,
body[user-type="student"] .repo-item:hover p,
body[user-type="parent"] .repo-item:hover h4,
body[user-type="parent"] .repo-item:hover p,
body[user-type="community-member"] .repo-item:hover h4,
body[user-type="community-member"] .repo-item:hover p,
body[user-type="school-administrator"] .repo-item:hover h4,
body[user-type="school-administrator"] .repo-item:hover p,
body[user-type="teacher-or-counselor"] .repo-item:hover h4,
body[user-type="teacher-or-counselor"] .repo-item:hover p {
    color: #000;
}

body[user-type="policy-maker"] .repo-item:hover {
    background-color: rgba(54, 135, 134, 0.1);
    border: 1px solid #368786;
}

body[user-type="student"] .repo-item:hover {
    background-color: rgba(196, 201, 95, 0.1);
    border: 1px solid #c4c95f;
}

body[user-type="teacher-or-counselor"] .repo-item:hover {
    background-color: rgba(255, 203, 78, 0.1);
    border: 1px solid #ffcb4e;
}

body[user-type="parent"] .repo-item:hover {
    background-color: rgba(246, 146, 30, 0.1);
    border: 1px solid #f6921e;
}

body[user-type="community-member"] .repo-item:hover {
    background-color: rgba(144, 28, 31, 0.1);
    border: 1px solid #901c1f;
}

body[user-type="school-administrator"] .repo-item:hover {
    background-color: rgba(93, 25, 60, 0.1);
    border: 1px solid #5d193c;
}

.no-results {
    height: 445px;
    width: 98%;
    text-align: center;
    border: 1px solid #e7e7e7;
    background-color: #f9f9f9;
    border-radius: 5px;
    position: relative;
    margin: 0 auto;
}

section#archive-news .no-results {
    width: 100%;
}

.no-results-content {
    width: 100%;
    position: absolute;
    top: 50%;
    left: 0;

    -webkit-transform: translate( 0, -50% );
    -moz-transform:    translate( 0, -50% );
    -ms-transform:     translate( 0, -50% );
    -o-transform:      translate( 0, -50% );
    transform:         translate( 0, -50% );
}

.no-results span {
    display: block;
    width: 100%;
    font-size: 20px;
    font-weight: 800;
    color: #b9b9b9;
    letter-spacing: .5px;
}

.no-results svg {
    font-size: 70px;
    color: #cfcfcf;
    margin-bottom: 9px;
}

.featured-articles-container .no-results {
    height: auto;
    display: block;
    width: 100%;
    max-width: 650px;
    padding: 65px 15px;
}

body[user-type="default"] .repo-app-dropdown .select2-results__option:hover,
body[user-type="default"] .repo-app-dropdown .select2-results__option[aria-selected=true] {
    background-color: #33aedd;
    color: #fff;
}

body[user-type="policy-maker"] .repo-app-dropdown .select2-results__option:hover,
body[user-type="policy-maker"] .repo-app-dropdown .select2-results__option[aria-selected=true] {
    background-color: #368786;
    color: #fff;
}

body[user-type="student"] .repo-app-dropdown .select2-results__option:hover,
body[user-type="student"] .repo-app-dropdown .select2-results__option[aria-selected=true] {
    background-color: #c4c95f;
    color: #fff;
}

body[user-type="teacher-or-counselor"] .repo-app-dropdown .select2-results__option:hover,
body[user-type="teacher-or-counselor"] .repo-app-dropdown .select2-results__option[aria-selected=true] {
    background-color: #ffcb4e;
    color: #fff;
}

body[user-type="parent"] .repo-app-dropdown .select2-results__option:hover,
body[user-type="parent"] .repo-app-dropdown .select2-results__option[aria-selected=true] {
    background-color: #f6921e;
    color: #fff;
}

body[user-type="community-member"] .repo-app-dropdown .select2-results__option:hover,
body[user-type="community-member"] .repo-app-dropdown .select2-results__option[aria-selected=true] {
    background-color: #901c1f;
    color: #fff;
}

body[user-type="school-administrator"] .repo-app-dropdown .select2-results__option:hover,
body[user-type="school-administrator"] .repo-app-dropdown .select2-results__option[aria-selected=true] {
    background-color: #5d193c;
    color: #fff;
}

section[pb-section].resources .description,
section[pb-section].directory .description {
    -webkit-columns: 300px 2;
    -moz-columns: 300px 2;
    columns: 300px 2;

    -webkit-column-gap: 30px;
    -moz-column-gap: 30px;
    column-gap: 30px;

    margin-top: -5px;
    margin-bottom: 5px;
}

section[pb-section].featured-articles .pb-section-subtitle {
    margin: 0 auto 25px;
}

section[pb-section].featured-articles .featured-articles-wrap {
    padding: 10px 0 0;
}

section[pb-section].featured-articles .article-item {
    width: 100%;
    margin: 0 0 35px 0;
}

section[pb-section].featured-articles .featured-articles-wrap[count="4"] .article-item .article-item-content {
    padding: 25px 30px 80px;
}

section[pb-section][size="regular"].featured-articles .featured-articles-wrap[count="4"] .article-item .article-item-content {
    padding: 25px 25px 80px;
}

section[pb-section][size="small"].featured-articles .featured-articles-wrap[count="4"] .article-item .article-item-content {
    padding: 18px 15px 80px;
}

section[pb-section][size="small"].featured-articles .featured-articles-wrap[count="3"] .article-item .article-item-content {
    padding: 25px 25px 80px;
}


section[pb-section][size="full"].featured-articles .featured-articles-wrap[count="4"] .article-item .article-thumbnail {
    height: 265px;
}

section[pb-section][size="regular"].featured-articles .featured-articles-wrap[count="4"] .article-item .article-thumbnail {
    height: 220px;
}

section[pb-section][size="small"].featured-articles .featured-articles-wrap[count="4"] .article-item .article-thumbnail {
    height: 160px;
}


section[pb-section].featured-articles .featured-articles-wrap[count="3"] .article-item .article-thumbnail {
    height: 385px;
}

section[pb-section][size="regular"].featured-articles .featured-articles-wrap[count="3"] .article-item .article-thumbnail {
    height: 260px;
}

section[pb-section][size="small"].featured-articles .featured-articles-wrap[count="3"] .article-item .article-thumbnail {
    height: 205px;
}


section[pb-section].featured-articles .featured-articles-wrap[count="2"] .article-item .article-thumbnail {
    height: 460px;
}

section[pb-section][size="regular"].featured-articles .featured-articles-wrap[count="2"] .article-item .article-thumbnail {
    height: 350px;
}

section[pb-section][size="small"].featured-articles .featured-articles-wrap[count="2"] .article-item .article-thumbnail {
    height: 320px;
}


section[pb-section].featured-articles .featured-articles-wrap[count="1"] .article-item .article-thumbnail {
    height: 768px;
}

section[pb-section][size="regular"].featured-articles .featured-articles-wrap[count="1"] .article-item .article-thumbnail {
    height: 635px;
}
section[pb-section][size="small"].featured-articles .featured-articles-wrap[count="1"] .article-item .article-thumbnail {
    height: 650px;
}

section[pb-section][size="full"].featured-articles .featured-articles-wrap[count="1"] .article-item,
section[pb-section][size="full"].featured-articles .featured-articles-wrap[count="1"] .article-item .article-thumbnail {
    border-radius: 0;
}

section[pb-section][size="full"].featured-articles .featured-articles-wrap[count="1"] > .grid-x > .cell {
    padding-right: 0;
    padding-left: 0;
}

section[pb-section].featured-articles .featured-articles-wrap .article-item .post-date {
    font-size: 12px;
    color: #666666;
}

section[pb-section].featured-articles .featured-articles-wrap .article-item .post-date:before,
section[pb-section].featured-articles .featured-articles-wrap .article-item .post-date:after {
    background-color: #a3a3a3;
}

section[pb-section].featured-articles .featured-articles-wrap .article-item:hover .post-date {
    color: #fff;
}

section[pb-section].featured-articles .featured-articles-wrap .article-item:hover .post-date:before,
section[pb-section].featured-articles .featured-articles-wrap .article-item:hover .post-date:after {
    background-color: #fff;
}

section[pb-section].featured-articles .bottom-button-wrap {
    text-align: center;
    padding: 20px 0 25px;
    width: 100%;
}

section[pb-section].audience-selector .user-type-container {
    margin-bottom: 10px;
}

section[pb-section].audience-selector .pb-section-subtitle,
section[pb-section].audience-selector .page-regular-content {
    margin: 0 auto 25px;
}



/* ---------------------------------------------------------------------------------------------------------------------
    CPT: NEWS ( Archive )
--------------------------------------------------------------------------------------------------------------------- */
body.post-type-archive section#masthead,
body section#masthead.taxonomy-archive,
body.forum section#masthead,
body.buddypress section#masthead,
body.bbpress section#masthead {
    margin-bottom: 65px;
}

body.post-type-archive-news section#masthead .cat-icon-wrap {
    padding: 0 0 7px 0;
}

section#archive-news {
    margin-bottom: 65px;
}

section#archive-news .archive-news-container {
    font-size: 0;
    letter-spacing: 0;
}

section#archive-news .article-item {
    display: inline-block;
    width: 48.5%;
    margin: 0 3% 35px 0;
}

section#archive-news .article-item .article-item-content {
    padding: 25px 30px 90px;
}

section#archive-news .archive-news-items.list .article-item.no-single-page .article-item-content {
    padding-bottom: 30px;
}

.archive-news-items:not( .list ) .article-item.no-single-page .article-item-content:after {
    display: block;
    content: "";
    background-color: #eee;
    width: 20px;
    height: 20px;
    border-radius: 50px;
    position: absolute;
    left: calc( 50% - 10px );
    bottom: 38px;
}

.archive-news-items:not( .list ) .article-item.no-single-page:hover .article-item-content:after {
    background-color: #fff;
}

section#archive-news .archive-news-container > .article-item:nth-child( 2n ) {
    margin-right: 0;
}

section#archive-news .article-item .article-thumbnail {
    height: 285px;
}

section#archive-news .archive-news-container.list .article-item {
    width: 100%;
    margin-right: 0;
}

section#archive-news .archive-news-container.list .article-item .article-thumbnail {
    height: 550px;
}











/* ---------------------------------------------------------------------------------------------------------------------
    CPT: WEBINARS
--------------------------------------------------------------------------------------------------------------------- */
.filter-news-box .filter-categories {
    position: absolute;
    top: 0;
    left: 0;
    width: calc( 25% - 20px );
}

.filter-news-box .filter-categories select {
    background-position: right -7px center;
    background-color: #f8f8f8;
    padding: 5px 25px;
    height: 54px;
    border-radius: 50px;
    font-size: 16px;
    color: #a7a7a7;
    cursor: pointer;
}

.webinar-item {
    background-color: #fff;
    position: relative;
    padding: 0 0 0 400px;
    min-height: 280px;
    margin: 0 0 40px 0;

    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.12);
    transition: background-color .2s linear;
}

.webinar-item .webinar-thumbnail {
    background-color: #eee;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;

    position: absolute;
    top: 0;
    left: 0;
    width: 400px;
    height: 100%;
}

.webinar-item .webinar-item-content {
    border-top: 4px solid #33aedd;

    padding: 30px 30px 85px;
    text-align: center;
    position: relative;
}

.webinar-item .webinar-item-content .post-date {
    margin: 0 0 15px;
}

.webinar-item h4 {
    font-size: 24px;
    font-weight: 600;
    line-height: 1.1;
    margin-bottom: 10px;
}

.webinar-item h4:hover {
    text-decoration: underline;
}

.webinar-item .webinar-description-wrap {
    font-size: 20px;
    color: #666666;
}

.webinar-item .webinar-description-wrap p {
    line-height: 1.4;
    color: #666666;
    font-size: 20px;
}

.live-webinar-wrap {
    margin-bottom: 35px;
}

body[user-type] h3.page-subtitle {
    font-size: 38px;
    color: #33aedd;
    line-height: 1.2;
    margin: 0 0 32px;
    text-align: center;
}

body[user-type] h3.page-subtitle#webinar-archive {
    padding-top: 20px;
}

body[user-type="policy-maker"] h3.page-subtitle {
    color: #368786;
}

body[user-type="student"] h3.page-subtitle {
    color: #c4c95f;
}

body[user-type="teacher-or-counselor"] h3.page-subtitle {
    color: #ffcb4e;
}

body[user-type="parent"] h3.page-subtitle {
    color: #f6921e;
}

body[user-type="community-member"] h3.page-subtitle {
    color: #901c1f;
}

body[user-type="school-administrator"] h3.page-subtitle {
    color: #5d193c;
}

body[user-type] .live-webinar-wrap > p {
    font-size: 20px;
    line-height: 1.5;
    margin: 0 0 20px;
}

body[user-type] .live-webinar-wrap h3.page-subtitle {
    margin-bottom: 15px;
}

.live-webinar-wrap .webinar-item {
    padding: 0 0 0 0;
    margin: 5px 0 40px 0;
}

.live-webinar-wrap .webinar-item .webinar-thumbnail {
    position: relative;
    width: 100%;
    height: 650px;
    display: block;
}

.live-webinar-wrap .webinar-item .buttons-wrap {
    position: absolute;
    left: 0;
    bottom: 30px;

    width: 100%;
    text-align: center;
}

.live-webinar-wrap .webinar-item .buttons-wrap .read-more {
    display: inline-block;
    width: 235px;
    margin: 0 3px;
    position: static;

    -webkit-transform: none;
    -moz-transform:    none;
    -ms-transform:     none;
    -o-transform:      none;
    transform:         none;
}


.live-webinar-wrap .webinar-thumbnail .btn,
.single-article-content .article-thumbnail.post-video.post-webinar .btn {
    border-color: #fff;
    background-color: #fff;
    color: #000;
    position: absolute;
    top: 50%;
    left: 50%;
    cursor: pointer;
    opacity: 0.9;

    padding: 17px 35px;

    -webkit-transform: translate( -50%, -50% );
    -moz-transform:    translate( -50%, -50% );
    -ms-transform:     translate( -50%, -50% );
    -o-transform:      translate( -50%, -50% );
    transform:         translate( -50%, -50% );
}

.live-webinar-wrap .webinar-thumbnail .btn svg,
.single-article-content .article-thumbnail.post-video.post-webinar .btn svg {
    position: relative;
    color: #000;
    top: 2px;
    left: 2px;
    font-size: 18px;

    -webkit-transform: none;
    -moz-transform:    none;
    -ms-transform:     none;
    -o-transform:      none;
    transform:         none;
}

.live-webinar-wrap .webinar-thumbnail:hover .btn svg,
.single-article-content .article-thumbnail.post-video.post-webinar:hover .btn svg {
    color: #000;
}

.live-webinar-wrap .webinar-thumbnail:hover:before,
.single-article-content .article-thumbnail.post-video.post-webinar:hover:before {
    background-color: rgba(18, 18, 18, 0.5);
    transition: background-color .2s linear;
}

.live-signal {
    position: relative;
    width: 9px;
    height: 9px;
    display: inline-block;
    border-radius: 50%;
    margin: 0 10px 0 0;
    background-color: #cd192e;
}

.live-signal.yellow {
    background-color: #facc38;
    margin-left: 2px;
}

.live-signal:not(.yellow):after {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: #cd192e;
    -webkit-animation: keyframes-live_on 7s infinite cubic-bezier(.19,1,.22,1);
    animation: keyframes-live_on 7s infinite cubic-bezier(.19,1,.22,1);
}

.upcoming-webinar {
    display: inline-block;
    background-color: rgba(0, 0, 0, 0.77);
    border-radius: 3px;
    text-align: center;
    padding: 60px 40px;

    position: absolute;
    top: 46%;
    left: 50%;

    -webkit-transform: translate( -50%, -50% );
    -moz-transform:    translate( -50%, -50% );
    -ms-transform:     translate( -50%, -50% );
    -o-transform:      translate( -50%, -50% );
    transform:         translate( -50%, -50% );

    z-index: 500;
}

.upcoming-webinar > * {
    color: #fff;
    text-decoration: none !important;
}

.upcoming-webinar > h3 {
    font-size: 40px;
    color: #fff;
    text-transform: uppercase;
    line-height: 1.2;
    font-weight: 700;
    margin-bottom: 25px;
    padding-bottom: 25px;
    position: relative;
}

.upcoming-webinar > h3:before {
    background-color: #fff;
    content: "";
    display: block;
    width: 60%;
    height: 2px;
    position: absolute;
    left: 50%;
    bottom: 2px;

    -webkit-transform: translate( -50%, 0 );
    -moz-transform:    translate( -50%, 0 );
    -ms-transform:     translate( -50%, 0 );
    -o-transform:      translate( -50%, 0 );
    transform:         translate( -50%, 0 );
}

.upcoming-webinar > h4 {
    font-size: 26px;
    color: #facc38;
}

.upcoming-webinar > h5 {
    font-size: 17px;
    color: #fff;
}

.upcoming-webinar > :last-child {
    margin-bottom: 0;
}






@-webkit-keyframes keyframes-live_on {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: .7
    }

    15%,to {
        -webkit-transform: scale(3);
        transform: scale(3);
        opacity: 0
    }
}

@keyframes keyframes-live_on {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: .7
    }

    15%,to {
        -webkit-transform: scale(3);
        transform: scale(3);
        opacity: 0
    }
}





/* ---------------------------------------------------------------------------------------------------------------------
    TMPL: FAQ
--------------------------------------------------------------------------------------------------------------------- */
.page-regular-content {
    padding: 65px 0 0;
    margin-bottom: 50px;
}

.page-regular-content.archive-webinars-top-content {
    padding-top: 0;
}

.accordion {
    background: transparent;
}

.page-regular-content .accordion {
    margin: 8px 0 0 0;
}

.page-regular-content .accordion > li {
    padding: 0;
    border: 1px solid #e8e8e8;
    border-radius: 11px;
    overflow: hidden;
    margin: 0;

    opacity: 0;
    height: 0;

    transition: all .2s linear;
}

.page-regular-content .accordion > li.visible {
    height: auto;
    margin: 0 0 20px 0;

    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;

    -webkit-animation-name: fadeInLeft;
    animation-name: fadeInLeft;
}

.page-regular-content .accordion > li:hover,
.page-regular-content .accordion > li.is-active {
    border: 1px solid #33aedd;
}

.page-regular-content .accordion > li.is-active {
    box-shadow: 12px 16px 15px rgba(0, 0, 0, 0.12);
    margin: 0 0 30px 0;
}

body[user-type="policy-maker"] .page-regular-content .accordion > li:hover,
body[user-type="policy-maker"] .page-regular-content .accordion > li.is-active {
    border: 1px solid #368786;
}

body[user-type="student"] .page-regular-content .accordion > li:hover,
body[user-type="student"] .page-regular-content .accordion > li.is-active {
    border: 1px solid #c4c95f;
}

body[user-type="teacher-or-counselor"] .page-regular-content .accordion > li:hover,
body[user-type="teacher-or-counselor"] .page-regular-content .accordion > li.is-active {
    border: 1px solid #ffcb4e;
}

body[user-type="parent"] .page-regular-content .accordion > li:hover,
body[user-type="parent"] .page-regular-content .accordion > li.is-active {
    border: 1px solid #f6921e;
}

body[user-type="community-member"] .page-regular-content .accordion > li:hover,
body[user-type="community-member"] .page-regular-content .accordion > li.is-active {
    border: 1px solid #901c1f;
}

body[user-type="school-administrator"] .page-regular-content .accordion > li:hover,
body[user-type="school-administrator"] .page-regular-content .accordion > li.is-active {
    border: 1px solid #5d193c;
}

.page-regular-content .accordion > li > .accordion-title {
    background-color: #f2f2f2;
    border: none;
    font-size: 18px;
    color: #6c6c6c;
    padding: 24px 30px 22px 73px;
    transition: all .2s linear;
}

.page-regular-content .accordion > li > .accordion-title svg {
    color: #676767;
    font-size: 26px;
    position: absolute;
    top: 20px;
    left: 25px;
}

.page-regular-content .accordion > li:hover > .accordion-title svg,
.page-regular-content .accordion > li.is-active > .accordion-title svg {
    color: #fff;
    transition: all .2s linear;
}

.page-regular-content .accordion > li:hover > .accordion-title,
.page-regular-content .accordion > li.is-active > .accordion-title {
    text-decoration: none;
    background-color: #33aedd;
    color: #fff;
}

body[user-type="policy-maker"] .page-regular-content .accordion > li:hover > .accordion-title,
body[user-type="policy-maker"] .page-regular-content .accordion > li.is-active > .accordion-title {
    background-color: #368786;
}

body[user-type="student"] .page-regular-content .accordion > li:hover > .accordion-title,
body[user-type="student"] .page-regular-content .accordion > li.is-active > .accordion-title {
    background-color: #c4c95f;
}

body[user-type="teacher-or-counselor"] .page-regular-content .accordion > li:hover > .accordion-title,
body[user-type="teacher-or-counselor"] .page-regular-content .accordion > li.is-active > .accordion-title {
    background-color: #ffcb4e;
}

body[user-type="parent"] .page-regular-content .accordion > li:hover > .accordion-title,
body[user-type="parent"] .page-regular-content .accordion > li.is-active > .accordion-title {
    background-color: #f6921e;
}

body[user-type="community-member"] .page-regular-content .accordion > li:hover > .accordion-title,
body[user-type="community-member"] .page-regular-content .accordion > li.is-active > .accordion-title {
    background-color: #901c1f;
}

body[user-type="school-administrator"] .page-regular-content .accordion > li:hover > .accordion-title,
body[user-type="school-administrator"] .page-regular-content .accordion > li.is-active > .accordion-title {
    background-color: #5d193c;
}

.accordion-title::before {
    right: 25px;
}

.accordion-content {
    padding: 40px 35px 15px;
}

section#faq-form {
    background-image: url(../images/faq-form-bg.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-color: #222;
    padding: 60px 0 55px;
}

section#faq-form h3,
section#faq-form h4,
section#faq-form p {
    color: #fff !important;
}

section#faq-form .page-regular-content {
    padding: 0;
    margin: 0 0 35px 0;
}

body section#faq-form .gform_wrapper {
    margin: 10px 0 0 0;
}

body[user-type] .gform_wrapper input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]):not([type=file]),
body[user-type] .gform_wrapper textarea {
    background-color: transparent;
    border-color: #555;
    color: #fff;
}

body[user-type] .gform_wrapper textarea {
    padding: 18px 24px;
}

body[user-type] .gform_wrapper input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]):not([type=file]):focus,
body[user-type] .gform_wrapper textarea:focus {
    border-color: #33aedd !important;
}

body[user-type="policy-maker"] .gform_wrapper input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]):not([type=file]):focus,
body[user-type="policy-maker"] .gform_wrapper textarea:focus {
    border-color: #368786 !important;
}

body[user-type="student"] .gform_wrapper input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]):not([type=file]):focus,
body[user-type="student"] .gform_wrapper textarea:focus {
    border-color: #c4c95f !important;
}

body[user-type="teacher-or-counselor"] .gform_wrapper input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]):not([type=file]):focus,
body[user-type="teacher-or-counselor"] .gform_wrapper textarea:focus {
    border-color: #ffcb4e !important;
}

body[user-type="parent"] .gform_wrapper input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]):not([type=file]):focus,
body[user-type="parent"] .gform_wrapper textarea:focus {
    border-color: #f6921e !important;
}

body[user-type="community-member"] .gform_wrapper input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]):not([type=file]):focus,
body[user-type="community-member"] .gform_wrapper textarea:focus {
    border-color: #901c1f !important;
}

body[user-type="school-administrator"] .gform_wrapper input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]):not([type=file]):focus,
body[user-type="school-administrator"] .gform_wrapper textarea:focus {
    border-color: #5d193c !important;
}

body[user-type] .gform_wrapper .validation_message {
    color: #ff4949;
    font-weight: 400;
    font-size: 10px;
    letter-spacing: 0.5px;
}

body[user-type] .gform_wrapper .gform_ajax_spinner {
    left: calc(50% + 50px);
}

body[user-type] .gform_wrapper textarea {
    height: 125px;
}





/* ---------------------------------------------------------------------------------------------------------------------
    FORUM (bbPress)
--------------------------------------------------------------------------------------------------------------------- */
body.bbpress,
body.buddypress {
    background-color: #fff;
    background-image: none;
}

#bbpress-forums {
    /*padding: 70px 0 65px;*/
    padding: 0 0 35px;
}

body.my-account section#masthead .mh-caption-wrap p {
    display: none;
}

body.my-account section#masthead .mh-caption-wrap h2 {
    font-size: 0;
}

body.my-account section#masthead .mh-caption-wrap h2:after {
    content: "USER ACCOUNT";
    font-size: 38px;
}

#bbpress-forums p.bbp-topic-meta img.avatar,
#bbpress-forums ul.bbp-reply-revision-log img.avatar,
#bbpress-forums ul.bbp-topic-revision-log img.avatar,
#bbpress-forums div.bbp-template-notice img.avatar,
#bbpress-forums .widget_display_topics img.avatar,
#bbpress-forums .widget_display_replies img.avatar {
    float: none;
    margin-bottom: 1px;
    width: 20px;
}

#subscription-toggle {
    padding: 0 0 0 5px;
}

.bbp-search-form {
    margin: 0 0 15px 0;
}

.bbp-search-form #bbp_search {
    height: 42px;
    vertical-align: middle;
    margin: 0;
}

.bbp-search-form .button {
    padding: 13px 24px;
    vertical-align: middle;
    margin: 0;
}

.bbp-submit-wrapper .button {
    margin: 0 0 0 10px;
}

#buddypress {
    /*padding: 70px 0 65px;*/
    padding: 0 0 35px;
}

.sidebar-container {
    /*padding: 70px 0 65px;*/
    padding: 0 0 35px;
}

.sidebar-container > aside {
    border: 1px solid #dfdfdf;
    background-color: #fbfbfb;
    padding: 25px 20px;
    margin: 0 0 35px 0;
}

.sidebar-container > aside h5 {
    font-size: 24px;
    line-height: 1.2;
    margin: 0 0 20px;
}

.sidebar-container > aside ul {
    list-style: none;
    margin: 0;
}

.sidebar-container > aside a {
    font-size: 14px;
}

.sidebar-container > aside li {
    font-size: 14px;
    margin: 0 0 15px 0;
    padding: 0 0 15px 0;
    border-bottom: 1px solid #ebebeb;
}

.sidebar-container > aside li:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.sidebar-container > aside input[type="text"],
input[type="password"] {
    height: 42px;
}

.sidebar-container > aside input[type="submit"] {
    display: inline-block;
    background-color: #222;
    border: none;
    margin: 0 8px 0 0;
    font-size: 14px;
    line-height: 1.2;
    color: #fff;
    padding: 14px 28px;
    height: auto;
}

.sidebar-container > aside input[type="submit"]:hover {
    cursor: pointer;
    background-color: #000;
}

label[for="bp-login-widget-rememberme"] {
    margin: 0 0 17px;
    vertical-align: middle;
}

label[for="bp-login-widget-rememberme"] > input {
    margin: 0 8px 3px 0;
    vertical-align: middle;
}

#bbpress-forums li.bbp-header,
#bbpress-forums li.bbp-footer {
    padding: 12px 20px;
}

#bbpress-forums li.bbp-body ul.forum,
#bbpress-forums li.bbp-body ul.topic {
    padding: 20px;
}

#bbpress-forums li,
#bbpress-forums li.bbp-header ul.forum-titles li {
    font-size: 18px;
}

#bbpress-forums li.bbp-forum-freshness {
    font-size: 16px;
}

.bbp-forum-title {
    font-size: 21px;
    font-weight: 600;
    line-height: 1.2;
    text-transform: uppercase;
    margin: 5px 0 5px 0;
    display: inline-block;
}

#buddypress #item-header-cover-image {
    margin-bottom: 0;
}

.buddypress-wrap.bp-dir-hori-nav:not(.bp-vertical-navs) nav:not(.tabbed-links) {
    border: 1px solid #eee;
}

.bp-navs ul li a,
.bp-navs ul li span {
    font-size: 14px;
}

.buddypress-wrap .bp-navs li:not(.current) a:focus,
.buddypress-wrap .bp-navs li:not(.current) a:hover,
.buddypress-wrap .bp-navs li:not(.selected) a:focus,
.buddypress-wrap .bp-navs li:not(.selected) a:hover {
    background: #f5f5f5;
}

body #buddypress select {
    margin-bottom: 0;
}

#activity-filter-by {
    padding: 9px 15px;
    font-size: 14px;
}

.activity-update-form #whats-new-textarea textarea {
    padding: 10px;
}

div.feed {
    background-color: #fafafa;
    padding: 5px 12px;
    border: 1px solid #efefef;
}

.activity-list.bp-list {
    padding: 21px 18px;
}

.activity-list .activity-item .activity-content p {
    font-size: 14px;
}

.activity-list .activity-item .activity-meta.action a {
    padding: 10px 5px;
    margin: 0;
}

button.acomment-reply {
    position: relative;
    top: 1px;
}

.activity-list .activity-item .activity-content .activity-inner {
    padding: 10px 10px;
}

.activity-list.bp-list .activity-item {
    border: 1px solid #dcdcdc;
    box-shadow: 3px 4px 6px rgba(210, 210, 210, 0.41);
}

.buddypress-wrap .bp-messages p {
    line-height: 1.2;
    padding: 10px 10px;
}

.buddypress-wrap table.profile-fields p,
.buddypress-wrap .public .profile-fields td.label {
    line-height: 1.2;
}

.buddypress-wrap .public .profile-fields td.label,
.buddypress-wrap table.profile-fields .data {
    padding: 12px 16px;
}

.buddypress-wrap .bp-feedback .bp-help-text {
    line-height: 1.2;
    padding: 10px 5px;
}

.buddypress-wrap .select-wrap select {
    padding: 6px 30px 6px 15px;
    text-indent: 0;
}

.buddypress-wrap .select-wrap span.select-arrow {
    font-size: 10px;
}

.buddypress-wrap .notifications-options-nav .select-wrap {
    min-width: 150px;
}

#message-threads {
    border-top: none;
}

#message-threads li {
    border: 1px solid #eaeaea;
    padding: 10px 15px;
}

#user_messages_search {
    margin-bottom: 0;
    height: 38px;
}

.buddypress-wrap .subnav-filters > ul {
    margin: 0 0 15px;
}

.bp-messages-content .actions .bp-icons:not(.bp-hide):before {
    font-size: 20px;
}

.buddypress .buddypress-wrap .activity-read-more a,
.buddypress .buddypress-wrap .comment-reply-link,
.buddypress .buddypress-wrap .generic-button a,
.buddypress .buddypress-wrap a.bp-title-button,
.buddypress .buddypress-wrap a.button,
.buddypress .buddypress-wrap button,
.buddypress .buddypress-wrap input[type=button],
.buddypress .buddypress-wrap input[type=reset],
.buddypress .buddypress-wrap input[type=submit],
.buddypress .buddypress-wrap ul.button-nav:not(.button-tabs) li a {
    display: inline-block;
    line-height: 1.2;
    padding: 10px 25px;
    border-radius: 3px;
}

.buddypress-wrap .bp-feedback {
    padding: 15px 50px 15px 15px;
}

.buddypress-wrap a[data-bp-close] span:before,
.buddypress-wrap button[data-bp-close] span:before {
    font-size: 26px;
}

#bbpress-forums div.bbp-forum-title h3,
#bbpress-forums div.bbp-topic-title h3,
#bbpress-forums div.bbp-reply-title h3 {
    font-size: 14px;
}

.bbp-pagination-links a,
.bbp-pagination-links span.current {
    padding: 3px 6px;
    min-width: 26px;
    text-align: center;
}

#bbpress-forums ul.bbp-lead-topic,
#bbpress-forums ul.bbp-topics,
#bbpress-forums ul.bbp-forums,
#bbpress-forums ul.bbp-replies,
#bbpress-forums ul.bbp-search-results {
    border: 1px solid #dedede;
}

#bbpress-forums input[type="text"],
#bbpress-forums select {
    height: 42px;
    border-color: #e0e0e0;
}

.bbp-submit-wrapper .button {
    padding: 14px 32px;
}

#bbpress-forums fieldset.bbp-form {
    padding: 10px 20px 25px;
}

div.bbp-template-notice p {
    padding: 10px;
}

#bbpress-forums div.bbp-the-content-wrapper textarea.bbp-the-content {
    border: 1px solid transparent;
    border-radius: 0;
}

#bbpress-forums div.bbp-the-content-wrapper textarea.bbp-the-content:focus {
    border: 1px solid #42a8cf;
}

#bbpress-forums fieldset.bbp-form {
    border: 1px solid #dfdfdf;
}

#bbpress-forums fieldset.bbp-form input[type="checkbox"] {
    margin: 0 4px 5px 0;
    vertical-align: middle;
}

#dir-activity-search {
    height: 40px;
    margin-bottom: 0;
}

#bbpress-forums .bbp-forum-info .bbp-forum-content,
#bbpress-forums p.bbp-topic-meta {
    font-size: 20px;
    font-weight: 400;
    line-height: 1.45;
}

#bbpress-forums p.bbp-topic-meta,
#bbpress-forums li.bbp-forum-topic-count,
#bbpress-forums li.bbp-forum-reply-count {
    font-size: 16px;
}

body #buddypress.buddypress-wrap .standard-form select {
    background-color: #fafafa;
    background-image:url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAYCAYAAACbU/80AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAIpJREFUeNrEkckNgDAMBBfRkEt0ObRBBdsGXUDgmQfK4XhH2m8czQAAy27R3tsw4Qfe2x8uOO6oYLb6GlOor3GF+swURAOmUJ+RwtEJs9WvTGEYxBXqI1MQAZhCfUQKRzDMVj+TwrAIV6jvSUEkYAr1LSkcyTBb/V+KYfX7xAeusq3sLDtGH3kEGACPWIflNZfhRQAAAABJRU5ErkJggg==");
    background-origin: content-box;
    background-position: right -8px center;
    background-repeat: no-repeat;
    background-size: 7px 5px;

    display: block;
    border-color: #b10f00;
    border-radius: 0;
    height: 52px;
    padding: 5px 20px;
    margin: 0 0 10px;
    border-width: 1px;
    position: relative;
}

body .buddypress-wrap .standard-form input[type="text"],
body .buddypress-wrap .standard-form input[type="password"],
body .buddypress-wrap .standard-form input[type="email"] {
    margin: 0 0 5px 0;
    height: 52px;
    border-width: 1px !important;
    padding: 5px 20px !important;
}

body .buddypress-wrap .standard-form label,
body .buddypress-wrap fieldset legend {
    margin: 22px 0 2px;
    font-size: 14px;
}

body.buddypress .buddypress-wrap .submit input[type=submit] {
    padding: 15px 40px !important;
    margin: 15px 0 0 0;
    width: 100%;
    max-width: 304px;
}

#bbpress-forums fieldset.bbp-form legend {
    padding: 5px 10px;
    font-size: 24px;
    line-height: 1.2;
    margin: 0 0 0 0;
}

#bbpress-forums div.bbp-breadcrumb p {
    font-size: 17px;
}

#bbpress-forums li.bbp-forum-freshness p.bbp-topic-meta img.avatar {
    margin-bottom: 4px;
}

#bbpress-forums div.bbp-topic-author a.bbp-author-name,
#bbpress-forums div.bbp-reply-author a.bbp-author-name {
    line-height: 1.2;
}



/* ---------------------------------------------------------------------------------------------------------------------
    DEFAULT PAGE TEMPLATE
--------------------------------------------------------------------------------------------------------------------- */
section#bottom-form {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-color: #222;
    padding: 60px 0 55px;
}

body section#bottom-form .gform_wrapper {
    margin: 10px 0 0 0;
}

section#bottom-form .page-regular-content {
    padding: 0;
    margin: 0 0 35px 0;
}

section#bottom-form h3,
section#bottom-form h4,
section#bottom-form p {
    color: #fff !important;
}



/* ---------------------------------------------------------------------------------------------------------------------
    SEARCH RESULTS
--------------------------------------------------------------------------------------------------------------------- */
body.search {
    background-image: none;
    background-color: #fff;
}

#archive-search {
    padding: 65px 0;
}

.archive-top-title {
    margin: 0 0 40px 0;
}

.archive-top-title span {
    color: #33aedd;
}

body[user-type="policy-maker"] .archive-top-title span {
    color: #368786;
}

body[user-type="student"] .archive-top-title span {
    color: #c4c95f;
}

body[user-type="teacher-or-counselor"] .archive-top-title span {
    color: #ffcb4e;
}

body[user-type="parent"] .archive-top-title span {
    color: #f6921e;
}

body[user-type="community-member"] .archive-top-title span {
    color: #901c1f;
}

body[user-type="school-administrator"] .archive-top-title span {
    color: #5d193c;
}

.search-results-item {
    margin: 0 0 45px 0;
    position: relative;
}

.search-results-item > .article-item {
    margin: 0;
    width: 100%;
    border-radius: 0;
}

.search-results-item > .article-item .article-thumbnail {
    height: 520px;
    border-radius: 0;
}

.search-results-item.page {
    background-position: center top;
    background-repeat: no-repeat;
    background-size: auto;
    background-color: #ccc;
    height: 200px;

    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.3);
}

.search-results-item.page:before {
    background-color: rgba(0, 0, 0, 0.4);
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 400;
}

.search-results-item.page h4 {
    font-size: 22px;
    font-weight: 600;
    position: absolute;
    top: 50%;
    left: 0;
    -webkit-transform: translate( 0, -50% );
    -moz-transform:    translate( 0, -50% );
    -ms-transform:     translate( 0, -50% );
    -o-transform:      translate( 0, -50% );
    transform:         translate( 0, -50% );
    width: 100%;
    padding: 0 200px 0 45px;
    color: #fff;
    z-index: 500;
}

.search-results-item.page .btn {
    font-size: 12px;
    letter-spacing: .5px;
    padding: 12px 25px;
    position: absolute;
    top: 50%;
    right: 45px;
    -webkit-transform: translate( 0, -50% );
    -moz-transform:    translate( 0, -50% );
    -ms-transform:     translate( 0, -50% );
    -o-transform:      translate( 0, -50% );
    transform:         translate( 0, -50% );
    z-index: 500;
}

.search-results-item .repo-item {
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.13);
    margin: 0;
    border-radius: 0;
    border-color: #e2e0e0;
}

#interactive-map-wrap {
    width: 100%;
    max-width: 1083px;
    padding: 0 15px;
    margin: 30px auto 20px;
    position: relative;
}

#interactive-map-wrap path:hover {
    cursor: pointer !important;
}

.interactive-map-filter {
    position: absolute;
    top: -30px;
    left: 50%;
    vertical-align: middle;
    width: 100%;
    text-align: center;

    -webkit-transform: translate( -50%, 0 );
    -moz-transform:    translate( -50%, 0 );
    -ms-transform:     translate( -50%, 0 );
    -o-transform:      translate( -50%, 0 );
    transform:         translate( -50%, 0 );

    z-index: 500;
}

.interactive-map-filter #interactive-map-state {
    width: 200px;
    display: inline-block;
    margin: 0 0 0 10px;
    padding: 5px 28px 5px 15px;
}







/* ---------------------------------------------------------------------------------------------------------------------
    Footer
--------------------------------------------------------------------------------------------------------------------- */
footer {
    background-color: #fff;
    padding: 55px 0 0;
    position: relative;
}

footer .logo-set {
    text-align: center;
}

footer .logo-set .logo-gflec {
    width: 101px;
    height: 50px;
}

footer .logo-set .logo-pwc {
    width: 71px;
    height: 59px;
}

footer .logo-set .logo {
    width: 216px;
    height: 77px;
    margin: 0 110px;
}

body[user-type] .footer-section-title,
#menu-footer > li > a {
    display: block;
    font-size: 18px;
    font-weight: 600;
    text-align: left;
    text-transform: uppercase;
    color: #383838;

    border-top: 1px solid #c2c2c2;
    padding: 15px 0;
    margin: 50px 0 10px 0;
}

body[user-type] .footer-section-title:hover,
#menu-footer > li > a:hover {
    color: #000;
}

footer .about-us p {
    font-size: 15px;
    line-height: 1.6;
    color: #808080;
    margin: 0;
}

footer .about-us > :last-child {
    margin-bottom: 0;
}

#menu-footer {
    list-style: none;
    margin: 0 0 20px 0;
    font-size: 0;
    letter-spacing: 0;
}

#menu-footer > li {
    display: inline-block;
    width: 50%;
    vertical-align: top;
}

#menu-footer > li:last-child {
    padding-left: 30px;
}

/*
#menu-footer > li > a:after {
    font-family: "Font Awesome 5 Light";
    content: "\f178";
    display: none;
}
*/

.footer-section-title > svg,
#menu-footer > li > a > svg {
    left: 0;
    margin-left: 10px;
    position: relative;

    transition: left .15s linear .15s;
}

.footer-section-title:hover > svg,
#menu-footer > li > a:hover > svg {
    left: 5px;
    transition: left .15s linear .15s;
}

#menu-footer > li > .sub-menu {
    margin: 0;
    font-size: 0;
    letter-spacing: 0;
}

#menu-footer > li > .sub-menu > li {
    display: inline-block;
    width: 50%;
    padding: 0 15px 0 0;
    margin-bottom: 20px;
}

#menu-footer > li > .sub-menu > li:nth-child( even ) {
    padding: 0 0 0 15px;
}

#menu-footer > li > .sub-menu > li > a {
    font-size: 15px;
    font-weight: 500;
    color: #808080;
    text-transform: none;
}

#menu-footer > li > .sub-menu > li > a:hover,
#menu-footer > li > .sub-menu > li.current-menu-item a {
    color: #000;
    text-decoration: underline;
}

footer .contacts a,
footer .contacts p {
    display: inline-block;
    font-size: 15px;
    font-weight: 500;
    color: #808080;
    line-height: 1.4;
    position: relative;
    padding-left: 30px;
    margin-bottom: 22px;

    transition: color .2s linear;
}

footer .contacts a svg,
footer .contacts p svg {
    color: #808080;
    position: absolute;
    top: 2px;
    left: 5px;
}

footer .contacts a:hover {
    color: #000;
}

footer .contacts p.f-email {
    padding-left: 0;
}

footer .contacts a {
    margin-right: 20px;
}

section.copyright {
    background-color: #f8f8f8;
    padding: 18px 0 14px;
    margin: 25px 0 0;
}

footer p.copyright,
footer p.sabra {
    display: inline-block;
    font-size: 12px;
    color: #575757;
    margin: 0;
}

footer p.sabra {
    padding-left: 75px;
}

footer p.sabra a {
    color: #575757;
    text-decoration: underline;
}

footer p.sabra a:hover {
    color: #53b94a;
    text-decoration: underline;
}

footer .sabra svg {
    margin: 0 4px;
    color: #575757;
    position: relative;
    top: 1px;
}

footer .soc-media {
    width: 100%;
    text-align: left;
}

footer .soc-media .sm-item {
    margin: 1px 15px 1px 0;
}

footer .soc-media .sm-item > svg {
    color: #575757;
}

#cookie-notice {
    background-color: rgba(0, 0, 0, 0.88) !important;
    border-top: 1px solid #212121;
}

#cn-accept-cookie {
    margin: 0 0 0 15px;
}

#cn-notice-text a:hover {
    color: #33aedd !important;
    text-decoration: underline !important;
}

.general-popup-overlay {
    background-color: rgba(0, 0, 0, 0.65);
    display: block;
    width: 100%;
    height: 100%;

    position: fixed;
    top: 0;
    left: 0;

    opacity: 1;
    transition: opacity .45s linear .6s;
    z-index: 100000;
}

#general-popup {
    position: fixed;
    top: 50%;
    left: 50%;

    width: 100%;
    max-width: 514px;
    height: auto;
    padding: 0 15px;

    -webkit-transform: translate( -50%, -50% );
    -moz-transform:    translate( -50%, -50% );
    -ms-transform:     translate( -50%, -50% );
    -o-transform:      translate( -50%, -50% );
    transform:         translate( -50%, -50% );

    opacity: 1;
    transition: opacity .45s linear .6s;
    z-index: 100001;
}

#general-popup .content {
    width: 100%;
    background-color: #fff;
    padding: 44px 38px 47px;
    border-radius: 25px;

    box-shadow: 0 0 150px rgba(0, 0, 0, 0.4);
}

#general-popup .content h4 {
    font-size: 34px;
    font-weight: 600;
    color: #084166;
    text-align: center;
    line-height: 1;
    margin: 0 0 25px 0;
}

#general-popup .close {
    font-size: 16px;
    font-weight: 600;
    color: #222;

    position: absolute;
    left: 50%;
    bottom: 22px;

    -webkit-transform: translate( -50%, 0 );
    -moz-transform:    translate( -50%, 0 );
    -ms-transform:     translate( -50%, 0 );
    -o-transform:      translate( -50%, 0 );
    transform:         translate( -50%, 0 );

    transition: color .2s linear;
}

#general-popup .close:hover {
    color: #9e0c0f;
    cursor: pointer;
}

.general-popup-overlay.hidden,
#general-popup.hidden {
    opacity: 0;
    transition: opacity .4s linear 0s;
}






/***********************************************************************************************************************
*                                                                                                                      *
*   MEDIA QUERIES ( RESPONSIVE )                                                                                       *
*                                                                                                                      *
***********************************************************************************************************************/
@media only screen and (min-width: 992px) {

    section[pb-section][size].featured-articles .featured-articles-wrap[count="1"] .article-item,
    section#archive-news .archive-news-container.list .article-item:not(.no-single-page):not(.no-image) {
        padding: 0 0 0 400px;
    }

    section[pb-section][size].featured-articles .featured-articles-wrap[count="1"] .article-item .article-thumbnail,
    section#archive-news .archive-news-container.list .article-item:not(.no-single-page):not(.no-image) .article-thumbnail {
        position: absolute;
        top: 0;
        left: 0;
        width: 400px;
        height: 100%;

        border-radius: 7px 0 0 7px;
    }

    section[pb-section][size].featured-articles .featured-articles-wrap[count="1"] .article-item .article-item-content,
    section#archive-news .archive-news-container.list .article-item:not(.no-single-page):not(.no-image) .article-item-content {
        border-radius: 0 7px 7px 0;
        padding: 35px 35px 90px;
    }

    section[pb-section][size].featured-articles .featured-articles-wrap[count="1"] .article-item .article-thumbnail:before,
    section#archive-news .archive-news-container.list .article-item .article-thumbnail:before {
        display: none;
    }

    section[pb-section][size].featured-articles .featured-articles-wrap[count="1"] .article-item .article-thumbnail:after,
    section#archive-news .archive-news-container.list .article-item:not(.no-single-page) .article-thumbnail:after {
        display: block;
        content: "";
        width: 150px;
        height: 100%;

        position: absolute;
        top: 0;
        right: 0;

        background: -moz-linear-gradient(left, rgba(0,0,0,0) 0%, rgba(51,174,221,1) 100%);
        background: -webkit-linear-gradient(left, rgba(0,0,0,0) 0%,rgba(51,174,221,1) 100%);
        background: linear-gradient(to right, rgba(0,0,0,0) 0%,rgba(51,174,221,1) 100%);
        filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00000000', endColorstr='#33aedd',GradientType=0 );

        opacity: 0;
        transition: opacity .2s linear;
    }

    body[user-type="policy-maker"] section[pb-section][size].featured-articles .featured-articles-wrap[count="1"] .article-item .article-thumbnail:after,
    body[user-type="policy-maker"] section#archive-news .archive-news-container.list .article-item .article-thumbnail:after {
        background: -moz-linear-gradient(left, rgba(0,0,0,0) 0%, rgba(54,135,134,1) 100%);
        background: -webkit-linear-gradient(left, rgba(0,0,0,0) 0%,rgba(54,135,134,1) 100%);
        background: linear-gradient(to right, rgba(0,0,0,0) 0%,rgba(54,135,134,1) 100%);
        filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00000000', endColorstr='#368786',GradientType=0 );
    }

    body[user-type="student"] section[pb-section][size].featured-articles .featured-articles-wrap[count="1"] .article-item .article-thumbnail:after,
    body[user-type="student"] section#archive-news .archive-news-container.list .article-item .article-thumbnail:after {
        background: -moz-linear-gradient(left, rgba(0,0,0,0) 0%, rgba(196,201,95,1) 100%);
        background: -webkit-linear-gradient(left, rgba(0,0,0,0) 0%,rgba(196,201,95,1) 100%);
        background: linear-gradient(to right, rgba(0,0,0,0) 0%,rgba(196,201,95,1) 100%);
        filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00000000', endColorstr='#c4c95f',GradientType=0 );
    }

    body[user-type="teacher-or-counselor"] section[pb-section][size].featured-articles .featured-articles-wrap[count="1"] .article-item .article-thumbnail:after,
    body[user-type="teacher-or-counselor"] section#archive-news .archive-news-container.list .article-item .article-thumbnail:after {
        background: -moz-linear-gradient(left, rgba(0,0,0,0) 0%, rgba(255,203,78,1) 100%);
        background: -webkit-linear-gradient(left, rgba(0,0,0,0) 0%,rgba(255,203,78,1) 100%);
        background: linear-gradient(to right, rgba(0,0,0,0) 0%,rgba(255,203,78,1) 100%);
        filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00000000', endColorstr='#ffcb4e',GradientType=0 );
    }

    body[user-type="parent"] section[pb-section][size].featured-articles .featured-articles-wrap[count="1"] .article-item .article-thumbnail:after,
    body[user-type="parent"] section#archive-news .archive-news-container.list .article-item .article-thumbnail:after {
        background: -moz-linear-gradient(left, rgba(0,0,0,0) 0%, rgba(246,146,30,1) 100%);
        background: -webkit-linear-gradient(left, rgba(0,0,0,0) 0%,rgba(246,146,30,1) 100%);
        background: linear-gradient(to right, rgba(0,0,0,0) 0%,rgba(246,146,30,1) 100%);
        filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00000000', endColorstr='#f6921e',GradientType=0 );
    }

    body[user-type="community-member"] section[pb-section][size].featured-articles .featured-articles-wrap[count="1"] .article-item .article-thumbnail:after,
    body[user-type="community-member"] section#archive-news .archive-news-container.list .article-item .article-thumbnail:after {
        background: -moz-linear-gradient(left, rgba(0,0,0,0) 0%, rgba(144,28,31,1) 100%);
        background: -webkit-linear-gradient(left, rgba(0,0,0,0) 0%,rgba(144,28,31,1) 100%);
        background: linear-gradient(to right, rgba(0,0,0,0) 0%,rgba(144,28,31,1) 100%);
        filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00000000', endColorstr='#901c1f',GradientType=0 );
    }

    body[user-type="school-administrator"] section[pb-section][size].featured-articles .featured-articles-wrap[count="1"] .article-item .article-thumbnail:after,
    body[user-type="school-administrator"] section#archive-news .archive-news-container.list .article-item .article-thumbnail:after {
        background: -moz-linear-gradient(left, rgba(0,0,0,0) 0%, rgba(93,25,60,1) 100%);
        background: -webkit-linear-gradient(left, rgba(0,0,0,0) 0%,rgba(93,25,60,1) 100%);
        background: linear-gradient(to right, rgba(0,0,0,0) 0%,rgba(93,25,60,1) 100%);
        filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00000000', endColorstr='#5d193c',GradientType=0 );
    }

    section[pb-section][size].featured-articles .featured-articles-wrap[count="1"] .article-item:hover .article-thumbnail:after,
    section#archive-news .archive-news-container.list .article-item:hover .article-thumbnail:after {
        opacity: 1;
    }
}


@media only screen and (min-width: 641px) {
    body > header {
        top: 0;
        left: 0;
        width: 100%;
    }


    body.admin-bar header > div.is-stuck {
        top: 32px !important;
    }

    header > div {
        background-color: transparent;
        transition: background-color .2s linear, padding .2s linear;
        box-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);

        transform: none !important;
    }

    header > div.is-stuck {
        background-color: rgba(12, 12, 12, 0.95);
        transition: background-color .2s linear;
    }

    .top-bar, .top-bar ul {
        background-color: transparent;
    }

    #primary-menu {
        padding: 8px 0;
    }

    #menu-primary > li.menu-item {
        margin: 0 0 0 40px;
    }

    #menu-primary > li.menu-item > a {
        font-size: 16px;
        font-weight: 400;
        color: #7f7f7f;
        text-transform: uppercase;
        padding: 10px 0;
        position: relative;

        transition: color .2s linear;
    }

    #menu-primary > li.menu-item > a:hover,
    #menu-primary > li.menu-item.current-menu-item > a {
        color: #222;
        transition: color .2s linear;
    }

    #menu-primary > li.menu-item > a > svg {
        display: inline-block;
        margin: 0 0 0 10px;
        font-size: 23px;
        position: relative;
        top: 2px;
        line-height: 1;
    }

}


@media only screen and (max-width: 1620px) {
    section#masthead {
        height: 500px;
    }

    section#masthead .cat-icon-wrap {
        font-size: 90px;
        margin: 0 0 25px 0;
    }

    section#masthead .cat-icon-wrap .cat-name {
        font-size: 38px;
    }

    section#masthead .mh-caption-wrap h2 {
        font-size: 40px;
        margin: 0 0 20px 0;
    }

    section#masthead .mh-caption-wrap p {
        line-height: 1.5;
        margin: 0 0 20px 0;
    }
}


@media only screen and (max-width: 1500px) {
    section#masthead {
        height: 360px;
    }

    section#masthead .mh-caption-wrap {
        bottom: 45px;
    }

    section#masthead .mh-caption-wrap h2 {
        font-size: 38px;
        margin: 0 0 15px 0;
    }

    body.my-account section#masthead .mh-caption-wrap h2:after {
        font-size: 38px;
    }

    section#masthead .mh-caption-wrap p {
        font-size: 17px;
        line-height: 1.4;
    }

    section#masthead .cat-icon-wrap {
        font-size: 70px;
        padding: 0 0 15px 0;
        margin: 0 0 30px 0;
    }

    section#masthead .cat-icon-wrap .cat-name {
        font-size: 32px;
    }

    section#masthead .cat-icon-wrap:after {
        width: 36px;
        left: calc( 50% - 18px );
    }
}


@media only screen and (max-width: 1440px) {
    .article-item .article-thumbnail {
        height: 320px;
    }

    .user-type-container .user-type-item:after {
        width: 88%;
    }

    .user-type-container .user-type-item {
        min-height: 255px;
    }

    body header .header-top {
        padding: 5px 0;
    }

    body header .user-type-selector-wrap {
        padding: 15px 0 10px;
    }

    #menu-primary > li.menu-item > a {
        font-size: 14px;
    }

    .logo-set .logo {
        width: 165px;
    }

    #menu-primary > li.menu-item > a > svg {
        font-size: 21px;
    }

    body #primary-slider {
        height: calc( 100vh - 133px );
    }

    body.admin-bar #primary-slider {
        height: calc( 100vh - 165px );
    }
}


@media only screen and (max-width: 1280px) {
    .article-item .article-thumbnail {
        height: 265px;
    }

    .user-type-container .user-type-item:after {
        width: 80%;
    }

    .user-type-container .user-type-item .name {
        font-size: 20px;
    }

    .user-type-container .user-type-item {
        min-height: 235px;
    }

    #primary-slider .slide-caption-wrap {
        padding-left: 50px;
    }

    .article-item .article-item-content {
        padding: 25px 25px 90px;
    }

    .i-want-item .description {
        padding: 0 20px;
    }
}


@media only screen and (max-width: 1200px) {
    section#masthead {
        height: 300px;
    }
}


@media only screen and (min-width: 641px) and (max-width: 1024px) {

}


@media only screen and (max-width: 1024px) {
    section#masthead {
        height: 375px;
    }

    .i-want-item .description {
        font-size: 15px;
    }

    .user-type-container .user-type-item .name {
        right: 10px;
    }

    body #primary-slider,
    body.admin-bar #primary-slider {
        height: 575px;
    }

    #primary-slider .slide-caption h3 {
        font-size: 50px;
    }

    .i-want-desk {
        padding: 50px 30px 65px;
    }

    section#step-1 .general-content {
        padding: 65px 0 30px;
        width: 100%;
        max-width: 720px;
        margin: 0 auto;
    }

    section#step-1 .general-content .cell {
        width: 100%;
    }

    section#step-1 .general-content .cell iframe {
        max-width: 100%;
        margin: 25px auto 0;
        display: block;
    }

    .user-type-container .user-type-item {
        min-height: 200px;
    }

    section[pb-section].featured-articles .featured-articles-wrap[count="3"] .article-item .article-thumbnail {
        height: 285px;
    }
}


@media only screen and (max-width: 991px) {
    .gap-container .gap-image {
        width: 100%;
        height: auto;
        padding-bottom: 65%;
        margin-bottom: 35px;
        position: static;
    }

    section[pb-section].graphics-and-paragraph-2-columns .gap-container,
    section[pb-section].graphics-and-paragraph-2-columns-small .gap-container,
    section[pb-section].graphics-and-paragraph-2-columns-full .gap-container {
        padding-left: 0;
    }

    section[pb-section].paragraph-and-graphics-2-columns .gap-container,
    section[pb-section].paragraph-and-graphics-2-columns-small .gap-container,
    section[pb-section].paragraph-and-graphics-2-columns-full .gap-container {
        padding-right: 0;
    }

    .repo-item {
        padding: 20px 20px 90px 105px;
    }

    body[user-type] .repo-item .btn {
        top: auto;
        bottom: 22px;
        right: 30px;
        -webkit-transform: none;
        -moz-transform:    none;
        -ms-transform:     none;
        -o-transform:      none;
        transform:         none;
        width: calc( 100% - 135px );
        text-align: center;
    }

    section[pb-section][size="small"].featured-articles .featured-articles-wrap[count="1"] .article-item .article-thumbnail {
        height: 460px;
    }

    section#archive-news .archive-news-container.list .article-item .article-thumbnail {
        height: 485px;
    }
}


@media only screen and (max-width: 880px) {
    .repo-app .repo-content {
        margin: 25px 0 0 0;
    }

    .repo-app {
        padding: 26px 20px;
    }

    .repo-item {
        padding: 80px 15px 20px 15px;
    }

    .repo-app .repo-navigation {
        padding: 0 0 0 300px;
    }

    .repo-app .repo-navigation select,
    .repo-app .repo-navigation .select2 {
        left: 0;
    }

    .repo-app .repo-navigation svg {
        right: 17px;
    }

    .repo-app .repo-navigation {
        padding: 55px 0 0 0;
    }

    .repo-app .repo-navigation select,
    .repo-app .repo-navigation .select2 {
        width: 100% !important;
    }

    .repo-app .repo-navigation svg {
        top: 69px;
    }

    .repo-item p,
    section[pb-section] .repo-item p {
        font-size: 14px;
    }

    .repo-item > svg {
        top: 14px;
        left: 50%;
        -webkit-transform: translate( -50%, 0 );
        -moz-transform:    translate( -50%, 0 );
        -ms-transform:     translate( -50%, 0 );
        -o-transform:      translate( -50%, 0 );
        transform:         translate( -50%, 0 );
    }

    body[user-type] .repo-item .btn {
        width: 100%;
        position: static;
        margin: 15px 0 0 0;
    }
}


@media only screen and (max-width: 768px) {
    .logo-set .logo {
        width: 130px;
        margin: 0 20px;
    }

    .logo-set .logo-gflec {
        width: 52px;
    }

    .user-type-selector-container {
        max-width: 400px;
    }

    #search-form {
        max-width: 240px;
    }

    .user-type-selector-container {
        margin: 0 30px 0 0;
    }

    .user-type-selector-wrap .cell {
        text-align: center;
    }

    #primary-slider .slide-caption > svg {
        width: 100%;
    }

    #primary-slider .slide-caption-wrap {
        padding-right: 50px;
    }

    #primary-slider .slide-caption {
        padding: 0 45px;
    }

    .user-type-container .user-type-item {
        min-height: 160px;
    }

    .user-type-container .user-type-item .name {
        font-size: 16px;
        max-width: 105px;
    }

    .i-want-item .icon-wrap svg {
        font-size: 45px;
    }

    .i-want-item .icon-wrap {
        height: 90px;
    }

    .i-want-item .description {
        font-size: 14px;
        padding: 0 12px;
    }

    .i-want-desk .title {
        line-height: 1.4;
        margin: 0 0 25px 0;
    }

    .i-want-desk .description p, .i-want-desk .description li {
        font-size: 17px;
        line-height: 1.5;
        margin: 0 0 25px 0;
    }

    .board-scroll-desk.important-links-container {
        margin-bottom: 35px;
    }

    .featured-articles-container .article-item {
        width: 48%;
        margin: 1%;
    }

    #primary-slider .btn {
        margin: 24px 0 0;
    }

    body[user-type] .footer-section-title,
    #menu-footer > li > a {
        font-size: 13px;
    }

    footer .about-us p {
        font-size: 14px;
    }

    footer .contacts a,
    footer .contacts p {
        font-size: 14px;
    }

    footer .soc-media .sm-item {
        margin: 1px 8px 1px 0;
    }

    footer p.sabra {
        padding-left: 30px;
    }

    section#archive-news .article-item .article-thumbnail {
        height: 210px;
    }

    #menu-primary > li.menu-item {
        margin: 0 0 0 25px;
    }

    body.post-type-archive section#masthead,
    body section#masthead.taxonomy-archive {
        margin-bottom: 40px;
    }

    .post-date:before,
    .post-date:after {
        display: none;
    }

    .article-item .article-item-content .article-item-description p,
    .archive-news-container.list .article-item .article-item-content .article-item-no-page-content p {
        font-size: 17px;
    }

    section#archive-news .article-item .article-item-content {
        padding: 25px 20px 90px;
    }

    .sidebar-categories .categories > li > a.category-item {
        padding: 11px 5px 11px 14px;
    }

    .sidebar-categories .categories > li > .sub-categories {
        padding: 20px 5px 10px 14px;
    }

    section#archive-news .archive-news-container.list .article-item .article-thumbnail {
        height: 400px;
    }

    .single-article-content div.article-thumbnail.post-gallery {
        height: 480px;
    }

    section[pb-section].featured-articles .featured-articles-wrap[count="1"] .article-item .article-thumbnail,
    section[pb-section].featured-articles .featured-articles-wrap[count="2"] .article-item .article-thumbnail,
    section[pb-section].featured-articles .featured-articles-wrap[count="3"] .article-item .article-thumbnail,
    section[pb-section][size="small"].featured-articles .featured-articles-wrap[count="1"] .article-item .article-thumbnail,
    section[pb-section][size="small"].featured-articles .featured-articles-wrap[count="2"] .article-item .article-thumbnail,
    section[pb-section][size="small"].featured-articles .featured-articles-wrap[count="3"] .article-item .article-thumbnail,
    section[pb-section][size="regular"].featured-articles .featured-articles-wrap[count="1"] .article-item .article-thumbnail,
    section[pb-section][size="regular"].featured-articles .featured-articles-wrap[count="2"] .article-item .article-thumbnail,
    section[pb-section][size="regular"].featured-articles .featured-articles-wrap[count="3"] .article-item .article-thumbnail {
        height: 235px;
    }

    .single-article-content .article-thumbnail {
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
        display: block;
        border-radius: 0;
        border-bottom: none;
        width: 100%;
        height: 460px;
        margin-bottom: 35px;
        position: relative;
    }

    .pb-section-subtitle, .page-regular-content h4 {
        line-height: 1.25;
    }

    .page-regular-content .btn.btn-colored {
        margin: 5px 3px;
    }

    .live-webinar-wrap .webinar-item .webinar-thumbnail {
        height: 510px;
    }

    .upcoming-webinar {
        width: 80%;
        top: 50%;
    }

    .webinar-item {
        padding: 320px 0 0 0;
    }

    .webinar-item .webinar-thumbnail {
        width: 100%;
        height: 320px;
    }

    body[user-type] .webinar-item .webinar-thumbnail:after {
        display: none;
    }

    .filter-news-box .filter-categories select {
        padding: 5px 12px;
    }

    body[user-type] .tags > a {
        margin: 0 5px 8px 0;
    }

    .filter-news-box {
        margin-bottom: 45px;
    }

    .sidebar-post-item .live {
        font-size: 8px;
    }

    .search-results-item > .article-item .article-thumbnail {
        height: 450px;
    }
}


@media only screen and (max-width: 768px) and (min-width: 641px) {
    #menu-primary > li.menu-item {
        margin: 0 0 0 25px;
    }

    #menu-primary > li.menu-item > a {
        font-size: 12px;
    }

    #menu-primary > li.menu-item > a > svg {
        font-size: 18px;
    }
}


@media only screen and (max-width: 640px) {
    section#masthead {
        height: 285px;
    }

    section#masthead .cat-icon-wrap {
        font-size: 52px;
    }

    section#masthead .cat-icon-wrap .cat-name {
        font-size: 24px;
    }

    .sticky.is-anchored {
        position: static !important;
    }

    .user-type-selector-container {
        margin: 0 10px 0 0;
        padding: 0 0 0 62px;
        max-width: 250px;
    }

    #search-form {
        max-width: 115px;
    }

    body header .header-top {
        padding: 5px 0 0;
    }

    #primary-menu-nav {
        margin: 0 -15px !important;
    }

    .title-bar {
        display: block;
        padding: 15px;
        background: #123f68;
        color: #fff;
        text-align: center;
    }

    .top-bar, .top-bar ul {
        background-color: #274c77;
        padding: 10px;
    }

    .top-bar ul {
        padding: 0;
    }

    #menu-primary > li.menu-item {
        margin: 0;
    }

    #menu-primary > li.menu-item > a {
        font-size: 15px;
        background: transparent;
        color: #fff;
        text-transform: uppercase;
        padding: 10px 10px;
        font-weight: 700;
        letter-spacing: 0.5px;
    }

    #menu-primary > li.menu-item > a > svg {
        display: none;
    }

    .title-bar .menu-icon {
        display: inline-block;
        outline: none !important;
        font-size: 28px;
        color: #fff;
        transform: rotate( 17deg );
        margin: 0 12px 0 0;

        position: relative;
        top: -6px;
    }

    .menu-icon::after {
        background: #ffffff;
        box-shadow: 0 7px 0 #ffffff, 0 14px 0 #ffffff;
        display: none;
    }

    .title-bar-title {
        text-transform: uppercase;
        font-size: 18px;
        line-height: 1;
        position: relative;
        top: 2px;
    }

    body #primary-slider,
    body.admin-bar #primary-slider {
        height: 450px;
    }

    #primary-slider .slick-next,
    #primary-slider .slick-prev {
        display: none !important;
    }

    #primary-slider .slide-caption-wrap {
        padding: 0;
    }

    #primary-slider .slide-caption {
        padding: 20px;
    }

    #primary-slider .slide-caption > svg {
        height: 100%;
    }

    #primary-slider .slide-caption h3 {
        font-size: 30px;
    }

    #primary-slider .slide-caption p {
        font-size: 14px;
    }

    body[user-type] .btn {
        font-size: 14px;
        padding: 12px 25px;
    }

    #primary-slider .btn {
        margin: 20px 0 0;
    }

    .scroll-down {
        bottom: 10px;
    }

    .scroll-down:after {
        height: 25px;
        margin: 7px auto 0;
    }

    section#step-1 .general-content {
        padding: 35px 0 0;
    }

    .general-content p {
        font-size: 17px;
    }

    .i-want-desk .title {
        font-size: 24px;
        margin: 0 0 12px 0;
    }

    .i-want-desk .description p, .i-want-desk .description li {
        font-size: 17px;
        margin: 0 0 20px 0;
    }

    .i-desk-item p {
        font-size: 17px;
    }

    .i-desk-item a:not(.l-title) {
        font-size: 17px;
    }

    .board-scroll-desk .downloadable-documents .i-desk-item {
        padding-left: 50px;
    }

    .board-scroll-desk .downloadable-documents .i-desk-item svg {
        font-size: 35px;
        top: 23px;
        left: 15px;
    }

    .featured-articles-container .article-item {
        width: 94%;
        margin: 0 1% 35px;
    }

    .article-item .article-item-content > h4, .webinar-item .webinar-item-content > h4 {
        font-size: 22px;
    }

    .article-item .article-item-content .article-item-description p,
    .archive-news-container.list .article-item .article-item-content .article-item-no-page-content p {
        font-size: 17px;
    }

    .featured-articles-wrap .button-wrap {
        padding-top: 20px;
    }

    .i-want-desk {
        margin: 50px auto 35px;
    }

    .article-item .read-more, .webinar-item .read-more {
        font-size: 14px;
        padding: 12px 25px;
    }

    header .logo-set {
        text-align: center;
    }

    .logo-set .logo {
        width: 155px;
    }

    #primary-slider .slick-dots {
        text-align: center;
    }

    section#masthead .mh-caption-wrap h2 {
        font-size: 22px;
    }

    body.my-account section#masthead .mh-caption-wrap h2:after {
        font-size: 22px;
    }

    .pb-section-title,
    .single-article-content .main-content > h3,
    .page-regular-content h3 {
        font-size: 36px;
    }

    section#masthead .mh-caption-wrap p {
        font-size: 14px;
    }

    .single-article-content .article-thumbnail,
    .single-article-content div.article-thumbnail.post-gallery {
        height: 320px;
    }

    .pb-graphics.pb-graphics-70.pb-graphics-30-70,
    .pb-graphics.pb-graphics-70.pb-graphics-70-30,
    .pb-graphics.pb-graphics-30.pb-graphics-30-70,
    .pb-graphics.pb-graphics-30.pb-graphics-70-30 {
        padding-bottom: 65%;
    }

    .upcoming-webinar {
        width: 90%;
        padding: 40px 10px;
    }

    .upcoming-webinar > h3 {
        font-size: 26px;
    }

    .upcoming-webinar > h4 {
        font-size: 20px;
    }

    .live-webinar-wrap .webinar-item .webinar-thumbnail {
        height: 310px;
    }

    .live-webinar-wrap .webinar-item .webinar-item-content {
        padding: 25px 25px 130px;
    }

    .live-webinar-wrap .webinar-item .buttons-wrap .read-more {
        margin: 3px 3px;
    }

    .webinar-item {
        padding: 0;
    }

    .webinar-item .webinar-thumbnail {
        display: block;
        position: relative;
        height: 260px;
    }

    .webinar-item .webinar-item-content {
        padding: 25px 25px 75px;
    }

    .filter-news-box .filter-categories {
        position: static;
        width: 100%;
    }

    .filter-news-box .filter-categories select {
        padding: 5px 25px;
    }

    .sidebar-latest-posts {
        margin-top: 35px;
    }

    .sidebar-post-item .live {
        font-size: 12px;
    }

    .search-results-item > .article-item .article-thumbnail {
        height: 225px;
    }
}


@media only screen and (max-width: 480px) {
    .pagination-wrap .pagination > li > * {
        min-width: 40px;
        min-height: 40px;
        line-height: 32px;
        font-size: 14px;
    }

    .pagination-wrap {
        margin: 12px 0 0 0;
    }

    #respond #submit {
        width: 100%;
    }

    .news-item .post-gallery .slick-arrow,
    #our-team-slider .slick-arrow,
    .slider-1-column .slick-arrow {
        display: none !important;
    }

    #archive-news.single-post .news-item .news-thumbnail,
    .slider-1-column .post-gallery {
        height: 200px;
    }

    .accordion-item .accordion-title {
        padding: 25px 22px;
    }

    .search-directions-box input {
        padding: 5px 55px;
    }

    .pagination-wrap .pagination > li {
        display: inline-block;
        margin: 3px 0;
    }

    section#archive-search {
        padding: 40px 0;
    }

    .search-results-item .news-item .news-thumbnail {
        height: 210px;
    }

    .search-results-item .news-item .news-item-content {
        padding: 35px 20px;
    }

    .search-results-item {
        margin: 0 0 35px 0;
    }

    .news-item .post-video svg {
        font-size: 38px;
    }

    .user-type-container .user-type-item {
        min-height: 192px;
        width: 48%;
    }

    .user-type-container .user-type-item:after {
        width: 100%;
        background-position: left 15px top 25px;
        background-size: 120%;
    }

    .user-type-container .user-type-item .name {
        font-size: 18px;
        top: auto;
        bottom: -7px;
        left: 50%;
        height: 38px;
        line-height: 1.1;

        -webkit-transform: translate( -50%, -50% );
        -moz-transform:    translate( -50%, -50% );
        -ms-transform:     translate( -50%, -50% );
        -o-transform:      translate( -50%, -50% );
        transform:         translate( -50%, -50% );
    }

    .i-want-item {
        width: 48%;
    }

    body[user-type] .i-want-item.active:after {
        display: none !important;
    }

    .i-want-desk {
        padding: 30px 5px 30px;
    }

    .i-want-desk .title {
        line-height: 1.1;
        margin: 0 0 20px 0;
    }

    .i-want-desk .description p,
    .i-want-desk .description li {
        font-size: 17px;
        line-height: 1.6;
    }

    .i-want-desk .description {
        margin-bottom: 15px;
    }

    .featured-articles-container .no-results {
        width: 90%;
        margin: 0 auto;
    }

    .featured-articles-wrap h3 {
        font-size: 34px;
        line-height: 1.1;
    }

    .board-scroll-desk.important-links-container {
        margin-bottom: 25px;
    }

    section#step-1 .general-content {
        padding: 65px 0 0;
    }

    .step-subtitle {
        margin: 0 0 15px 0;
    }

    section#step-1 .general-content .cell iframe {
        margin: 0;
    }

    #menu-footer > li {
        width: 100%;
    }

    #menu-footer > li:last-child {
        padding-left: 0;
    }

    #menu-footer > li > a {
        margin: 10px 0 10px 0;
    }

    #menu-footer > li:first-child > a {
        margin: 30px 0 10px 0;
    }

    body[user-type] .footer-section-title {
        margin: 0 0 10px 0;
    }

    footer .logo-set .logo {
        width: 180px;
        height: 77px;
        margin: 15px 70px;
    }

    footer .logo-set .logo-gflec {
        width: 80px;
        height: 42px;
    }

    footer .logo-set .logo-pwc {
        width: 50px;
        height: 45px;
        margin: 0 50px 35px 50px;
    }

    footer .contacts p.f-email {
        padding-left: 0;
        margin-bottom: 0;
    }

    footer .contacts p.f-email a {
        margin-bottom: 0;
    }

    section.copyright {
        text-align: center;
    }

    footer p.sabra {
        padding-left: 0;
    }

    footer .soc-media {
        padding-top: 10px;
        text-align: center;
    }

    section#archive-news .article-item {
        width: 100%;
        margin: 0 0 35px 0;
    }

    .filter-news-box {
        padding-left: 0;
        margin-bottom: 40px;
    }

    .filter-news-box .view {
        display: none;
    }

    section#masthead .mh-caption-wrap h2 {
        font-size: 32px;
        margin: 0 0 15px 0;
    }

    section#masthead .cat-icon-wrap {
        font-size: 52px;
        padding: 0 0 4px 0;
        margin: 0 0 22px 0;
    }

    body.post-type-archive-news section#masthead .cat-icon-wrap {
        padding: 0 0 4px 0;
    }

    section#masthead .mh-caption-wrap {
        bottom: 30px;
    }

    .sidebar-categories {
        margin-top: 50px;
    }

    section#archive-news .article-item .article-thumbnail,
    section#archive-news .archive-news-container.list .article-item .article-thumbnail {
        height: 240px;
    }

    .single-article-content .article-thumbnail.post-video svg {
        font-size: 42px;
    }

    .single-article-content .article-thumbnail,
    .single-article-content div.article-thumbnail.post-gallery {
        height: 290px;
    }

    section#masthead .mh-caption-wrap p {
        display: none;
    }

    .repo-item {
        padding: 80px 20px 20px 20px;
    }

    .repo-item > svg {
        top: 14px;
        left: 50%;
        -webkit-transform: translate( -50%, 0 );
        -moz-transform:    translate( -50%, 0 );
        -ms-transform:     translate( -50%, 0 );
        -o-transform:      translate( -50%, 0 );
        transform:         translate( -50%, 0 );
    }

    body[user-type] .repo-item .btn {
        width: 100%;
        position: static;
        margin: 15px 0 0 0;
    }

    .repo-app.loading > svg {
        font-size: 60px;
    }

    section[pb-section] quote p {
        font-size: 22px;
    }

    .interactive-map-filter {
        top: -48px;
    }

    .accordion-content {
        padding: 35px 25px 10px;
    }

    .page-regular-content {
        padding: 45px 0 0;
        margin-bottom: 35px;
    }

    .bbp-forum-title {
        font-size: 16px;
    }

    #bbpress-forums .bbp-forum-info .bbp-forum-content,
    #bbpress-forums p.bbp-topic-meta {
        font-size: 16px;
        line-height: 1.4;
    }

    #bbpress-forums p.bbp-topic-meta,
    #bbpress-forums li.bbp-forum-topic-count,
    #bbpress-forums li.bbp-forum-reply-count {
        font-size: 14px;
    }

    #bbpress-forums li,
    #bbpress-forums li.bbp-header ul.forum-titles li {
        font-size: 15px;
    }

    #bbpress-forums div.bbp-search-form {
        width: 100%;
    }
}


@media only screen and (max-width: 425px) {
    .user-type-selector-container {
        max-width: 210px;
        padding: 0 0 0 56px;
        margin: 0 5px 0 0;
    }

    .user-type-selector-container .iam {
        font-size: 14px;
    }

    .user-type-selector-container select, .user-type-selector-container .select2 {
        font-size: 14px;
    }

    body .select2-container--default .select2-selection--single .select2-selection__rendered {
        line-height: 2.4;
    }

    body .select2-results__option {
        font-size: 14px;
    }

    .user-type-container .user-type-item {
        min-height: 180px;
    }

    .user-type-container .user-type-item .name {
        font-size: 17px;
        bottom: -13px;
        line-height: 1;
        max-width: 120px;
    }

    section#archive-news .archive-news-container.list .article-item .article-item-content .article-item-no-page-content {
        padding: 0;
    }
}

@media only screen and (max-width: 380px) {
    .archive-news-items.list .news-item .news-item-content .learn-more {
        font-size: 12px;
    }

    section#masthead .mh-caption-wrap h2 {
        font-size: 30px;
    }

    .pb-section-title, .single-article-content .main-content > h3,
    .page-regular-content h3 {
        font-size: 30px;
    }

    section[pb-section] p,
    section[pb-section] li,
    .single-article-content .main-content p,
    .single-article-content .main-content li,
    .page-regular-content p,
    .page-regular-content li {
        font-size: 18px;
    }

    .pb-section-subtitle, .page-regular-content h4 {
        font-size: 18px;
    }

    .single-article-content .article-thumbnail.post-video svg {
        font-size: 36px;
    }

    .single-article-content .article-thumbnail,
    .single-article-content div.article-thumbnail.post-gallery {
        height: 240px;
    }

    .upcoming-webinar > h3 {
        font-size: 40px;
        margin-bottom: 15px;
        padding-bottom: 15px;
    }

    .upcoming-webinar > h4 {
        font-size: 18px;
    }

    .upcoming-webinar > h5 {
        font-size: 15px;
    }

    .live-webinar-wrap .webinar-item .webinar-thumbnail {
        height: 290px;
    }

    .webinar-item .webinar-description-wrap p {
        font-size: 17px;
    }

    .webinar-item .webinar-thumbnail {
        height: 240px;
    }

    .pagination-wrap {
        margin: 12px 0 35px 0;
    }

    .upcoming-webinar > h3 {
        font-size: 21px;
    }
}

@media only screen and (max-width: 350px) {
    .user-type-selector-container {
        max-width: 170px;
        padding: 0 0 0 52px;
        margin: 0;
    }

    .user-type-selector-container select,
    .user-type-selector-container .select2 {
        padding: 5px 26px 5px 12px;
        font-size: 12px;
        height: 36px;
    }

    body .select2-results__option {
        font-size: 12px;
    }

    #search-form #search-input {
        padding: 5px 35px 5px 15px;
        height: 36px;
    }

    #search-form {
        max-width: 105px;
    }

    body .select2-container--default .select2-selection--single .select2-selection__rendered {
        line-height: 2.5;
    }

    body .select2-container--default .select2-selection--single .select2-selection__arrow {
        top: 6px;
        right: 7px;
    }

    .logo-set .logo {
        width: 138px;
    }

    body #primary-slider,
    body.admin-bar #primary-slider {
        height: 435px;
    }

    .user-type-container .user-type-item {
        min-height: 164px;
    }

    .board-scroll-desk {
        padding: 30px 15px;
    }

    .post-date {
        font-size: 10px;
    }

    footer .logo-set .logo {
        margin: 15px 50px;
    }

    #primary-slider .slick-dots {
        bottom: 72px;
    }

    section#step-1 .general-content {
        padding: 40px 0 0;
    }

    section#archive-news .article-item .article-thumbnail,
    section#archive-news .archive-news-container.list .article-item .article-thumbnail {
        height: 200px;
    }

    .single-article-content .article-thumbnail,
    .single-article-content div.article-thumbnail.post-gallery {
        height: 220px;
    }

    .interactive-map-filter #interactive-map-state {
        width: 140px;
    }

    .page-regular-content .accordion > li > .accordion-title {
        font-size: 16px;
    }

    section[pb-section] p, section[pb-section] li,
    .single-article-content .main-content p,
    .single-article-content .main-content li,
    .page-regular-content p,
    .page-regular-content li {
        font-size: 16px;
    }

}