/*# sourceMappingURL=transparency-channel.css.map */

.transparency-channel {
	margin-top: 86px;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 24px;
	align-items: center;
	background-image: radial-gradient(#e3e3e3 1.5px, transparent 1.5px);
	background-size: 32px 32px;
	background-color: #fbfbfb;
}

.transparency-channel .container {
	width: 1140px;
	margin: 0 auto;
	display: flex;
	justify-content: flex-start;
	flex-wrap: wrap;
	gap: 24px;
}

.transparency-channel__banner {
	display: flex;
	align-items: center;
	height: 640px;
	width: 100%;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center 20%;
	padding: 4rem;
}

@media screen and (max-width: 768px) {
	.transparency-channel__banner {
		padding: 20px;
	}
}

.transparency-channel__banner h1 {
	font-size: 4.2rem;
	line-height: 1.3em;
	color: white;
	text-shadow: 0px 0px 7px rgba(0, 0, 0, .5);
}

.transparency-channel__banner h1 span {
	font-size: 5rem;
	color: #fecf5e;
	text-shadow: 2px 2px 0px #055b9b;
}

.transparency-channel__description {
	background-color: #f3f3f3;
	margin-block-start: 24px;
	box-shadow: 0px 0px 15px rgba(0, 0, 0, .2);
	padding: 1rem;
	border-radius: 8px;
}

.transparency-channel__description p {
	font-size: 1rem;
	line-height: 1.3em;
}

.transparency-channel__description p strong {
	color: #044a8b;
	font-size: 1.3rem;
}

.transparency-channel__content {
	padding: 1rem 0rem 2rem 0rem;
	margin: 0 auto;
}

.transparency-channel__card {
	background-color: #055b9b;
	border-radius: 8px;
	background-size: cover;
	background-position: center center;
	box-shadow: 0px 0px 15px rgba(0, 0, 0, .1);
	display: flex;
	width: 500px;
	height: 280px;
	align-items: flex-start;
	flex-direction: row;
	justify-content: space-between;
}

@media screen and (max-width: 768px) {
	.transparency-channel__card {
		flex-direction: column;
		width: 100%;
		height: 650px;
	}
}

.transparency-channel__card i {
	font-size: 4rem;
	color: #fecf5e;
	text-shadow: 2px 2px 0px #055b9b;
}

.transparency-channel__button {
	display: flex;
	justify-content: flex-start;
}

.transparency-channel__button a {
	color: #055b9b !important;
	background-color: #fecf5e !important;
	border-radius: 8px;
	transition: .5s;
}

.transparency-channel__button a:hover {
	color: #fecf5e !important;
	background-color: #00345c !important;
	transition: .5s;
}

.transparency-channel__card-content {
	flex: 1;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	padding: 2rem 2rem 2rem 2rem;
	width: 100%;
}

@media screen and (max-width: 768px) {
	.transparency-channel__card-content {
		flex: 0;
	}
}

.transparency-channel__card-content span {
	color: #055b9b;
	font-size: 1.3rem;
	font-weight: 600;
}

.transparency-channel__card-content h3 {
	margin-top: 1.2rem;
	font-size: 2.3rem;
	color: #fff;
}

.transparency-channel__card-content ul {
	margin-left: 1rem;
}

.transparency-channel__card-content p {
	color: #fff;
	margin-bottom: 2rem;
}

.transparency-channel__card-content a {
	background-color: #055b9b;
	padding: 10px 24px;
	color: white;
	font-size: 1.2rem;
	text-decoration: none;
}

.transparency-channel__card-content a:hover {
	background-color: #00345c;
	transition: .5s;
}

.transparency-channel__card-image {
	flex: 1;
	width: 300px;
	height: 100%;
	padding: 0;
	margin: 0;
	overflow: hidden;
	border-radius: 8px 0px 0px 8px;
}

.transparency-channel__card-image img {
	width: 100%;
	height: auto;
	object-fit: cover;
	overflow: hidden;
}

#modal1, #modal2, #modal3, #modal4 {
	display: none;
}

.modal {
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	background-color: #fff;
	padding: 50px;
	z-index: 1000000000000000000000;
	border-radius: 10px;
	box-shadow: 0 0 10px rgba(0, 0, 0, .5);
	width: 640px;
	animation-name: modalopen;
	animation-duration: .1s;
	animation-timing-function: ease-out;
	animation-fill-mode: forwards;
	max-height: 80vh;
	overflow-y: auto;
}

.modal input, .modal select {
	width: 100%;
	padding: 10px;
	margin-bottom: 10px;
	border: 1px solid #ccc;
	border-radius: 5px;
}

.modal__consent {
	width: auto !important;
	margin-right: 10px;
}

.modal .anonimo {
	width: auto !important;
	margin-right: 10px;
}

.modal .anonimo input {
	width: 15px !important;
}

@media screen and (max-width: 768px) {
	.modal {
		width: 98%;
		padding: 20px;
	}
}

.modal .close-modal {
	position: absolute;
	top: 10px;
	right: 10px;
	font-size: 2rem;
	cursor: pointer;
}

.modal .wpcf7-form label {
	text-align: left;
}

@keyframes modalopen {
	from {
		transform: translate(-100%, -100%);
	}
	
	to {
		transform: translate(-50%, -50%);
	}
}

.modal::-webkit-scrollbar {
	width: 6px;
}

.modal::-webkit-scrollbar-track {
	background-color: #f1f1f1;
	border-radius: 4px;
}

.modal::-webkit-scrollbar-thumb {
	background-color: #1971c2;
	opacity: .5;
	border-radius: 4px;
}

.modal::-webkit-scrollbar-thumb:hover {
	opacity: 1;
	background-color: #1971c2;
}
