@charset "UTF-8";

@font-face {
	font-family: "Verdana";
	src: local("Verdana"), url("../webfonts/Verdana.woff2") format("woff2"), url("../webfonts/Verdana.woff") format("woff");
	font-weight: normal;
	font-style: normal;
}

@font-face {
	font-family: "Verdana";
	src: local("Verdana Bold"), local("Verdana-Bold"), url("../webfonts/Verdana-Bold.woff2") format("woff2"), url("../webfonts/Verdana-Bold.woff") format("woff");
	font-weight: bold;
	font-style: normal;
}

a {
	color: #033d60;
	text-decoration: none;
}

	a:hover {
		text-decoration: underline;
		color: #0056b3;
	}

.color {
	color: #033d60;
}

.bg-color {
	color: #d4d9e2;
}

.text-color {
	color: #645f77;
}

.green {
	color: #2ABA66;
}

.blue {
	color: #3BAFDA;
}

.red {
	color: #ee1d23;
}

.bg-green {
	background: #2ABA66;
}

.bg-blue {
	background: #3BAFDA;
}

.bg-red {
	background: #ee1d23;
}

.btn-primary {
	background: #033d60;
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	outline: 0;
	font-family: "Verdana";
}

h1, h2, h3, h4, h5, ul,
.icon {
	color: #033d60;
}

p, ol, ul {
	color: #645f77;
	margin-bottom: 0;
}

.hidetitle {
	position: absolute;
	text-indent: -99999px;
}

.button {
	background: #033d60;
	color: white;
	padding: 10px;
}

form {
	position: relative;
}

	form input, form select {
		position: relative;
		width: 100%;
		border: 1px solid #d4d9e2;
		border-width: 2px 0 2px;
		padding: 8px 10px;
	}

	form button {
		background: none;
		border: none;
		padding: 10px;
	}

	form .search-header {
		position: relative;
		box-shadow: 0 5px 15px 0 rgba(0, 0, 0, 0.09);
		border: 1px solid #645f77;
		border-radius: 13px;
		display: flex;
		align-items: center;
		padding: 8px 10px;
	}

		form .search-header input {
			border: none;
		}

.bootstrap-select {
	width: 100% !important;
}

.fa-info {
	background: #033d60;
	color: white;
	border-radius: 100%;
	display: inline-flex !important;
	align-items: center;
	justify-content: center;
	width: 20px;
	height: 20px;
}

header {
	padding: 20px 0 0;
}

	header .site-logo {
		max-width: 200px;
	}

	header nav {
		width: 100%;
		color: #033d60;
		font-weight: bold;
	}

.nav-link:focus, .nav-link:hover, .dropdown-item:hover {
	text-decoration: none;
	color: inherit;
}
.dropdown-item:active {
	background-color: #033d60;
	color: white;
}

header nav .menu {
	padding: 10px 20px;
	font-size: 14px;
	border-top: 2px solid #d4d9e2;
	border-bottom: 2px solid #d4d9e2;
	display: flex;
	align-items: center;
	min-width: calc(100% - 160px);
}

	header nav .menu a {
		margin-left: 20px;
		padding-left: 20px;
		position: relative;
		color: #033d60;
		line-height: 10px;
		font-weight: bold;
	}

		header nav .menu a:after, header nav .menu .dropdown:after {
			content: "";
			height: 100%;
			width: 2px;
			background: #033d60;
			display: block;
			position: absolute;
			top: 0;
			right: -10px;
		}

		header nav .menu a:last-of-type:after {
			displaY: none;
		}

		header nav .menu a:hover:before, header nav .menu a.active:before {
			content: "";
			height: 2px;
			width: calc(100% - 40px);
			background: #033d60;
			display: block;
			position: absolute;
			bottom: 0;
			left: 20px;
		}

header nav .ministerio {
	padding: 10px 9px;
	background: #d4d9e2;
	color: #033d60;
	width: 160px;
}

	header nav .ministerio:hover {
		background: #033d60;
		color: white;
	}

