/*RESET CSS =================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  :root {
    --primary-color: #175906;
    --second-color: #068FDC;
    --color-text: #fff; 
    --bg-color: #F0F0F0;
    --paragraph: ;
  
    --nav-height: 7.2rem;
  
    font-size: 62.5%; /* 1rem = 10px */
  }
  
  html {
    scroll-behavior: smooth;
  }
  
  html,
  body {
    width: 100%;
    height: 100%;
  }
  
  ul {
    list-style: none;
  }

/*====BASE============================ */

  .wrapper {
    width: min(50rem, 100%);
    margin-inline: auto;
  
    padding-inline: 2.4rem;
  }

/*====  scrollbar ============================ */

::-webkit-scrollbar {
    width: 1rem;
  }
  
  ::-webkit-scrollbar-thumb {
    width: 1rem;
    background-color: var(--primary-color);
  }

/*====INSTITUTIONAL============================ */
header h1 {
    font-family: 'Ubuntu', sans-serif;
    font-size: 5rem;
    font-weight: 700;

    margin-bottom: 3rem;

    margin-top: var(--nav-height);
}

#institutional {
    font-family: 'Ubuntu', sans-serif;
    background-color: var(--bg-color);
}

#institutional h2 {
    font-size: 2.5rem;
    font-weight: 700;
    text-transform: uppercase;
}

#institutional .content {
    display: flex;
    flex-direction: column;
}

#institutional .content img {
    margin-bottom: 1rem;

    width: 100%;
    background-color: var(--primary-color);
}

#institutional .content p {
    font-size: 1.3rem;
    line-height: 1.6;
    
    margin-bottom: 3rem;
}

#institutional .content p span {
  font-weight: 700;
}

@media (min-width: 1080px) {
  #institutional .content p {
    font-size: 1.8rem;
  }
}
