@import url('https://fonts.googleapis.com/css2?family=Merriweather:ital,wght@0,300;0,400;0,700;1,400&family=Inter+Tight:ital,wght@0,100;0,300;0,400;0,700;0,800;1,100;1,300;1,400;1,700;1,800&display=swap');
:root{
    --color-white : #fff;
    --background-color : #f8f8f8;
    --background-box : #fff;
    --background-box-2 : #e0e0e0;
    --grey-light : #e5e5e5;
    --grey-light-2 : #9e9d9d;
    --grey-light-3 : #dcdcdc;
    --grey-color : #222;
    --grey-color_2: #2220;
    --grey-overlay : rgba(0, 0, 0, 0.356);
    --primary-color : #fe9611;
    --secundary-color : #ec8117;
    --color-alt-orange:#ffd00041;
    --color-text: #717171;
    --color-subgrey: #00000000;
    --color-subgrey-2: #00000031;
}
.dark-mode:root{
    --background-color : hsl(0, 0%, 7%);
    --grey-light : #222;
    --grey-color : #ccc;
    --color-subgrey-2: #717171;
    --background-box : #1c1c1c;
    --background-box-2 : #2c2c2c;
}
* {
    font-family: 'Inter Tight', sans-serif;
    box-sizing: border-box;
    padding: 0;
    margin: 0;
    outline: 0;
  }
  ul{
    padding: 0;
    margin: 0;
    list-style: none;
  }
  body, html {
    background: var(--background-color);
    text-rendering: optimizeLegibility !important;
    -webkit-font-smoothing: antialiased !important;
    height: 100%;
    width: 100%;
  }
h1{
    letter-spacing: 0.5px;
    line-height: 1em;
}
hr{
    border: 1px solid var(--grey-light);
}
a{
    text-decoration: none;
}
  .centered-mid{
      max-width: 1370px;
      width: 100%;
      margin: 0 auto;
  }
  .centered-small{
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
}
header .top-line-menu{
    display: flex;
    align-items: center;
    justify-content: end;
    height: 25px;
    width: 100%;
}
header .top-line-menu ul{
    display: flex;
    list-style: none;
}
header .top-line-menu ul li a{
    font-size: .8em;
    padding: 5px;
    color: var(--grey-color);
    text-decoration: none;
}
header .top-line-menu ul li a:hover{
    color: var(--primary-color);
}
header .box-logo{
    display: flex;
    align-items: center;
    justify-content: center;
    height: 60px;
}
header .box-logo img{
    width: 245px;
}
header .primary-menu{
    width: 100%;
    background-color: var(--primary-color)
}
.primary-menu .content-primary-menu{
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 55px;
}
.primary-menu .content-primary-menu .menu-button{
    position: relative;
    width: 100%;
    height: 50px;
    overflow: hidden;
}
.primary-menu .content-primary-menu .menu-button .menu_top{
    position: absolute;
    display: block;
    cursor: pointer;
    height: 50px;
    width: 30px;
    transition: all 220ms ease-in-out;
    display: flex;
    align-items: center;
    padding-left: 10px;
    z-index: 10;
}
.primary-menu .content-primary-menu .menu-button .dropmenu{
    position: absolute;
    display: flex;
    padding-left: 90px;
    background: var(--secundary-color);
    height: 100%;
    color: var(--color-white);
    align-items: center;
    left: -100%;
    transition: all 500ms ease-in-out;
}
.primary-menu .content-primary-menu .menu-button .dropmenu ul{
    display: flex;
}
.primary-menu .content-primary-menu .menu-button .dropmenu ul li{
    display: flex;
    padding: 0 16px;
    font-size: .8em;
    height: 50px;
    align-items: center;
    text-transform: uppercase;
}
.primary-menu .content-primary-menu .menu-button .dropmenu ul li:hover{
    background-color: var(--grey-color);
}
.primary-menu .content-primary-menu .menu-button .active{
    left: 0;
}
.primary-menu .content-primary-menu .menu-button .menu_top strong{
	padding-left: 30px;
    font-size: .8em;
    font-weight: bold;
    text-transform: uppercase;
    color: var(--color-white);
}
.primary-menu .content-primary-menu .menu-button .active strong{
    display: none;
}
.primary-menu .content-primary-menu .menu-button .menu_top span,.menu_top span::after,.menu_top span::before{
    cursor: pointer;
    border-radius: 1px;
    height: .188em;
    width: 1.35em;
    background: var(--color-white);
    position: absolute;
    display: block;
    content: '';
    transition: all 220ms ease-in-out;	
}
.primary-menu .content-primary-menu .menu-button .active  span{
	background-color: transparent;
}
.primary-menu .content-primary-menu .menu-button .active  span::after{
	transform: rotate(-45deg);
}
.primary-menu .content-primary-menu .menu-button .active  span::before{
	transform: rotate(45deg);
}
.primary-menu .content-primary-menu .menu-button .active span::after,#top .active span::before{
	top:0;
}
.primary-menu .content-primary-menu .menu-button .menu_top span::after{
	bottom: -7px
}
.primary-menu .content-primary-menu .menu-button .menu_top span::before{
	top: -7px
}
.primary-menu .content-primary-menu .menu-button .active span::before{
    top:0
}
.primary-menu .content-primary-menu .search-form .content-search-input{
    position: relative;
    width: 300px;
    height: 35px;
}
.primary-menu .content-primary-menu .search-form input{
    background-color: var(--secundary-color);
    padding: 0 15px;
    width: 300px;
    height: 35px;
    border: none;
    color: var(--color-white);
    border-radius: 8px;
}
.primary-menu .content-primary-menu .search-form input::-webkit-input-placeholder  {
    color:var(--color-white);
}
.primary-menu .content-primary-menu .search-form .icon-search{
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    right: 0;
    top: 0;
    width: 40px;
    height: 35px;
    font-size: 20px;
    opacity: 0;
}

