html {
  scroll-behavior: smooth;
  scroll-padding-top: 5.5rem;
}
body {
  font-family: 'Exo';
  margin: 0;
  padding-top: 80px;
  padding-bottom: 60px;
  background: rgba(0, 0, 0, 0.2);  
  font-size: larger;
  color: #353537;
}

#main-content {
  text-align: justify;
}

section {
  margin-bottom: 40px;
  box-shadow: 0 10px 16px 0 rgba(0, 172, 234, 0.2), 0 6px 20px 0 rgba(0, 172, 234, 0.19) !important;
  padding: 15px;
  background: rgba(255, 255, 255, 1); 
  transition: all 200ms ease-out;
  transition-behavior: normal;
  transition-duration: 200ms;
  transition-timing-function: ease-out;
  transition-delay: 0s;
  transition-property: all;
}

section:hover{
  margin-bottom: 40px;
  box-shadow: 0 10px 16px 0 rgba(2, 128, 219, 0.2), 0 6px 20px 0 rgba(2, 128, 219, 0.19) !important;
  padding: 15px;
  background: rgba(255, 255, 255, 1);  
}

h2 {
  color: #00ACEA;
  text-align: center;
}

.parallax {
    background-image: url(images/Geomonitoring_Logo-00.png);
    /* filter: grayscale(100%); */
    min-height: 758px;
    /* filter: grayscale(100%) blur(4px); */
    background-attachment: fixed;
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
}

.vertical{
	position: fixed;
	top: 100px;
	left: 25px;
	width: 40px;
}

.vertical a{
	color: #80542A !important;
	transition: all 200ms ease-out;
	transition-behavior: normal;
	transition-duration: 200ms;
	transition-timing-function: ease-out;
	transition-delay: 0s;
	transition-property: all;
}

.vertical a:hover{
	color: #353537 !important;
	cursor: pointer;
}

@media only screen and (max-width: 1070px) {
    .vertical {
        display: none;
    }
}

ol {
	list-style: none;
	padding: 0;
}

ol li + li {
	margin-top: 1rem;
}

ol li {
	display: flex;
	align-items: center;
	gap: 1rem;
	background: #0280DB;
	padding: 1rem;
	border-radius: 1rem;
	width: calc(100% - 2rem);
	box-shadow: 0.25rem 0.25rem 0.75rem rgb(0 0 0 / 0.1);
	color: white;
}

ol li::before {
	counter-increment: list-item;
	content: counter(list-item);
	font-size: 1.5rem;
	font-weight: 700;
	width: 2em;
	height: 2em;
	background: #353537;
	flex: 0 0 auto;
	border-radius: 50%;
	color: white;
	display: flex;
	justify-content: center;
	align-items: center;
}

ol li:nth-child(even) {
	flex-direction: row-reverse;
	background: #41A81F;
	margin-right: -2rem;
	margin-left: 2rem;
}

.link{
  color: #41A81F !important;
  text-decoration: none !important;
  text-transform: uppercase !important;
}

.link:hover {
  text-decoration: underline !important;
}

.link:active {
  color: #79CD4B !important;
}