.main {
  background: #f7f7f7;
}

.view-id-user_logedin {
  margin: 50px 0;
}

.view-id-user_logedin .mid-container {
  display: flex;
  flex-direction: column;
}

.view-id-user_logedin .mid-wrapper {
  display: flex;
  margin: 0 0 15px 0;
}

.view-id-user_logedin .mid-wrapper .second-cl img {
  width: 100%;
  transition-duration:0.25s;
}

.view-id-user_logedin .mid-wrapper .second-cl img:hover {
   filter: opacity(0.7);
}

.view-id-user_logedin .image-cl {
  width: 80%;
  background: white;
  border-radius: 5px;
  box-shadow: 0 2px 8px 0 rgba(0,0,0,0.08);
  height:100px;
}

.view-id-user_logedin .first-cl {
  width: 15%;
}

.view-id-user_logedin .first-cl img {
  width: 95px;
  float:right;
  transform: translate(-30px, 10px);
}

.view-id-user_logedin .second-cl {
  width: 80%;
  background: white;
  display: flex;
  align-items: center;
  border-radius: 5px;
  box-shadow: 0 2px 8px 0 rgba(0,0,0,0.08);
  overflow: hidden;
}

.view-id-user_logedin .second-cl .btn-holder {
  width: 100%;
  display: flex;
  justify-content: space-around;
  margin: 0 20px;
}

.view-id-user_logedin .second-cl .btn-holder a {
  padding: 8px 20px;
  border-radius: 50px;
  background: #1bace4;
  color: white;
  display: flex;
  transition: all 0.5s;
  align-items:center;
}

.view-id-user_logedin .second-cl .btn-holder a:hover {
  text-decoration: none;
  opacity: 0.7;
}

.view-id-user_logedin .second-cl .btn-holder a:nth-child(4) {
  padding: 8px 20px;
  border-radius: 50px;
  border: 1px solid #1bace4;
  background: white;
  color: #1bace4;
  transition: all 0.5s;
}

.view-id-user_logedin .second-cl .btn-holder a:nth-child(4):hover {
  opacity: 1;
  background: #1bace4;
  color: white;
}

.view-id-user_logedin .second-cl .btn-holder a svg {
  width: 10px;
  fill: white;
  margin: 0 5px 0 0;
}

.view-id-user_logedin .second-cl__large {
  width: 80%;
  background: white;
  padding: 50px;
  border-radius: 5px;
  box-shadow: 0 2px 8px 0 rgba(0,0,0,0.08);
}

.view-id-user_logedin .second-cl__large h1 {
  font-size: 2.5rem;
}

.view-id-user_logedin .second-cl__large ul {
  display: flex;
  padding: 0;
  margin: 0;
  list-style: none;
  justify-content: flex-start;
  border-bottom: 1px solid #1bace4;
}

.view-id-user_logedin .second-cl__large ul li {
  color: #1bace4;
  padding: 8px;
  border-radius: 10px 10px 0 0;
  transition: all 0.5s;
  cursor: pointer;
}

.view-id-user_logedin .second-cl__large ul li:hover {
  opacity: 0.7;
  color: white;
  background: #1bace4;
}

.view-id-user_logedin .second-cl__large ul li a {
  color: #1bace4;
  transition: all 0.5s;
  text-decoration: none;
}

.view-id-user_logedin .second-cl__large ul li:hover a {
  opacity: 0.7;
  color: white;
}

.view-id-user_logedin .second-cl__large ul li.active {
  background: #1bace4;
}

.view-id-user_logedin .second-cl__large ul li.active a {
  color: white;
}

.view-id-user_logedin .second-cl__large .second-cl__img-container {
  margin-top: 40px;
}

.view-id-user_logedin .second-cl__large .second-cl__img-container img {
  width: 100%;
}

#geral.visible, #noticias.visible, #oportunidades.visible, #projetos.visible {
  opacity: 1;
  visibility: visible;
  display: block;
}

#geral, #noticias, #oportunidades, #projetos {
  display: none;
  transition: all 0.5s;
  opacity: 0;
  visibility: hidden;
}