.wrapper{
    display: grid;
    grid-template-columns: 840px 1fr;
	grid-gap: 15px;
    margin-top: 15px;
    margin-bottom: 15px;
}
.wrapper .layout-l .feature-post{
    height: 340px;
    cursor: pointer;
}
.wrapper .layout-l .feature-post .content{
    position: relative;
    border-radius: 5px;
    overflow: hidden;
}
.wrapper .layout-l .feature-post .content .thumb{
    height: 340px;
    width: 100%;
}
.wrapper .layout-l .feature-post .content .post-info{
    position: absolute;
    bottom: 0;
    left: 0;
    padding-top: 35px;
    padding-bottom: 25px;
    padding-left: 25px;
    padding-right: 25px;
    transition: all 700ms ease-in-out;
    z-index: 2;
    background-image: linear-gradient( to top, var(--grey-color), var(--grey-color_2));
    width: 100%;
}
.wrapper .layout-l .feature-post .content .post-info h1 a{
    text-decoration: none;
    color: var(--color-white);
}
.wrapper .layout-l .feature-post .content .post-info .category{
    margin-top: 15px;
}
.wrapper .layout-l .feature-post .content .post-info span a{
    text-decoration: none;
    color:var(--color-white);
    padding: 6px 10px;
    background-color: var(--secundary-color);
    border-radius: 5px;
}
.wrapper .layout-l .feature-post .content .thumb img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 700ms ease-in-out;
}
.wrapper .layout-l .feature-post:hover .content .thumb img{
    transform: scale(1.03) rotate(.5deg);
}
.wrapper .layout-l .feature-post:hover .content .post-info{
    padding-bottom: 35px;
}
.wrapper .layout-l .feature-post .content .mask-post{
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: var(--color-subgrey);
    top: 0;
    transition: all 500ms ease-in-out;
}
.wrapper .layout-l .feature-post:hover .content .mask-post{
    background-color: var(--color-subgrey-2);
}

.wrapper .layout-l .podcasts-icons{
    margin-top: 20px;
    margin-bottom: 30px;
}
.wrapper .layout-l .podcasts-icons .title{
    margin-bottom: 5px;
}
.wrapper .layout-l .podcasts-icons .title h1{
    font-size: 1.1em;
    font-weight: bold;
    color: var(--primary-color);
    text-transform: uppercase;
}
.wrapper .layout-l .podcasts-icons .content-podcast-icons{
    position: relative;
    width: 100%;
    height: 150px;
    overflow: hidden;
    padding-top: 5px;
}
.wrapper .layout-l .podcasts-icons .content-podcast-icons .roll-itens{
    position: absolute;
    height: 140px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(105px, auto));
    grid-gap: 15px;
    left: 0;
}
.wrapper .layout-l .podcasts-icons .content-podcast-icons .roll-itens .item-icons{
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 105px;
    height: 140px;
    cursor: pointer;
}
.wrapper .layout-l .podcasts-icons .content-podcast-icons .roll-itens .item-icons .icon{
    position: absolute;
    top: 0;
    width: 105px;
    height: 105px;
    background-color: black;
    border-radius: 50%;
    margin-bottom: 10px;
    transition: all 300ms ease-in-out;
    overflow: hidden;
}.wrapper .layout-l .podcasts-icons .content-podcast-icons .roll-itens .item-icons .icon img{
    width: 100%;
}
.wrapper .layout-l .podcasts-icons .content-podcast-icons .roll-itens .item-icons:hover .icon {
    top: -3px;
    width: 110px;
    height: 110px;
}
.wrapper .layout-l .podcasts-icons .content-podcast-icons .roll-itens .item-icons h1{
    position: absolute;
    bottom: 0;
    font-size: 0.8em;
    text-align: center;
    color: var(--color-text);
    text-transform: uppercase;
}
.wrapper .layout-l .podcasts-icons .content-podcast-icons .roll-itens .item-icons h1 a{
    text-decoration: none;
    color: var(--color-text);
}
.wrapper .layout-l .podcasts-icons .content-podcast-icons .control-icons .control{
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 105px;
    width: 25px;
    /*background-color: rgba(255, 255, 255, 0.781);
    opacity: 0;*/
    cursor: pointer;
    transition: all 500ms ease-in-out;
}
.wrapper .layout-l .podcasts-icons .content-podcast-icons .control-icons .control i{
    background: var(--color-white);
    padding: 13px;
    border-radius: 50%;
    transition: all 300ms ease-in-out;
}
.wrapper .layout-l .podcasts-icons .content-podcast-icons .control-icons .control i:hover{
    background: var(--primary-color);
    color: var(--color-white);
}
.wrapper .layout-l .podcasts-icons:hover .content-podcast-icons .control-icons .control{
    opacity: 1;
}
.wrapper .layout-l .podcasts-icons .content-podcast-icons .control-icons #next{
    right: -35px
}
.wrapper .layout-l .podcasts-icons:hover .content-podcast-icons .control-icons #next{
    right: 8px
}
.wrapper .layout-l .podcasts-icons .content-podcast-icons .control-icons #prev{
    left: -35px
}
.wrapper .layout-l .podcasts-icons:hover .content-podcast-icons .control-icons #prev{
    left: 8px
}