@media (min-width: 992px) and (max-width: 1563px) {
	header nav .menu {
		width: calc(100% - 120px);
		padding: 10px 5px;
	}

		header nav .menu a, header nav .menu .dropdown a {
			margin-left: 8px;
			padding-left: 8px;
			padding-right: 8px;
			font-size: 12px;
		}

			header nav .menu a:after, header nav .menu .dropdown:after {
				right: -4px;
			}

			header nav .menu a:before {
				width: calc(100% - 16px) !important;
				left: 8px !important;
			}

	header nav .ministerio {
		padding: 10px 5px;
		width: 115px;
		font-size: 11px;
	}
}

@media (max-width: 992px) {
	header nav {
		display: none;
		background: #d4d9e2;
		width: 100%;
		height: 100%;
		padding: 40px 10px;
		position: fixed;
		z-index: 9999;
		top: 0;
		left: 0;
		transform: translate(-100%, 0);
		transition: all 0.5s;
		border-right: 5px solid #033d60;
	}

		header nav.open {
			display: block;
			transform: translate(0, 0);
		}

		header nav .logo-mobile {
			max-width: 120px;
		}

		header nav #closemenu {
			position: absolute;
			right: 20px;
			top: 20px;
			font-size: 25px;
		}

		header nav .menu {
			width: 100%;
			flex-direction: column;
			margin-top: 10px;
		}

			header nav .menu a {
				width: 100%;
				line-height: 25px;
				margin: 0;
				border-bottom: 2px solid #645f77;
			}

				header nav .menu a:last-child {
					width: 100%;
					line-height: 25px;
					margin: 0;
					border-bottom: none;
				}

				header nav .menu a.active {
					border-color: #033d60;
				}

			header nav .menu .dropdown {
				width: 100%;
			}

	.dropdown-menu.show {
		margin-top: -1px;
	}

	header nav .menu a.dropdown-item {
		padding: 8px 20px !important;
	}

	header nav .menu a:before, header nav .menu a:after, header nav .menu .dropdown:after {
		display: none !important;
	}

	header nav .ministerio {
		width: 100%;
	}

	header nav .nav-bottom {
		width: 100%;
		background: #033d60;
		padding: 20px;
		position: absolute;
		bottom: 0;
	}

		header nav .nav-bottom p {
			text-align: center;
			color: white;
			font-size: 11px;
		}
}

header #actions {
	font-size: 12px;
	z-index: 999;
}

	header #actions #openmenu, header #actions .private, header #actions .fa-globe {
		opacity: 0.7;
	}

	header #actions i {
		font-size: 18px;
		color: #d4d9e2;
		cursor: pointer;
	}

		header #actions i:hover {
			color: #033d60;
		}

	header #actions #languages {
		position: relative;
	}

		header #actions #languages .selected {
			display: none;
			color: #645f77;
			width: calc(100% - 16px);
			min-width: 130px;
			padding: 0 5px;
			position: relative;
			align-items: center;
		}

			header #actions #languages .selected:after {
				content: "";
				font-family: "Font Awesome 5 Free";
				font-weight: 900;
				color: #645f77;
				padding: 0;
				position: absolute;
				right: 0;
				top: 0;
				z-index: 1;
				text-align: center;
				width: 20px;
				height: 20px;
				pointer-events: none;
				box-sizing: border-box;
			}

			header #actions #languages .selected.active {
				display: flex;
			}

			header #actions #languages .selected.open {
				display: flex;
			}

@media (max-width: 992px) {
	header #actions #languages .selected.open {
		background: #033d60;
		color: white;
		border-radius: 5px;
	}

		header #actions #languages .selected.open:after {
			color: white;
		}
}

header #actions #languages .selector {
	background: #d4d9e2;
	border: 1px solid #645f77;
	-webkit-box-shadow: 3px 3px 15px -5px rgba(0, 0, 0, 0.57);
	box-shadow: 3px 3px 15px -5px rgba(0, 0, 0, 0.57);
	border-radius: 5px;
	position: absolute;
	width: 100%;
	top: 25px;
	right: 0;
	z-index: 999;
	display: none;
}

	header #actions #languages .selector a {
		color: #645f77;
		display: flex;
		align-items: center;
		padding: 5px;
		cursor: pointer;
		text-decoration: none;
	}

		header #actions #languages .selector a:hover {
			background: #033d60;
			color: white;
		}

