@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Varela+Round&display=swap');
@import './content.css';

:root {
    --font-family: Lato, -apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji"; 
    --font-family-varela: 'Varela Round', -apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";
}

body .bg-light {
    background-color: #f9f9f9 !important;
}

body {
    font-family: var(--font-family);
}

.btn-container {
    position: relative;
    z-index: 2;
    margin-top: -6.4em;
}

.container {
    max-width: 900px;
}

p {
    margin: 1rem 0 0 0;
}
p.lead {
    margin-bottom: 2rem;
    font-weight: 400;
}

.form-group label {
    font-size: 0.8rem;
}

.btn {
    margin: 2rem 0 0 0;
    text-transform: uppercase;
    border-radius: 5rem;
    text-decoration: none !important;
    padding: 0.5rem 1.5rem;
}

.btn-primary {
    background: #FF9400;   
    border-color: #fa9000;
}
.btn-secondary {
    background: #B2004B;   
    border-color: #B2004B;
}

.btn-pink {
    background: #B2004B;
    border-color: #B2004B;
    color: #fff;
}
.btn-pink:active,
.btn-pink:focus,
.btn-pink:hover {
    background: #7A0044;
    border-color: #7A0044;
    color: #fff;
}

.btn-yellow {
    background: #FF9400;
    border-color: #FF9400;
    color: #fff;
}
.btn-yellow:active,
.btn-yellow:focus,
.btn-yellow:hover {
    background: #FF6900;
    border-color: #FF6900;
    color: #fff;
}

.btn-orange {
    background: #FF6900;
    border-color: #FF6900;
    color: #fff;
}
.btn-orange:active,
.btn-orange:focus,
.btn-orange:hover {
    background: #FF9400;
    border-color: #FF9400;
    color: #fff;
}

.page-template-default.page-child h2 {
    margin-top: 3em;
}

.slick-slide {
    opacity: 0.25 !important;
}
.slick-slide.slick-current {
    opacity: 1 !important;
}

.slick-dots {
    bottom: -2.5rem !important;
}
.slick-initialized.slick-dotted {
    margin-bottom: 2.5rem !important;
}
.slick-dots li,
.slick-dots li button {
    height: auto;
    margin: 0;
    padding: 0;
    width: auto;
}
.slick-dots li button:before {
    background-color: #bababa !important;
    border-radius: 2.5px;
    display: block;
    content: "";
    height: 1.5rem;
    margin: 0 3px;
    opacity: 1;
    position: relative;
    width: 1.5rem !important;
}
.slick-dots .slick-active button:before {
    background-color: #B2004B !important;
}

.site {
    display: block;
    overflow: hidden;
    max-width: 100%;
}

.a11y .nav-link {
    color: #888;
    font-weight: 500;
}

#menu-item-1040 {
    width: 100px;
}

.header-mobile .menu-item {
    text-align: center;
}

.header-mobile .menu-item a {
    color: #ffffff;
}

.header {
    background: #7A0044;
    color: #fff;
}
.header .header-container {
    position: relative;
    max-width: 1140px;
}
    .header .header-title {
        display: block;
        font-size: 0.875rem;
        font-weight: 900;
        text-transform: uppercase;
    }
    .header .header-social {
        margin: 0.875rem 0 0 2rem;
        padding: 0;
        /*position: absolute;
        top: 50%; right: 0;
        transform: translateY(-50%);*/
    }



/**
 * ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
 * PAGES
 * ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
 */

.form-contact {
    margin-top: 1em;
}

.contact-box {
    background: #eee;
}

.contact-box p {
    padding: 1em 1.5em;
}

.contact-box figure {
    width: 100%;
    height: 200px;
}

.contact-box figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/**
 * NAVBAR
 * ----------------------------------------------------------------------------
 */

.header-container {
    display: flex;
}

.navbar {
    background: #7A0044;
    padding: 0;
}