.wrapper .layout-l .post-colums{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-gap: 15px;
}
.wrapper .layout-l .colum .title{
    margin-bottom: 11px;
}
.wrapper .layout-l .colum .title a{
    text-decoration: none;
}
.wrapper .layout-l .colum .title h1{
    font-size: 1.1em;
    font-weight: bold;
    color: var(--primary-color);
    text-transform: uppercase;
}
.wrapper .layout-l .colum .rows .row{
    height: 250px;
    margin-bottom: 15px;
}
.wrapper .layout-l .colum .rows .row .thumb{
    position: relative;
    height: 150px;
    background-color: #fe9611;
    margin-bottom: 5px;
    border-radius: 5px;
    overflow: hidden;
}
.wrapper .layout-l .colum .rows .row .thumb img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 700ms ease-in-out;
}
.wrapper .layout-l .colum .rows .row:hover .thumb img{
    transform: scale(1.1) rotate(1deg);
}
.wrapper .layout-l .colum .rows .row:hover .thumb .mask-post{
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: var(--color-subgrey);
    top: 0;
    transition: all 500ms ease-in-out;
}
.wrapper .layout-l .colum .rows .row:hover .thumb .mask-post{
    background-color: var(--color-alt-orange);
}
.wrapper .layout-l .colum .rows .row .post-details p{
    font-size: 0.7em;
    color: var(--color-text);
    margin-bottom: 5px;
}
.wrapper .layout-l .colum .rows .row .post-title h1{
    font-size: 1em;
}
.wrapper .layout-l .colum .rows .row .post-title h1 a{
    color: var(--grey-color);
    text-decoration: none;
}
.wrapper .layout-l .colum .rows .row .post-title h1 a:hover{
    color: var(--primary-color);
}
.wrapper .layout-l .colum .more-posts{
    display: flex;
    justify-content: flex-end;
    width: 100%;
}
.wrapper .layout-l .colum .more-posts span{
    font-size: 0.7em;
    padding: 5px 10px;
    border-radius: 10px;
    background-color: var(--primary-color);
    color: var(--color-white);
    text-transform: uppercase;
    cursor: pointer;
    transition: all 300ms ease-in-out;
}
.wrapper .layout-l .colum .more-posts span a{
    color: var(--color-white);
}
.wrapper .layout-l .colum .more-posts span:hover{
    background-color: var(--secundary-color);
}
.wrapper .layout-l .rows-posts{
    margin-top: 30px;
}
.wrapper .layout-l .rows-posts .row{
    display: grid;
    grid-template-columns: 400px 1fr;
    grid-gap: 15px;
    padding: 30px 0;
    border-bottom: 1px solid var(--grey-light);
}
.wrapper .layout-l .rows-posts .row:last-child{
    border-bottom: none;
}
.wrapper .layout-l .rows-posts .row .thumb{
    position: relative;
    height: 250px;
    width: 100%;
    overflow: hidden;
    border-radius: 5px;
}
.wrapper .layout-l .rows-posts .row .thumb img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 700ms ease-in-out;
}
.wrapper .layout-l .rows-posts .row:hover .thumb img{
    transform: scale(1.1) rotate(1deg);
}
.wrapper .layout-l .rows-posts .row .thumb .mask-post{
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: var(--color-subgrey);
    top: 0;
    transition: all 500ms ease-in-out;
}
.wrapper .layout-l .rows-posts .row:hover .thumb .mask-post{
    background-color: var(--color-alt-orange);
}
.wrapper .layout-l .rows-posts .row .post-details{
    position: relative;
}
.wrapper .layout-l .rows-posts .row .post-details .category{
    font-size: 0.9em;
    font-weight: bold;
    color: var(--primary-color);
    text-transform: uppercase;
}
.wrapper .layout-l .rows-posts .row .post-details .category a{
    text-decoration: none;
    color: var(--primary-color);
}
.wrapper .layout-l .rows-posts .row .post-details h1{
    font-size: 2em;
    color: var(--grey-color);
    margin-bottom: 10px;
}
.wrapper .layout-l .rows-posts .row .post-details h1 a{
    text-decoration: none;
    color: var(--grey-color);
}
.wrapper .layout-l .rows-posts .row .post-details p{
    font-size: 0.8em;
    color: var(--color-text);
    margin-bottom: 30px;
}
.wrapper .layout-l .rows-posts .row .post-details p a{
    text-decoration: none;
    color: var(--color-text);
}
.wrapper .layout-l .rows-posts .row .post-details .date-post{
    position: absolute;
    bottom: 0;
    font-size: 0.7em;
    color: var(--color-text);
}
.wrapper .layout-l .rows-posts .row .post-details .date-post a{
    text-decoration: none;
    color: var(--color-text);
}
.wrapper .layout-l .rows-posts .row .post-details .category a:hover,
.wrapper .layout-l .rows-posts .row .post-details h1 a:hover,
.wrapper .layout-l .rows-posts .row .post-details p a:hover,
.wrapper .layout-l .rows-posts .row .post-details .date-post a:hover{
    text-decoration: underline;
}