header #actions #languages .flag {
	width: 24px;
	height: 18px;
	margin-right: 2px;
	background-image: url(../images/ico/flags.png);
}

	header #actions #languages .flag.flag-br {
		background-position: -24px -184px;
	}

	header #actions #languages .flag.flag-us {
		background-position: 0 -130px;
	}

	header #actions #languages .flag.flag-es {
		background-position: -48px -166px;
	}

header #actions #openmenu {
	font-size: 20px !important;
	margin-left: auto !important;
}

@media (min-width: 992px) {
	header #actions i {
		margin-left: 15px;
	}
}

@media (max-width: 992px) {
	header #actions i {
		font-size: 16px;
		color: #033d60;
	}

	header #actions #languages .selected {
		display: flex !important;
	}
}

header #searchform {
	display: none;
}

	header #searchform input {
		padding-right: 35px;
	}

	header #searchform button {
		position: absolute;
		top: 0;
		right: 0;
		cursor: pointer;
	}

@media (min-width: 992px) {
	header #searchform.open {
		display: block;
		position: absolute;
		top: 33px;
		right: 62px;
		z-index: 1000;
	}
}

@media (max-width: 992px) {
	.nav {
		padding-left: 10px;
	}

	header #searchform {
		display: block;
	}

		header #searchform input {
			padding-right: 45px;
		}

		header #searchform button {
			right: 10px;
		}
}

@media (max-width: 992px) {
	header {
		background: #d4d9e2;
	}

		header .site-logo {
			max-width: 145px;
		}
}

#calls {
	padding-bottom: 2rem;
}

	#calls .online {
		color: #033d60;
		line-height: 16px;
		padding-left: 14px;
		position: relative;
	}

		#calls .online img {
			margin-right: 5px;
			max-width: 40px;
		}

		#calls .online h2 {
			font-size: 18px;
			font-weight: bold;
			margin-bottom: 1px;
		}

		#calls .online span {
			font-size: 16px;
		}

		#calls .online:before {
			content: "";
			background: #ee1d23;
			width: 8px;
			height: 8px;
			border-radius: 100%;
			position: absolute;
			top: calc(50% - 4px);
			left: 0;
		}
			#calls .online.offline:before {
				background-color: gray;
			}

			#calls .oracao {
				padding: 5px 10px;
				color: #033d60;
				border: 1px solid #033d60;
				border-radius: 5px;
				text-align: center;
				font-size: 16px;
				font-weight: bold;
				min-width: 120px;
				text-decoration: none;
			}

	#calls .buttons a {
		color: black;
		width: calc(25% - 4px);
		border: 1px solid #033d60;
		border-radius: 5px;
		padding: 8px;
		text-align: center;
		display: flex;
		justify-content: center;
		align-items: center;
		font-size: 15px;
		text-decoration: none;
	}

		#calls .buttons a:hover, #calls .oracao:hover {
			background-color: #d4d9e2;
			box-shadow: rgba(0,0,0,0.4) 0px 0px 3px;
		}

		#calls .buttons a img {
			max-width: 25px;
		}

footer {
	background: #d4d9e2;
	width: 100%;
	padding: 50px 0;
	border-top: 6px solid #033d60;
	font-size: 15px;
}

	footer .footer-logo {
		max-width: 160px;
		margin-bottom: 25px;
	}

	footer h2 {
		font-size: 18px;
		margin-bottom: 40px;
	}

	footer p {
		color: #033d60;
		margin-bottom: 20px;
	}

	footer a.icon span {
		font-size: 14px;
		font-weight: bold;
	}

	footer ul {
		list-style: none;
		padding: 0;
		line-height: 20px;
	}

		footer ul a {
			color: #033d60;
			text-decoration: none;
		}

			footer ul a:hover {
				text-decoration: underline;
				color: #0056b3;
			}

	footer .last-news {
		margin-bottom: 10px;
	}

		footer .last-news a {
			text-decoration: none;
		}

		footer .last-news h3 {
			font-size: 14px;
			font-weight: bold;
			margin-bottom: 0;
		}

		footer .last-news span {
			font-size: 10px;
			opacity: 0.7;
			color: #645f77;
		}

