/*
Theme Name: COTEC Portugal
Author: LBC
Version: 1.0
Text Domain: cotec-theme
Domain Path: /languages
*/

/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Icons
# Body
# Headings
# Custom classes
# Links
# Buttons
# Images
# Header
# Breadcrumbs
# Homepage
# Pages
# Posts
# Events
# Footer
# Others
--------------------------------------------------------------*/

/*--------------------------------------------------------------
* Icons
*------------------------------------------------------------*/

@font-face {
    font-family: 'cotec';
    src:  url('fonts/cotec.eot?ncrxoe');
    src:  url('fonts/cotec.eot?ncrxoe#iefix') format('embedded-opentype'),
      url('fonts/cotec.ttf?ncrxoe') format('truetype'),
      url('fonts/cotec.woff?ncrxoe') format('woff'),
      url('fonts/cotec.svg?ncrxoe#cotec') format('svg');
    font-weight: normal;
    font-style: normal;
    font-display: block;
  }
  
  i {
    /* use !important to prevent issues with browser extensions that change fonts */
    font-family: 'cotec' !important;
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
  
    /* Better Font Rendering =========== */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }
  
  .ctc-logged-in:before {
    content: "\e913";
  }
  .ctc-arrow-left:before {
    content: "\e900";
  }
  .ctc-arrow-right:before {
    content: "\e901";
  }
  .ctc-bars:before {
    content: "\e902";
  }
  .ctc-chevron-left:before {
    content: "\e903";
  }
  .ctc-chevron-right:before {
    content: "\e904";
  }
  .ctc-clock:before {
    content: "\e905";
  }
  .ctc-close:before {
    content: "\e906";
  }
  .ctc-cotec:before {
    content: "\e907";
  }
  .ctc-download:before {
    content: "\e908";
  }
  .ctc-facebook:before {
    content: "\e909";
  }
  .ctc-graph:before {
    content: "\e90a";
  }
  .ctc-linkedin:before {
    content: "\e90b";
  }
  .ctc-list:before {
    content: "\e90c";
  }
  .ctc-play:before {
    content: "\e90d";
  }
  .ctc-search:before {
    content: "\e90e";
  }
  .ctc-speaker:before {
    content: "\e90f";
  }
  .ctc-twitter:before {
    content: "\e910";
  }
  .ctc-user:before {
    content: "\e911";
  }
  .ctc-youtube:before {
    content: "\e912";
  }  
  
/*--------------------------------------------------------------
 * Body
 *------------------------------------------------------------*/

html {
    scroll-behavior: smooth;
} 

body {
    font-family: 'Roboto', sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: normal;
}

h1 {font-size: 1.75rem;}
h2 {font-size: 1.625rem;}
h3 {font-size: 1.5rem;}
h4 {font-size: 1.375rem;}
h5 {font-size: 1.25rem;}
h6 {font-size: 1.125rem;}

a,
a:visited,
a:hover,
a:active,
a:focus,
a:active:hover {
    color: inherit;
    text-decoration: none;
}

a:hover {
    color: #cd0010;
}

/*--------------------------------------------------------------
* Custom classes
*------------------------------------------------------------*/

.bg-white {
    background-color: #fff;
}
.bg-gray {
    background-color: #f4f4f4;
}
.bg-black {
    background-color: #000;
}
.bg-red {
    background-color: #cd0010;
}
.sr-only {
    border: 0;
    clip: rect(0, 0, 0, 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
}
hr {
    margin-top: 1rem;
    margin-bottom: 1rem;
    border: 0;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}
ul.list-inline {
    padding: 0;
    margin: 0;
}
ul.list-inline li {
    display: inline-block;
}
.opacity { 
    width: 100%;
    height: 100%; 
    z-index: 20;
    top: 0; 
    left: 0; 
    position: fixed; 
    background-color: rgba(0,0,0,0.5);
    transition: background-color .5s;
}
.text-center {
    text-align: center;
}
.color-red {
    color: #cd0010;
}

/*--------------------------------------------------------------
 * Links
 *------------------------------------------------------------*/
a,
a:visited,
a:hover,
a:active,
a:focus,
a:active:hover {
    color: inherit;
    text-decoration: none;
}

a:hover {
    color: #cd0010;
}

.link-hover {
    display: inline-block;
}

.link-hover::after {
    content: '';
    display: block;
    width: 0;
    height: 2px;
    background: #cd0010;
    transition: width .3s;
}

.link-hover:hover::after {
    width: 100%;
}

/*--------------------------------------------------------------
 * Buttons
 *------------------------------------------------------------*/

.btn-primary,
.btn-primary:active,
.btn-primary:focus,
.btn-primary:visited {
    color: #fff;
    background-color: #cd0010;
    border: 1px solid #cd0010;
    text-transform: uppercase;
    padding: 0.5rem 1.5rem;
    transition: all 200ms;
    outline: 0;
}

.btn-primary:hover,
.btn-primary:hover:active {
    color: #cd0010;
    background-color: #fff;
    border: 1px solid #cd0010;
}

.btn-secondary,
.btn-secondary:active,
.btn-secondary:focus,
.btn-secondary:visited {
    border: 1px solid #1c1c1c;
    text-transform: uppercase;
    padding: 0.5rem 1.5rem;
    transition: all 200ms;
    outline: 0;
}

.btn-secondary:hover,
.btn-secondary:hover:active {
    color: #fff;
    background-color: #cd0010;
    border: 1px solid #cd0010;
}

.view-more,
.view-more:active,
.view-more:focus,
.view-more:visited {
    border: 2px solid #212529;
    background: transparent;
    text-transform: uppercase;
    padding: 1rem 3rem;
    transition: all 200ms;
    outline: 0;
    font-weight: 700;
}

.view-more:hover,
.view-more:hover:active {
    color: #cd0010;
    border: 2px solid #cd0010;
}

.view-details,
.view-details:active,
.view-details:focus,
.view-details:visited {
    border: 1px solid #1c1c1c;
    text-transform: uppercase;
    padding: 0.5rem 1.5rem;
    transition: all 200ms;
    outline: 0;
}

.view-details:hover,
.view-details:hover:active {
    color: #cd0010;
    border: 1px solid #cd0010;
}

/*--------------------------------------------------------------
 * Images
 *------------------------------------------------------------*/

img {
    max-width: 100%;
    height: auto;
}

.logo-img {
    max-width: 8rem;
}

.logo-compete {
    max-width: 20rem;
}

/*--------------------------------------------------------------
 * Mobile menu
 *------------------------------------------------------------*/

.mobile-menu {
    height: 100%;
    width: 0;
    position: fixed;
    z-index: 30;
    top: 0;
    left: 0;
    background-color: #111;
    overflow-x: hidden;
    transition: 0.5s;
    font-size: 1.25rem;
}

.mobile-menu .left-column {
    width: 10rem;
    float: left;
    padding-top: 1rem;
    padding-left: 1.5rem;
}

.mobile-menu .right-column {
    margin-left: 10rem;
    text-align: right;
    padding-top: 0.5rem;
    padding-right: 1.5rem;
}

.mobile-menu i {
    font-size: 1.5rem;
    font-weight: 700;
}

.mobile-menu .close-btn {
    right: 1.5px;
    font-size: 2rem;
    color: #fff;
}

.mobile-menu .close-btn:hover {
    color: #cd0010;
}

.mobile-menu .menu {
    margin-top: 8rem;
    padding: 0 1.5rem;
}
  
.mobile-menu .menu .menu-item {
    display: block;
    color: #fff;
}

.mobile-menu .menu-item:not(:last-child) {
    margin-right: 0;
    margin-bottom: 0.5rem;
}

.mobile-menu .menu .menu-item a {
    display: inline-block;
}

.mobile-menu .current-menu-item a::after {
    content: '';
    display: block;
    height: 2px;
    background: #cd0010;
}

.mobile-menu .menu-item:not(.current-menu-item) a::after {
    content: '';
    display: block;
    width: 0;
    height: 2px;
    background: #cd0010;
    transition: width .3s;
}

.mobile-menu .menu-item:not(.current-menu-item) a:hover::after {
    width: 100%;
}

.mobile-menu hr {
    margin-top: 2rem;
    border-top: 1px solid #878787;
}

.mobile-menu .language-switcher {
    font-size: 0.875rem;
    color: #fff;
    padding: 0 1.5rem;
    border-left: none;
}

.mobile-menu .language-switcher ul {
    display: inline;
}

.mobile-menu .language-switcher .current-lang {
    font-weight: 700;
}

.mobile-menu .language-switcher li.current-lang a::after {
    content: '';
    display: block;
    height: 2px;
    background: #cd0010;
}
  
.open-btn {
    font-size: 1.25rem;
    cursor: pointer;
}

/*--------------------------------------------------------------
 * Header
 *------------------------------------------------------------*/

.site-header {
    position: sticky;
    top: 0;
    background-color: #fff;
    z-index: 10;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}   

.site-header .primary-menu,
.site-header .secondary-menu {
    font-weight: 700;
    margin-top: 3px;
}

.site-header .secondary-menu {
    text-align: right;
}

.site-header .menu {
    padding-left: 0;
    list-style: none;
}

.site-header .menu-item {
    display: inline-block;
}

.site-header .menu-item:not(:last-child) {
    margin-right: 0.5rem;
}

.site-header .primary-menu ul,
.site-header .secondary-menu ul {
    margin-bottom: 0;
}

.site-header .current-menu-item a::after {
    content: '';
    display: block;
    height: 2px;
    background: #cd0010;
}

.site-header .menu-item:not(.current-menu-item) a::after {
    content: '';
    display: block;
    width: 0;
    height: 2px;
    background: #cd0010;
    transition: width .3s;
}

.site-header .menu-item:not(.current-menu-item) a:hover::after {
    width: 100%;
}

.site-header .right-menu {
    text-align: right;
}

.site-header i {
    font-size: 1.5rem;
    font-weight: 700;
}

.site-header .site-search,
.site-header .site-login {
    vertical-align: middle;
}

.site-header .language-switcher {
    font-size: 0.875rem;
    padding: 1rem 0 1rem 1rem;
    border-left: 1px solid #ddd;
}

.site-header .language-switcher ul {
    display: inline;
}

.site-header .language-switcher .current-lang {
    font-weight: 700;
}

.site-header .language-switcher li.current-lang a::after {
    content: '';
    display: block;
    height: 2px;
    background: #cd0010;
}

/*--------------------------------------------------------------
 * Breadcrumbs
 *------------------------------------------------------------*/

#breadcrumbs {
    margin: 0;
    font-size: 0.75rem;
}

