/*
Theme Name: QueroPoupar
Theme URI: 
Author: Desconhecido
Author URI: 
Description: Tema WordPress QueroPoupar
Version: 1.0
Text Domain: queropoupar
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Tags:
*/
@import url('https://fonts.googleapis.com/css2?family=Maven+Pro:wght@400..900&display=swap');
:root{
    --violet:#490e6f;
    --purple:#c69eb5;
    --gray:#ece2e7;
    --red:#512a44;
}
* {
scrollbar-color: rgb(223, 227, 232) rgb(249, 250, 251);
scrollbar-width: thin;
box-sizing: border-box;
}
html, body{
font-family: "Maven Pro", sans-serif;
background-color:#fff;
color:var(--red);
margin:0;
padding:0;
}
body{
margin:0 auto;
min-height: 100vh;
}
main{
overflow: hidden;
}
ul{
margin:0;
padding:0;
}
ul li{
padding:0;
margin:0;
list-style: none;
}
img{
max-width: 100%;
height:auto;
border:0;
outline: 0;
}
button, input, a, select{
outline: 0 !important;
border:0;
text-decoration: none;
}
header.site-header{
width: 100%;
-webkit-box-shadow: 0 15px 30px 0 rgba(0, 77, 188, 0.08);
box-shadow: 0 15px 30px 0 rgba(0, 77, 188, 0.08);
border-bottom: 1px solid #efedf7;
position: relative;
z-index: 40;
background-color:#fff;
}
header.site-header .content-header{
padding:15px 0;
}
header.site-header.sticky {
-webkit-animation: headerSlideDown .35s forwards;
animation: headerSlideDown .35s forwards;
position: sticky;
top: 0;
width: 100%;
z-index: 90;
}
@-webkit-keyframes headerSlideDown {
  0% {
    -webkit-transform:translateY(-100%);
    transform:translateY(-100%)
  }
  to {
    -webkit-transform:translateY(0);
    transform:translateY(0)
  }
}
@keyframes headerSlideDown {
  0% {
    -webkit-transform:translateY(-100%);
    transform:translateY(-100%)
  }
  to {
    -webkit-transform:translateY(0);
    transform:translateY(0)
  }
}
.content-header a.logo{
display:flex;
align-items:center;
justify-content:center;
max-width:260px;
}
.content-header .menu-header{
display:flex;
align-items:center;
justify-content:flex-end;
}
.content-header .menu-header .nav-items{
display:flex;
align-items:center;
}
.content-header .menu-header .nav-items li{
margin-right:20px;
}
.content-header .menu-header .nav-items li a{
display:flex;
align-items:center;
font-weight:600;
color:#474159;
transition:all .2s linear;
padding:6px 5px;
position:relative;
}
.content-header .menu-header .nav-items li a:after{
content:"";
width:100%;
height:2px;
background-color:var(--violet);
position:absolute;
left:0;
bottom:0;
transform: scaleX(0);
transform-origin: center;
transition: transform 0.3s ease;
}
.content-header .menu-header .nav-items li a:hover, .content-header .menu-header .nav-items li.current-menu-item a{
color:var(--violet);
}
.content-header .menu-header .nav-items li a:hover:after, .content-header .menu-header .nav-items li.current-menu-item a:after{
transform: scaleX(1);
}
.open-busca{
width: 36px;
height: 36px;
border-radius: 50%;
background-color: var(--gray);
display: flex;
align-items: center;
justify-content: center;
cursor: pointer;
transition: all .2s linear;
color: var(--violet);
}
.open-busca:hover{
background-color:var(--violet);
color:#fff;
}
.buscaArea{
position:fixed;
width:100%;
height:83px;
display:flex;
align-items:center;
top:0;
left:0;
background-color:#fff;
z-index:99;
transform:translatey(-100%);
transition:all .2s linear;
}
.buscaArea.active{
transform:translatey(0);
}
.buscaArea .buscaForm{
gap:25px;
}
.buscaArea .buscaForm form{
width:100%;
flex:1 0 0%;
display:flex;
align-items:center;
justify-content:space-between;
height:46px;
border:1px solid #ccc;
border-radius:50px;
background-color:#fff;
}
.buscaArea .buscaForm form input{
width:100%;
flex:1 0 0%;
padding:5px 15px;
background-color:transparent;
font-size:16px;
color:var(--red);
font-weight:500;
}
.buscaArea .buscaForm form button{
display:flex;
align-items:center;
justify-content:center;
background-color:transparent;
width:46px;
height:100%;
color:var(--violet);
font-size:18px;
}
.buscaArea .buscaForm .closeBusca{
cursor:pointer;
font-size:28px;
transition:all .2s linear;
color:var(--violet);
}
.buscaArea .buscaForm .closeBusca:hover{
opacity:0.7;
}