@media (max-width: 992px) {
	footer .footer-logo {
		max-width: 120px;
	}

	footer p {
		color: #645f77 !important;
		font-size: 13px;
		margin-bottom: 20px;
	}
}

.news-post {
	display: flex !important;
	flex-direction: column;
	justify-content: space-between;
	color: white;
	padding: 15px;
	height: 160px;
	margin-bottom: 0.5rem;
	position: relative;
}

	.news-post .image {
		width: 100%;
		height: 100%;
		position: absolute;
		top: 0;
		left: 0;
		z-index: 0;
		background-repeat: no-repeat;
		background-size: cover;
		background-position: center;
		filter: grayscale(100%);
		-webkit-filter: grayscale(100%);
	}

	.news-post:before {
		content: "";
		width: 100%;
		height: 100%;
		position: absolute;
		top: 0;
		right: 0;
		background-color: #033d60;
		opacity: 0.5;
		z-index: 1;
	}

	.news-post * {
		position: relative;
		z-index: 2;
	}

	.news-post .date {
		font-size: 11px;
	}

	.news-post .category {
		background: white;
		padding: 2px 8px;
		border-radius: 5px;
		color: #033d60;
		font-size: 12px;
		font-weight: bold;
		margin-bottom: 15px;
		text-transform: capitalize;
	}

	.news-post a {
		text-decoration: none;
	}

	.news-post .title {
		color: white;
		font-size: 20px;
		font-weight: bold;
		margin-bottom: 10px;
	}

	.news-post .description {
		color: white;
		font-size: 15px;
		line-height: 15px;
		margin-bottom: 30px;
		overflow: hidden;
		max-height: 75px;
		display: -webkit-box;
		-webkit-line-clamp: 5;
		-webkit-box-orient: vertical;
	}

@media (max-width: 992px) {
	.news-post {
		height: 280px !important;
	}

		.news-post .date {
			text-align: center;
		}
}

#news-slide {
	width: calc(100% + 30px);
	margin-left: -15px;
}

#cultos .culto {
	margin-bottom: 20px;
	padding-bottom: 20px;
	border-bottom: 2px solid #d4d9e2;
}

	#cultos .culto h3 {
		font-size: 18px;
		font-weight: bold;
		color: black;
		margin-bottom: 0;
	}

	#cultos .culto .date {
		background: #d4d9e2;
		color: #033d60;
		text-align: center;
		padding: 5px;
		border-radius: 5px;
		margin-right: 15px;
		min-width: 87px;
	}

		#cultos .culto .date .day {
			font-size: 18px;
			font-weight: bold;
			display: block;
		}

		#cultos .culto .date .time {
			font-size: 16px;
		}

	#cultos .culto .info p {
		font-size: 16px;
	}

@media (min-width: 992px) {
	#cultos .culto {
		align-items: flex-start;
	}
}

@media (max-width: 992px) {
	#cultos .culto h3 {
		font-size: 15px;
	}

	#cultos .culto .date {
		line-height: 13px;
	}

		#cultos .culto .date .day {
			font-size: 12px;
		}

		#cultos .culto .date .time {
			font-size: 12px;
		}

	#cultos .culto p {
		font-size: 12px;
	}
}

#fast-links .a-links {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}

	#fast-links .a-links a {
		cursor: pointer;
		display: flex;
		padding: 10px 5px 10px 20px;
		border: 2px solid #d4d9e2;
		width: 100%;
	}

		#fast-links .a-links a h3 {
			font-size: 18px;
			font-weight: bold;
		}

		#fast-links .a-links a span {
			font-size: 12px;
			color: #645f77;
		}

		#fast-links .a-links a .icon img {
			max-width: 70px;
		}

		#fast-links .a-links a:hover {
			background: #d4d9e2;
		}

@media (min-width: 992px) {
	#fast-links .a-links a {
		width: calc(25% - 20px);
		border-radius: 5px;
		margin-right: 20px;
		margin-bottom: 20px;
		padding: 20px 5px;
		text-align: center;
		flex-direction: column;
	}

		#fast-links .a-links a h3 {
			font-size: 12px;
		}

		#fast-links .a-links a span {
			display: none;
		}
}

