﻿@font-face {
	font-family: 'Gilam-regular';
	src: url('/fonts/GilamRegular.otf') format('opentype');
}

@font-face {
	font-family: 'Gilam-semibold';
	src: url('/fonts/GilamSemiBold.otf') format('opentype');
}

@font-face {
	font-family: 'Gilam-bold';
	src: url('/fonts/GilamBold.otf') format('opentype');
}

body {
    color: black;
    text-transform: uppercase;
    background: #EEEFF4;
    font-family: 'Gilam-bold', sans-serif;
    /*font-size: 13px;*/
    font-size: 14px;
}

h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6 {
    font-family: 'Gilam-regular', sans-serif;
    font-size: 80%;
}

h4, .h4 {
    font-family: 'Gilam-bold', sans-serif;
    font-size: 80%;
}

/** 15/02/2019 - H1 e H2 para semi-bold  **/
h1, h2, .h1, .h2 {
    font-family: 'Gilam-semibold', sans-serif;
    font-size: 80%;
}

/** 15/02/2019 - H3 para bold  **/
h3, .h3 {
    font-family: 'Gilam-bold', sans-serif;
    font-size: 80%;
}


a {
	color: inherit;
	transition: all 0.3s ease-in-out;
	text-decoration: none;
}

	a:hover, a:active, a:visited, a:focus{
		text-decoration: none;
	}

i {
    font-style: normal;
}

.container {
	background-size: cover;
	width: 100%;
	background-repeat: no-repeat;
	background-position: center;
	/*-webkit-touch-callout: none;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;*/
	padding-left: 0px;
	padding-right: 0px;
	/*height: 100vh;*/
}


/*General Styles*/

.containerPodium {
	max-width: 1200px;
	margin-left: auto;
	margin-right: auto;
}


.flex-container {
	display: flex;
	align-items: center; /* Vertical center alignment */
	justify-content: center; /* Horizontal center alignment */
	position: relative;
	text-align: center;
}


.outerTextBox {
	position: absolute;
	text-align: center;
	width: 100%;
	margin: auto;
	top: 0;
	bottom: 0;
	right: 0;
	left: 0;
	height: 250px;
	line-height: 250px;
}

.innerTextBox {
	display: inline-block;
	vertical-align: middle;
	line-height: normal;
}

.buttons {
    /*border: 1px solid #e1e1e1;
		background-color: transparent;
		border-radius: 0;
		display: inline-flex;
		font-size: 12px;
		padding: 4px 10px;*/
    position: relative;
    width: 26px;
    height: 26px;
    padding: 1px;
    font: 400 15px/21px 'fl-budicons-free';
    color: #111;
    background: transparent;
    border: 1px solid #e1e1e1;
    /*border-radius: 3px;*/
    cursor: pointer;
    transition: .33s;
}

.customButton {
	text-transform: uppercase;
	border: none;
	border-radius: 0;
	transition: all 0.3s ease-in-out;
	/*background: #e1e1e1;*/
	color: black;
	font-family: 'Gilam-bold', sans-serif;
	white-space: normal;
	height: auto;
}


.rightButtons::before {
    margin-right: -1px;
    content: '\e025';
}

.leftButtons::before {
    margin-right: -1px;
    content: '\e016';
}


.upButtons::before {
    margin-right: -1px;
    content: '\e02b';
}

.downButtons::before {
    margin-right: -1px;
    content: '\e00d';
}


.fitImage {
	width: 100%;
	height: 100%;
}

.fitImageCover {
	/*object-fit: cover;*/
	/*position: relative !important;*/
	background-size: cover !important;
	background-repeat: no-repeat !important;
}

.fitImageContain {
	/*object-fit: contain;*/
	/*position: relative !important;*/
	background-size: contain !important;
	background-repeat: no-repeat !important;
}

.fitImageSponsor{
    background-size: cover!important;
    background-repeat: no-repeat!important;
    height: 200px;
}

.fitImageLeft {
	background-position: left center !important;
}

.fitImageCenter {
	background-position: center center !important;
}

.fitImageRight {
	background-position: right center !important;
}

.fitImageTop {
	background-position: center top !important;
}