@media (min-width: 768px) {
    /*.navbar { background: #fff; }*/
}

    /* NAVBAR NAV */
    /* +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */

    .navbar .navbar-nav {
        color: #fff;
        width: 100%;
        justify-content: flex-end;
    }
    .navbar .navbar-nav a {
        color: inherit;
        display: block;
        font-weight: 400;
        padding: 1rem;
        transition: color 0.3s ease;
    }
    .navbar .navbar-nav a:active,
    .navbar .navbar-nav a:hover,
    .navbar .navbar-nav a:focus {
        color: #FF9400;
        text-decoration: none;
    }
    .navbar .navbar-nav li {
        align-items: center;
        display: flex;
        position: relative;
    }
    .navbar .navbar-nav li li a {
        padding: 0.25rem;
        word-wrap: none;
        white-space: nowrap;
        text-transform: none;
    }
    .navbar .navbar-nav .sub-menu {
        background: #fff;
        display: none;
        margin: -1rem 0 0;
        padding: 0.75rem;
        position: absolute;
        top: 100%; left: 0;
        z-index: 1000;
    }
    .navbar .navbar-nav .current-menu-item a {
        color: #FF9400;
    }

    /* NAVBAR TOGGLE */
    /* +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */

    .navbar-toggle {
        align-items: center;
        background: transparent;
        border: 1px solid rgba(255,255,255,.3);
        box-shadow: none;
        display: flex;
        height: 52px;
        justify-content: center;
        padding: 0;
        width: 52px;
    }
    .navbar-toggle .navbar-toggler-icon {
        transform: scale(1.2);
    }


/**
 * FOOTER
 * ----------------------------------------------------------------------------
 */

.footer a {
    color: #fff;
}
.footer a:active,
.footer a:focus,
.footer a:hover {
    color: #B2004B;
}

.footer hr {
    border-color: rgba(255,255,255,0.5);
}

.footer .footer-contact,
.footer .footer-copyright,
.footer .footer-sitemap {
    background: #999;
    color: #fff;
    font-size: 0.875rem;
}
    .footer .footer-title {
        display: block;
        font-weight: 900;
        text-transform: uppercase;
    }

    .footer .footer-sitemap li a {
        display: block;
        font-weight: 900;
        text-transform: uppercase;
    }
    .footer .footer-sitemap li li a {
        font-weight: 400;
        padding: 0.5rem 0 0;
        text-transform: none;
    }
    .footer .footer-sitemap li .sub-menu {
        list-style: none;
        margin: 0;
        padding: 0;
    }

    .footer .footer-finish .finish-btn {
        color: #FF9400;
        font-weight: bold;
    }
    .footer .footer-finish .finish-btn:active,
    .footer .footer-finish .finish-btn:focus,
    .footer .footer-finish .finish-btn:hover {
        color: #FF6900;
    }


/**
 * MODAL
 * ----------------------------------------------------------------------------
 */

.modal {
    background-color: rgba(122, 0, 68, 0.85);
    color: #fff;
}
.modal .modal-dialog {
    align-items: flex-start;
    display: flex;
    min-height: 100%;
}
.modal .modal-content {
    background: transparent;
    border: 0;
    padding: 3rem 0;
}

    .modal .modal-head {
        border: 0;
        display: block;
        padding: 0 0 0;
        position: relative;
        text-align: center;
    }
    .modal .modal-head h2,
    .modal .modal-head h3 {
        color: #fff;
    }
    .modal .modal-head h3 {
        font-weight: 400;
        margin-bottom: 2rem;
    }
    .modal .modal-head .close {
        color: #FF9400;
        font-size: 0.875rem;
        font-weight: bold;
        float: none;
        margin: 0 0 1rem;
        opacity: 1;
        padding: 1rem 0 0;
        position: relative;
        text-shadow: none;
        text-transform: uppercase;
    }

    .modal .modal-body {
        border: 0;
        border-radius: 1rem;
        overflow: hidden;
        padding: 0;
    }

    .modal .modal-rows { margin: -2rem -1rem 0; }
    .modal .modal-cols { padding: 2rem 1rem 0;}

    /* MENU */
    /* --------------------------------------------------------------------- */

    .modal-menu .modal-head .close {
        left: 50%;
        transform: translateX(-50%);
    }
    .modal-menu .modal-dialog {
        max-width: 400px !important;
    }
    .modal-menu .modal-nav .nav-link {
        color: #fff;
        font-size: 1.8rem;
        padding: 0;
        text-align: center;
    }
    .modal-menu .modal-nav .border-t-1 {
        border-top: 1px solid rgba(255,255,255,0.5);
    }

/**
 * ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
 * PARTS / TEMPLATE / HEADING
 * ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
 */