@media (max-width: 992px) {
	#fast-links .a-links a {
		line-height: 16px;
		border-width: 0 0 2px;
	}

		#fast-links .a-links a .icon {
			margin-right: 15px;
		}

			#fast-links .a-links a .icon img {
				max-width: 50px;
			}
}

@media (max-width: 992px) {
	#fast-links {
		padding: 0;
	}

		#fast-links h2 {
			display: none;
		}
}

.page {
	background: #f4f5f8;
	padding: 30px 0;
}

	.page .title p {
		color: #033d60;
		line-height: 22px;
		font-size: 17px;
	}

	.page .title .date {
		font-weight: bold;
		font-size: 12px;
	}

	.page .box {
		background: white;
		margin: 15px 0;
		padding: 30px 20px;
		border-radius: 13px;
		box-shadow: 0 5px 15px 0 rgba(0, 0, 0, 0.09);
	}

	.page h1 {
		font-size: 25px;
		line-height: 100%;
		font-weight: bold;
	}

	.page h2 {
		font-size: 18px;
		line-height: 100%;
		font-weight: bold;
	}

		.page h2.subtitle {
			font-size: 16px;
			font-weight: 500;
			line-height: 23px;
		}

			.page h2.subtitle b {
				font-weight: bold;
				font-size: 19px;
			}

	.page h3 {
		font-size: 16px;
		line-height: 100%;
		font-weight: 600;
	}

	.page .astitle {
		font-size: 25px;
		line-height: 100%;
		font-weight: bold;
		text-transform: uppercase;
	}

	.page p {
		font-size: 15px;
		line-height: 200%;
	}

	.page ul {
		line-height: 150%;
		margin-left: 20px;
	}

	.page ol {
		line-height: 150%;
		margin-left: 40px;
	}

	.page .info {
		font-size: 12px;
	}

	.page .icon {
		text-decoration: none;
		width: 51px;
		line-height: 51px;
		font-size: 17px;
		border-radius: 100%;
		display: block;
		color: white;
		margin: 0 auto -18px;
	}

		.page .icon:hover {
			box-shadow: inset 0 3px 5px 0 rgba(0, 0, 0, 0.3);
			color: white;
		}

	.page .button {
		background: #033d60;
		color: white;
		border: 1px solid #033d60;
		border-radius: 5px;
		padding: 10px;
		cursor: pointer;
	}

	.page .btn {
		padding: 10px;
	}

	.page .button:hover {
		background: #f4f5f8;
		color: #645f77;
	}

	.page #video-container {
		margin-bottom: 15px;
	}

	.page #font-box {
		display: flex;
	}

		.page #font-box a {
			display: flex;
			align-items: center;
			background: #033d60;
			color: white;
			border-radius: 5px;
			padding: 10px;
			font-size: 16px;
			cursor: pointer;
		}

			.page #font-box a.text-size-decrease {
				font-size: 13px;
			}

			.page #font-box a.btn-libras {
				background: none;
				padding: 0;
			}

			.page #font-box a + a {
				margin-left: 10px;
			}

@media (max-width: 767px) {
	.page {
		padding: 10px 0 0;
	}

		.page .container {
			padding: 0;
		}

		.page .title {
			padding: 0 15px;
		}

		.page .box {
			padding: 30px 15px 15px;
			border-radius: 0;
			box-shadow: none;
		}
}

.next, .agenda, .share, .channels {
	border-bottom: 1px solid #d4d9e2;
}

.agenda-row {
	display: flex;
	gap: 20px;
	margin-bottom: 20px;
	margin-top: 10px;
}

	.agenda-row .agenda-date {
		color: #033d60;
		font-weight: bold;
		text-transform: uppercase;
		text-align: center;
		border: 2px solid #033d60;
		border-radius: 5px;
		padding: 10px;
	}

.channels-row {
	display: flex;
	gap: 20px;
}

	.channels-row .channel {
		color: white;
		font-weight: bold;
		text-transform: uppercase;
		text-decoration: none;
		text-align: center;
		border-radius: 13px;
		padding: 10px;
		font-size: 12px;
		max-width: 200px;
	}

		.channels-row .channel i {
			font-size: 30px;
		}

		.channels-row .channel:hover {
			box-shadow: inset 0 3px 5px 0 rgba(0, 0, 0, 0.3);
		}