#breadcrumbs span {
    color: #7c7c7c;
}

#breadcrumbs .breadcrumb_last {
    color: #212529;
}

#breadcrumbs a {
    display: inline-block;
}

#breadcrumbs a::after {
    content: '';
    display: block;
    width: 0;
    height: 2px;
    background: #cd0010;
    transition: width .3s;
}

#breadcrumbs a:hover::after {
    width: 100%;
}

/*--------------------------------------------------------------
 * Homepage
 * 
 * // Slider
 *------------------------------------------------------------*/

.featured-slider {
    background-color: #f4f4f4;
}

.slider h1 {
    font-weight: 700;
}

.inner-slider {
    background-color: #fff;
}

.slider-image {
    max-height: 675px;
}

.featured-slider .acf__date {
    color: #cd0010;
}

.featured-slider .acf__resgistration_link {
    display: inline-block;
    margin-top: 1.5rem;
    margin-right: 0.5rem;
    font-size: 0.875rem;
}

.featured-slider .featured-event__details {
    display: inline-block;
    margin-top: 1.5rem;
    font-size: 0.875rem;
}

.tns-nav {
    text-align: right;
}

.tns-nav > [aria-controls] {
    width: 60px;
    height: 4px;
    padding: 0;
    margin: 0 5px;
    background: #ddd;
    border: 0;
}

.tns-nav > :last-child[aria-controls] {
    margin-right: 0;
}

.tns-nav > .tns-nav-active {
    background: #cd0010;
}

.tns-nav > .tns-nav-active:focus {
    outline: none;
}

/*--------------------------------------------------------------
 * Homepage
 * 
 * // Search
 *------------------------------------------------------------*/

.search-section h2 {
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 1.5rem;
}

.search-form .input-field {
    width: 100%;
}

.search-form .input-field input {
    padding: 10px 55px 10px 15px;
    border: 0;
    border-radius: 0;
    width: 100%;
}

.search-form .search-icon {
    position: absolute;
    top: 0;
    right: 0;
    display: flex;
    align-items: center;
    width: 60px;
    height: 100%;
}

.search-form .search-icon button {
    border: 0;
    background: none;
    line-height: 50%;
    outline: none;
}

.search-form .search-icon i {
    font-size: 1.5rem;
    font-weight: 700;
    color: #cd0010;
}

input[type="search"]::-webkit-search-decoration,
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-results-button,
input[type="search"]::-webkit-search-results-decoration {
  display: none;
}

.search-section ul.categories li {
    border: 2px solid #fff;
    color: #fff;
    line-height: 1.3;
    padding: .625rem 1.25rem;
    border-radius: 50vh;
    transition: all 200ms;
    margin: 0 0.5rem 0.75rem 0;
}

.search-section ul.categories li:hover {
    background: #fff;
    color: #cd0010;
}

/*--------------------------------------------------------------
 * Homepage
 * 
 * // Sections
 *------------------------------------------------------------*/

.section-title h2 {
    font-size: 1.5rem;  
}

.section-title h2::after {
    width: 60px;
    height: 2px;
    background-color: #cd0010;
    content: "";
    display: block;
}

.view-all {
    text-align: right;
    font-size: 0.875rem;
    text-transform: uppercase;
}

.view-all span {
    padding-left: 0.5rem;
    color: #cd0010;
    font-size: 1rem;
}

.view-all span i {
    font-size: 0.875rem;
    font-weight: 700;
}

/*--------------------------------------------------------------
 * Homepage
 * 
 * // Services
 *------------------------------------------------------------*/

.services-section .first-post {
    margin-top: 2rem;
}

.services-section .first-post__thumbnail img {
    border: 1px solid #ccc;
}

.services-section .first-post__title {
    font-weight: 700;
}

.services-section .post-summary {
    margin-top: 2rem;
}

/*--------------------------------------------------------------
 * Homepage
 * 
 * // Events
 *------------------------------------------------------------*/

.events-section .event-summary__thumbnail {
    margin-bottom: 1.5rem;
}

.events-section .event-summary__thumbnail img {
    border: none;
}

.events-section .event-summary__description {
    padding: 0 1.5rem;
}

.events-section .event-summary {
    background-color: #fff; 
    min-height: 19.75rem;
}

.event-summary .left-column {
    width: 2.5rem;
    float: left;
}

.event-summary .right-column {
    margin-left: 2.5rem;
}

.event-summary__month {
    color: #cd0010;
    position: block;
    font-size: 0.875rem;
    line-height: 1.125rem;
    font-weight: 700;
    display: block;
    text-transform: uppercase;
    padding-right: 1rem;
}

.event-summary__day {
    font-size: 1.45rem;
    line-height: 1.5rem;
    display: block;
}

.event-summary__title {
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.25rem;
}

.event-summary__date {
    color: #6f7287;
    font-size: 0.875rem;
    display: block;
}

.event-summary__location {
    color: #6f7287;
    font-size: 0.875rem;
}

/*--------------------------------------------------------------
 * Homepage
 * 
 * // News
 *------------------------------------------------------------*/