.heading {
    align-items: center;
    /*
    background: #000 no-repeat 50% 50%;
    background-image: url(../images/bg.png);
    background-size: cover;
    color: #fff;
    min-height: 50vh;
    display: flex;
    */
    position: relative;
}

    .heading-background {
        background: #000 no-repeat 50% 50%;
        background-size: cover;
        margin: 0;
        position: absolute;
        top: 0; right: 0; bottom: 0; left: 0;
    }
    .heading-container {
        position: relative;
    }

    .heading-crumb {
        color: #666;
        text-transform: uppercase;
    }
    .heading-crumb .nav-item,
    .heading-crumb .nav-link {
        color: #666;
        position: relative;
        padding-left: 0;
        margin-left: 0.6em;
    }
    .heading-crumb .nav-item::after {
        content: '/';
        position: absolute;
        top: 0.5rem; right: 0;
        display: block;
    }
    .heading-crumb .nav-link,
    .heading-crumb .nav-item:first-child {
        margin-left: 0;
    }
    .heading-crumb .nav-item:last-child {
        display: none;
    }

    .heading-title {
        color: #7A0044;
        font-family: var(--font-family-varela);
        font-weight: 400;
    }
    @media (min-width: 992px) {
        .heading-title { font-size: 3rem; }
    }
    @media (min-width:1200px) {
        .heading-title { font-size: 4rem; }
    }

    .single-publication .heading-title {
        font-size: 1.5rem;
    }    


/**
 * ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
 * PARTS / PARTS / LISTING
 * ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
 */

.listing {
    align-items: stretch;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    list-style: none;
    margin: -0.750rem -0.375rem 0;
    padding: 0 0 0 0;
}
.listing .listing-item {
    position: relative;
}
.listing .listing-item.col-20 { flex-basis: 20%; max-width: 20%; }
@media (min-width: 576px) { .listing .listing-item.col-sm-20 { flex-basis: 20%; max-width: 20%; } }
@media (min-width: 768px) { .listing .listing-item.col-md-20 { flex-basis: 20%; max-width: 20%; } }
@media (min-width: 992px) { .listing .listing-item.col-lg-20 { flex-basis: 20%; max-width: 20%; } }
@media (min-width:1200px) { .listing .listing-item.col-xl-20 { flex-basis: 20%; max-width: 20%; } }

    .listing.row { margin: -2rem -1rem 0; }
    .listing-item.col { padding: 2rem 1rem 0; }
    @media (min-width: 992px) {
        .listing.row { margin: -3rem -1.5rem 0; }
        .listing-item.col { padding: 3rem 1.5rem 0; }
    }

    .listing-title {
        color: #B2004B;
        font-family: var(--font-family-varela);
        font-size: 1.50em;
        font-weight: 900;
        text-transform: uppercase;
    }
    
.listing-pagination {
    margin-top: 2rem;
    text-align: center;
}
@media (min-width: 576px) {
    .listing-pagination { margin-top: 2.250rem; }
}
@media (min-width: 768px) {
    .listing-pagination { margin-top: 2.500rem; }
}
@media (min-width: 992px) {
    .listing-pagination { margin-top: 2.750rem; }
}
@media (min-width:1200px) {
    .listing-pagination { margin-top: 3.000rem; }
}

    .listing-pagination .btn-txt {
        display: inline-block;
        margin-top: 1rem;
        font-weight: 600;
    }

    .listing-pagination ul.page-numbers {
        background: #eee;
        border-radius: 0.5rem;
        color: #B2004B;
        display: inline-flex;
        flex-wrap: wrap;
        justify-content: center;
        list-style: none;
        margin: 0 auto;
        overflow: hidden;
        padding: 0;
        position: relative;
    }
    .listing-pagination .page-numbers {
        display: inline-block;
        font-size: 0.875rem;
        font-weight: 600;
        padding: 0.75rem 1rem;
    }
    @media (min-width: 768px) {
        .listing-pagination .page-numbers {
            font-size: 1rem;
            padding: 1rem 1rem;
        }
    }

    .listing-pagination a.page-numbers {
        color: #444;
        transition: all 0.3s ease;
    }
    .listing-pagination a.page-numbers:active, 
    .listing-pagination a.page-numbers:focus,
    .listing-pagination a.page-numbers:hover {
        color: #fff;
        background: #FF9400;
        text-decoration: none;
    }
    .listing-pagination .page-numbers.prev,
    .listing-pagination .page-numbers.next {
        display: none;
    }
    @media (min-width: 768px) {
        .listing-pagination .page-numbers.prev,
        .listing-pagination .page-numbers.next { 
            display: block;
        }
    }
    