footer{
width: 100%;
border-top: 1px solid #efedf7;
background-color:#fdfdfd;
}
footer .content-footer{
padding:20px 0;
display:flex;
align-items:center;
justify-content:space-between;
}
footer .content-footer a.logo{
max-width:260px;
}
footer .content-footer .nav-items{
display:flex;
align-items:center;
justify-content:flex-end;
gap:25px;
}
footer .content-footer .nav-items li a{
display:flex;
align-items:center;
transition:all .2s linear;
color:var(--red);
font-weight:600;
opacity:0.8;
}
footer .content-footer .nav-items li a:hover{
color:var(--violet);
opacity:1;
}
footer .sociaisFooter ul{
display:flex;
align-items:center;
justify-content:center;
gap:25px;
padding-bottom:20px;
}
footer .sociaisFooter ul li a{
width: 50px;
height: 50px;
border-radius: 50%;
color: #512a44;
display: -webkit-inline-box;
display: -ms-inline-flexbox;
display: inline-flex;
-webkit-box-orient: horizontal;
-webkit-box-direction: normal;
-ms-flex-direction: row;
flex-direction: row;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
 webkit-box-pack: center;
-ms-flex-pack: center;
justify-content: center;
text-decoration: none;
font-size: 18px;
-webkit-transition: all .2s ease-in-out;
-o-transition: all .2s ease-in-out;
transition: all .2s ease-in-out;
box-shadow: 0 15px 30px 0 rgba(0,77,188,.08);
border: solid 1px #efedf7;
background: #fff;
}
footer .sociaisFooter ul li a:hover{
opacity:0.7;
}
footer .copyright{
display:flex;
align-items:center;
justify-content:space-between;
width: 100%;
border-top: 1px solid #efedf7;
padding:15px 0;
}
footer .copyright .copy{
font-size:14px;
opacity:0.8;
}
footer .copyright .menuCopy li a{
color:var(--red);
opacity:0.8;
font-size:14px;
transition:all .2s linear;
}
footer .copyright .menuCopy li a:hover{
color:var(--violet);
}
section#content-page{
padding:30px 0;
min-height:calc(100vh - 302px);
}
.slidePosts{
overflow:hidden;
}
.genel_item {
width: 100%;
height: auto;
position: relative;
border-radius: 12px;
overflow: hidden;
border: solid 1px #efedf7;
display: block;
}
.genel_item picture{
width:100%;
height:540px;
display:flex;
}
.genel_item picture img{
width:100%;
height:100%;
object-fit:cover;
}
.genel_item-text {
position: absolute;
bottom: 0;
left: 0;
width: 100%;
padding: 0 40px 40px 40px;
z-index: 5;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-ms-flex-direction: column;
flex-direction: column;
-webkit-box-align: start;
-ms-flex-align: start;
align-items: flex-start;
-webkit-box-pack: end;
-ms-flex-pack: end;
justify-content: flex-end;
height: 100%;
}
.absolute-link {
width: 100%;
position: absolute;
top: 0;
height: 100%;
bottom: 0;
left: 0;
right: 0;
z-index: 99;
}
.genel_item::after {
content: '';
background-image: -webkit-gradient(linear,left top,left bottom,from(rgba(81,42,68,0)),to(#570058ad));
background-image: -webkit-linear-gradient(top,rgba(81,42,68,0),#570058ad);
background-image: -o-linear-gradient(top,rgba(81,42,68,0),#570058ad);
background-image: linear-gradient(to bottom,rgba(81,42,68,0),#570058ad);
width: 100%;
height: 100%;
position: absolute;
top: 0;
left: 0;
z-index: 2;
-webkit-transition: all .2s ease-in-out;
-o-transition: all .2s ease-in-out;
transition: all .2s ease-in-out;
opacity: .7;
}
.genel_item-actions a{
background-color:var(--violet);
color:#fff;
font-weight:700;
text-transform:uppercase;
font-size:13px;
padding:5px 15px;
border-radius:30px;
margin-bottom:10px;
display:inline-block;
}
.genel_item-text .title {
font-size: 32px;
line-height:38px;
text-transform: lowercase;
color: #fff;
font-weight: 700;
display: block;
text-decoration: none;
padding-right: 27%;
margin-bottom:15px;
}
.genel_item-text .title::first-letter {
text-transform: uppercase;
}
.user_bar-text {
font-size: 15px;
color: #fff;
font-weight: 400;
margin-left: 7px;
}
.paginacaoSlide{
display:flex;
align-items:center;
justify-content:center;
padding:20px 10px;
}
.paginacaoSlide .swiper-pagination-bullet{
width: 12px;
height: 12px;
opacity: 1;
background: #ede1e9;
margin: 0 5px;
border-radius: 6px;
-webkit-transition: all .2s ease-in-out;
-o-transition: all .2s ease-in-out;
transition: all .2s ease-in-out;
}
.paginacaoSlide .swiper-pagination-bullet.swiper-pagination-bullet-active{
width: 24px;
background: var(--violet);
}
.minis-posts .mini-post{
width: 100%;
height: 262px;
position: relative;
border-radius: 12px;
overflow: hidden;
-webkit-box-shadow: 0 15px 30px 0 rgba(0,77,188,.08);
box-shadow: 0 15px 30px 0 rgba(0,77,188,.08);
border: solid 1px #efedf7;
display: block;
margin-bottom: 20px;
}
.minis-posts .mini-post img{
width: 100%;
height: 100%;
object-fit: cover;
}
.minis-posts .mini-post:before{
content: '';
background-image: -webkit-gradient(linear,left top,left bottom,from(rgba(81,42,68,0)),to(#570058ad));
background-image: -webkit-linear-gradient(top,rgba(81,42,68,0),#570058ad);
background-image: -o-linear-gradient(top,rgba(81,42,68,0),#570058ad);
background-image: linear-gradient(to bottom,rgba(81,42,68,0),#570058ad);
width: 100%;
height: 100%;
position: absolute;
top: 0;
left: 0;
z-index: 2;
-webkit-transition: all .2s ease-in-out;
-o-transition: all .2s ease-in-out;
transition: all .2s ease-in-out;
opacity: .7;
}
.minis-posts .mini-post .genel_item-text{
padding:0 30px 20px 30px;
}
.minis-posts .mini-post .genel_item-text a.link-category{
background-color: var(--violet);
color: #fff;
font-weight: 700;
text-transform: uppercase;
font-size: 11px;
padding: 5px 15px;
border-radius: 30px;
margin-bottom: 5px;
display: inline-block;
}
.minis-posts .mini-post .genel_item-text .title{
font-size: 24px;
line-height:28px;
padding-right:20px;
margin-bottom:10px;
}
.minis-posts .mini-post .genel_item-text .user_bar-date{
font-size: 15px;
color: #fff;
font-weight: 400;
}
.minis-posts .mini-post a.link-post{
position:absolute;
width:100%;
height:100%;
top:0;
left:0;
z-index:10;
}
.titleSection{
display:flex;
align-items:center;
justify-content:space-between;
border-bottom: 1px solid #efedf7;
padding: 15px 0;
margin:0 0 25px;
}
.titleSection h2{
margin:0;
font-size: 24px;
font-weight: 600;
line-height:28px;
}
a.btnCat{
background: #fff;
color: #846577;
font-size: 14px;
padding: 6px 13px;
font-weight: 500;
display:inline-flex;
-webkit-box-orient: horizontal;
-webkit-box-direction: normal;
-ms-flex-direction: row;
flex-direction: row;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
-webkit-box-pack: center;
-ms-flex-pack: center;
justify-content: center;
gap:8px;
-webkit-transition: all .2s ease-in-out;
-o-transition: all .2s ease-in-out;
transition: all .2s ease-in-out;
-webkit-box-shadow: 0 15px 30px 0 rgba(0,77,188,.08);
box-shadow: 0 15px 30px 0 rgba(0,77,188,.08);
border: solid 1px #d0bbc8;
border-radius: 12px;
white-space: nowrap;
}
a.btnCat:hover{
background:var(--violet);
color:#fff;
border-color:var(--violet);
}
a.btnCat span{
padding-bottom:2px;
}
.postsCat{
margin-bottom:35px;
}
.postsSection{
display:flex;
align-items:stretch;
flex-wrap:wrap;
gap:20px;
}
.postsSection .postArticle{
width:calc(25% - 15px);
}
.genel_item-vertical {
z-index: 1;
-webkit-box-shadow: none;
box-shadow: none;
border: none;
overflow: visible;
width: 100%;
height: auto;
position: relative;
border-radius: 12px;
display: block;
}
.genel_item-vertical::after, .genel_item-horizontal::after{
display:none;
}
.genel_item-vertical::before, .genel_item-horizontal::before {
content: '';
position: absolute;
top: -5px;
left: -5px;
right: -5px;
bottom: -5px;
opacity: 0;
-webkit-transition: all .24s ease-in-out;
-o-transition: all .24s ease-in-out;
transition: all .24s ease-in-out;
background-color: #fff;
border-radius: 12px;
-webkit-box-shadow: 0 20px 40px 0 rgba(0,77,188,.16);
box-shadow: 0 20px 40px 0 rgba(0,77,188,.16);
border: solid 1px #efedf7;
}
.genel_item-vertical:hover::before, .genel_item-horizontal:hover::before {
top: -10px;
left: -10px;
right: -10px;
bottom: -10px;
opacity: 1;
}
.genel_item-vertical .image {
position: relative;
border-radius: 12px;
overflow: hidden;
width:100%;
height:200px;
}
.genel_item-vertical .image img{
width:100%;
height:100%;
object-fit:cover;
}
.genel_item-vertical .genel_item-text {
position: relative;
bottom: inherit;
left: inherit;
padding: 0 10px;
border-radius: 0;
height:auto;
}
.genel_item-vertical .genel_item-actions {
margin-top: -42px;
padding: 0;
}
.genel_item-vertical .genel_item-actions a{
font-size:12px;
margin:0;
}
.genel_item-vertical .genel_item-actions a:hover, .genel_item-horizontal .genel_item-actions a:hover{
background-color:var(--gray);
color:var(--violet);
}
.genel_item-vertical .genel_item-text .title {
color: #512a44;
font-size: 18px;
line-height:22px;
margin-top: 20px;
margin-bottom:0;
padding-right:0;
display: -webkit-box;
-webkit-line-clamp: 2;
-webkit-box-orient: vertical;
overflow: hidden;
text-overflow: ellipsis;
height:46px;
}
.genel_item-vertical .genel_item-text .text {
margin-top: 13px;
color: #512a44;
font-size: 14px;
text-decoration: none;
display: -webkit-box;
-webkit-line-clamp: 4;
-webkit-box-orient: vertical;
overflow: hidden;
text-overflow: ellipsis;
height: 86px;
}
.genel_item-vertical .genel_item-text .user_bar-date, .genel_item-horizontal .genel_item-text .user_bar-date {
font-size: 13px;
font-weight: 400;
color: #512a44;
opacity: .5;
margin-top:13px;
}
.postsSection .postArticle.genel_item-horizontal{
width:100%;
}
.genel_item-horizontal .image {
width: 300px;
height:220px;
overflow: hidden;
border-radius: 12px;
position: relative;
z-index: 4;
}
.genel_item-horizontal .image a{
display:flex;
width:100%;
height:100%;
}
.genel_item-horizontal .image a img{
width:100%;
height:100%;
object-fit:cover;
}
.genel_item-horizontal .image + .genel_item-text {
padding:0 30px;
width: calc(100% - 300px);
position: relative;
-webkit-box-pack: center;
-ms-flex-pack: center;
justify-content: center;
}
.genel_item-horizontal {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-orient: horizontal;
-webkit-box-direction: normal;
-ms-flex-direction: row;
flex-direction: row;
-webkit-box-align: start;
-ms-flex-align: start;
align-items: flex-start;
-webkit-box-pack: justify;
-ms-flex-pack: justify;
justify-content: space-between;
-webkit-box-shadow: none;
box-shadow: none;
border: none;
overflow: visible;
}
.genel_item-horizontal .genel_item-text .text {
color: #512a44;
font-size: 14px;
text-decoration: none;
display: -webkit-box;
-webkit-line-clamp: 3;
-webkit-box-orient: vertical;
overflow: hidden;
text-overflow: ellipsis;
height: 66px;
}
.genel_item-horizontal .genel_item-text .title {
color: #512a44;
font-size: 22px;
line-height:26px;
margin-top: 10px;
margin-bottom:15px;
padding-right:0;
}
.genel_item-horizontal .genel_item-actions a{
margin:0px 0 5px;
}

.site__breadcrumb {
width: 100%;
margin-bottom: 20px;
margin-top: -10px;
}
.site__breadcrumb ul {
width: 100%;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-orient: horizontal;
-webkit-box-direction: normal;
-ms-flex-direction: row;
flex-direction: row;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
-webkit-box-pack: start;
-ms-flex-pack: start;
justify-content: flex-start;
margin: 0;
padding: 0;
list-style: none;
}
.site__breadcrumb ul li {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-orient: horizontal;
-webkit-box-direction: normal;
-ms-flex-direction: row;
flex-direction: row;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
-webkit-box-pack: start;
-ms-flex-pack: start;
justify-content: flex-start;
}
.site__breadcrumb ul li:first-child a{
font-size:16px;
}
.site__breadcrumb ul li a {
font-weight: 500;
color: #c69eb5;
font-size: 14px;
}
.site__breadcrumb ul li a:hover{
color:var(--violet);
}
.site__breadcrumb ul li::after {
content: '';
width: 16px;
display: block;
height: 1px;
background: #c69eb5;
margin: 0 15px;
}
.site__breadcrumb ul li:last-child::after{
display:none;
}
.site__breadcrumb ul li:last-child span{
color: #490e6f;
font-weight:500;
font-size:14px;
}
.slideCat{
overflow:hidden;
}
.slideCat .genel_item-text .title{
padding-right:40px;
}
.slideCat .genel_item picture{
height:400px;
}
.slideCat .genel_item-text{
padding:0 30px 30px 30px;
}
.paginacaoSlides{
display:flex;
align-items:center;
justify-content:center;
padding:20px 10px;
}
.paginacaoSlides .swiper-pagination-bullet{
width: 12px;
height: 12px;
opacity: 1;
background: #ede1e9;
margin: 0 5px;
border-radius: 6px;
-webkit-transition: all .2s ease-in-out;
-o-transition: all .2s ease-in-out;
transition: all .2s ease-in-out;
}
.paginacaoSlides .swiper-pagination-bullet.swiper-pagination-bullet-active{
width: 24px;
background: var(--violet);
}

.site__card-header{
display: flex;
align-items: center;
justify-content: space-between;
border-bottom: 1px solid #efedf7;
padding: 15px 0;
margin: 0 0 25px;
}
.site__card-header h1{
width:100%;
flex:1 0 0%;
margin: 0;
font-size: 24px;
font-weight: 600;
line-height: 28px;
}
.site__card-header .form-group{
display:flex;
align-items:center;
}
.site__card-header .form-group label{
padding-right:10px;
font-size: 14px;
font-weight: 500;
color: #c69eb5;
margin-bottom: 0;
text-align: right;
}
.site__card-header .form-group .view_select {
width: 70px;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-orient: horizontal;
-webkit-box-direction: normal;
-ms-flex-direction: row;
flex-direction: row;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
-webkit-box-pack: center;
-ms-flex-pack: center;
justify-content: center;
height: 32px;
border-radius: 12px;
-webkit-box-shadow: 0 15px 30px 0 rgba(0,77,188,.08);
box-shadow: 0 15px 30px 0 rgba(0,77,188,.08);
border: solid 1px #efedf7;
overflow: hidden;
}
.site__card-header .form-group .view_select a {
width: 50%;
text-align: center;
font-size: 14px;
color: #c89fb6;
line-height: 32px;
display:flex;
align-items:center;
justify-content:center;
}
.site__card-header .form-group .view_select a.active{
background-color:var(--violet);
color:#fff;
}
.postsCategory .postArticle{
margin-bottom:20px;
}
.paginacao{
display:flex;
align-items:center;
justify-content:center;
width:100%;
padding:15px 0 40px;
gap:5px;
}
.paginacao .page-numbers{
display:flex;
align-items:center;
justify-content:center;
width:auto;
padding:0 10px 2px;
min-width:26px;
height:26px;
background-color:var(--gray);
border-radius:5px;
color:var(--violet);
font-weight:600;
font-size:14px;
transition:all .2s linear;
}
.paginacao .page-numbers:hover, .paginacao .page-numbers.current{
background-color:var(--violet);
color:#fff;
}
.single .imagePost{
width:100%;
height:288px;
overflow:hidden;
position: relative;
border-radius: 12px;
-webkit-box-shadow: 0 15px 30px 0 rgba(0,77,188,.08);
box-shadow: 0 15px 30px 0 rgba(0,77,188,.08);
border: solid 1px #efedf7;
margin-bottom: 20px;
}
.single .imagePost img{
width:100%;
height:100%;
object-fit:cover;
}
.single .imagePost a{
position: absolute;
z-index: 3;
bottom: 20px;
left: 20px;
background-color:var(--violet);
border-radius:8px;
color:#fff;
font-weight:600;
text-transform:uppercase;
font-size:14px;
padding:8px 15px;
}
.single h1.titlePost{
font-size: 36px;
line-height: 40px;
font-weight: 700;
color: #512a44;
margin-bottom: 10px;
}
.single .actionsPost{
padding-bottom:15px;
margin-bottom:25px;
border-bottom: 1px solid #efedf7;
display:flex;
align-items:center;
gap:15px;
font-size:14px;
color:#512a44;
opacity:0.6;
font-weight:500;
}
.single .actionsPost span i{
font-size:18px;
margin-left:5px;
cursor:pointer;
transition:all .2s linear;
}
.single .actionsPost span i:hover{
color:var(--violet);
opacity:1;
}
.single .textPost{
font-size:16px;
line-height:22px;
}
.single .textPost h2{
font-size: 32px;
line-height: 36px;
font-weight: 700;
color: #512a44;
}
.single .textPost h3{
font-size: 28px;
line-height: 32px;
font-weight: 700;
color: #512a44;
}
.single .textPost h4{
font-size: 24px;
line-height: 30px;
font-weight: 700;
color: #512a44;
}
.single .textPost h5{
font-size: 20px;
line-height: 26px;
font-weight: 700;
color: #512a44;
}
.single .textPost img{
width:100%;
}
.single .contentPost{
padding-right:30px;
}
.item-side h2{
font-size: 18px;
font-weight: 700;
padding: 0 0 10px;
border-bottom: 1px solid #efedf7;
margin-bottom:15px;
}
.item-side .content_item{
width: 100%;
margin-bottom: 20px;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-orient: horizontal;
-webkit-box-direction: normal;
-ms-flex-direction: row;
flex-direction: row;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
-webkit-box-pack: justify;
-ms-flex-pack: justify;
justify-content: space-between;
border-radius: 12px;
-webkit-box-shadow: 0 15px 30px 0 rgba(0,77,188,.08);
box-shadow: 0 15px 30px 0 rgba(0,77,188,.08);
border: solid 1px #efedf7;
-webkit-transition: all .2s ease-in-out;
-o-transition: all .2s ease-in-out;
transition: all .2s ease-in-out;
}
.item-side .content_item .image {
border-radius: 12px;
overflow: hidden;
width: 110px;
height:80px;
}
.item-side .content_item .image img{
width:100%;
height:100%;
object-fit:cover;
}
.item-side .content_item .text_wrap {
width: calc(100% - 109px);
padding: 5px 15px 5px 15px;
font-size: 12px;
color: #512a44;
font-weight: 500;
}
.item-side .content_item .text_wrap a{
font-size: 13px;
color: #512a44;
font-weight: 500;
line-height:18px;
}
.item-side .categories-list li a{
width: 100%;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
-webkit-box-pack: justify;
-ms-flex-pack: justify;
justify-content: space-between;
padding: 14px 15px;
border-radius: 12px;
-webkit-box-shadow: 0 15px 30px 0 rgba(0,77,188,.08);
box-shadow: 0 15px 30px 0 rgba(0,77,188,.08);
border: solid 1px #efedf7;
margin-bottom: 10px;
-webkit-transition: all .2s ease-in-out;
-o-transition: all .2s ease-in-out;
transition: all .2s ease-in-out;
}
.item-side .categories-list li a span{
color:#c69eb5;
font-weight:600;
font-size:15px;
transition:all .2s linear;
}
.item-side .categories-list li a span.count{
background-color:#c69eb5;
display:flex;
align-items:center;
justify-content:center;
font-size:14px;
font-weight:600;
color:#fff;
width:28px;
height:28px;
border-radius:8px;
padding-bottom:2px;
transition:all .2s linear;
}
.item-side .categories-list li a:hover span{
color:var(--violet);
}
.item-side .categories-list li a:hover span.count{
background-color:var(--violet);
color:#fff;
}
.single .sideBar{
position:sticky;
top:100px;
}
.container.page-404 h1{
font-weight:700;
text-align:center;
font-size:101px;
line-height:1;
}
.container.page-404 h2{
font-weight:700;
text-align:center;
font-size:36px;
line-height:1;
}
.container.page-404 p{
font-weight:500;
text-align:center;
font-size:20px;
line-height:26px;
}
section#popup{
position:fixed;
background-color: rgba(13, 13, 13, 0.99);
width:100%;
height:100%;
top:0;
left:0;
z-index:99999;
transition:all .3s linear;
}
.popup{
width:100%;
max-width:400px;
background-color:transparent;
margin:100px auto;
position:relative;
}
.popup .popup_header{
background-color: var(--violet);
display:flex;
align-items:center;
justify-content:space-between;
padding:0 15px;
border-radius:15px 15px 0 0;
}
.popup .popup_header h2{
color:#fff;
font-size:22px;
font-weight:700;
margin:0;
line-height:1;
}
.popup .popup_header .close-popup{
cursor:pointer;
display:flex;
align-items:center;
justify-content:flex-end;
width:40px;
height:60px;
color:#fff;
font-size:24px
}
.popup .popup_body{
padding:20px;
background-color: #fff;
}
.popup .popup_body .content p{
font-size:16px;
text-align:center;
color:#111;
line-height:20px;
}
.popup .popup_body .content a.btn-popup{
width:100%;
display:flex;
align-items:center;
justify-content:center;
background-color: var(--violet);
height:52px;
border-radius:100px;
color:#fff;
text-transform:uppercase;
font-weight:600;
margin:10px 0;
transition:all .2s linear;
}
.popup .popup_body .content a.btn-popup i{
font-size:26px;
margin-right:12px;
}
.popup .popup_body .content a.btn-popup:hover{
background-color: #340a4f;
}
.popup .popup_body .content small{
display:block;
margin-top:20px;
font-size:12px;
text-align:center;
color:#111;
}
.popup .popup_body .content small a{
color:#233CD2;
transition:all .2s linear;
}
.popup .popup_body .content small a:hover{
color:#162895;
}
.popup .popup_footer{
background-color: #976687;
padding: 15px;
text-align: center;
color: #fff;
font-weight: 500;
font-size: 16px;
border-radius: 0 0 15px 15px;
}
.aymore-popup .popup .popup_header {
background-color: #ec0000
}
.aymore-popup .popup .popup_footer {
background-color: #f93b3b;
}
.aymore-popup .popup .popup_body .content a.btn-popup{
background-color:#ec0000;
}
.aymore-popup .popup .popup_body .content a.btn-popup:hover{
background-color:#c00;
}
.stellantis-popup .popup .popup_header {
background-color: #243784;
}
.stellantis-popup .popup .popup_footer {
background-color: #0d80f2;
}
.stellantis-popup .popup .popup_body .content a.btn-popup{
background-color:#0d80f2;
}
.stellantis-popup .popup .popup_body .content a.btn-popup:hover{
background-color:#243784;
}
.bv-popup .popup .popup_header {
background-color: #4b6fdd;
}
.bv-popup .popup .popup_footer {
background-color: #4fc8e3;
}
.bv-popup .popup .popup_body .content a.btn-popup{
background-color: #4b6fdd;
}
.bv-popup .popup .popup_body .content a.btn-popup:hover{
background-color: #4fc8e3;
}

@media(max-width:992px){
.content-header a.logo{
width:200px;
}	
.open-busca{
margin-right:15px;
}	
.menu-mobile{
width:40px;
height:40px;
display:flex;
align-items:center;
justify-content:center;
}
.menu-mobile svg{
width:100%;
height:100%;
fill:var(--red);
}
.menu-mobile svg path{
stroke:var(--red);
}
.genel_item-text{
padding:0 15px 20px 15px;
}
.genel_item picture{
height:290px;
}	
.genel_item-text .title {
font-size: 24px;
line-height: 26px;
padding-right: 20px;
margin-bottom: 15px;
}	
.genel_item-actions a{
font-size:12px;
}	
.minis-posts{
display:none;
}
.postsSection{
padding:0 10px;
}
.postsSection .postArticle {
width: 100%;
margin-bottom: 20px;
}	
.titleSection h2 {
margin: 0;
font-size: 18px;
font-weight: 600;
line-height: 22px;
padding-right: 20px;
}	
a.btnCat span{
display:none;
}
.postsSection .postArticle.genel_item-horizontal{
flex-wrap:wrap;
}	
.genel_item-horizontal .image{
width:100%;
height:200px;
}	
.genel_item-horizontal .image + .genel_item-text {
padding: 0 10px;
width: 100%;
position: relative;
height: auto;
}	
.genel_item-horizontal .genel_item-actions {
margin-top: -42px;
padding: 0;
}	
footer .content-footer .menu-footer{
display:none;
}	
footer .content-footer{
justify-content:center;
}	
footer .copyright{
flex-wrap:wrap;
flex-direction:column-reverse;
}
footer .copyright .copy{
width:100%;
padding-top:6px;
text-align:center;
}	
.site__breadcrumb ul li::after {
width: 5px;
margin: 0 10px;
}	
.slideCat .genel_item picture {
height: 280px;
}	
.slideCat .genel_item-text {
padding: 0 15px 20px 15px;
}	
.slideCat .genel_item-text .title {
padding-right: 15px;
}	
.site__card-header h1{
font-size:20px;
}	
.site__card-header .form-group label{
display:none;
}	
.single .contentPost {
padding-right: 0;
}	
.single .imagePost{
height:200px;
}	
.single h1.titlePost {
font-size: 28px;
line-height: 32px;
}	
.single .textPost{
font-size:15px;
}	
.single .textPost h2{
font-size: 26px;
line-height: 30px;
}
.single .textPost h3{
font-size: 20px;
line-height: 24px;
}
.single .textPost h4{
font-size: 16px;
line-height: 20px;
}
.single .textPost h5{
font-size: 14px;
line-height: 18px;
}	
.single .textPost{
margin-bottom:30px;
}
.site__breadcrumb {
overflow: auto;
}	
.site__breadcrumb ul li a, .site__breadcrumb ul li span {
white-space: nowrap;
}
.overlay{
position:fixed;
background-color:rgb(13,13,13,.5);
top:0;
left:0;
z-index:100;
width:100%;
height:100%;
opacity:0;
visibility:hidden;
}	
.overlay.active{
opacity:1;
visibility:visible;
}
.nav_mobile{
background-color:#fff;
position:fixed;
width:calc(100% - 80px);
height:100vh;
right:0;
top:0;
z-index:101;
transition:all .2s linear;
transform:translatex(100%);
opacity:0;
visibility:hidden;
}
.nav_mobile.active{
transform:translatex(0);
opacity:1;
visibility:visible;
}
.nav_mobile .closeMenu{
position:absolute;
width:80px;
height:80px;
display:flex;
align-items:center;
justify-content:center;
left:-80px;
z-index:101;
font-size:36px;
color:#fff;
}
.nav_mobile .content-nav-mobile{
padding:20px;
}	
.nav_mobile .content-nav-mobile .buscaMobile form{
width:100%;
flex:1 0 0%;
display:flex;
align-items:center;
justify-content:space-between;
height:42px;
border:1px solid #ccc;
border-radius:50px;
background-color:#fff;
}
.nav_mobile .content-nav-mobile .buscaMobile form input{
width:100%;
flex:1 0 0%;
padding:5px 15px;
background-color:transparent;
font-size:15px;
color:var(--red);
font-weight:500;
}
.nav_mobile .content-nav-mobile .buscaMobile form button{
display:flex;
align-items:center;
justify-content:center;
background-color:transparent;
width:42px;
height:100%;
color:var(--violet);
font-size:18px;
}
.nav_mobile .content-nav-mobile .buscaMobile{
margin-bottom:10px;
}
.nav_mobile .content-nav-mobile .itemsMenu ul li{
width:100%;
}
.nav_mobile .content-nav-mobile .itemsMenu ul li a{
display:flex;
padding:12px;
border-bottom: 1px solid #efedf7;
color:var(--red);
font-weight:600;
font-size:16px;
}
.popup .popup_header h2{
font-size:20px;
}
.popup .popup_body .content p {
font-size: 15px;
}
.popup .popup_footer{
font-size:15px;
line-height:20px;
}	
	
	
	
	
	
	
	
}
























