* {
  margin: 0;
  padding: 0;
  font-family: 'Lato', sans-serif !important;
}

p {
  margin: 0;
}

figure {
  margin: 0 !important;
}

html {
  scroll-behavior: smooth;
}

a {
  text-decoration: none !important;
}

a:hover {
  text-decoration: none !important;
}

button {
  border: none;
  background-color: transparent;
}

header {
  background-color: white;
}

table {
  width: 100%;
  font-size: 14px;
}


label {
  margin: 0 !important;
}

.logo_name {
  font-size: 22px;
  color: #fff;
  font-weight: 600;
  transition: 0.3s ease;
  transition-delay: 0.1s;
}

.div-form {
  background-color: white;
}

.header {
  top: 0;
  z-index: 1;
  position: sticky;
  margin-bottom: 2rem;
  border-bottom: 1px #eaeaea solid;
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: center;
}

.menu {
  margin: 0;
  display: flex;
  list-style: none;
}

.menu-item  a{
  color: black;
  text-decoration: none;
}

.menu-item a:hover {
  opacity: .3;
  color: black;
  text-decoration: none;
  transition: .2s ease-in-out;
}

.menu-item:not(:last-child) {
  margin-right: 1.5rem;
}

.navigation-desktop {
  width: 50%;
}

.mobile-menu-open {
  display: none;
}

.mobile-menu {
  padding-left: 1rem;
}

@keyframes header-animation {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
    transform: translateY(0)
  }
}

.navigation-mobile {
  animation-duration: .3s;
  background-color: #f2f2f2;
  animation-fill-mode: forwards;
  animation-name: header-animation;
  animation-timing-function: ease-in-out;
}

.navigation-mobile {
  width: 100%;
  height: 100vh;
  display: none;
  padding-left: 1rem;
  background-color: #f2f2f2;
}

.navigation-mobile ul {
  display: flex;
  list-style: none;
  flex-direction: column;
}

.navigation-mobile ul li {
  padding: 1rem 0;
}

.navigation-mobile ul li a {
  color: black;
  text-decoration: none;
}

.section div {
  width: 50%;
}