.archive-hold .archive-team-group {
    text-align: center;
}
.archive-hold .archive-team-group .listing {
    justify-content: center;
}
.archive-hold .archive-team-group:nth-child(even) {
    background: #e5e5e5;
    margin: 3rem 0;
    padding: 3rem 0;
    position: relative;
}
.archive-hold .archive-team-group:nth-child(even)::before,
.archive-hold .archive-team-group:nth-child(even)::after {
    background: inherit;
    content: "";
    position: absolute;
    top: 0; bottom: 0; left: 100%;
    width: 100vw;
}
.archive-hold .archive-team-group:nth-child(even)::before {
    left: auto; right: 100%;
}
.archive-hold .archive-team-group:nth-child(even) .listing-title {
    margin-top: 0 !important;
}


.page-na-midia .d-flex a {
    width:16%;
}

.page-na-midia .d-flex img {
    filter: grayscale(100%);
    transition: all .3s ease;
}

.page-na-midia .d-flex a:hover img {
    filter: grayscale(0%);
}

.page-home .container,
.tax-publication-type .container,
.a-publication .container {
    max-width: 1140px;
}

#toggleFilters.btn {
    background: #f2f2f2;
    color: #444;
    border-radius: 8px; 
    transition: background-color .3s ease;
    text-align: right;
    font-weight: bold;
}

#toggleFilters.btn:active,
#toggleFilters.btn:focus,
#toggleFilters.btn:hover {
    background: #ddd;
}   

.filter-holder {
    height: 1px;
    padding: 0;
    margin: 3em 0 5em 0;
    overflow: hidden;
    transition: all .3s ease;
}


.filter-holder.visible {
    height: inherit;
    padding: 5em 0 2em 0;
}


.filter-holder h2 {
    font-size: 1.5em;
    color: #444;
    font-weight: bold;
    margin-bottom: 1em;
}

.filters-list {
    display: flex;
    padding: 0;
    flex-wrap: wrap;
    list-style: none;
}

@media (max-width: 768px) { 
    .filters-list {
        justify-content: space-around !important;
    }
}

.filters-list li {
    padding: 1em;
    background: #fff;
    border: 1px solid rgba(0,0,0,0.1);
    margin: 0 2em 2em 0;
    width: 270px;
    transition: all .3s ease;
}

.filters-list li:hover {
    background: #ddd;
}

.filters-list li p {
    margin: 0;
}

.filters-list li p.name {
    text-transform: uppercase;
    color: #444;
    font-size: 1.2em;
}

.filters-list li p.number {
    text-transform: uppercase;
    color: #999;
    font-size: 0.8em;
}

.filters-list li a {
    text-decoration: none;
}

.filters-list li img {
    float: left;
    margin: 5px 1em 0 0 ;
}

#l-videos {
    margin-top: 1.5em;
    justify-content: space-between;
}

.listing-videos .youtube-video {
    width: 100%;
}

@media (min-width: 768px) { 
    .listing-videos .youtube-video {
        width: 24%;
    }
}

.listing-videos .youtube-video img {
    background: #ddd;
    border-radius: 8px;
    width: 100%;
}

.listing-videos .youtube-video h3 {
    font-size: 1em;
    color: #444;
}

.listing-publications {
    display: grid;
    grid-template-columns: repeat(3, calc(100%/3));
    grid-gap: 0;
}

.listing-publications li {
    border: 1px solid #eee;
    position: relative;
    margin-left: -1px;
    margin-bottom: -1px;
}

.listing-publications li a {
    display: block;
    padding: 2em;
    text-decoration: none;
    width: 100%;
    height: 100%;
}

.listing-publications li h3 {
    font-size: 0.9em;
    text-transform: uppercase;
    color: #B2004B;
    font-weight: bold;
}

.listing-publications li .desc {
    font-size: 1.2em;
    color: #444;
    font-weight: bold;
}

.listing-publications li .type {
    text-transform: uppercase;
    font-weight: bold;
    font-size: 0.9em;
    color: #FF6900;
    display: inline-block;
}

.listing-publications li .type img {
    margin-right: 0.5em;
}

.listing-publications li .author {
    color: #666;
    font-size: 0.8em;
}






/**
 * ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
 * PAGES
 * ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
 */