#oferta-local {
	padding-top: 20px;
	border-top: 2px solid #d4d9e2;
}

	#oferta-local h2 {
		font-size: 17px;
		line-height: 20px;
	}

#circulares {
	background: #f4f5f8;
}

	#circulares .wrapper {
		border-left: 1px solid #d4d9e2;
		padding: 20px 0;
	}

	#circulares .circular {
		margin: 20px 0;
		position: relative;
	}

		#circulares .circular a {
			text-decoration: none;
		}

		#circulares .circular .icon {
			display: block;
			border-radius: 50%;
			background: #d4d9e2;
			width: 45px;
			height: 45px;
			color: #033d60;
			text-align: center;
			margin-left: -23px;
			position: absolute;
			top: 50%;
			transform: translateY(-50%);
			font-size: 1.5em;
			line-height: 42px;
		}

		#circulares .circular .box {
			background: white;
			margin-left: 40px;
			padding: 30px 20px;
			border: 1px solid #645f77;
			border-radius: 13px;
			box-shadow: 0 5px 15px 0 rgba(0, 0, 0, 0.09);
			position: relative;
		}

			#circulares .circular .box h2 {
				font-size: 20px;
				color: #645f77;
			}

				#circulares .circular .box h2 small {
					font-size: 12px;
				}

			#circulares .circular .box .date {
				color: #033d60;
				border-bottom: 1px solid #f4f5f8;
				padding-bottom: 10px;
				margin-bottom: 10px;
				font-size: 12px;
				display: block;
			}

				#circulares .circular .box .date i {
					margin-right: 5px;
				}

			#circulares .circular .box p {
				font-size: 17px;
				line-height: 17px;
				color: #033d60;
			}

			#circulares .circular .box .libras {
				position: absolute;
				top: 10px;
				right: 15px;
			}

				#circulares .circular .box .libras img {
					width: 34px;
				}

		#circulares .circular:hover .icon {
			background: #033d60;
			color: white;
		}

		#circulares .circular:hover .box {
			border-color: #033d60;
		}

@media (max-width: 768px) {
	#circulares .wrapper {
		margin-left: 10px;
	}
}

#clear-glossary {
	display: none;
	cursor: pointer;
}

#glossary a {
	color: #3BAFDA;
	font-weight: bold;
	line-height: 25px;
}

#glossary .glossario-assunto {
	border-top: 1px solid #645f77;
	width: 100%;
	margin-top: 15px;
	padding: 15px 15px 0;
}

	#glossary .glossario-assunto h3 {
		text-align: center;
		font-size: 20px;
	}

	#glossary .glossario-assunto a {
		display: block;
		width: 100%;
		color: #033d60;
		text-transform: uppercase;
		text-decoration: none;
		border-bottom: 1px solid #033d60;
		margin-bottom: 8px;
		padding-bottom: 8px;
	}

		#glossary .glossario-assunto a small {
			display: block;
		}

		#glossary .glossario-assunto a.active {
			padding-left: 15px;
			border-bottom: none;
		}

			#glossary .glossario-assunto a.active small {
				color: #033d60;
			}

	#glossary .glossario-assunto .video-container {
		border-bottom: 1px solid #033d60;
		margin-bottom: 20px;
	}

.musica-button {
	width: 190px;
	text-align: center;
	margin: 0 auto 30px;
}

	.musica-button .image {
		width: 100%;
		background: #f4f5f8;
		text-align: center;
		padding: 0 15px;
	}

		.musica-button .image img {
			width: 100%;
		}

	.musica-button h3 {
		width: 100%;
		background: #d4d9e2;
		color: #033d60;
		font-size: 1.2em;
		text-align: center;
		padding: 15px;
		margin-bottom: 0;
	}

	.musica-button span {
		font-size: 12px;
		display: block;
		padding: 0 15px;
	}

	.musica-button a {
		width: 100%;
		text-decoration: none;
		border-radius: 13px;
		overflow: hidden;
		display: block;
		margin-bottom: 10px;
	}

		.musica-button a:hover .image {
			background: #033d60;
		}

			.musica-button a:hover .image img {
				filter: grayscale(100%) brightness(500%);
				-webkit-filter: grayscale(100%) brightness(500%);
			}

		.musica-button a:hover h3 {
			background: #033d60;
			color: white;
		}

