@import url('https://fonts.googleapis.com/css?family=Montserrat:wght@100;300;400;500;700;900&display=swap');

@-ms-viewport { width: device-width; }
@keyframes Animatezoom {
	from { transform: scale(0); }
	to { transform: scale(1); }
}
@keyframes FadeIn {
	from { opacity: 0; }
	to { opacity: 1; }
}
@keyframes RotationTo {
	from { transform: rotate(0deg); }
	to { transform: rotate(360deg); }
}

@keyframes SlideUp {
	from {
		opacity: 0;
		transform: translateY(100%);
	} 
	to {
		opacity: 1;
		transform: translateY(0%);
	}
}

.Animate { animation: Animatezoom 1s; }
.Fade { animation: FadeIn 1s; }
.Rotation { animation: RotationTo 2s linear infinite; }
.Slide {
	animation: SlideUp 1s;
	visibility: visible;
}

a {
	color: rgb(72, 140, 68);
	text-decoration: none;
}
a:hover {
	color: rgb(150, 225, 255);
	cursor: pointer;
	text-decoration: none;
	transition: 1s;
}
body { 	margin: 0;}
body, html, label {
	align-items: center;
	background-color: rgb(255, 255, 255);
	color: rgb(40, 40, 40);
	font-family: Montserrat, Helvetica, Arial, Verdana;
	font-size: 12pt;
	height: 100%;
	width: 100%;
}
d {
	color: rgb(72, 140, 68);
}
div {
	align-items: center;
	overflow: auto;
}
footer > div{
	color: rgb(255, 255, 255);
	font-size: small;
}
hr { border-bottom: 1px solid rgb(128, 128, 128); }
img { border: 0; }
input, select, button, textarea {
	margin: 5px 0;
	padding: 10px;
}
input[type=checkbox] { cursor: pointer; }
input[type=checkbox], input[type=email], input[type=password], input[type=text], select, textarea { border: 1px solid rgb(240, 240, 240); }
input[type=button], input[type=Submit], button {
	background-color: rgb(72, 140, 68);
	border-width: 0;
	color: rgb(255, 255, 255);
	padding: 10px 20px;
}
input[type=Submit]:focus, input[type=Submit]:focus, button:focus { background-color: rgba(72, 140, 68, 0.75); }
input[type=Submit]:hover, input[type=Submit]:hover, button:hover {
	background-color: rgba(72, 140, 68, 0.5);
	cursor: pointer;
	transition: .5s;
}
input[type=Submit]:active, input[type=Submit]:active, button:active {
	background-color: rgba(72, 140, 68, 0.25);
	color: rgb(0, 0, 0);
}
input[type=Submit]:disabled, input[type=Submit]:disabled, button:disabled {
	background-color: rgb(200, 200, 200);
	color: rgb(100, 100, 100);
}
input:focus, select:focus, button:focus, textarea:focus { outline: none !important;}
input[type=checkbox]:after {
	content: attr(value);
	margin: -3px 15px;
	vertical-align: top;
	white-space:nowrap;
	display: inline-block;
}
nav {
	background-color: rgb(255, 255, 255);
	border-bottom: 5px solid rgb(72, 140, 68);
    box-shadow: 0 0 15px rgb(128, 128, 128);
	position: fixed;
	width:100%;
	z-index: 1;
}
	nav a {
		color: rgb(255, 255, 255);
	}
	nav li {
		float: left;
		padding: 5px;
	}
	nav ul {
		list-style: none;
		margin: 0 0 0 -40px;
	}
table {
	border-collapse: collapse;
	width: 100%;
}

td, th {
	border: 1px solid rgb(240, 240, 240);
	text-align: left;
	padding: 8px;
}

tr:nth-child(even) {
	background-color: rgba(240, 240, 240, 0.5);
}

.box {
	background-color: rgb(255, 255, 255);
	border: 1px solid rgb(240, 240, 240);
	margin: 10px;
	padding: 10px;
}
.close {
	cursor: pointer;
	float: right;
	font-size: x-large;
	font-weight: bold;
	margin: 0 10px;
	overflow: hidden;
}
	.close:hover {
		color: rgb(72, 140, 68);;
	}
[class*="col-"] { float: left; }
.col-1 { width: 8.33%; }
.col-1-2 { width: 10%; }
.col-2 { width: 16.66%; }
.col-2-3 { width: 20%; }
.col-3 { width: 25%; }
.col-4 { width: 33.33%; }
.col-5 { width: 41.66%; }
.col-6 { width: 50%; }
.col-7 { width: 58.33%; }
.col-8 { width: 66.66%; }
.col-9 { width: 75%; }
.col-10 { width: 83.33%; }
.col-11 { width: 91.66%; }
.col-12 { width: 100%; }
.copyright {
	color: rgb(40, 40, 40);
	min-height: 50px;
	padding: 10px;
	text-align: center;
}
.footer {
	background: linear-gradient(45deg, rgb(23, 164, 243), rgb(72, 140, 68));
	min-height: 150px;
	padding: 50px 10px;
	width: 100%
}
.footer-div {
	color: rgb(240, 240, 240);
	padding-top: 20px;
}
.footer-div input {
	color: rgb(40, 40, 40);
}
.footer-div a { color: rgb(255, 255, 255); }
.footer-div a:hover { color: rgb(225, 225, 225); }
.footer-div li {
	list-style: none;
}
.footer-div ul {
	padding: 10px 0;
}
.header-top-left {
	height: 75px;
	float: left;
	padding: 10px 0;
}
	.header-top-left img {
		height: 100%;
	}