.p-sobre-a-iniciativa {
    background: url("../images/sobre-bg.png") bottom center no-repeat;
}

.p-sobre-a-iniciativa .accordion-linhas {
    margin-top: 3em;
}

.p-sobre-a-iniciativa .accordion-linhas button {
    border: 0;
    color: #7A0044;
    background: #fff;
    font-weight: bold;
    transition: color .3s ease;
    font-size: 0.9em;
}

.p-sobre-a-iniciativa .accordion-linhas button.collapsed {
    color: #444;
}

.p-sobre-a-iniciativa .accordion-linhas button span {
    color: #b2004b;
    display: inline-block;
    margin-right: 1em;
}

.p-sobre-a-iniciativa .accordion-linhas .card {
    background: #fff;
    box-shadow: 0px 4px 4px 0px rgba(0,0,0,0.25);
    margin-bottom: 2em;
}

.p-sobre-a-iniciativa .accordion-linhas .card a {
    color: #b2004b;
}

.p-sobre-a-iniciativa .accordion-linhas .card-header {
    background: #fff;
}

.p-sobre-a-iniciativa h2 {
    font-size: 1.5em;
    color: #444;
    font-weight: bold;
    text-align: center;
}

.p-sobre-a-iniciativa .sobre-box h2 {
    text-align: left;
    font-weight: normal;
    color: #FF6900;
    margin-bottom: 1.5em;
}

.p-sobre-a-iniciativa p {
    margin-bottom: 1.5em;
}


.p-sobre-a-iniciativa .lista-consorcio {
    display: flex;
    justify-content: space-between;
    padding: 0 0 3em 0;
    border-bottom: 1px solid #eee;
}

.p-sobre-a-iniciativa .lista-consorcio li {
    width: 31%;
    background: #fff;
    box-shadow: 0px 0px 32px 0px rgba(0,0,0,0.1);
    padding: 1em 1.5em;
    text-align: center;
}

.p-sobre-a-iniciativa .lista-consorcio li span {
    color: #FF9400;
    font-size: 5em;
    font-weight: bold;
}

.p-sobre-a-iniciativa .lista-consorcio li:before {
    display: none;
}

/**
 * ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
 * PARTS / ENTRY
 * ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
 */

.entry {
    color: #444;
    display: block;
    font-size: 0.875rem;
    height: 100%;
    position: relative;
    text-align: left;
}
    .entry-title {
        display: block;
        font-size: 1.25rem;
        font-weight: 700;
        line-height: 1.3;
        margin: 0;
        transition: all 0.3s ease;
        width: 100%;
    }
    .entry-subtitle {
        color: #B2004B;
        display: block;
        font-size: 0.875em;
        font-weight: 900;
        margin-bottom: 0.5rem;
        text-transform: uppercase;
    }

    .entry-image {
        background: #7A0044 no-repeat 50% 0%;
        background-size: cover;
        border: 0.25rem solid #7A0044;
        border-radius: 1rem;
        background-blend-mode: normal;
        display: block;
        margin-bottom: 10px;
        padding-top: 100%;
        position: relative;
        transition: all 0.3s ease;
    }
    .entry-image::before {
        border: 0.25rem solid #FF9400;
        border-radius: 1rem;
        content: "";
        height: calc(100% + 0.5rem);
        position: absolute;
        top: 0; left: 0;
        transform: translate(-0.75rem, -0.75rem);
        transition: all 0.3s ease;
        width: calc(100% + 0.5rem);
    }



    .entry-category {
        border-bottom: 1px solid #e5e5e5;
        color: #666;
        display: block;
        font-size: 0.875rem;
        margin-bottom: 1rem;
        padding-bottom: 0.375rem;
        text-transform: uppercase;
    }
    
    .entry-author {
        color: #666;
        display: block;
        font-size: 1rem;
        font-weight: 700;
        margin-top: 0.75rem;
    }
    .entry-descr {
        font-size: 1.125rem;
        margin-top: 0.75rem;
    }

    .entry[href]:active,
    .entry[href]:focus, 
    .entry[href]:hover {
        color: #444;
        text-decoration: none;
    }
    .entry[href]:active .entry-title,
    .entry[href]:focus .entry-title,
    .entry[href]:hover .entry-title { 
        color: #B2004B;
    }
    .entry[href]:active .entry-image,
    .entry[href]:focus .entry-image,
    .entry[href]:hover .entry-image { 
        background-blend-mode: multiply;
    }
    .entry[href]:active .entry-image::before,
    .entry[href]:focus .entry-image::before,
    .entry[href]:hover .entry-image::before { 
        transform: translate(-0.25rem, -0.25rem);
    }