.wrapper .layout-r .top-list-post .title{
    margin-bottom: 15px;
}
.wrapper .layout-r .top-list-post .title h1{
    font-size: 1.1em;
    font-weight: bold;
    color: var(--primary-color);
    text-transform: uppercase;
}
.wrapper .layout-r .top-list-post .itens .item{
    display: grid;
    grid-template-columns: 134px 1fr;
	grid-gap: 10px;
    line-height: 15px;
    margin-bottom: 21px;
}
.wrapper .layout-r .top-list-post .itens .item .thumb{
    position: relative;
    height: 88px;
    border-radius: 5px;
    background-color: var(--grey-color);
    overflow: hidden;
}
.wrapper .layout-r .top-list-post .itens .item .thumb img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 700ms ease-in-out;
}
.wrapper .layout-r .top-list-post .itens .item:hover .thumb img{
    transform: scale(1.1) rotate(1deg);
}
.wrapper .layout-r .top-list-post .itens .item .thumb .mask-post{
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: var(--color-subgrey);
    top: 0;
    transition: all 500ms ease-in-out;
}
.wrapper .layout-r .top-list-post .itens .item:hover .thumb .mask-post{
    background-color: var(--color-alt-orange);
}
.wrapper .layout-r .top-list-post .itens .item .post-infos h1{
    font-size: 1.1em;
    line-height: 1em;
    margin-bottom: 5px;
    color: var(--grey-color);
}
.wrapper .layout-r .top-list-post .itens .item .post-infos p{
    font-size: .8em;
    color: var(--grey-color);
}
.wrapper .layout-r .top-list-post .itens .item .post-infos h1 a,
.wrapper .layout-r .top-list-post .itens .item .post-infos p a{
    color: var(--grey-color);
    text-decoration: none;
}
.wrapper .layout-r .top-list-post .itens .item .post-infos h1 a:hover,
.wrapper .layout-r .top-list-post .itens .item .post-infos p a:hover{
    color: var(--primary-color)
}
.wrapper .layout-r .sidebar{
    margin-top: 45px;
}
.wrapper .layout-r .sidebar .widgets{
    background-color: var(--background-box);
    border-radius: 5px;
    /* border: 1px solid #e6e6e6; */
    /* box-shadow: 0 1px 2px rgb(0 0 0 / 5%); */
    margin-bottom: 15px;
    border-bottom: 1px solid var(--grey-light);
}
.wrapper .layout-r .sidebar .widgets .widget-tile{
    padding: 20px 20px;
    border-bottom: 1px solid var(--grey-light);
}
.wrapper .layout-r .sidebar .widgets .widget-tile h1{
    font-size: 1.0em;
    color: var(--grey-color);;
}
.wrapper .layout-r .sidebar .widgets .widget-tile h1 a{
    color: var(--grey-color);
}
.wrapper .layout-r .sidebar .widgets .widget-content{
    min-height: 300px;
}
.widget-content .content-subscribe{
    padding: 10px 0;
}
.widget-content .content-subscribe .item{
    padding: 5px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 500ms ease-in-out;
}
.widget-content .content-subscribe .item:hover{
    padding-left: 27px;
    transition: all 500ms ease-in-out;
}
.widget-content .content-subscribe .item:nth-child(odd) {
    background: var(--background-box-2);
}
.widget-content .content-subscribe .item p{
    font-size: 14px;
    color: var(--grey-color);
}
.widget-content .content-subscribe .item .icons{

}
.widget-content .content-subscribe .item .icons img{
    width: 25px;
    height: 25px;
    margin-left: 5px;
    opacity: 0.7;
    transition: all 500ms ease-in-out;
}
.widget-content .content-subscribe .item .icons img:hover{
    opacity: 1;
    transition: all 500ms ease-in-out;
}
.full-carrousel{
    position: relative;
    width: 100%;
    height: 800px;
    overflow: hidden;
}
.full-carrousel .content-full-carrousel{
    display: flex;
    position: absolute;
    left: 0;
    height: 100%;
    transition: all 500ms ease-in-out;
}
.full-carrousel .content-full-carrousel .item-carrousel{
    display: flex;
    width: 100vw;
    height: 100%;
    align-items: center;
}
.full-carrousel .content-full-carrousel .item-carrousel .content-item-carrousel .rows{
    display: grid;
    grid-template-columns: 600px 1fr;
    grid-gap: 30px;
}
.full-carrousel .control-full-caroussel .control-carrousel{
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--color-white);
    width: 100px;
    height: 100px;
    font-size: 2em;

    position: absolute;
    top: calc(50% - 50px);
    z-index: 10;

    cursor: pointer;
    border-radius: 50%;
    transition: all 500ms ease-in-out;
}
.full-carrousel .content-full-carrousel
.item-carrousel .content-item-carrousel{
    color: var(--color-white);
}
.full-carrousel .content-full-carrousel
.item-carrousel .content-item-carrousel a{
    color: var(--color-white);
}
.full-carrousel .content-full-carrousel
.item-carrousel .content-item-carrousel a:hover{
    color: var(--primary-color)
}
.full-carrousel .content-full-carrousel
.item-carrousel .content-item-carrousel .title{
    margin-bottom: 30px;
}
.full-carrousel .content-full-carrousel
.item-carrousel .content-item-carrousel .title h1{
    font-size: 2.5em;
}
.full-carrousel .content-full-carrousel
.item-carrousel .content-item-carrousel .podcast-carrousel-content-row .thumb{
    position: relative;
    height: 400px;
    width: 100%;
    border-radius: 5px;
    overflow: hidden;
    margin-bottom: 15px;
}
.full-carrousel .content-full-carrousel
.item-carrousel .content-item-carrousel .podcast-carrousel-content-row .thumb img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 500ms ease-in-out;
}
.full-carrousel .content-full-carrousel
.item-carrousel .content-item-carrousel .podcast-carrousel-content-row:hover .thumb img{
    transform: scale(1.1) rotate(1deg);
}
.full-carrousel .content-full-carrousel
.item-carrousel .content-item-carrousel .podcast-carrousel-content-row .thumb .mask-post{
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: var(--color-subgrey);
    top: 0;
    transition: all 500ms ease-in-out;
}
.full-carrousel .content-full-carrousel
.item-carrousel .content-item-carrousel .podcast-carrousel-content-row:hover .thumb .mask-post{
    background-color: var(--color-alt-orange);
}
.full-carrousel .content-full-carrousel
.item-carrousel .content-item-carrousel .podcast-carrousel-content-row .post-details h1{
    font-size: 1.5em;
    margin-bottom: 15px;
}
.full-carrousel .content-full-carrousel
.item-carrousel .content-item-carrousel .podcast-carrousel-content-row .post-details p{
    font-size: 1em;
    margin-bottom: 10px;
}
.full-carrousel .content-full-carrousel
.item-carrousel .content-item-carrousel .podcast-carrousel-content-row .post-details .date-post{
    font-size: 0.8em;
}
.full-carrousel .content-full-carrousel .item-carrousel .content-item-carrousel .carrousel-list-podcast .item{
    display: grid;
    grid-template-columns: 134px 1fr;
    grid-gap: 10px;
    line-height: 15px;
    margin-bottom: 13px;
    cursor: pointer;
}
.full-carrousel .content-full-carrousel .item-carrousel .content-item-carrousel .carrousel-list-podcast .item .thumb{
    position: relative;
    height: 88px;
    border-radius: 5px;
    background-color: var(--grey-color);
    overflow: hidden;
}
.full-carrousel .content-full-carrousel .item-carrousel .content-item-carrousel .carrousel-list-podcast .item .thumb img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 700ms ease-in-out;
}
.full-carrousel .content-full-carrousel .item-carrousel .content-item-carrousel .carrousel-list-podcast .item:hover .thumb img{
    transform: scale(1.1) rotate(1deg);
}
.full-carrousel .content-full-carrousel .item-carrousel .content-item-carrousel .carrousel-list-podcast .item .thumb .mask-post{
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: var(--color-subgrey);
    top: 0;
    transition: all 500ms ease-in-out;
}
.full-carrousel .content-full-carrousel .item-carrousel .content-item-carrousel .carrousel-list-podcast .item:hover .thumb .mask-post{
    background-color: var(--color-alt-orange);
}
.full-carrousel .content-full-carrousel .item-carrousel .content-item-carrousel .carrousel-list-podcast .item .post-infos h1{
    font-size: 1.1em;
    line-height: 1em;
    margin-bottom: 5px;
}
.full-carrousel .content-full-carrousel .item-carrousel .content-item-carrousel .carrousel-list-podcast .item .post-infos p{
    font-size: .8em;
}
.full-carrousel .control-full-caroussel .control-carrousel:hover{
    background-color: var(--primary-color);
    color: var(--background-color);
}
.full-carrousel .content-full-carrousel .item-carrousel .content-item-carrousel .carrousel-list-podcast .more-posts{
    display: flex;
    justify-content: flex-end;
    width: 100%;
}
.full-carrousel .content-full-carrousel .item-carrousel .content-item-carrousel .carrousel-list-podcast .more-posts span{
    font-size: 0.7em;
    padding: 5px 10px;
    border-radius: 10px;
    background-color: var(--primary-color);
    color: var(--color-white);
    text-transform: uppercase;
    cursor: pointer;
    transition: all 300ms ease-in-out;
}
.full-carrousel .content-full-carrousel .item-carrousel .content-item-carrousel .carrousel-list-podcast .more-posts span:hover{
    background-color: var(--secundary-color);
}
.full-carrousel .control-full-caroussel #prev-full-carrousel{
    left: 3%;
}
.full-carrousel .control-full-caroussel #next-full-carrousel{
    right: 3%;
}

