*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Roboto Condensed";
}

.center{
     max-width: 1100px;
    padding: 0 2%;
    margin: 0 auto;
}
 
body{
    background-color: rgb(245, 240, 240);
}
 
header{
    background-color: white;
}

.clear{
    clear:both;
}
header > .center{
    display: flex;
   
}
.logo-header{
   width: 20%;
}
.logo-header img{
    width: 100%;
    max-width: 65px;
}
.search{
    text-align: center;
    width: 500px;
    padding-top: 15px;
}

.search-box{
    display: inline-block;
    position: relative;
}

.search-box input{
    background-color:rgb(245, 240, 240);
    padding: 5px 10px;
    width: 200px;
    text-align: center;
    border: 1px solid rgb(200, 200, 200);   
}

.search-box i{
    position: absolute;
    left: 40px;
    transform: translate(-50%,0);
    top: 8px;
    opacity: 0.3;
}
.icons-item{
    width: 20%;
    text-align: right;
    padding-top: 20px;
}

.icons-item a{
    text-decoration: none;
    color: black;
    font-size: 17px;
    margin-right: 5px;

}

.img-perfil-wraper{
    float: left;
    width: 50%;
    padding: 0 50px;
}

.img-perfil{
    background-size: 100% 100%;
    width: 50%;
    padding-top: 50% ;
    border-radius: 50%;
    border: 3px solid #ccc;
    background-repeat: no-repeat;
}

.texto-perfil{
    float: left;
    width: 50%;
}
.nome-perfil span{
    font-size: 23px;
    font-weight: 300;
}
.nome-perfil a{
    text-decoration: none;
    margin: 0 8px;
    color: black;
    border: 1px solid #ddd;
    padding: 4px 10px1;

}

.nome-perfil a.icon{
    text-decoration: none;
    color: #000;
    font-size: 22px;
}

.texto-perfil p{
    font-size: 23px;
    font-weight: 300;
}

.info-perfil p{
    display: inline-block;
    margin-right: 10px;
}

.descricao-perfil h3{
font-size: 18px;

}
.descricao-perfil p{
    font-weight: 300;
    font-size: 16;
    margin-top: 8px;

}

section.feed{
    padding: 60px 0;

}

.line-feed{
    border-top: 1px solid #ccc;
    text-align: center;
}

.line-marcacao{
    display: none;
    position: absolute;
    width: 90px;
    height: 1px;
    background-color: black;
    top: -10px;
}

.single-line-name{
 text-transform: uppercase;
 margin: 10px 10px;
 position: relative;
 font-size: 16px;
 font-weight: 300;
 cursor: pointer;
 display: inline-block;
}

 .publicacao-single{
   float: left;
   width: 33.3%; 
   padding-top: 33.3%;
   border: 4px solid white;
   background-size: 100% 100%;
}

/*estilo padrão para as abas*/

#reels{
    display: none;
}

@media screen and (max-width:580px) {
    .search-box{
        display: none;
    }

    .icons-item{padding-top: 8px;}
}