.modal-ptype-team .entry-image {
    border: 0;
    border-radius: 0;
    margin: 0;
    padding-top: 0;
    height: 100%;
    transform: translate(-1px, 0);
}
.modal-ptype-team .entry-image::before {
    display: none;
}
    


/**
 * ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
 * WIDGETS
 * ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
 */

    .widget__title {
        color: #666;
        font-family: var(--font-family-varela);
        font-size: 1.5rem;
        font-weight: 700;
        text-transform: uppercase;
    }

    .widget__title .decorated {
        position: relative;
    }

    .widget__title .text {
        position: relative;
        /*border-bottom: 5px solid #FF6900;*/
        display: inline-block;
        padding: 0 0 0.5rem;
    }

    .widget__title .text::after {
        content: '';
        position: absolute;
        top: 10px; right: -70px;
        height: 4px; width: 40px;
        background-color: #ff9400;
        border-radius: 4px;
    }

    .widget__title .text::before {
        content: '';
        position: absolute;
        top: 9px; right: -26px;
        height: 6px; width: 6px;
        background-color: #ff9400;
        border-radius: 4px;
    }

    .widget__title .decorated::after {
        content: '';
        position: absolute;
        top: 10px; left: -70px;
        height: 4px; width: 40px;
        background-color: #ff9400;
        border-radius: 4px;
    }

    .widget__title .decorated::before {
        content: '';
        position: absolute;
        top: 9px; left: -26px;
        height: 6px; width: 6px;
        background-color: #ff9400;
        border-radius: 4px;
    }

    
    .widget__descr {
        font-size: 1.125rem;
        font-weight: 400;
    }
    .widget__descr p {
        margin: 0 auto;
        max-width: 750px;
    }
    .widget__descr p + p {
        margin-top: 1em;
    }

    .widget__rows.row { margin: -2rem -1rem 0; }
    .widget__cols.col { padding: 2rem 1rem 0; }
    @media (min-width: 992px) {
        .widget__rows.row { margin: -3rem -1.5rem 0; }
        .widget__cols.col { padding: 3rem 1.5rem 0; }
    }

    .widget__cols.col-20 { flex-basis: 20%; max-width: 20%; }
    @media (min-width: 576px) { .widget__cols.col-sm-20 { flex-basis: 20%; max-width: 20%; } }
    @media (min-width: 768px) { .widget__cols.col-md-20 { flex-basis: 20%; max-width: 20%; } }
    @media (min-width: 992px) { .widget__cols.col-lg-20 { flex-basis: 20%; max-width: 20%; } }
    @media (min-width:1200px) { .widget__cols.col-xl-20 { flex-basis: 20%; max-width: 20%; } }

    /* HOME AUTHORS */
    /* +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */

    .home__authors {
        background: #FF6900 no-repeat 50% 50%;
        background-image: url(../images/bg-authors.png);
        background-size: cover;
        color: #fff;
    }
    .home__authors .widget__title {
        color: #fff;
    }

        .home__authors .author-card {
            text-align: center;
        }
        
        .home__authors .author-card .img-holder {
            border-radius: 50%;
            display: inline-block;
            overflow: hidden;
            width: 50%;
        }
        .home__authors .author-card .img-fluid {
            object-fit: cover;
        }

        .home__authors .author-card h3 {
            font-size: 1.5rem;
            font-weight: 700;
            margin: 1rem 0 0.75rem;
        }
        .home__authors .author-card p {
            font-size: 1.125rem;
        }


    /* HOME ENGAGE */
    /* +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */

    .home__engage {
        background: #7A0044;
        color: #fff;
    }
    .home__engage .widget__title {
        color: #fff;
    }

    .home__engage .engage-card {
        padding: 3em 2em;
        align-items: center;
        border-radius: 1rem;
        color: #666;
        display: flex;
        justify-content: space-between;
        flex-direction: column;
        font-size: 1rem;
        height: 100%;
        text-align: center;
    }
    .home__engage .engage-card h3 {
        color: #B2004B;
        font-family: var(--font-family-varela);
        font-size: 1.25rem;
        font-weight: 700;
        margin-top: 1.5rem;
    }
    .home__engage .engage-card svg {
        height: 89px;
        fill: #7A0044;
    }

    /* HOME ENGAGE */
    /* +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */

    


    /* HOME PARTNERS */
    /* +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */

    .home__partners .widget__title .text {
        border-color: #666;
    }

    .home__partners .partner-card {
        color: #666;
        text-align: center;
    }
    .home__partners .partner-card h3 {
        border-bottom: 1px solid #e5e5e5;
        color: #666;
        font-size: 1rem;
        font-weight: 400;
        margin: 1rem 0 0;
        padding: 0 0 0.5rem;
        text-transform: uppercase;
    }
    .home__partners .partner-card p {
        font-size: 1rem;
        margin-top: 1rem;
    }
    .home__partners .partner-card .img-holder {
        align-items: center;
        display: flex;
        justify-content: center;
        min-height: 135px;
        text-align: center;
    }
    .home__partners .partner-card .img-holder img {
        width: 100%;
        max-width: 300px;
    }


    .home__about {
        margin-bottom: 4em;
    }

    .home__about .widget__title {
        color: #333;
        margin-bottom: 3em;
    }

    .home__about .video-container {
        background: url('../images/before-home-about.png') top left no-repeat;
        background-size: contain;
    }

    .home__about .video {
        margin-top: 2em;
        display: block;
        width: 90%;
        height: 250px;
        position: relative;
    }

    .home__about .video:after {
        position: absolute;
        top: 0; left: 0;
        width: 100%; height: 100%;
        background-color: black;
        content: '';
        pointer-events: none;
        opacity: 0.2;
        z-index: 1;
        transition: opacity .3s ease;
    }

    .home__about .video svg {
        opacity: 0.5;
        color: white;
        height: 100px;
        width: 100px;
        position: absolute;
        top: calc(50% - 50px); left: calc(50% - 50px);
        z-index: 2;
        transition: opacity .3s ease;
    }

    .home__about .video:hover:after {
        opacity: 0.4;
    }

    .home__about .video:hover svg {
        opacity: 1;
    }

    @media (max-width: 768px) {
        .home__about .video {
            width: 100%;
            margin-bottom: 2em;
        }
    }

    .home__about .video img {
        object-fit: cover;
        width: 100%;
        height: 100%;
    }


    .home__about .widget__title .text:before {
        right: initial;
        left: 45px;
        top: calc(2.5em - 1px);
    }

    .home__about .widget__title .text:after {
        right: initial;
        left: 0;
        top: 2.5em;
    }

    .home__highlight .img-fluid {
        max-width: 104%;
        position: relative;
        right: 2%;
    }

    .home__highlight .box {
        position: relative;
        margin-top: -4em;
    }

    .home__highlight h2 {
        color: #444;
        font-size: 2em;
        font-weight: bold;
        padding: 1em 3em 0 3em;
    }

    .home__highlight .desc {
        font-size: 1.4em;
        padding: 0 3em;
    }

    .home__highlight .category {
        text-transform: uppercase;
        font-weight: bold;
        color: #b2004b;
    }


/*  SINGLES */
/* +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */

    .single-publication .heading-title {
        color: #444;
    }

    .single-publication .heading-descr {
        text-transform: uppercase;
        font-size: 1.1em;
    }

    .single-publication .box .entry-excerpt a,
    .single-publication .heading-descr a {
        color: #b2004b;
    }

    .single-publication h2 {
        text-transform: uppercase;
        color: #666;
        font-size: 1.5em;
        margin-bottom: 1em;
        font-weight: bold;
    } 

    .single-publication .d-lg-block .entry-excerpt {
        padding-top: 2em;
        border-top: 1px solid #f2f2f2;
    }

    .single-publication .btn-primary {
        background: #ff6900;
        border: 0;
        color: white;
    }

    .single-publication .box {
        padding: 1.5em
    }

    .single-publication .box h2 {
        font-size: 1.1em;
        margin-bottom: 0.5em;
    }

    .s-team .entry-image {
        height: 550px;
        width: 100%;
        position: relative;
        bottom: 3em;
        border: 0;
        border-radius: 0;
    }

    .s-team .entry-image::before {
        display: none;
    }

    .s-team .heading.pt-5 {
        padding-top: 0 !important;
    }

    .s-team .heading-container {
        padding: 0 !important;
    }