.news-section .first-post {
    margin-top: 2rem;
}

.news-section .first-post__thumbnail img {
    border: 1px solid #ccc;
}

.news-section .first-post__title {
    font-weight: 700;
}

/*--------------------------------------------------------------
 * Homepage
 * 
 * // Banner
 *------------------------------------------------------------*/

.banner-section h2 {
    font-weight: 700;
}

/*--------------------------------------------------------------
 * Homepage
 * 
 * // Feed
 *------------------------------------------------------------*/

.feed-section .timelines {
    text-align: center;
    margin-top: 2rem;
}

/*--------------------------------------------------------------
 * Post
 *------------------------------------------------------------*/

.post-summary__thumbnail {
    margin-bottom: 1rem;
    border: 1px solid #ccc;
}

.post-summary__category {
    color: #cd0010;
    text-transform: uppercase;
    font-size: 0.875rem;
}

.post-summary__category a {
    display: inline-block;
}

.post-summary__category a::after {
    content: '';
    display: block;
    width: 0;
    height: 2px;
    background: #cd0010;
    transition: width .3s;
}

.post-summary__category a:hover::after {
    width: 100%;
}

.post-summary__title {
    font-size: 1rem;
    font-weight: 600;
}

.post-summary__date {
    color: #6f7287;
    font-size: 0.875rem;
}

/*--------------------------------------------------------------
 * Page
 *------------------------------------------------------------*/

.page-header {
    margin-bottom: 2rem;
}

.page-header > h1 {
    font-size: 1.5rem;  
}

.page-header > h1::after {
    width: 60px;
    height: 2px;
    background-color: #cd0010;
    content: "";
    display: block;
}