/*.customObjectFitCover{
	position: relative !important;
	background-size: cover !important;
	background-position: center center !important;
	background-repeat: no-repeat !important;
}

.customObjectFitContain{
	position: relative !important;
	background-size: contain !important;
	background-position: center center !important;
	background-repeat: no-repeat !important;
}*/

.verticalAlignText {
	display: inline-block;
	vertical-align: middle;
	line-height: normal;
}




/* --------------- Dropdown -----------------*/
.dropDownMenu {
    position: absolute;
    left: 0;
    width: 215px; /* or 100px*/
    background: #fff;
    border: 1px solid #e1e1e1;
    z-index: 5;
    /*** margin-top: 20px;***/ /* Para menuSearchButton.margin: 10px 0; && responsiveMenuNavbar.padding:5px 0;*/
    margin-top: 14px;
    visibility: hidden;
    transform: translate3d(0, 30px, 0);
    -webkit-transform: translate3d(0, 30px, 0);
    -o-transform: translate3d(0, 30px, 0);
    -ms-transform: translate3d(0, 30px, 0);
    opacity: 0;
    transition: 0.35s all cubic-bezier(0.65, 0.05, 0.36, 1);
    display: block;
    text-align: left;
}

.dropDownMenu > a:not(:first-child) > div.dropDownMenuItem{
	border-top: 1px solid #e1e1e1;
}


.dropDownOpen {
	transform: translate3d(0, 0, 0);
	-webkit-transform: translate3d(0, 0, 0);
	-o-transform: translate3d(0, 0, 0);
	-ms-transform: translate3d(0, 0, 0);
	visibility: visible;
	opacity: 1;
}


.dropDownMenuItem{
	padding: 10px 17px;
	display: flex;
}

.dropDownMenuItem .fa-caret-right{
	opacity: 0;
	transform: translate3d(-10px, 0, 0);
	transition: 0.35s all cubic-bezier(0.65, 0.05, 0.36, 1);
	display: inline-block;
	margin-right:10px;
	margin-top: 2.5px;
}

.dropDownMenuItem div{
	transform: translate3d(-10px, 0, 0);
	transition: 0.35s all cubic-bezier(0.65, 0.05, 0.36, 1);
	display: inline-block;
}




/* --------------------- PAGINATION --------------------- */

.customPagination {
	/*margin-bottom: -10px;
	margin-left: -10px;*/
	-ms-flex-pack: center;
	justify-content: center;
	padding: 0;
	margin: 0;
	position: relative;
	display: inline-block;
}

.customPagination.pageNumberContainer > li.pageNumber:nth-child(1){
	margin-left: 0!important;
}

/*.customPagination > * {
		margin-top: 0;
		margin-bottom: 10px;
		margin-left: 10px;
	}*/

.paginationLeftButtonContainer {
	margin-left: 0!important;
	position: absolute;
	left: 0;
	top: 0;
	transform: translateX(-175%);
}

.paginationRightButtonContainer {
	margin-left: 0;
	position: absolute;
	right: 0;
	top: 0;
	transform: translateX(175%);
}

.paginationButtons {
    /*padding: 1px;*/
    font: bold 22px/23px 'fl-budicons-free' !important;
    color: #111;
    background: red;
    /*border: 1px solid #c6c6c6;*/
    cursor: pointer;
    transition: .33s;
}

.page-item {
	/*display: inline-block;*/
	vertical-align: middle;
	text-align: center;
	/*font-weight: 400;*/
	font-family: 'Gilam-regular', sans-serif;
	cursor: pointer;
	/*transition: .3s ease-out all;*/
	display: none;
	margin-top: 0;
	/*margin-bottom: 10px;*/
	margin-left: 10px;
}



.showPageItem {
	display: inline-block !important;
	/*transition: all 0.3s ease-in-out;*/
	transition: none!important;
}

.page-link {
	display: inline-block;
	min-width: 42px;
	padding: 9px 9px;
	border: 1px solid #d7d7d7;
	font-size: 18px;
	line-height: 1.33333;
	background-color: #fff;
	transition: all 0.3s ease-in-out;
	border-radius: 0 !important;
}





/* --------------------- SUB CONTAINER --------------------- */

.subContainer {
	font-family: 'Gilam-bold', sans-serif;
	margin-bottom: 30px;
}