/* single post content */
.single .wrapper{
    grid-gap: 30px;
}
.single .layout-r{
    margin-top: 80px;
}
.single .layout-r .top-list-post .title h1{
    font-size: 1.6em;
}
article .info-post{
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 30px;
    margin-top: 30px;
    width: 100%;
    overflow-wrap: break-word;
    word-wrap: break-word;
    word-break: break-word;
}
article .info-post .date-info{
    font-size: .7em;
    color: var(--color-text);
}
article .info-post .date-info a{
    text-decoration: none;
    color: var(--primary-color);
}
article .info-post .category{
    display: flex;
}
article .info-post .category > div{
    padding: 8px 6px;
    text-transform: uppercase;
    font-size: 0.7em;
    color: var(--color-white);
    background-color: var(--primary-color);
    margin: 5px;
}
article .info-post .category > div a{
    text-decoration: none;
    color: var(--color-white);
}
article .header-post h1{
    font-size: 2.5em;
    line-height: 1.1em;
    margin-bottom: 15px;
    color: var(--grey-color);
}
article .header-post h2{
    font-size: 1.3em;
    color: var(--color-text);
    font-weight: 400;
}
article .box-post{
    display: grid;
    grid-template-columns: 35px 1fr;
    grid-gap: 15px;
    margin-top: 30px;
    margin-bottom: 30px;
    grid-template-areas:
    "share post"
    "tag tag"
    "autor autor";
}
article .box-post .share{
    height: 200px;
    grid-area: share;
}
article .box-post .share a{
    text-decoration: none;
}
article .box-post .share li{
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    margin-bottom: 10px;
    background-color: var(--primary-color);
    color: var(--color-white);
    overflow: hidden;
}
article .box-post .share li::before{
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #ffffff4f;
    transition: all 300ms ease-in-out;
}
article .box-post .share li:hover::before{
    background-color: transparent;
}
article .box-post .post-content{
    grid-area: post;
    width: 100%;
    overflow-wrap: break-word;
    word-wrap: break-word;
    word-break: break-word;
}
article .box-post .post-content .thumb img{
    width: 100%;
}
article .box-post .post-content .thepost{
    margin-top: 25px;
}
article .box-post .post-content .thepost iframe{

}
article .box-post .post-content .thepost p,article .box-post .post-content .thepost p em{
    line-height: 1.75;
    text-align: left;
    color: var(--grey-color);
    font-weight: 400;
    margin: 25px 0;
}
article .box-post .post-content .thepost p a, article .box-post .post-content .thepost p em a{
    text-decoration: none;
    color: var(--secundary-color);
}
article .box-post .post-content .thepost p a:hover, article .box-post .post-content .thepost p em a:hover{
    text-decoration: underline;
}
article .box-post .post-content .thepost ul,article .box-post .post-content .thepost ol{
    list-style: inherit;
    padding: 15px;
    margin: 0px 15px;
}
article .box-post .post-content .thepost ul li,article .box-post .post-content .thepost ol li{
    margin: 10px 0;
}
article .box-post .post-content .thepost ul li,article .box-post .post-content .thepost li a{
    color: var(--primary-color);
}
article .box-post .post-content .thepost ol{
    list-style: auto;
}
article .box-post .post-content .thepost img{
    display: block;
    max-width: 100%;
    margin: 25px auto;
}
article .box-post .post-content .thepost blockquote {
    /* background:#f5f5f5; */
    border-left:6px solid #ccc;
    font-family: Georgia, serif;
    margin:1.5em 30px;
    padding:.5em 15px;
    quotes:"\201C""\201D""\2018""\2019";
    }
