* {
	border: 0;
	box-sizing: border-box;
	margin: 0;
	padding: 0;
	font-family: "Exo 2", sans-serif !important;
}
:root {
	--hue: 223;
	--bg: hsl(var(--hue),10%,90%);
	--fg: hsl(var(--hue),10%,10%);
	--primary: hsl(var(--hue),90%,50%);
	--trans-dur: 0.3s;
	--trans-timing: cubic-bezier(0.65,0,0.35,1);
	font-size: calc(16px + (24 - 16) * (100vw - 320px) / (2560 - 320));
}
a {
	color: var(--primary);
	transition: color var(--trans-dur);
}
body,
button {
	color: var(--fg);
	font: 1em/1.5 "Exo 2", sans-serif;
}


body {
	background: #d5e5c7 !important;
	background-position: 80% -80%, center 200% !important;
	height: 100vh;
	transition: background-color var(--trans-dur), color var(--trans-dur);
	position: relative;
	display: flex;
	flex-direction: column;
}

.content {
	flex: 1;
}

#background1, #background2 {
	position: absolute;
	width: 100%;
	height: 100%;
	background-size: contain;
	background-repeat: no-repeat;
	z-index: -4;
}

#background1 {
	background-image: url(/img/catavento1.png);
	animation: float1 9s infinite ease-in-out;
	left: -50%;
    top: -20%;
    max-width: 1600px;
    
}

#background2 {
	background-image: url(/img/catavento2.png);
	animation: float2 10s infinite ease-in-out;
	background-position: bottom;
}

@keyframes float1 {
	0% { transform: translate(0, 0); }
	50% { transform: translate(60px, -60px); }
	100% { transform: translate(0, 0); }
}

@keyframes float2 {
	0% { transform: translate(0, 0); }
	50% { transform: translate(-60px, 60px); }
	100% { transform: translate(0, 0); }
}



.it{
	color:#1E5223;
	margin-bottom: 20px;
	padding-left: 20px;
	
}

.it h2{
	font-size: 20px;
}

.it p{
	font-size: 15px;
}

.it small{
	font-size: 13px;
	line-height: 13px;
}

h1 {
	font-size: 2em;
	margin: 0 0;
	padding-top: 1.5rem;
	text-align: center;
}

.title{
	text-decoration: none;
	color: #FFF;
	line-height: 70px;
	font-size: 30px;
}

#logo{
    width: 100%;
    max-width: 400px;
    padding: 0 3%;
	display: block;
	margin: 0 auto;
}

.btn-seminario.bt1{
	background: #6db63b !important;
}
.btn-seminario.bt2{
	background: #63c7ef !important;
}
.btn-seminario.bt3{
	background: #ec641b !important;
}

footer{
    background: #fff;
    padding: 30px;
    margin-top: 3em;
}

footer p{
	text-align: center;
	margin-top: 20px;
}

.logos{
	width: 100%;
	max-width: 400px;
	display: block;
	margin: auto;

}

h4 {
	font-size: 1em;
	margin: 0 0;
	padding: 1.5rem 0;
	text-align: center;
    color:#FFFEE9;
}

.btn {
	background-color: var(--fg);
	border-radius: 0.25em;
	color: var(--bg);
	cursor: pointer;
	padding: 0.375em 0.75em;
	transition:
		background-color calc(var(--trans-dur) / 2) linear,
		color var(--trans-dur);
	-webkit-tap-highlight-color: transparent;
    display: none;
}
.btn:hover {
	background-color: hsl(var(--hue),10%,50%);
}
.btn-group {
	display: flex;
	gap: 0.375em;
	margin-bottom: 1.5em;
}
.timeline {
	margin: 80px auto;
    padding: 0 2.5em;
    width: 100%;
    max-width: 36em;
    background: #fff;
    border-radius: 20px;
}
.timeline__arrow {
	background-color: transparent;
	border-radius: 0.25em;
	cursor: pointer;
	flex-shrink: 0;
	margin-inline-end: 0.25em;
	outline: transparent;
	width: 2em;
	height: 2em;
	transition:
		background-color calc(var(--trans-dur) / 2) linear,
		color var(--trans-dur);
	-webkit-appearance: none;
	appearance: none;
	-webkit-tap-highlight-color: transparent;
    opacity: 0;
	display: none;
}
.timeline__arrow:focus-visible,
.timeline__arrow:hover {
	background-color: hsl(var(--hue),10%,50%,0.4);
}
.timeline__arrow-icon {
	display: block;
	pointer-events: none;
	transform: rotate(-90deg);
	transition: transform var(--trans-dur) var(--trans-timing);
	width: 100%;
	height: auto;
}
.timeline__date {
	font-size: 1em;
	line-height: 2.4;
    color: #1E5223;
}
.timeline__dot {
	background-color: #00923D;
	border-radius: 50%;
	display: inline-block;
	flex-shrink: 0;
	margin: 0.625em 0;
	margin-inline-end: 1em;
	position: relative;
	width: 0.75em;
	height: 0.75em;
}
.timeline__item {
	position: relative;
	padding-bottom: 2.25em;
}
.timeline__item:not(:last-child):before {
	background-color: #ea6419;
	content: "";
	display: block;
	position: absolute;
	top: 1em;
	left: 0.36em;
	width: 0.125em;
	height: 100%;
	transform: translateX(-50%);
}
[dir="rtl"] .timeline__arrow-icon {
	transform: rotate(90deg);
}
[dir="rtl"] .timeline__item:not(:last-child):before {
	right: 2.625em;
	left: auto;
	transform: translateX(50%);
}
.timeline__item-header {
	display: flex;
}
.timeline__item-body {
	border-radius: 0.375em;
	overflow: hidden;
	margin-top: 0.5em;
	margin-inline-start: 4em;
	height: 0;
}
.timeline__item-body-content {
	background-color: hsl(var(--hue),10%,50%,0.2);
	opacity: 0;
	padding: 0.5em 0.75em;
	visibility: hidden;
	transition:
		opacity var(--trans-dur) var(--trans-timing),
		visibility var(--trans-dur) steps(1,end);
}
.timeline__meta {
	width: 100%;
}
.timeline__title {
	font-size: 1.5em;
	line-height: 1.333;
    color: #303030;
}
/* Expanded state */
.timeline__item-body--expanded {
	height: auto;
}
.timeline__item-body--expanded .timeline__item-body-content {
	opacity: 1;
	visibility: visible;
	transition-delay: var(--trans-dur), 0s;
}
.timeline__arrow[aria-expanded="true"] .timeline__arrow-icon {
	transform: rotate(0);
}