.page__content a,
.event__content a,
.project__content a, 
.associate__content a {
    background: linear-gradient(to bottom, #cd0010 0%, #cd0010 100%);
    background-position: 0 100%;
    background-repeat: repeat-x;
    background-size: 2px 2px;
}

/*--------------------------------------------------------------
 * Page
 *
 * // About, Strategy
 *------------------------------------------------------------*/
 
.page-template-about .page-header > .container > .row,
.page-template-strategy .page-header > .container > .row {
    background-color: #fff;
}

.page-template-about .page-header > .container > .row > div:first-child,
.page-template-strategy .page-header > .container > .row > div:first-child {
    padding: 2.5rem;
}

.page-template-about .page-header h1,
.page-template-strategy .page-header h1 {
    font-weight: 700;
}

.page-template-about .activity-plan,
.page-template-strategy .activity-plan {
    padding-top: 0.5rem;
    border-top: 1px solid #1c1c1c;
    color: #cd0010;
    font-size: 0.875rem;
}

.page-template-about .activity-plan i,
.page-template-strategy .activity-plan i {
    font-weight: 700;
    font-size: 1.125rem;
    margin-right: 0.25rem;
}

.page-template-about .activity-plan:hover,
.page-template-strategy .activity-plan:hover {
    opacity: 0.75;
}

.page-template-strategy .page__content h2 {
    color: #cd0010;
    font-size: 1.25rem;
}

/*--------------------------------------------------------------
 * Archive
 *
 * // Events
 *------------------------------------------------------------*/

.featured-event {
    margin-bottom: 3rem;
}

.featured-event .featured-event__category a {
    display: inline-block;
    color: #7c7c7c;
    font-size: 0.875rem;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.featured-event .featured-event__category a::after {
    content: "";
    display: block;
    width: 0;
    height: 2px;
    background: #cd0010;
    transition: width 0.3s;
}

.featured-event .featured-event__category a:hover {
    color: #cd0010;
}

.featured-event .featured-event__category a:hover::after {
    width: 100%;
}

.featured-event h1.featured-event__title {
    font-weight: 700;
    line-height: 2rem;
}

.featured-event .acf__date {
    color: #cd0010;
}

.featured-event .acf__resgistration_link {
    display: inline-block;
    margin-top: 1.5rem;
    margin-right: 0.5rem;
    font-size: 0.875rem;
}

.featured-event .featured-event__details {
    display: inline-block;
    margin-top: 1.5rem;
    font-size: 0.875rem;
}

.featured-event .post__thumbnail img {
    border: 1px solid #ccc;
}

.past-events {
    margin-bottom: 2rem;
}

.past-events > h3 {
    font-size: 1.25rem;
}

.past-events > h3::after {
    width: 60px;
    height: 2px;
    background-color: #cd0010;
    content: "";
    display: block;
}

/*--------------------------------------------------------------
 * Event
 *------------------------------------------------------------*/

.event-summary__thumbnail {
    margin-bottom: 1rem;
}

.event-summary__thumbnail img {
    border: 1px solid #ccc;
}

.acf__speakers {
    margin-bottom: 2rem;
}

.acf__speakers > h3 {
    font-size: 1.25rem;
}

.acf__speakers > h3::after {
    width: 60px;
    height: 2px;
    background-color: #cd0010;
    content: "";
    display: block;
}

.project__content a {
    background: linear-gradient(to bottom, #cd0010 0%, #cd0010 100%);
    background-position: 0 100%;
    background-repeat: repeat-x;
    background-size: 2px 2px;
}

/* 
.content a {
    color: #cd0010;
    display: inline-block;
}

.content a::after {
    content: '';
    display: block;
    width: 0;
    height: 2px;
    background: #cd0010;
    transition: width .3s;
}

.content a:hover::after {
    width: 100%;
} */


.post-banner .post-share .list-inline-item:not(:last-child) {
    margin-right: 0.2rem;
}

.post-banner .post-share a {
    height: 25px;
    width: 25px;
    background: #cd0010;
    border-radius: 50%;
    display: inline-block;
    line-height: 26px;
    text-align: center;
    vertical-align: top;
}

.post-banner .post-share i {
    color: #fff;
    font-size: 0.875rem;
}

.post__content a {
    /* text-decoration: none; */
    /* border-bottom: 0.1rem dashed #cd0010; */
    /* padding-bottom: 0.1rem; */
    /* color: #cd0010; */
    /* display: inline-block; */
    background: linear-gradient(to bottom, #cd0010 0%, #cd0010 100%);
    /* background: linear-gradient(to bottom, #cd0010 0%, #e1666f 100%); */
    background-position: 0 100%;
    background-repeat: repeat-x;
    background-size: 2px 2px;
    /* transition: background-size .2s; */
}

.post__content a:hover {
    /* color: #cd0010; */
    /* background-color: #dc4c57; */
    /* background-size: 4px 50px; */
}

.post__content a::after {
    /* content: '';
    display: block;
    width: 0;
    height: 2px;
    background: #cd0010;
    transition: width .3s; */
}

.post__content a:hover::after {
    /* width: 100%; */
}

.post-sidebar h2::before {
    content: ' ';
    display: block;
    width: 80px;
    height: 2px;
    background-color: #cd0010;
    margin: 0 0 15px 1px;
}

.post-sidebar ul.latest-posts {
    list-style: none;
    margin: 0;
    padding: 0;
    position: relative;
}

.post-sidebar ul.latest-posts li {
    margin-bottom: 14px;
}

.post-sidebar ul.latest-posts li .date {
    color: #cd0010;
    position: absolute;
    font-size: 0.875rem;
    line-height: 1.125rem;
    font-weight: 700;
}

.post-sidebar ul.latest-posts li h3.title {
    font-size: 0.9375rem;
    line-height: 1.125rem;
    margin: 0;
    padding-left: 50px;
    font-weight: 700;
}

/*--------------------------------------------------------------
 * Footer
 *------------------------------------------------------------*/

.site-footer {
    margin-top: 7rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.site-footer .footer-menu .menu {
    padding-left: 0;
    list-style: none;
}

.site-footer .footer-menu .menu-item {
    display: inline-block;
}

.site-footer .footer-menu ul {
    margin-bottom: 0;
}

.site-footer .menu-item:not(:last-child) {
    margin-right: 0.5rem;
}

.site-footer .footer-menu a {
    font-size: 0.875rem;
    font-weight: 700;
    display: inline-block;
}

.site-footer .current-menu-item a::after {
    content: '';
    display: block;
    height: 2px;
    background: #cd0010;
}

.site-footer .menu-item:not(.current-menu-item) a::after {
    content: '';
    display: block;
    width: 0;
    height: 2px;
    background: #cd0010;
    transition: width .3s;
}

.site-footer .menu-item:not(.current-menu-item) a:hover::after {
    width: 100%;
}

.site-footer .social-networks li:not(:last-child) {
    margin-right: 0.25rem;
}

.site-footer .social-networks i {
    font-size: 1.5rem;
}

.site-footer .copyright {
    font-size: 0.875rem;
}

/* Footer black */

.site-footer.footer-black {
    background-color: #000;
}

.site-footer.footer-black .footer-menu {
    color: #fff;
}

.site-footer.footer-black hr {
    border-top: 1px solid #878787;
}

.site-footer.footer-black .copyright {
    color: #878787;
}

.site-footer.footer-black .social-networks {
    color: #fff;
}

.site-footer.footer-black .compete > p {
    color: #fff; 
    font-size: 0.625rem;
    margin-bottom: 0.5rem;
}

.site-footer.footer-black .copyright-lbc{
    color: #fff; 
    font-size: 0.8125rem;
}

/*--------------------------------------------------------------
 * Media queries
 *------------------------------------------------------------*/

 @media (max-width: 479px) {
    .site-header {
        /* background: yellowgreen; */
    }

    .site-header .site-logo {
        text-align: center;
    }

    .site-header .site-search {
        padding-right: 0.5rem;
    }

    .featured-slider {
        padding: 1rem;
    }

    .featured-slider .slider-content {
        padding: 0 2rem;
    }

    .slider h1 {
        font-size: 1.5rem;
        line-height: 1.75rem;
    }

    .search-section .categories {
        margin-top: 2rem;
    }

    .services-section .first-post__thumbnail {
        padding-bottom: 1.5rem;
    }

    .events-section .event-summary {
        margin-top: 2rem;
    }

    .news-section .post-summary {
        margin-top: 2rem;
    }

    .news-section .first-post__thumbnail {
        padding-bottom: 1.5rem;
    }

    .banner-section > .row {
        padding: 1.5rem 1rem 2.5rem 1rem;    
    } 

    .banner-section .banner-btn {
        margin-top: 1.25rem;
    }

    .feed-section .twitter-timeline {
        margin-top: 2rem;
    }

    .site-footer .social-networks {
        margin-top: 1rem;
    }

    .site-footer.footer-black .footer-menu {
        margin-top: 1.5rem;
    }

    .site-footer.footer-black .social-networks {
        margin-top: 0;
        margin-bottom: 0.5rem;
    }

    .site-footer.footer-black .copyright-lbc {
        margin-top: 1rem;
    }
}

@media (min-width: 480px) {
    .site-header {
        /* background: red; */
    }

    .site-header {
        padding: 0 0.5rem;
    }

    .site-header .site-logo {
        text-align: center;
    }

    .site-header .site-search {
        padding-right: 0.5rem;
    }

    .featured-slider {
        padding: 1rem;
    }

    .featured-slider .slider-content {
        padding: 0 2rem;
    }
    
    .slider h1 {
        font-size: 2rem;
        line-height: 2.5rem;
    }

    .search-section .categories {
        margin-top: 2rem;
    }

    .services-section .first-post__thumbnail {
        padding-bottom: 1.5rem;
    }

    .events-section .event-summary {
        margin-top: 2rem;
    }

    .news-section .post-summary {
        margin-top: 2rem;
    }

    .news-section .first-post__thumbnail {
        padding-bottom: 1.5rem;
    }

    .banner-section > .row {
        padding: 1.5rem 1rem 2.5rem 1rem;    
    } 

    .banner-section .banner-btn {
        margin-top: 1.25rem;
    }   

    .feed-section .twitter-timeline {
        margin-top: 2rem;
    }

    .site-footer .social-networks {
        margin-top: 1rem;
    }

    .site-footer.footer-black .footer-menu {
        margin-top: 1.5rem;
    }

    .site-footer.footer-black .social-networks {
        margin-top: 0;
        margin-bottom: 0.5rem;
    }

    .site-footer.footer-black .copyright-lbc {
        margin-top: 1rem;
    }
}

@media (min-width: 768px) {
    .site-header {
        /* background: blue; */
    }

    .site-header {
        padding: 0 1rem;
    }

    .featured-slider {
        padding: 2rem 2rem 1rem 2rem;
    }

    .featured-slider.single-slider {
        padding-bottom: 2rem;
    }

    .banner-section > .row {
        padding: 2.5rem 2rem 3.5rem 2rem;
    }

    .dg-label {margin-left: -20rem;}
}

@media (min-width: 992px) {
    .site-header {
        /* background: green; */
    }

    .site-header {
        padding: 0 1.5rem;
    }

    .site-header .site-logo {
        text-align: left;
    }

    .header-advisory .logo-img {
        max-width: 5.5rem;
    }

    .site-header .site-search,
    .site-header .site-login {
        padding-right: 0.5rem;
    }

    .featured-slider .slider-content {
        padding: 0 1.5rem 0 3rem;
    }

    .featured-slider .slider-image::before {
        position: absolute;
        content: '';
        width: 50px;
        left: -10px;
        top: 0px;
        right: 0px;
        bottom: 0px;
        background-color: #fff;
        -ms-transform: skewX(-4deg);
        -webkit-transform: skewX(-4deg);
        transform: skewX(-4deg);
    }    

    .search-section .categories {
        margin-top: 0;
    }

    .services-section .first-post__thumbnail {
        padding-bottom: 0rem;
    }

    .news-section .first-post__thumbnail {
        padding-bottom: 0rem;
    }

    .banner-section .banner-btn {
        margin-top: 0;
        text-align: right;
    }

    .banner-section > .row {
        padding: 3rem;
    }

    .feed-section .twitter-timeline {
        margin-top: 0;
    }

    .single-post .header .container-fluid .header__content > .row > div:first-child {
        padding: 2rem 4% 2rem 3%;
    }

    .site-footer .social-networks {
        text-align: right;
        margin-top: 0;
    }

    .site-footer.footer-black .footer-menu {
        margin-top: 0;
        text-align: right;
    }

    .site-footer.footer-black .social-networks {
        margin-bottom: 0;
    }

    .site-footer.footer-black .copyright-lbc {
        margin-top: 0;
        text-align: right;
    }

    .dg-label {margin-left: -30rem;}
}

@media (min-width: 1200px) {
    .site-header {
        background: #fff;
        /* background: yellow; */
    }

    .site-header {
        padding: 0 1.5rem;
    }

    .site-header .site-search,
    .site-header .site-login {
        padding-right: 1rem;
    }

    .dg-label {margin-left: initial; padding-left: 20rem;}
}

@media (min-width: 1440px) {
    .single-post .header .container-fluid .header__content > .row > div:first-child {
        padding: 2rem 4% 2rem 10%;
    }

    .dg-label {padding-left: 7.5rem;}
}

/* REVER */

.latest-posts h3 {font-family: 'Roboto', sans-serif; font-weight: 400!important;}

/* end */


/*--------------------------------------------------------------
 * Page
 *
 * // Resources
 *------------------------------------------------------------*/
 
.page-template-resources .page-header {
    position: relative;
}

.page-template-resources .page-header .container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.page-template-resources .page-header h1 {
    font-weight: 700;
    color: #fff;
}

.page-template-resources .page-header h2 {
    color: #fff;
}

.page-template-resources .page-header .view-more  {
    color: #fff;
    border: 2px solid #fff;
}

.page-template-resources .page-header .view-more:hover  {
    color: #cd0010;
    border: mone;
    background: #fff;
}

.page-template-resources .post-summary {
    margin-top: 2rem;
}

.page-template-resources .featured-section .post-summary__title {
    font-size: 1.25rem;
    line-height: 1.5rem;
}

.page-template-resources .tools-section .tool {
    margin-top: 2rem;
    display: flex;
    align-items: center;
    min-height: 14rem;
    padding: 0.5rem;
}

.post-summary__details {
    color: #6f7287;
    font-size: 0.875rem;
    text-transform: uppercase;
}

.post-summary__type,
.post-summary__premium {
    display: inline-block;
}

.post-summary__type {
    padding: 0.2rem 0rem;
}

.post-summary__premium {
    margin-left: 0.5rem;
    padding: 0.2rem 0.4rem;
    background: #a58600;
}

.post-summary__premium span {
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
}

/* HEADER ADVISORY */

/* .header-advisory .open-btn {
    margin: auto 0;
    margin-right: 2rem;
} */

/* .header-advisory .site-logo {
    padding-left: 2rem;
} */

.header-advisory span.open-btn {margin-right: 1rem;}

.header-advisory .go-back {margin-right: 1rem;}
.header-advisory .search-resources {
    display: flex;
    align-items: center;
}

.header-advisory .search-resources .categories > button {
    margin-right: 1rem;
}

.header-advisory .search-form {
    flex-grow: 9999;
}

.header-advisory .search-form .input-field input {
    border: 1px solid #111;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}

.header-advisory .categories__dropdown {
    display: none;
    position: absolute;
    background-color: #fff;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    z-index: 1;
}

.header-advisory .categories__dropdown a {
    display: inline-block;
    padding: 0.5rem 1rem;
}

.header-advisory .categories__dropdown li {display: block;}

.header-advisory .categories:hover .categories__dropdown {
    display: block;
}

.header-advisory .categories:hover .categories__dropdown a::after {
    content: '';
    display: block;
    width: 0;
    height: 2px;
    background: #cd0010;
    transition: width .3s;
}

.header-advisory .categories:hover .categories__dropdown a:hover::after {
    width: 100%;
}


.header-advisory .categories:hover .btn-primary {
    color: #cd0010;
    background-color: #fff;
}

/* .header-advisory input[type="text"]:focus {
    outline: 0;
} */

/* input {
    padding: 0 0.625rem;
    height: 2.25rem;
    font-weight: 300;
    border: 1px solid #1c1c1c;
    width: 100%;
} */

/* .services-search {
    display: flex;
}

.services-search .categories {
    flex: 1;
}

.services-search .input {
    width: 100%;
    margin: auto;
}

.services-search button {
    font-size: 0.875rem;
    display: inline-flex;
} */

/* end */

/* Page TEAM */

.page-template-team .page-banner {height: 550px;}

.page-template-team .page-banner .dg-label {margin-top: 20rem;}

.page-template-team .page-banner h1 {
    font-weight: 700;
    margin-bottom: 0;
}

.page-template-team .page-banner h2 {
    font-size: 1.25rem;
}

/* end */

/* Menu lateral */

.sidebar-menu::before {
    content: ' ';
    display: block;
    width: 80px;
    height: 2px;
    background-color: #cd0010;
    margin-bottom: 15px;
}

.sidebar-menu ul {
    list-style: none;
    padding: 0;
}

.sidebar-menu ul > li {
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 0.25rem;
}

.sidebar-menu ul > li.current_page_item  {
    color: #cd0010;
}

/* end */

/* Page Search */

.page-template-search .search-form .input-field input {
    border: 1px solid #111;
}

/* end */


/* Search results */

.search-results ul.results-list {
    list-style: none;
    padding: 0;
}

/* Share post */

.share-post li i {
    font-size: 1.5rem;
}

/* Resultados da categoria */

.archive.category ul.results-list {
    list-style: none;
    padding: 0;
}

.archive.category ul.results-list li h3,
.search-results ul.results-list h3 {
    font-size: 1.125rem;
    font-weight: 600;
}

.archive.category .post__excerpt,
.search-results .post__excerpt {
    margin-bottom: 0.5rem;
}

/* New section */

.page-template-resources .page-header {
    margin: 0;
}

.page-template-resources .promo i {
    color: #cd0010;
    font-size: 2rem;
    margin-right: 0.5rem;
}

.page-template-resources .title {
    font-weight: 600;
    font-size: 1.25rem;
}

/* Custom styles for steering */

.single-sfwd-courses .hide-status .learndash-wrapper .ld-item-list .ld-item-list-item .ld-item-list-item-preview .ld-status-icon {
    margin-right: 0;
}
.single-sfwd-courses .hide-status .learndash-wrapper .ld-status-icon {
    visibility: hidden;
    flex-basis: 0;
    width: 0;
    height: 0;
}
.single-sfwd-courses .learndash-wrapper .ld-item-list .ld-item-list-item .ld-item-list-item-preview .ld-status-icon {margin-top: 0;}

.learndash-wrapper .ld-course-navigation .ld-lesson-item.ld-is-current-lesson .ld-lesson-item-preview-heading .ld-status-incomplete, .learndash-wrapper .ld-course-navigation .ld-lesson-item.ld-is-current-lesson .ld-lesson-title .ld-status-incomplete {
    border: 2px solid #cd0010;
}

.learndash-wrapper .ld-focus .ld-focus-header .ld-user-menu .ld-user-menu-items:before {
    border-bottom: 5px solid #cd0010;
}

.search-results .post-date,
.archive.category .post-date {
    color: #6f7287;
    font-size: 0.875rem;
}

.archive.category .post__excerpt p,
.search-results .post__excerpt p {
    margin-bottom: 0.25rem;
}

.scale-img {
    overflow: hidden;
}

.scale-img img {
    transition: all 0.3s;
}

.scale-img:hover img {
    transform: scale(1.1);
}


.post__content .wp-block-file,
.event__content .wp-block-file {
    margin-bottom: 1rem;
}

.post__content blockquote.wp-block-quote {
    border-left: 2px solid #cd0010;
    padding-left: 1rem;
}

/*
* Custom login screen
*/

body.login {
    color: #212529;
    width: 100%;
    height: 100%;
    background-attachment: fixed;
    background-position: center center;
    background-size: cover; 
}

body.login div#login {
    width: 680px;
    padding: 2rem 0 0;
    background: #fff;
    box-shadow: 0 1px 1px 0 rgba(0,0,0,.1);
    margin-top: 2em;
}
 
body.login div#login h1 a {
    background-size: 8rem;
    width: 100%;
}

body.login p.message.register {
    display: none;
}

body.login div#login form {
    padding: 26px 48px 46px;
    border: 0;
    box-shadow: none;
}

body.login div#login form .input{
    background: #fff;
}

body.login div#login input {
    border-radius: 0;
    font-size: 18px;
    border-color: #000;
}

body.login label {
    font-size: 16px;
}

body.login div#login #registerform label {
    width: 100%;
}