article .box-post .post-content .thepost blockquote:before {
    color:#ccc;
    content:open-quote;
    font-family: cambria, Georgia;
    font-size:4em;
    line-height:.1em;
    margin-right:.25em;
    vertical-align:-.4em;
    }
article .box-post .post-content .thepost blockquote p {
    display:inline;
    }
article .box-post .post-content .thepost blockquote cite {
    color: #999999;
    font-size: 14px;
    display: block;
    margin-top: 10px;
    }
article .box-post .post-content .thepost div{
    display: block;
    }
article .box-post .post-content .thepost .wp-caption{
    border: 1px solid #ddd;
    text-align: center;
    background-color: #f3f3f3;
    padding-top: 4px;
    margin: 0 auto;
    margin-bottom: 10px;
    width: 96% !important;
    max-width: 96%;
    padding: 8px;
}
article .box-post .post-content .thepost .wp-caption p.wp-caption-text{
    font-size: 11px;
    line-height: 17px;
    padding: 0 4px 5px;
    margin: 0;
}
article .box-post .post-content .thepost audio{
    width: 100%;
}
#gallery-1{
    display: flex;
}
article .box-post .row-article{
    margin-bottom: 20px;
}
article .box-post .tags{
    grid-area: tag;
}
article .box-post .row-article .title{
    text-transform: uppercase;
    font-weight: 600;
    font-size: 0.8em;
    margin-bottom: 10px;
}
article .box-post .tags ul{
    width: 100%;
}
article .box-post .tags ul a{
    float: left;
    margin-top: 10px;
    margin-right: 10px;
    padding: 5px 10px;
    border: 1px dotted #e0e0e0;
    text-decoration: none;
    font-size: 0.7em;
    color: var(--grey-color);
}
article .box-post .tags ul a:hover{
    background-color: var(--primary-color);
    color: var(--color-white);
    border: 1px solid var(--primary-color);
}
.wrapper .layout-l .related .rows{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-gap: 15px;
}
.about-author{
    grid-area: autor;
}
.author-resume{
    display: grid;
    grid-template-columns: 100px 1fr;
    grid-gap: 20px;
    margin-bottom: 30px;
    padding: 10px;
    background-color: var(--color-white);
    border-bottom: 1px solid #dcdcdc;
}
.author-resume .profile{
    display: grid;
    align-items: center;
    justify-items: center;
}
.author-resume .profile .profile-content{
    display: flex;
    flex-direction: column;
    align-items: center;
}
.author-resume .profile .avatar{
    width: 70px;
    height: 70px;
    border-radius: 50%;
    margin-bottom: 10px;
    overflow: hidden;
}
.author-resume .profile .avatar img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.author-resume .profile p{
    text-align: center;
    line-height: 1em;
}
.author-resume .resume-text{
    display: grid;
    align-content: space-around;
}
.author-resume .resume-text p{
    font-size: 0.9em;
}
.author-resume p a{
    text-decoration: none;
    color: var(--primary-color);
}
.author-resume p a:hover{
    text-decoration: underline;
}
.comment-area{
    padding: 15px;
    background-color: var(--color-white);
    margin: 30px 0;
    border-bottom: 1px solid var(--grey-light-3);
}
/****************/
/*** category ***/
.title-page-content{
    margin-top: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--grey-light)
}
.title-page-content h1{
    font-size: 1.5em;
    color: var(--grey-color);
}
.title-page-content h1 span{
    color: var(--primary-color);
}
/***************/
footer{
    height: 150px;
    background-color: var(--primary-color);
}
footer .content-footer{
    height: 150px;
    padding-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
footer .content-footer .left-footer{
    max-width: 600px;
    width: 100%;
}
footer .content-footer .logotipo-footer img{
    width: 150px;
}
footer .content-footer span{
    font-size: 0.8em;
    color: var(--color-white);
}
footer .content-footer .menu-footer{
    display: flex;
    align-items: center;
    justify-content: end;
    height: 25px;
}
footer .content-footer .menu-footer ul{
    display: flex;
    list-style: none;
}
footer .content-footer .menu-footer ul li{
    font-size: 0.9em;
    padding: 2px 10px;
    border-right: 1px solid rgba(255, 255, 255, 0.24);
    text-decoration: none;
}
footer .content-footer .menu-footer ul li:last-child{
    border: none;
}
footer .content-footer .menu-footer ul li a{
    color: var(--color-white);
    text-decoration: none;
}
.menu-left{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0);
    z-index: 100;
    transition: all 300ms ease-in-out;
    display: none;
}
.menu-left-show{
    background-color: rgba(0, 0, 0, 0.596);
}
.menu-left .content-menu-left{
    position: absolute;
    width: 270px;
    height: 100%;
    background-color: var(--background-box);
    z-index: 9999;
    left: -270px;
    transition: all 300ms cubic-bezier(0.11, 0.57, 0.59, 0.97);
}
.menu-left-show .content-menu-left{ 
    left: 0;
}
.content-menu-left{
    position: relative;
    overflow: hidden;
}
.content-menu-left .menu-title{
    display: flex;
    align-items: center;
    height: 65px;
    width: 100%;
    padding-left: 14px;
}
.content-menu-left .menu-title h1{
    font-size: 1.1em;
    color: var(--grey-color);
}
.content-menu-left .menu-title .return-page{
    padding: 0 15px;
    margin-right: 15px;
}
.content-menu-left .menu-title .return-page[data = "page1"]{
    display: none;
}
.content-menu-left .menu-page-style{
    display: flex;
    position: absolute;
    transition: all 300ms ease-in-out;
}
.content-menu-left .menu-page-style ul{
    width: 270px;
}
.content-menu-left .menu-page-style ul li{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-left: 20px;
    padding-right: 15px;
    width: 100%;
    height: 35px;
}
.content-menu-left .menu-page-style ul li span{
    padding: 0px 15px;
    cursor: pointer;
}
.content-menu-left .menu-page-style ul li a{
    text-decoration: none;
    color: var(--grey-color);
}
.menu-dowpdown-style{

}
.menu-dowpdown-style .menuPages{
    padding: 0 15px;
    padding-bottom: 20px;
}
.menu-dowpdown-style .menuPages li{
    padding: 5px 0;
}
.menu-dowpdown-style .menuPages li span{
    position: relative;
    display: flex;
    align-items: center;
}
.menu-dowpdown-style .menuPages li i{
    position: absolute;
    right: 0px;
    padding: 8px;
    color: var(--grey-color);
    cursor: pointer;
}
.menu-dowpdown-style .menuPages li .drop-menu-item{
    padding: 0 15px;
    padding-right: 0;
    /*height: 0px;
    transition: all 300ms ease-in-out;*/
    display: none;
}
.menu-dowpdown-style .menuPages li .drop-menu-item-show{
    /*height: auto;
    transition: all 300ms ease-in-out;*/    
}
.menu-dowpdown-style .menuPages .menu-item{
    position: relative;
    padding-left: 10px;
    border-left: 3px solid transparent;
    transition: all 300ms ease-in-out;
}
.menu-dowpdown-style .menuPages .menu-item:hover{
    padding-left: 15px;
    border-left: 3px solid var(--secundary-color);
    transition: all 300ms ease-in-out;
}
.menu-dowpdown-style .menuPages .menu-item a{
    text-decoration: none;
    color: var(--grey-color); 
    transition: all 300ms ease-in-out;
}
.menu-dowpdown-style .menuPages .menu-item a:hover{
    color: var(--secundary-color);
    transition: all 300ms ease-in-out;
}
.paginate{
    display: flex;
    align-content: center;
    justify-content: center;
}
.paginate .page-numbers {
    float: left;
    margin-top: 10px;    
}
.paginate .page-numbers li {
    display: inline-block;
    margin-left: 3px;  

}
.paginate .page-numbers a, .page-numbers .dots, .page-numbers .next, .page-numbers .prev {
    padding: 4px 10px;
    background: #eee;
    color: var(--grey-color);
    border-radius: 5px;
    text-decoration: none; 
}
.paginate.page-numbers a:hover, .page-numbers .next:hover, .page-numbers .prev:hover {
    background: var(--secundary-color);
    color: var(--color-white);
}
.paginate ul li a:hover{
    background: var(--secundary-color);
    color: var(--color-white);
}
.paginate .page-numbers .current {
    padding: 4px 10px;
    background: var(--secundary-color);
    color: var(--color-white); 
    border-radius: 5px;  
}
/*.menu-dowpdown-style .menuPages .menu-item::before{
    content: "";
    position: absolute;
    right: 0;
    width: 20px;
    height: 20px;
    background-color: #555;
}*/
.menu-dowpdown-style .menuPages .dropdown-menu{
    display: none;
}
.widgets .widget-spin .item{
    display: grid;
    grid-template-columns: 60px 1fr;
    grid-gap: 10px;
    margin-top: 15px;
    margin-bottom: 10px;
    padding: 7px 10px;
    border-bottom: 2px solid #f8f8f8;
}
.widgets .widget-spin .item .thumb{
    position: relative;
    width: 60px;
    height: 35px;
    border-radius: 1px;
    overflow: hidden;
}
.widgets .widget-spin .item .thumb img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 700ms ease-in-out;
}
.widgets .widget-spin .item:hover .thumb img{
    transform: scale(1.1) rotate(1deg);
}
.widgets .widget-spin .item:hover .thumb .mask-post{
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: var(--color-subgrey);
    top: 0;
    transition: all 500ms ease-in-out;
}
.widgets .widget-spin .item:hover .thumb .mask-post{
    background-color: var(--color-alt-orange);
}
.widgets .widget-spin .item .post-info .title{
    font-size: 13px;
    line-height: 16px;
}
.widgets .widget-spin .item .post-info a .title{
    color: var(--grey-color);
}
.widgets .widget-spin .item:hover .post-info a .title{
    color: var(--secundary-color);
}
.widgets .widget-spin .feature{
    display: block;
}
.widgets .widget-spin .feature .thumb{
    width: 100%;
    height: 130px;
    margin-bottom: 10px;
}
.widgets .widget-spin .feature .post-info .title{
    font-size: 15px;
    line-height: 18px;
    font-weight: 700;
    padding-bottom: 15px;
}
.widgets .widget-spin .feature .post-info a .title{
    color: var(--grey-color);
}
#hidden-form{
    display: none;
}
.h-auto{
    height: auto!important;
}
.desktop{
    display: block !important;
}
.mobile{
    display: none !important;
}
.btn-dark-mode{
    position: fixed;
    top: 15px;
    right: 25px;
    font-size: 18px;
    color: var(--grey-color);
    cursor: pointer;
}