.hero {
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero .first-content h1 {
  font-weight: 700;
  font-size: 1.875rem;
  line-height: 2.25rem;
  margin-bottom: 1rem;
}

.hero .first-content p {
  font-size: .875rem;
  line-height: 1.25rem;
  margin-bottom: 1rem;
}

.hero .first-content .button-content {
  width: 100%;
  display: flex;
  align-items: center;
  flex-direction: column;
}

.hero .first-content .button-content a{
  text-decoration: none;
  color: initial;
  width: unset;
}


.hero .second-content {
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn-filled {
  width: 100%;
  padding: 0.75rem; 
  border-radius: 100px;
  text-transform: uppercase;
  background-color: #fab318;
  border: 3px #fab318 solid;
}

.btn-outlined {
  width: 100%;
  padding: 0.75rem; 
  color: #fab318;
  border-radius: 100px;
  text-transform: uppercase;
  border: 3px #fab318 solid;
}

.btn-outlined:hover {
  transition: .2s ease-in-out;
  box-shadow: 0 9px 20px 0 rgba(250, 179, 24, 0.2);
}

.btn-filled:hover {
  transition: .2s ease-in-out;
  box-shadow: 0 9px 20px 0 rgba(250, 179, 24, 0.2);
}

.divider {
  width: 60%;
  height: 1px;
  color: #eaeaea;
  margin: 3rem auto;
}

.title-section {
  font-weight: 700;
  font-size: 2.25rem;
  text-align: center;
  line-height: 2.5rem;
  margin-bottom: 3rem;
}

.section-default {
  display: flex;
  margin-bottom: 3rem;
}

.section-default .first-content-section {
  width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.section-default .first-content-section .header-section {
  font-weight: 700;
  font-size: 2.25rem;
  line-height: 2.5rem;
  margin-bottom: .75rem;
}

.section-default .first-content-section .paragraph-section {
  font-size: 1rem;
  line-height: 1.5rem;
  margin-bottom: .75rem;
}

.section-default .second-content-section {
  width: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.section-default .second-content-section img {
  width: 100%;
}

.invert-section {
  flex-direction: row-reverse;
}

.section-default:nth-child(odd) .first-content-section{
  margin-left: 3rem;
}

.section-team {
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
  justify-content: space-evenly;
}

.section-team div {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
}
.section-team img {
  width: 200px;
  border-radius: 100px;
  box-shadow: 4px 5px 15px 5px #aaa;
}

.section-team .team-info p:first-child {
  margin-top: 1rem;
  font-weight: 700;
}

.section-team .team-info p {
  margin: 0;
}

.footer {
  width: 100%;
  height: 300px;
  display: flex;
  color: white;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  background-color: black;
}

.footer div {
  text-align: center;
}

.footer span {
  color: white;
  margin-top: 2rem;
}

.footer p {
  margin: 0;
}

.footer a {
  color: white;
  text-decoration: none;
  transition: .3s ease-in-out;
}

.footer a:hover {
  color: unset;
  opacity: .3;
}

.login-page {
  width: 100vw;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #f2f2f2;
}

.form-login {
  width: 100%;
  max-width: 648px;
  padding: 3rem 2rem;
  border-radius: 1rem;
  background-color: white;
  box-shadow: 0 5px 10px 0 rgb(0 0 0 / 10%);
  -webkit-box-shadow: 0 5px 10px 0 rgb(0 0 0 / 10%);
}

.form-login h1 {
  font-weight: 700;
  font-size: 2.25rem;
  line-height: 2.5rem;
  margin-bottom: 1rem;
}

.form-login p {
  font-size: .75rem;
  line-height: 1rem;
  margin-bottom: 1rem;
}

.form-login .button {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.form-login .button button {
  width: 50%;
}

.footer-form-login {
  display: flex;
  margin-top: 1.25rem; 
  padding-top: .75rem;
  align-items: center;
  justify-content: center;
  border-top: 2px #1e333b solid; 
}

.footer-form-login p{
  color: black;
  font-size: .75rem;
  text-align: center;
  text-decoration: none;
}

.admin {
  width: 648px;
}

.side-menu {
  width: 250px;
  height: 100vh;
  background-color: #12192C;
}

.side-menu header {
  padding: .7rem 1rem;
  background-color: #12192C;
  border-bottom: 1px #1e333b solid;
}

.side-menu details {
  display: flex;
  color: white;
  font-weight: bold;
}

.side-menu .hamburguer img {
  filter: invert(99%) sepia(100%) saturate(5%) hue-rotate(129deg) brightness(103%) contrast(103%);
  width: 30px;
}

.side-menu .info-user {
  display: flex;
  color: white;
  font-size: .85rem;
  align-items: center;
  padding: .7rem 1rem;
  border-bottom: 1px #1e333b solid;
}

.side-menu .info-user p {
  margin: 0;
  font-size: .75rem;
}

.side-menu .info-user .user-image {
  width: 60px;
  margin-right: 1rem;
}

.side-menu nav {
  margin-left: 1rem;
}

.side-menu ul {
  list-style: none;
}

.side-menu .menu-item {
  display: flex;
}

.details {
  padding: .75rem .1rem;
  background-color: #12192C;
  transition: .2s ease-in-out;
}

summary {
  list-style: none;
}

.details a{
  color: white;
  list-style: none;
  margin-top: 1rem;
  margin-left: 1rem;
}

.details .chevron-icon {
  filter: invert(99%) sepia(100%) saturate(5%) hue-rotate(129deg) brightness(103%) contrast(103%);
}

.icon-white {
  filter: invert(99%) sepia(100%) saturate(5%) hue-rotate(129deg) brightness(103%) contrast(103%);
}

.rotate {
  transform: rotate(90deg);
}

.metadata-admin {
  margin-top: 40px;
}

.content {
  height: 100vh;
  overflow-y: scroll;
  background: #f2f2f2;
  padding: 80px 0 40px 0;
}

.metadata .first-fieldset {
  padding-bottom: 40px;
}

.metadata .second-fieldset {
  padding-bottom: 20px;
}

.metadata .icon-tooltip {
  width: 14px;
  cursor: pointer;
  margin-bottom: 16px;
}

.metadata .authorDiv {
  background-color: white;
  box-shadow: 0 5px 10px 0 rgb(0 0 0 / 10%);
  -webkit-box-shadow: 0 5px 10px 0 rgb(0 0 0 / 10%);
}

.box-shadow-content {
  box-shadow: 0 5px 10px 0 rgb(0 0 0 / 10%);
  -webkit-box-shadow: 0 5px 10px 0 rgb(0 0 0 / 10%);
  padding: 30px 40px;
  background: white;
}

.first-content {
  padding: 10px 30px;
  background-color: papayawhip;
  box-shadow: 0 5px 10px 0 rgb(0 0 0 / 10%);
  -webkit-box-shadow: 0 5px 10px 0 rgb(0 0 0 / 10%);
}

@media (max-width: 767px) {
  .hero .second-content {
    display: none;
  }

  .hero .first-content .button-content {
    flex-direction: column;
  }

  .section-default {
    flex-direction: column;
  }

  .section-default .first-content-section {
    width: 100%;
  }

  .section-default .second-content-section {
    width: 100%;
  }

  .section-default:nth-child(odd) .first-content-section{
    margin-left: 0;
  }

  .section-team {
    flex-wrap: wrap;
  }
  
  .section-team div {
    margin-bottom: 1rem;
  }

  .admin {
    width: 300px;
  }
}

@media (max-width: 1023px) {
  .header-content {
    padding: .75rem 0;
    justify-content: start;
  }

  .header-logo {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .navigation-desktop {
    display: none;
  }

  .hero .first-content .button-content  {
    margin-right: 1.25rem;
    flex-direction: row;
  }

  .divider {
    margin: 2rem auto;
  }

  .hero .first-content .button-content button:first-child {
    margin-right: .75rem;
  }

  .hero .first-content .button-content button:nth-child(2) {
    margin-left: .75rem;
  }

  .hero .second-content {
    display: none;
  }

  .section-default .first-content-section .paragraph-section {
    width: 100%;
  }

  .logo-hero {
    width: 66%;
  }

  .metadata .input-authors {
    margin-top: 20px;
  }
}

@media (min-width: 1024px) {
  .header-content { 
    padding: 2rem 0;
  }

  .header-logo {
    width: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .mobile-menu {
    display: none;
  }
  
  .navigation-mobile {
    display: none;
  }
  
  .hero .first-content .button-content{
    flex-direction: row;
  }

  .hero .first-content .button-content button:first-child {
    margin-right: 1.25rem;
  }

  .logo-hero {
    width: 66%;
  }

  .section-default .first-content-section .paragraph-section {
    width: 80%;
  }
}