body.login div#login #registerform select#job_title {
    margin-bottom: 1rem;
    border-radius: 0;
    font-size: 18px;
    width: 100%;
    max-width: 40rem;
    border-color: #000;
}

body.login div#login #registerform select#job_title:focus {
    color: #32373c;
}

body.login .privacy-policy-page-link {
    padding-bottom: 1.5rem;
}

body.login div#login #registerform p#reg_passmail {
    margin-top: 1rem;
}

body.login .button-primary {
    background: #fff;
    color: #000;
}

body.login .button-primary:active,
body.login .button-primary:focus,
body.login .button-primary:hover {
    background: #fff;
    color: #cd0010;
    border-color: #cd0010!important;
}

body.login .button-secondary {
    color: #000;
}

body.login .button-secondary:hover {
    color: #212529;
}

body.login .button.wp-hide-pw:focus {
    border: 0;
    box-shadow: none;
}

body.login p#nav,
body.login p#backtoblog {
    padding: 0 48px 0;
}

body.login p#nav a,
body.login p#backtoblog a {
    color: #212529;
}

body.login p#nav a:hover,
body.login p#backtoblog a:hover {
    color: #cd0010;
}

/* Speakers */
.content .speaker-summary .speaker-summary__thumbnail {
    margin-bottom: 1rem;
}
.content .speaker-summary .img-square {
    max-width: 230px;
    max-height: 230px;
}
.content h3.speaker-summary__name {
    margin: 0;
    font-size: 1.125rem;
    font-weight: 600;
}
.content .speaker-summary__description {
    color: #7c7c7c;
    font-size: 0.875rem;
}   