/* Dark theme */
@media (prefers-color-scheme: dark) {
	:root {
		--bg: hsl(var(--hue),10%,10%);
		--fg: hsl(var(--hue),10%,90%);
		--primary: hsl(var(--hue),90%,70%);
	}
}

.maps .col-md-6 a img{
	display: block;
	margin: 0 auto;
	transition: all .2s ease-in-out; 
	margin-bottom: 50px;
}

.maps .col-md-6 a img:hover{
	transform: scale(1.1);
}

.btn-seminario{
	background: #593d1f !important;
	color:#FFF !important;
	font: 1em/1.5 "Exo 2", sans-serif !important;
}
.btn-seminario-green{
	background: #00923D !important;
	color:#FFF !important;
	font: 1em/1.5 "Exo 2", sans-serif !important;
}

#main{
	background: url(../img/bg-site.jpg), #24602a !important;
    background-size: cover;
	background-attachment: fixed !important;
}

.btn-sem{
	padding: 50px 10px !important;
}

.btn-sem img{
	display: block;
	margin: 0 auto 30px;
}



:root {
	--black: oklch(17.7% 0.105 262.48);
	--purple: oklch(60% 0.37 294.7);
	--orange: oklch(60% 0.37 64.65);
	--yellow: oklch(60% 0.37 109.08);
	--blue: oklch(60% 0.37 237.06);
	--black-alpha-50: color-mix(in oklch, var(--black), transparent);
  }
  
  @property --gradient-angle {
	inherits: false;
	initial-value: 0deg;
	syntax: "<angle>";
  }
  
  @keyframes spin {
	to {
	  --gradient-angle: 360deg;
	}
  }
  
a.effect{
	display: table;
    text-decoration: none;
    border: 2px solid #00923D;
    text-align: center;
    color: #fff;
    margin: 0px auto 30px;
    padding: 10px;
	border-radius: 50px;
	width: 100%;
	background: #00923D;

	&:hover{
		background-color: #00923D;
	}
}

a.effect img{
	width: 30px;
	margin: 0 10px;
}

.img-sicredi{
	display: block;
	margin: 0 auto;
	width: 200px;
	padding: 30px;
}

.title-event{
	color:#1E5223;
}

.content-top.top-index h1{
	color: #1E5223;
}

.content-top h1{
	font-weight: bold;
}

.content-top p{
	text-align: center;
	margin-top: 10px;
}

@media screen and (max-width: 600px) {
	h1{
		font-size: 1.2em;
		line-height: 40px;
	}

	#background1{
		left: -30%;
		top: 0%;
		max-width: 1600px;
		width: 580px;
		margin-top: -50px;
	}
	#background2{
		top: 150%;
	}


	@keyframes float1 {
		0% { transform: translate(0, 0); }
		50% { transform: translate(10px, -10px); }
		100% { transform: translate(0, 0); }
	}

	.timeline{
		padding: 20px 2.5em;
	}
}

@media screen and (min-width: 600px) {

	
	#background1{
		left: 50%;
		top: 0%;
		max-width: 1600px;
		width: 1000px;
		margin-left: -550px;
		margin-top: -100px;
	}

	#background2{
		top: 100%;
	}

	@keyframes float1 {
		0% { transform: translate(0, 0); }
		50% { transform: translate(10px, -10px); }
		100% { transform: translate(0, 0); }
	}

	.timeline{
		padding: 20px 2.5em;
	}
}