.subContainerHeader {
	font-size: 18px;
	letter-spacing: 1px;
	display: inline-block;
	width: 100%;
	padding-bottom: 14px;
	margin-bottom: 25px;
	border-bottom: 1px solid #CFD0D5;
}

.subContainerHeaderLeft {
	padding-left: 8px;
	float: left;
}

.subContainerHeaderRight {
	font-size: 12px;
	letter-spacing: 0px;
	margin: 6px 0;
	line-height: 12px;
	float: right;
}

	.subContainerHeaderRight span {
		margin-left: 10px;
		padding: 0 10px;
	}

.subContainerBody {
	border: 1px solid #e1e1e1;
	text-align: center;
	background-color: white;
}

.subContainerBodyBar {
	background-color: black;
	/*display: inline-block;*/
	width: 100%;
	padding: 12px;
	margin-left: 0;
}

/* --------------------- HEADER --------------------- */
.menuItem {
	font-size: 14px;
	letter-spacing: .075em;
	margin-left: 0;
	color: white;
}

/* --------------------- FOOTER --------------------- */
.footerItem {
	color: white;
}

/* --------------------- COLORS --------------------- */

.customGreyColor {
	color: #616568;
}


.whiteHoverLink:hover,
.whiteHoverLink:focus {
	color: white;
	cursor: pointer;
}



/*----------------- TEXT STYLEZ ---------------------------*/
#textContainer {
    display: inline-block;
    background: white;
    width: 100%;
    padding: 42px;
    text-transform: none;
    font-family: 'Gilam-regular', sans-serif;
    border: 1px solid #e1e1e1;
    overflow: auto;
}

	#textContainer p:last-child {
		margin: 0;
	}

	#textContainer p > a{
		color: darkblue;
		font-family: 'Gilam-regular', sans-serif;
	}

	#textContainer img {
		/*padding: 0 5%;*/
		/*object-fit: cover;*/
		width: 100% !important;
		height: 100% !important;
	}

	#textContainer table {
		margin-bottom: 20px;
	}

	table{
		border: none;
		/*font-weight: bold;*/
		font-family: 'Gilam-bold', sans-serif;
		text-transform: uppercase;
		border-collapse: initial;
		border: 1px solid #e1e1e1;
	}

		/*#textContainer table tr {
			margin-left: 0;
			width: 100%;
			min-height: 50px;
			// height: 100%; 
			//display: flex;
			padding-top: 5px;
			padding-bottom: 5px;
			//display: inline-block;
		}*/

	table th {
		background: black;
		color: white;
	}

	table tr:nth-child(n+2) td {
		border-top: 1px solid #e1e1e1;
	}

	/*#textContainer table tr:not(:first-child):nth-child(2n+1){
		background: #e5e5e5;
	}*/

	table th,
	table td {
		/*float: left;*/
		min-height: 1px;
		text-align: center;
		padding: 11px 15px;
		border: none;
	}

	table td{
		/*font-weight: 400;*/
		font-family: 'Gilam-regular', sans-serif;
	}


/*---------- TABLES ------------*/

/*.tableContainer > .row {
	width: 100%;
	margin-left: 0;
	padding-left: 12px;
	padding-right: 12px;
}*/


/* --------------------- TABLE CONTAINER --------------------- */
/*.tableHeaderContainer {
	background-color: black;
	margin-left: 0;
	color: white;
	display: flex;
	width: 100%;
	min-height: 40px;
	border: 1px solid #e1e1e1;
	border-bottom: none;
	align-items: center;
}

	.tableHeaderContainer > div {
		position: relative;
		padding: 12px 15px;
		float: initial;
		min-height: 1px;
		text-align: left;
		margin: auto;

		//WARNING
		display: inline-block;
	}

.tableBodyContainer {
	border: 1px solid #e1e1e1;
	border-top: none;
	font-weight: 400;
}

	.tableBodyContainer > .row {
		border-top: 1px solid #e1e1e1;
		background: white;
		margin-left: 0;
		width: 100%;
		min-height: 50px;
		//height: 10px;  hack for IE
		height: auto;
		display: flex;
		padding-top: 5px;
		padding-bottom: 5px;
		align-items: center;
	}

	.tableBodyContainer > div.row > div {
		float: left;
		min-height: 1px;
		text-align: left;
		padding-left: 15px;
		padding-right: 15px;
		margin: auto;
	}*/