.content {
    min-height: 50vh;
}

/* .misha_loadmore{
	background-color: #ddd;
	border-radius: 2px;
	display: block;
	text-align: center;
	font-size: 14px;
	font-size: 0.875rem;
	font-weight: 800;
	letter-spacing:1px;
	cursor:pointer;
	text-transform: uppercase;
	padding: 10px 0;
	transition: background-color 0.2s ease-in-out, border-color 0.2s ease-in-out, color 0.3s ease-in-out;  
}
.misha_loadmore:hover{
	background-color: #767676;
	color: #fff;
} */

/* @media screen and (min-width: 48em){
	#misha_posts_wrap article{
		padding-bottom: 4em;
	}
} */


#misha_loadmore {
    text-align: center;
    border: 2px solid #212529;
    background: transparent;
    text-transform: uppercase;
    padding: 1rem 3rem;
    transition: all 200ms;
    outline: 0;
    font-weight: 700;
    width: 20%;
    margin: auto;
}

#misha_loadmore:hover {
    color: #cd0010;
    border: 2px solid #cd0010;
    cursor: pointer;
}

/* #misha_loadmore{
	background-color: #ddd;
	border-radius: 2px;
	display: block;
	text-align: center;
	font-size: 14px;
	font-size: 0.875rem;
	font-weight: 800;
	letter-spacing:1px;
	cursor:pointer;
	text-transform: uppercase;
	padding: 10px 0;
	transition: background-color 0.2s ease-in-out, border-color 0.2s ease-in-out, color 0.3s ease-in-out;
}
#misha_loadmore:hover{
	background-color: #767676;
	color: #fff;
}
#misha_filters {
    display: flex;
    justify-content: space-between;
    padding: 3px 3px 3px 20px;
    margin: 7px 0 40px 0;
    border: 1px solid #bbb;
    -webkit-border-radius: 3px;
    border-radius: 3px;
}
#misha_filters select {
    height: 2.56em;
}
#misha_filters label {
    font-weight: 300;
    margin: 8px 0 0;
}
#misha_filters button {
    padding: 0 25px;
    width: 152px;
} */

.acf__map {
    color: #cd0010;
    text-transform: uppercase;
    font-size: 0.875rem;
    margin-top: 1rem;
}

.acf-map {
    width: 100%;
    height: 400px;
    margin-top: 5rem;
}

.modal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 40; /* Sit on top */
    padding-top: 100px; /* Location of the box */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgb(0,0,0); /* Fallback color */
    background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}

/* Modal Content */
.modal-content {
    background-color: #fefefe;
    margin: auto;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
}