.musica a {
	width: 100%;
	text-decoration: none;
	color: #033d60;
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 15px;
	padding-bottom: 15px;
	border-bottom: 1px solid #f4f5f8;
}

	.musica a h3 {
		font-size: 16px;
		margin-bottom: 2px;
	}

	.musica a small {
		color: #645f77;
		font-size: 12px;
	}

	.musica a i.fa-play {
		font-size: 17px;
		background: #033d60;
		color: white;
		width: 30px;
		height: 30px;
		displaY: flex;
		justify-content: center;
		align-items: center;
		border-radius: 100%;
	}

	.musica a:hover h3 {
		color: #ee1d23;
	}

	.musica a:hover i.fa-play {
		background: #ee1d23;
	}

/* Slider */
.slick-slider {
	position: relative;
	display: block;
	box-sizing: border-box;
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	-ms-touch-action: pan-y;
	touch-action: pan-y;
	-webkit-tap-highlight-color: transparent;
}

.slick-list {
	position: relative;
	overflow: hidden;
	display: block;
	margin: 0;
	padding: 0;
}

	.slick-list:focus {
		outline: none;
	}

	.slick-list.dragging {
		cursor: pointer;
		cursor: hand;
	}

.slick-slider .slick-track,
.slick-slider .slick-list {
	-webkit-transform: translate3d(0, 0, 0);
	-moz-transform: translate3d(0, 0, 0);
	-ms-transform: translate3d(0, 0, 0);
	-o-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0);
}

.slick-track {
	position: relative;
	left: 0;
	top: 0;
	display: block;
	margin-left: auto;
	margin-right: auto;
}

	.slick-track:before, .slick-track:after {
		content: "";
		display: table;
	}

	.slick-track:after {
		clear: both;
	}

.slick-loading .slick-track {
	visibility: hidden;
}

.slick-slide {
	float: left;
	height: 100%;
	min-height: 1px;
	display: none;
}

[dir=rtl] .slick-slide {
	float: right;
}

.slick-slide img {
	display: block;
}

.slick-slide.slick-loading img {
	display: none;
}

.slick-slide.dragging img {
	pointer-events: none;
}

.slick-initialized .slick-slide {
	display: block;
}

.slick-loading .slick-slide {
	visibility: hidden;
}

.slick-vertical .slick-slide {
	display: block;
	height: auto;
	border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
	display: none;
}

/* Slider */
.slick-loading .slick-list {
	background: #fff url("./ajax-loader.gif") center center no-repeat;
}

/* Icons */
@font-face {
	font-family: "slick";
	src: url("./fonts/slick.eot");
	src: url("./fonts/slick.eot?#iefix") format("embedded-opentype"), url("./fonts/slick.woff") format("woff"), url("./fonts/slick.ttf") format("truetype"), url("./fonts/slick.svg#slick") format("svg");
	font-weight: normal;
	font-style: normal;
}
/* Arrows */
.slick-prev,
.slick-next {
	position: absolute;
	display: block;
	height: 20px;
	width: 20px;
	line-height: 0px;
	font-size: 0px;
	cursor: pointer;
	background: transparent;
	color: transparent;
	top: 20px;
	-webkit-transform: translate(0, -50%);
	-ms-transform: translate(0, -50%);
	transform: translate(0, -50%);
	padding: 0;
	border: none;
	outline: none;
	z-index: 2;
}

	.slick-prev:hover, .slick-prev:focus,
	.slick-next:hover,
	.slick-next:focus {
		outline: none;
		background: transparent;
		color: transparent;
	}

		.slick-prev:hover:before, .slick-prev:focus:before,
		.slick-next:hover:before,
		.slick-next:focus:before {
			opacity: 1;
		}

	.slick-prev.slick-disabled:before,
	.slick-next.slick-disabled:before {
		opacity: 0.8;
	}

	.slick-prev:before,
	.slick-next:before {
		font-family: "slick";
		font-size: 20px;
		line-height: 1;
		color: white;
		opacity: 0.75;
		-webkit-font-smoothing: antialiased;
		-moz-osx-font-smoothing: grayscale;
	}