.header-top-right {
	float: right;
	padding: 5px;
}
.important-link, .important-login-link, .important-logout-link {
	background-color: rgb(128, 128, 128) !important;
	color: rgb(255, 255, 255) !important;
	padding: 8px 20px;
} 
.important-link:hover, .important-login-link:hover, .important-logout-link:hover { background-color: rgb(225, 225, 225) !important; }
.important-login-link { background-color: rgb(72, 140, 68) !important; }
.important-logout-link { background-color: rgb(255, 0, 0) !important; }
.mobile, .tablet { display: none; }
.modal-fixed {
	align-items: center;
	background-color: rgba(0, 0, 0, 0.75);
	display: flex;
	height: 100%;
	left: 0;
	position: fixed;
	top: 0;
	width: 100%;
	z-index: 99999999999999;
}
.modal-flex {
	align-items: center;
	background-color: rgba(0, 0, 0, 0.75);
	display: flex;
	height: 100%;
	width: 100%;
}
.modal-dialog, .modal-dialog-radius {
	background-color: rgb(255, 255, 255);
	box-shadow: 2px 2px 10px rgb(128, 128, 128);
	margin: auto;
	max-width: 500px;
	padding: 25px;
}
.modal-dialog-radius {
	border-radius: 20px;
}
.nav-drop {
	cursor: pointer;
	float: left;
	font-size: 12pt;
}
.nav-drop p {
	color: rgb(23, 164, 243);
	padding: 10px 15px;
}
.nav-drop:hover p {
	background-color: rgba(72, 140, 68, 0.1);
	color: rgb(72, 140, 68);
	transition: 0.5s;
}
.nav-drop:hover .nav-drop-content, .nav-drop:hover > .nav-drop-content-grid {
	display: table;
	transition: 0.5s;
}
.nav-drop a, .nav-drop-content a { text-decoration: none; }
.nav-drop-content {
	background-color: rgb(255, 255, 255);
	border-bottom: 5px solid rgb(72, 140, 68);
    box-shadow: 0 0 5px rgb(128, 128, 128);
	display: none;
	min-width: 160px;
	margin-left: 25px;
	padding: 5px;
	position: absolute;
	z-index: 99999999;
}
.nav-drop-content div {
	float: none;
}
.nav-drop-content .nav-drop p {
	background-color: rgb(240, 240, 240);
	color: rgb(128, 128, 128);
}
.nav-drop-content .nav-drop:hover p {
	background-color: rgba(72, 140, 68, 0.1);
	transition: 0.5s;
}
.nav-drop-content-grid {
	background-color: rgb(255, 255, 255);
	border-bottom: 5px solid rgb(72, 140, 68);
    box-shadow: 0 0 5px rgb(128, 128, 128);
    display: none;
    min-width: 370px;
	width: 555px;
	margin-left: 25px;
	padding: 5px;
    position: absolute;
    z-index: 99999999;
}
	.nav-drop-content-grid > div > a > div {
		background-color: rgba(23, 164, 243, 0.1);
		color: rgb(23, 164, 243);
		float: left;
		margin: 5px;
		padding: 10px 20px;
		width: 170px;
	}
	.nav-drop-content-grid > div > a > div:hover {
		background-color: rgba(72, 140, 68, 0.1);
		color: rgb(72, 140, 68);
		transition: 0.5s;
	}
.page {
	margin-top: 75px;
	min-height: calc(100vh - 75px);
}
.pointer {
  cursor: pointer;
}
.px20-h {
	padding: 0 20px;
}
.Scalling {
	transform: scale(1);
	transition: 1s;
}
.Scalling:hover {
	transform: scale(2);
}
.title {
	font-size: xx-large;
	color: rgb(72, 140, 68);
}
.widthauto {
	margin: auto;
	max-width: 1200px;
	width: 100%;
}















.align-item {
	align-items: center;
	display: flex;
}
.bg_green {
	background-color: rgb(25, 175, 25);
	color: rgb(255, 255, 255);
}
.bg_orange {
	background-color: rgb(255, 200, 0);
	color: rgb(0, 0, 0);
}
.bg_red {
	background-color: rgb(240, 25, 25);
	color: rgb(255, 255, 255);
}
.box-host {
	list-style: none;
	margin-left: -40px;
}
	.box-host li {
		padding: 10px;
	}