/* The Close Button */
.close {
    color: #aaaaaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.close:hover,
.close:focus {
    color: #000;
    text-decoration: none;
    cursor: pointer;
}

/* Dropdown menu */
.site-header .menu-item-has-children ul.sub-menu {
    display: none;
    position: absolute;
    background-color: #fff;
    padding-left: 0;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    z-index: 1;
}

.site-header .menu-item-has-children ul.sub-menu li {
    display: block;
}

.site-header .menu-item-has-children ul.sub-menu a {
    display: inline-block;
    padding: 0.5rem 1rem;
}

.site-header .menu-item-has-children:hover .sub-menu {
    display: block;
}

.site-header .menu-item-has-children:hover .btn-primary {
    color: #cd0010;
    background-color: #fff;
}

.entity__image {
    display: flex;
    align-items: center;
    min-height: 10rem;
    padding: 0.5rem;
}

.entity__name {
    text-align: center;
    font-weight: 700;
}

.single-ctc-project .header .header__content>.row {
    background-color: #fff;
}

.single-ctc-project .header .header__content>.row>div:first-child {
    padding: 2.5rem;
}

.single-ctc-project .header h1.post__title {
    font-weight: 700;
    line-height: 2rem;
}

.go-back {
    font-size: 0.875rem;
    color: #7c7c7c;
}

.go-back i {
    font-size: 0.75rem;
    font-weight: 700;
    margin-right: 0.25rem;
}

.go-back a  {
    display: inline-block;
}

.go-back a::after {
    content: '';
    display: block;
    width: 0;
    height: 2px;
    background: #cd0010;
    transition: width .3s;
}

.go-back a:hover::after {
    width: 100%;
}

.speeches {
    font-size: 0.875rem;
    color: #7c7c7c;
}

.speeches i {
    font-size: 0.75rem;
    font-weight: 700;
    margin-left: 0.25rem;
}

.speeches a  {
    display: inline-block;
}

.speeches a::after {
    content: '';
    display: block;
    width: 0;
    height: 2px;
    background: #cd0010;
    transition: width .3s;
}

.speeches a:hover::after {
    width: 100%;
}

.page-template-team .member__image img,
.page-template-team .img-square {
    max-width: 200px;
    max-height: 200px;
}

.page-template-board .member__image img,
.page-template-board .img-square {
    max-width: 180px;
    max-height: 180px;
}

.page-template-board .member.president {
    border: none;
    min-height: 0;
}

.page-template-board .member.president .credit {
    color: #7c7c7c;
    font-size: .75rem;
}

.page-template-team .member {
    border: 1px solid #ccc;
    min-height: 24rem;
}

.page-template-board .member {
    border: 1px solid #ccc;
    min-height: 23rem;
}

.page-template-team .member img,
.page-template-board .member img {
    border-radius: 50%;
}

.page-template-board .member.president .member__name h3 {
    line-height: 1.75rem;
    margin-bottom: .5rem;
}

.page-template-team .member .member__name h3,
.page-template-board .member .member__name h3 {
    margin: 0;
    font-size: 1.125rem;
    font-weight: 600;
}

.page-template-team .member .member__position,
.page-template-board .member .member__position {
    color: #7c7c7c;
    font-size: 0.875rem;
}

.page-template-team .member .member__linkedin {
    font-size: 1.25rem;
}

.page-template-contacts .wpcf7 label {
    width: 100%;
    text-transform: uppercase;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.page-template-contacts .wpcf7 input:not([type="submit"]),
.page-template-contacts .wpcf7 textarea {
    width: 100%;
    border: 1px solid #000;
    margin-top: 0.5rem;
    padding: 0.5rem;
}

.page-template-contacts .wpcf7-submit {
    color: #fff;
    background-color: #cd0010;
    border: 1px solid #cd0010;
    text-transform: uppercase;
    padding: 0.5rem 1.5rem;
    transition: all 200ms;
    outline: 0;
}

.page-template-contacts .wpcf7-submit:hover,
.page-template-contacts .wpcf7-submit:active {
    color: #cd0010;
    background-color: #fff;
    border: 1px solid #cd0010;
}

.page-template-contacts span.wpcf7-not-valid-tip {
    color: #cd0010;
}

.page-template-contacts div.wpcf7-response-output {
    margin: 0;
    margin-top: 2rem;
}

.projects-section {
    margin-bottom: 2rem;
}

.projects-section > h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #cd0010;
}

.single-ctc-event .site-footer {
    margin-top: 0;
}

.single-ctc-project .header .share-post {
    margin-top: 3rem;
}

.documents h2 {
    font-size: 1.25rem;
    font-weight: 600;
}

.documents hr:last-child {
    display: none;
}

.documents a {
    color: #cd0010;
    font-size: 0.875rem;
}

.documents a:hover {
    opacity: 0.75;
}

.documents i {
    font-weight: 700;
    font-size: 1.125rem;
    margin-right: 0.25rem;
}

.documents img {
    border: 1px solid #ccc;
}

.page-template-board .sub-title {
    margin-bottom: 2rem;
}

.page-template-board .sub-title > h2 {
    font-size: 1.25rem;
}

.page-template-board .sub-title > h2::after {
    width: 60px;
    height: 2px;
    background-color: #cd0010;
    content: "";
    display: block;
}

video {
    border: 1px solid #ccc;
}

video:focus {
    outline: 0;
}

.single-ctc-project .header .post__category a {
    display: inline-block;
    color: #7c7c7c;
    font-size: 0.875rem;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.single-ctc-project .header .post__category a::after {
    content: "";
    display: block;
    width: 0;
    height: 2px;
    background: #cd0010;
    transition: width 0.3s;
}

.single-ctc-project .header .post__category a:hover {
    color: #cd0010;
}

.single-ctc-project .header .post__category a:hover::after {
    width: 100%;
}

.archive.category .results-list img,
.search-results .results-list img {
    border: 1px solid #ccc;
}

.archive.category .results-list hr:last-child,
.search-results .results-list hr:last-child {
    display: none;
}

.page-template-board .bg-gray .container>.row {
    background-color: #fff;
    padding: 2.5rem;
}

.page-template-board .member.president .member__name h3 {
    font-size: 1.5rem;
}

.page-template-strategy .page-header h2 {
    font-size: 1.25rem;
}

.page-template-associates ul.associates,
.post-type-archive-ctc-associate ul.associates {
    list-style: none;
    padding: 0;
}

.page-template-associates ul.associates li,
.post-type-archive-ctc-associate ul.associates li {
    border: 1px solid #ccc;
}

.page-template-associates input.search-term,
.post-type-archive-ctc-associate input.search-term {
    font-size: 1.25rem;
    padding: 20px;
    border: 0;
    border-radius: 0;
    width: 100%;
}

.page-template-associates select,
.post-type-archive-ctc-associate select,
.page-template-explore select {
    padding: 20px 10px;
    border: 0;
    border-radius: 0;
    width: 100%;
}

.page-template-associates ul.associates li,
.post-type-archive-ctc-associate ul.associates li {
    position: relative;
}

.page-template-associates ul.associates li .associate__logo,
.post-type-archive-ctc-associate ul.associates li .associate__logo {
    display: flex;
    align-items: center;
    min-height: 10rem;
    /* padding: 0.5rem; */
}

.page-template-associates ul.associates li .overlay,
.post-type-archive-ctc-associate ul.associates li .overlay {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100%;
    width: 100%;
    opacity: 0;
    transition: .5s ease;
    background-color: #cd0010;
}
  
.page-template-associates ul.associates li:hover .overlay,
.post-type-archive-ctc-associate ul.associates li:hover .overlay {
    opacity: 1;
}
  
.page-template-associates ul.associates li .overlay .associate__name>h3,
.post-type-archive-ctc-associate ul.associates li .overlay .associate__name>h3 {
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    width: 95%;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    text-align: center;
}

.page-template-associates ul.associates li .overlay .associate__name>p,
.post-type-archive-ctc-associate ul.associates li .overlay .associate__name>p {
    color: #fff;
    font-size: 0.8125rem;
    position: absolute;
    top: 85%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    text-align: center;
}

.page-template-associates ul.associates li .overlay .associate__name>p i,
.post-type-archive-ctc-associate ul.associates li .overlay .associate__name>p i {
    font-weight: 700;
    font-size: 0.6875rem;
    margin-left: 0.25rem;
}

.page-template-associates ul.associates li.no-logo .associate__logo,
.post-type-archive-ctc-associate ul.associates li.no-logo .associate__logo {
    display: flex;
    align-items: center;
    min-height: 10rem;
    padding: 0.5rem;
}

.page-template-associates ul.associates li.no-logo .associate__logo h3,
.post-type-archive-ctc-associate ul.associates li.no-logo .associate__logo h3 {
    font-size: 1rem;
    font-weight: 600;
    width: 95%;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    text-align: center;
}

.single-ctc-associate .header .header__content>.row {
    background-color: #fff;
}

.single-ctc-associate .header .header__content>.row>div:first-child {
    padding: 2.5rem;
}

.single-ctc-associate .header h1.post__title {
    font-weight: 700;
    line-height: 2rem;
}

.single-ctc-associate .content .post__thumbnail {
    padding: 0.5rem 0rem;
    border-top: 1px solid #1c1c1c;
    border-bottom: 1px solid #1c1c1c;
    margin-bottom: 2rem;
}

.hide-status .learndash-wrapper .ld-tabs {
    margin: 0;
}

.spinner-loader {
    border: 5px solid #f3f3f3;
    -webkit-animation: spin 1s linear infinite;
    animation: spin 1s linear infinite;
    border-top: 5px solid #555;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    margin: auto;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.page-template-associates .search-container input.search-term:focus,
.post-type-archive-ctc-associate .search-container input.search-term:focus {
    outline: none;
} 

/* .page-template-associates .search-container select:focus {
    outline: none;
} */

.single-sfwd-courses .learndash-wrapper .ld-status,
.single-sfwd-courses .learndash-wrapper .ld-button {
    border-radius: 0;
}

.archive.category .post-type,
.search-results .post-type {
    padding: 0.1rem 0.4rem;
    background: #767676;
    color: #fff;
    font-size: 0.75rem;
    display: inline-block;
    margin-bottom: 0.5rem;
}

.archive.category .acf__date,
.search-results .acf__date {
    color: #cd0010;
}

.associates-list {
    min-height: 50vh;
}

.single-ctc-associate .post-sidebar span {
    display: block;
}

mark.searchwp-highlight {
    background: unset;
    font-weight: 700;
}

.archive.category ul.results-list li h3>mark.searchwp-highlight:hover, 
.search-results ul.results-list h3>mark.searchwp-highlight:hover {
    color: #cd0010;
}

.archive.category ul.results-list li h3:hover>mark.searchwp-highlight, 
.search-results ul.results-list h3:hover>mark.searchwp-highlight {
    color: #cd0010;
}

.archive.category ul.results-list li h3:active mark.searchwp-highlight, 
.search-results ul.results-list li h3:active mark.searchwp-highlight {
    color: inherit;
}

.search-form .input-field input:focus {
    outline: none;
}

.nav-links {
    display: none;
}

.site-login i.ctc-logged-in {
    color: #cd0010;
}

.single-sfwd-courses .ld-course-status-segment.ld-course-status-seg-action.status-free span.ld-course-status-label {display: none!important;}
.ld-course-status-segment.ld-course-status-seg-action.status-free {margin: auto;}

.single-ctc-associate .header__content .associate__type {color: #7c7c7c; font-size: .875rem;}
.single-ctc-associate .header__content .associate__type span {color: #212529; font-size: .875rem;}
.single-ctc-associate .header__content .associate__activity_sector {color: #7c7c7c; font-size: .875rem;}
.single-ctc-associate .header__content .associate__activity_sector span {color: #212529; font-size: .875rem;}
.single-ctc-associate .header__content .associate__location {color: #7c7c7c; font-size: .875rem;}
.single-ctc-associate .header__content .associate__location span {color: #212529; font-size: .875rem;}

#cookies-policy-modal {bottom: 1rem; right: 1rem; left: initial; margin: 0; padding: 0; position: fixed; z-index: 15;}
.cookies-policy {background-color: #fff; padding: 1.25rem 1.25rem; border: 2px solid #cd0010; max-width: 29rem; font-size: 0.875rem;}
.cookies-policy h3 {font-size: 1.25rem; font-weight: 600;}
.cookies-policy a {background: linear-gradient(to bottom, #cd0010 0%, #cd0010 100%); background-position: 0 100%; background-repeat: repeat-x; background-size: 2px 2px}
.cookies-policy button {color: #fff; background-color: #cd0010; border: 1px solid #cd0010; padding: 0.5rem 1.5rem; transition: all 200ms; outline: 0;}
.cookies-policy button:hover {color: #cd0010; background-color: #fff; border: 1px solid #cd0010;}


#show-contacts {color: #cd0010; text-transform: uppercase; font-size: 0.875rem; margin-top: 1rem; cursor: pointer;}
#associate-contacts .spinner-loader {margin: 0; width: 30px; height: 30px;}

img.logo-rede-pme-inovacao {max-width: 5rem; margin-top: 1.5rem;}

.logout {
    position: relative;
    display: inline-block;
}

.logout span {
    visibility: hidden;
    width: 6rem;
    background-color: #fff;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    text-align: center;
    font-size: .875rem;
    padding: .25rem .5rem;

    position: absolute;
    z-index: 1;
    top: 100%;
    left: 50%;
    margin-left: -3rem;
}

.logout:hover span {
    visibility: visible;
}

/*-------------------------------------------------------------
* LearnDash
*------------------------------------------------------------*/
.learndash-wrapper .wpProQuiz_content .wpProQuiz_button {border-radius: 0;}
.learndash-wrapper .wpProQuiz_content .wpProQuiz_questionListItem label {border: 1px solid #ddd; border-radius: 0;}
.learndash-wrapper .wpProQuiz_content .wpProQuiz_questionListItem label.is-selected {border-color: #cd0010;}
.learndash-wrapper .wpProQuiz_points, .learndash-wrapper .wpProQuiz_content .wpProQuiz_response {background-color: transparent; border: 0; color: #1c1c1c;}
.learndash-wrapper .ld-quiz-actions input[name="reShowQuestion"], .learndash-wrapper .ld-quiz-actions input[name="restartQuiz"] {background: transparent; color: #1c1c1c; border: 1px solid #1c1c1c;}
.learndash-wrapper .ld-quiz-actions input[name="reShowQuestion"]:hover, .learndash-wrapper .ld-quiz-actions input[name="restartQuiz"]:hover {color: #fff; border: 1px solid #cd0010; opacity: initial;}
.learndash-wrapper .wpProQuiz_content a#quiz_continue_link {border-radius: 0;}
.learndash-wrapper .ld-content-actions .ld-content-action {text-align: center;}
.hide-status .learndash-wrapper .ld-content-actions .ld-content-action {align-self: center;}
.learndash-wrapper .ld-status {border-radius: 0;}
.learndash-wrapper .ld-focus .ld-focus-header .ld-brand-logo {background-repeat: no-repeat; margin-left: 1rem;}
.learndash-wrapper .ld-table-list {border-radius: 0;}
.learndash-wrapper .ld-table-list.ld-no-pagination {border-bottom: 1px solid #e2e7ed;}
.learndash-wrapper .ld-table-list .ld-table-list-items {border-left: 1px solid #e2e7ed; border-right: 1px solid #e2e7ed;}
.learndash-wrapper .ld-alert {border-radius: 0;}
.learndash-wrapper .btn-join, .learndash-wrapper #btn-join {border-radius: 0;}

.banner-section img {max-width: 180px;}
.banner-section p {margin-bottom: 0;}

.search-resources form.search-form {margin-bottom: 0;}

/*-------------------------------------------------------------
* Instant Access
*------------------------------------------------------------*/
#instant-access {
    top: 0;
    left: 50%;
    width: 50%;
    height: auto;
    margin-top: 12em;
    margin-left: -25%;
    background-color: #fff;
    position: absolute;
    z-index: 999;
    padding: 1.25em 1.25em;
    border: 2px solid #cd0010;
    font-size: 0.875rem;
}
#instant-access h1 {font-weight: 700; font-size: 1.5em;}
#instant-access {font-size: 1em;}
#instant-access .required {color: #cd0010;}
#instant-access form label.inline {display: inline;}
#instant-access form .form-group {margin-bottom: 1.75em;}
#instant-access form .form-group p {margin-bottom: .5em;}
#instant-access form input:not([type="submit"]):not([type="checkbox"]) {width: 100%; border: 1px solid #000; padding: .5em;}
#instant-access form input[type="checkbox"] {margin-right: .25em;}
#instant-access form input[type="submit"] {color: #fff; background-color: #cd0010; border: 1px solid #cd0010; padding: .5em 1em; transition: all 200ms;}
#instant-access form input[type="submit"]:hover {color: #cd0010; background-color: #fff; border: 1px solid #cd0010;}
#instant-access .form-errors {background-color: #f4f4f4; padding: .5em 1em; margin-bottom: 1.5em;}

/*-------------------------------------------------------------
* Login, Registration, Edit profile
*------------------------------------------------------------*/
.page .container.min-vh {min-height: 50vh;}
.page .login-message {background-color: #f4f4f4; padding: .5em 1em; margin-bottom: 1.5em;}
.page .save-message {background-color: #f4f4f4; padding: .5em 1em; margin-bottom: 1.5em;}
.page form#loginform label {width: 100%; text-transform: uppercase; font-size: 0.875rem; font-weight: 600; margin-bottom: 0;}
.page form#loginform input[type="text"] {width: 100%; border: 1px solid #000; margin-top: 0.5rem; padding: 0.5rem;}
.page form#loginform input[type="password"] {width: 100%; border: 1px solid #000; margin-top: 0.5rem; padding: 0.5rem;}
.page form#loginform input#wp-submit {color: #fff; background-color: #cd0010; border: 1px solid #cd0010; text-transform: uppercase; padding: 0.5rem 1.5rem; transition: all 200ms; outline: 0; margin-top: 1em;}
.page form#loginform input#wp-submit:hover {color: #cd0010; background-color: #fff; border: 1px solid #cd0010;}
.page form#registo .form-group {margin-bottom: 1em;}
.page form#registo span.required, .page span.required {color: #cd0010;}
.page form#registo label.inline {display: inline;}
.page form#registo label {width: 100%; text-transform: uppercase; font-size: 0.875rem; font-weight: 600; margin-bottom: 0;}
.page form#registo input[type="text"] {width: 100%; border: 1px solid #000; margin-top: 0.5rem; padding: 0.5rem;}
.page form#registo input[type="email"] {width: 100%; border: 1px solid #000; margin-top: 0.5rem; padding: 0.5rem;}
.page form#registo input[type="password"] {width: 100%; border: 1px solid #000; margin-top: 0.5rem; padding: 0.5rem;}
.page form#registo input[type="checkbox"] {margin-right: .25em;}
.page form#registo input[type="checkbox"].show-password {margin-top: .5em;}
.page form#registo span.show-password {font-size: .875em;}
.page form#registo span.password-details {font-size: .875em; font-style: italic;}
.page form#registo select {width: 100%; border: 1px solid #000; margin-top: 0.5rem; padding: 0.5rem;}
.page form#registo a {background: linear-gradient(to bottom, #cd0010 0%, #cd0010 100%); background-position: 0 100%; background-repeat: repeat-x; background-size: 2px 2px;}
.page form#registo input#submit {color: #fff; background-color: #cd0010; border: 1px solid #cd0010; text-transform: uppercase; padding: 0.5rem 1.5rem; transition: all 200ms; outline: 0; margin-top: 1em;}
.page form#registo input#submit:hover {color: #cd0010; background-color: #fff; border: 1px solid #cd0010;}