/* */
	
.stagesItemPadding {
		padding: 42px;
		text-align: center;
	}    






.label {
	padding: 6px 14px;
	font-size: 12px;
	font-family: 'Gilam-bold', sans-serif;
	border-radius: 0;
	text-transform: uppercase;
	display: inline-block;
	background: #616568;
	color: white;
}


/*FORMS - search and mailchimp*/
.inputField{
		display: block;
		width: 100%;
		/*min-height: 60px;*/
		padding: 17px 19px;
		font-size: 14px;
		font-family: 'Gilam-regular', sans-serif;
		line-height: 24px;
		color: #9b9b9b;
		background-color: #fff;
		background-image: none;
		border-radius: 3px;
		-webkit-appearance: none;
		transition: .3s ease-in-out;
		border: 1px solid #e1e1e1;
		padding-right: 60px;
}


.customLoader {
		border: 16px solid #f3f3f3;
		border-radius: 50%;
		width: 120px;
		height: 120px;
		position: absolute;
		left: 35%;
		-webkit-animation: spin 2s linear infinite; /* Safari */
		animation: spin 2s linear infinite;
	}

	/* Safari */
	@-webkit-keyframes spin {
		0% {
			-webkit-transform: rotate(0deg);
		}
		100% {
			-webkit-transform: rotate(360deg);
		}
	}

	@keyframes spin {
		0% {
			transform: rotate(0deg);
		}
		100% {
			transform: rotate(360deg);
		}
	}



.owl-theme .owl-dots .owl-dot {
    outline: none;
}




/* RESPONSIVE */
@media (min-width: 1300px) {
}


@media (min-width: 1200px) and (max-width: 1299px) {
	.containerPodium {
		max-width: 1140px;
	}
}

/* MD */
@media (max-width: 1199px) {
	.containerPodium {
		padding: 0 25px;
	}

	.container {
		max-width: none;
	}


	/* ------ TABLES ------*/

	#textContainer td {
		padding: 9px 13px;
	}
}

/* WHEN RESPONSIVE NAVBAR SHOWS UP*/
@media (max-width: 1100px){
	/*.menuMasterContainer{
		padding: 0 15px;
		text-align: left;
	}

	.dropDownMenu {
	position: relative;
	background: transparent;
	color: white;
	border:none;
	width: 100%;
	margin-left:auto;
	margin-right: auto;
	opacity:1;
	visibility: visible;
	display: none;
	text-align: left;
	transition: none;
	margin-top: 10px;
	transform: none;
	-webkit-transform: none;
	-o-transform: none;
	-ms-transform: none;

}

	.dropDownMenuItem{
		border-top: none!important;
		display: block !important;
		padding: 5px 17px;
	}

		.dropDownMenuItem div {
			transform: none;
		}

	.dropDownMenuItem .fa-caret-right{
		display:none;
	}*/
}

/*SM*/
@media (max-width: 991px) {

	/* ------ TABLES ------*/
	#textContainer table {
		width: 100%;
	}

	#textContainer td {
		padding: 7px 11px;
	}

    .fitImageSponsor{
    background-size: contain!important;
    background-repeat: no-repeat!important;
    height: 100px;
}
}

/*XS*/
@media (max-width: 767px) {
	#textContainer{
		padding: 20px;
	}

	/*#textContainer table{
		
	}*/

	#textContainer td {
		padding: 5px 3px;
	}

	.stagesItemPadding {
		padding: 20px;
	}    
}

/*@media (min-width: 992px) and (max-width: 1199px) {
	.containerPodium {
		//max-width: 960px;
	}
}*/

/*SM*/
/*@media (min-width: 768px) and (max-width: 991px) {
	.containerPodium {
		//max-width: 720px;
	}
}*/


/*@media (min-width: 576px) and (max-width: 767px) {
	.containerPodium,
	.container {
		//max-width: 600px;
	}
}*/


@media (max-width: 450px) {


	.page-link {
		min-width: 30px;
	}
}