.box-no-limit {
	background-color: rgb(255, 255, 255);
	margin: 10px;
	padding: 10px;
}
.box-subtitle {
	background-color: rgb(72, 140, 68);
	color: rgb(255, 255, 255);
	font-size: x-large;
	min-height: 90px;
	margin: -10px -10px 10px -10px;
	padding: 10px;
}
.btn-more {
	background-color: rgba(23, 164, 243, 0.1);
	border-radius: 10px;
	color: rgb(240, 240, 240);
	cursor: pointer;
	display: none;
	float: right;
	font-size: xx-large;
	font-weight: bold;
	padding: 0 5px;
}
.btn-search {
	background-color: rgb(72, 140, 68);
	width: 150px;
}
.button {
	background-color: rgb(72, 140, 68);
	color: rgb(225, 225, 225);
	float: left;
	margin: 20px 5px;
	padding: 10px;
	text-align: center;
	width: 150px;
}
.carousel {
	min-height: 50vh;
}

.counter {
	background-color: rgb(240, 240, 240);
	text-align: center;
}
	.counter .box{
		background-color: transparent;
		border-color: rgb(150, 175, 200);
		color: rgb(150, 175, 200);
	}
.hiddenradio [type=radio] { 
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

/* IMAGE STYLES */
.hiddenradio [type=radio] + img {
  cursor: pointer;
  margin: 2px;
}

/* CHECKED STYLES */
.hiddenradio [type=radio]:checked + img {
  outline: 2px solid #f00;
}
.input-search {
	color: rgb(40, 40, 40);
	width: calc(100% - 155px);
}
.menu-links {
	list-style: none;
	margin: -5px -5px -5px -45px;
}
	.menu-links li {
		background: rgb(128, 128, 128);
		color: rgb(255, 255, 255);
		float: left;
		font-size: 12pt;
		font-weight: bold;
		padding: 10px 20px;
		transition: background 2s;
	}
	.menu-links li:hover {
		background: rgb(72, 140, 68);
		text_decoration: none;
		transition: background 1s;
	}
.menu-mobile {
	background-color: rgb(240, 240, 240);
	display: none;
	padding: 0px 5px 5px 5px;
}
.networks img { height: 50px; }
.networks li {
	float: left;
	padding: 5px;
}
.pad5 td, .pad5 th {
	padding: 5px;
}
[class*="perc-"] { float: left; }
.perc-25 { width: 25%; }
.perc-50 { width: 50%; }
.perc-75 { width: 75%; }
.px20 {
	padding-top: 20px;
	padding-bottom: 20px;
}
.px50 {
	padding-top: 50px;
	padding-bottom: 50px;
}
.px80 {
	padding-top: 80px;
	padding-bottom: 80px;
}
.site-hora, .box-support {
	background-color: rgb(23, 164, 243);
}
	.site-hora .box, .box-support .box {
		background-color: rgb(23, 164, 243);
		border-color: rgb(150, 175, 200);
		color: rgb(150, 175, 200);
		min-height: 200px;
		padding: 15px;
		text-align: center;
	}
.search {
	background: url('../images/back02.jpg') no-repeat center center;
	background-size: cover;
	padding: 100px 0;
}
.subtitle {
	font-size: x-large;
	color: rgb(128, 128, 128);
}
.table-div {
	border-spacing: 15px;
	border-collapse: collapse;
	width: 100%;
}
	.table-div td, .table-div th{
		padding: 10px;
	}












@media only screen and (max-height: 400px), screen and (max-width: 400px) {
	.carousel {
	overflow: hidden;
	}
	.px20 {
		padding-top: 10px;
		padding-bottom: 10px;
	}
	.px50 {
		padding-top: 25px;
		padding-bottom: 25px;
	}
	.px80 {
		padding-top: 40px;
		padding-bottom: 40px;
	}
}





@media only screen and (max-width: 1020px) {
	.btn-more {
		display: block;
	}
	.header-top-right .pc{
		display: none;
	}
	.menu-mobile .nav-drop {
		float: none;
	}
}

@media only screen and (max-width: 790px) {
	nav {
		float: none;
		z-index: 9999999999999;
	}
	nav li {
			float: none;
			font-size: large;
			padding: 10px 0;
		}
	header > div {
		background-size: 100% 45px;
	}
	.btn-more, .tablet {
		display: block;
	}
	.menu-links li {
		float: none;
	}
	.mobile, .pc {
		display: none
	}
	.nav-drop {
		float: none;
		width: 100%;
	}
		.nav-drop:hover p {
			color: rgb(72, 140, 68);
		}
	.nav-drop-content {
		position: relative;
	}
	.page {
		margin-top: 45px;
	}
}

@media only screen and (max-height: 400px), screen and (max-width: 400px) {
	[class*="col-"] {
		float: none;
		width: 100%;
	}
	.mobile {
		display: block;
	}
	.page {
		margin-top: 60px;
	}
	.pc, .tablet {
		display: none
	}
}