.slick-prev {
	left: 10px;
}

[dir=rtl] .slick-prev {
	left: auto;
	right: -25px;
}

.slick-prev:before {
	content: "←";
}

[dir=rtl] .slick-prev:before {
	content: "→";
}

.slick-next {
	right: 10px;
}

[dir=rtl] .slick-next {
	left: -25px;
	right: auto;
}

.slick-next:before {
	content: "→";
}

[dir=rtl] .slick-next:before {
	content: "←";
}

/* Dots */
.slick-dotted.slick-slider {
	margin-bottom: 30px;
}

.slick-dots {
	position: absolute;
	bottom: 10px;
	list-style: none;
	display: block;
	text-align: center;
	padding: 0;
	margin: 0;
	width: 100%;
}

	.slick-dots li {
		position: relative;
		display: inline-block;
		height: 5px;
		width: 50px;
		margin: 0 5px;
		padding: 0;
		cursor: pointer;
	}

		.slick-dots li button {
			border: 0;
			background: transparent;
			display: block;
			height: 5px;
			width: 50px;
			outline: none;
			line-height: 0px;
			font-size: 0px;
			color: transparent;
			padding: 5px;
			cursor: pointer;
		}

			.slick-dots li button:hover, .slick-dots li button:focus {
				outline: none;
			}

				.slick-dots li button:hover:before, .slick-dots li button:focus:before {
					opacity: 1;
				}

			.slick-dots li button:before {
				position: absolute;
				top: 0;
				left: 0;
				content: "";
				width: 100%;
				height: 5px;
				background: #d4d9e2;
				border-radius: 5px;
				line-height: 20px;
				text-align: center;
				color: black;
				opacity: 0.8;
				-webkit-font-smoothing: antialiased;
				-moz-osx-font-smoothing: grayscale;
			}

		.slick-dots li.slick-active button:before {
			background: #033d60;
			opacity: 0.75;
		}

#sub h2 {
	font-size: 20px;
	text-align: center;
	margin-bottom: 15px;
	font-weight: bold;
}

@media (min-width: 992px) {
	#sub h2 {
		text-align: left;
		position: relative;
	}

		#sub h2 span {
			position: relative;
			z-index: 2;
			background: white;
			padding-right: 8px;
		}

		#sub h2:after {
			content: "";
			position: absolute;
			right: 0;
			top: 50%;
			width: 100%;
			height: 2px;
			background: #d4d9e2;
		}
}

.video-container {
	position: relative;
	padding-bottom: 56.25%;
	padding-top: 30px;
	height: 0;
	overflow: hidden;
	background-color: #000;
}

	.video-container iframe {
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
	}

.dropdown-menu {
	padding: 0;
}

.dropdown-toggle::after {
	border: none !important;
}

header nav .menu a.dropdown-item {
	margin-left: initial;
	padding: 15px 20px;
}

	header nav .menu a.dropdown-item:after {
		content: none;
	}

.bootstrap-select .dropdown-menu {
	right: 0;
}

.cookie-consent {
	padding: 1.5rem;
	height: 17%;
	background-color: #0c1e3fd9;
	position: fixed;
	bottom: 0;
	z-index: 10;
}

	.cookie-consent p, .cookie-consent a {
		color: #ffffff;
	}

	.cookie-consent button {
		height: 60px;
	}

@media (min-width: 993px) and (min-height: 775px) {
	.cookie-consent {
		height: 12%;
	}
}

@media (max-width: 992px) {
	.cookie-consent {
		height: 35%;
	}
}

@media (max-width: 992px) and (min-height: 775px) {
	.cookie-consent {
		height: 30%;
	}
}

@media (max-width: 600px) {
	.cookie-consent {
		height: 40%;
	}
}

@media (max-width: 600px) and (min-height: 775px) {
	.cookie-consent {
		height: 35%;
	}
}

@media (max-width: 416px) {
	.cookie-consent {
		height: 45%;
	}
}

@media (max-width: 416px) and (min-height: 820px) {
	.cookie-consent {
		height: 40%;
	}
}

@media (max-width: 376px) and (max-height: 668px) {
	.cookie-consent {
		height: 55%;
	}
}
/*# sourceMappingURL=styles.css.map */
