body{
	padding: 0;
	margin: 0;
	text-rendering: optimizeLegibility !important;
	-webkit-font-smoothing: antialiased !important;
	font-family: SystemFont Regular;
}

@font-face {
	font-family: SystemFont Regular;
	src: url('../fonts/montserrat/Montserrat-Regular.ttf');
}
@font-face {
	font-family: SystemFont Medium;
	src: url('../fonts/montserrat/Montserrat-Medium.ttf');
}
@font-face {
	font-family: SystemFont Bold;
	src: url('../fonts/montserrat/Montserrat-Bold.ttf');
}
@font-face {
	font-family: SystemFont Black;
	src: url('../fonts/montserrat/Montserrat-Black.ttf');
}
button:hover{
	cursor: pointer !important;
}
button:focus {
	outline:0 !important;
	box-shadow: none !important;
	border: none !important;
}
button {
	outline:0;
}
input:focus, 
textarea:focus {
	border: 1px solid #c3d436;
	border-radius: 4px;
	border-color: #c3d436 !important;
	box-shadow: none !important;
}
input[type=email], 
input[type=text],
textarea{
	outline: none;
	box-shadow: none;
}

h1,h2,h3,h4,h5,h6{
	font-family: SystemFont Bold;
}



h1{
	font-family: SystemFont Bold;
	font-size: 46px;
	color: #FFFFFF;
	letter-spacing: 0.2px;
}
h2{
	font-family: SystemFont Bold;
	font-style: normal;
	font-weight: bold;
	font-size: 40px !important;
	line-height: 50px !important;
	color: #0a2540;
}
h3{
	font-family: SystemFont Bold;
	font-style: normal;
	font-weight: bold;
	font-size: 24px !important;
	line-height: 40px !important;
	color: #0a2540;
}
h4{
	font-family: SystemFont Bold;
	font-style: normal;
	font-weight: bold;
	font-size: 20px !important;
	line-height: 32px !important;
	color: #0a2540;
}
h5{
	font-family: SystemFont Bold;
	font-style: normal;
	font-weight: bold;
	font-size: 18px !important;
	line-height: 28px !important;
	color: #0a2540;
}
h6{
	font-family: SystemFont Bold;
	font-style: normal;
	font-weight: bold;
	font-size: 16px !important;
	line-height: 24px !important;
	color: #0a2540;
}

p{
	font-size: 16px;
	font-family: SystemFont Regular;
	color: #425466;
}


a:hover{
	text-decoration: none !important;
	color: #c3d437;
	transition: all .3s ease-in-out;
}

::-webkit-input-placeholder { /* Chrome/Opera/Safari */
	font-family: SystemFont Regular;
	font-size: 16px;
	color: rgba(99, 113, 120, 0.4) !important;
	letter-spacing: 0;
}
::-moz-placeholder { /* Firefox 19+ */
	font-family: SystemFont Regular;
	font-size: 16px;
	color: rgba(99, 113, 120, 0.4) !important;
	letter-spacing: 0;

}
:-ms-input-placeholder { /* IE 10+ */
	font-family: SystemFont Regular;
	font-size: 16px;
	color: rgba(99, 113, 120, 0.4) !important;
	letter-spacing: 0;

}
:-moz-placeholder { /* Firefox 18- */
	font-family: SystemFont Regular;
	font-size: 16px;
	color: rgba(99, 113, 120, 0.4) !important;
	letter-spacing: 0;

}
/* width */
::-webkit-scrollbar {
	width: 4px;
	border-radius: 3px;
}

/* Track */
::-webkit-scrollbar-track {
	background: transparent;
	border-radius: 3px;
}

/* Handle */
::-webkit-scrollbar-thumb {
	background: #888; 
	border-radius: 3px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
	background: #697176;
	border-radius: 3px;
}

.left{
	float: left;
}
.right{
	float: right;
}
.mt-24{
	margin-top: 24px;
}
.mt-32{
	margin-top: 32px;
}
.h-80{
	width: 100%;
	height: 80px;
}
.h-80{
	width: 100%;
	height: 80px;
}
.img-responsive{
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.flex{
	display: flex;
}
.form-control{
	background: #FFFFFF;
	border: 1px solid #086db5 !important;
	box-sizing: border-box;
	box-shadow: none !important;
}
label{
	font-family: SystemFont Regular;
	font-size: 12px;
	line-height: 14px;
	text-transform: uppercase;
	color: #086db5;
	margin-bottom: 4px;
}
.required{
	color: #EB5757;
}

/* Button */
.btn-custom{
	border-radius: 2px !important;
	padding: 16px 24px;
	font-family: SystemFont Bold;
	font-style: normal;
	font-weight: bold;
	font-size: 18px;
	line-height: 24px;
	text-transform: uppercase;
	display: block;
	text-align: center;
}
.btn-primary{
	width: 100%;
	border: none;
	background: #c3d437 !important;
	font-family: SystemFont Regular;
	font-style: normal;
	font-weight: bold;
	font-size: 18px;
	line-height: 22px;
	/* identical to box height, or 122% */

	text-transform: uppercase;

	/* Neutral - fff */

	color: #FFFFFF;
}
.btn-primary img{
	margin-left: 24px;
	float: right;
}
a:not([href]).btn-primary{
	color: #fff;
}
.btn-primary:hover{
	color: #fff !important;
	background: #acbb2c !important;
	transition: all .3s ease-in-out;
	cursor: pointer;
}

/* Primary Outline */
.btn-primary-outline{
	border: 1px solid #1D305F;
	color: #0a2540;
}
.btn-primary-outline img{
	margin-left: 24px;
	float: right;
}
.btn-primary-outline:hover{
	color: #fff;
	opacity: 0.9;
	transition: all .3s ease-in-out;
}

/* Secondary */
.btn-secondary{
	background: #fff !important;
	border: 1px solid #086db5 !important;
	color: #086db5 !important;
}
.btn-secondary img{
	margin-left: 24px;
	float: right;
}
.btn-secondary:hover{
	background: #086db5 !important;
	transition: all .3s ease-in-out;
	color: #fff !important;
}

/* Secondary Outline */
a:not([href]).btn-secondary-outline{
	border: 1px solid #c3d437;
	color: #c3d437 !important;
}
.btn-secondary-outline{
	border: 1px solid #c3d437;
	color: #c3d437;
}
.btn-secondary-outline img{
	margin-left: 24px;
	float: right;
}
.btn-secondary-outline:hover{
	color: #fff;
	background: #c3d437;
	opacity: 0.9;
	transition: all .3s ease-in-out;
}
a:not([href]).btn-secondary-outline:hover{
	color: #fff !important;
	background: #c3d437;
	opacity: 0.9;
	transition: all .3s ease-in-out;
	cursor: pointer;
}
.btn-secondary-outline:hover img{
	filter: brightness(0) invert(1);
	transition: all .3s ease-in-out;
}

/* White */
.btn-white{
	background: #fff;
	color: #086db5;
}
.btn-white img{
	margin-left: 24px;
	float: right;
}
.btn-white:hover{
	background: #086db5;
	color: #fff;
	transition: all .3s ease-in-out;
}
/* White Outline */
.btn-white-outline{
	border: 1px solid #FFFFFF;
	color: #fff;
}
.btn-white-outline img{
	margin-left: 24px;
	float: right;
}
.btn-white-outline:hover{
	background: #fff;
	color: #0a2540;
	transition: all .3s ease-in-out;
}





.logo{
	max-width: 100%;
	height: 40px;
}
.navbar-brand img{
	width: auto;
	height: 40px;
}
.navbar-light .navbar-toggler{
	border: none !important;
}
.navbar{
	background: transparent;
	z-index: 2;
	height: 80px;
}
.navbar-nav .nav-link{
	font-family: SystemFont Regular;
	font-style: normal;
	font-weight: 600;
	font-size: 14px !important;
	line-height: 22px !important;
	/* identical to box height, or 157% */
	text-transform: uppercase;
	color: #0a2540 !important;
	padding: 0px 20px !important;
}
.navbar-nav .nav-link.active{
	color: #c3d437 !important;
}

#bg-header .navbar-nav .nav-link,
#header-news .navbar-nav .nav-link,
#header-contact .navbar-nav .nav-link{
	color: #fff !important;
}
#bg-header .navbar-nav .nav-link.active,
#header-news .navbar-nav .nav-link.active,
#header-contact .navbar-nav .nav-link.active{
	color: #c3d437 !important;
}

#navbar-white .navbar-nav .nav-link{
	color: #0a2540 !important;
}
#navbar-white .navbar-nav .nav-link.active{
	color: #c3d437 !important;
}
#navbar-white.navbar{
	background: transparent;
	position: fixed;
	margin-top: -80px;
	visibility: hidden;
	width: 100%;
	z-index: 9;
}
#navbar-white .btn-white-outline{
	background: #0c1011 !important;
	color: #fff !important;
	width: 100%;
	text-align: center !important;
}

.sticky {
	background: #fff !important;
	visibility:  !important;
	margin-top: -80px !important;
	transition: 1s;
	box-shadow: 0 4px 15px 0 rgba(32,43,54,0.05);
}

.sticky-responsive {
	background: #fff !important;
	visibility: visible !important;
	transition: 1s;
	box-shadow: 0 4px 15px 0 rgba(32,43,54,0.05);
}
.sticky-burger{
	display: block !important;
}
.burger-menu-black{
	position: absolute;
	top: 21px;
	right: 28px;
	display: none;
}


#bg-header{
	width: 100%;
	height: auto;
	background-image: url('../images/home-hero-image.png');
	background-size: 100%;
	background-position: top center;
	background-repeat: no-repeat;
	background-size: cover;
	position: relative;
	overflow: hidden;
}

.topbar{
	width: 100%;
	height: 60px;
	display: inline-flex;
	justify-content: space-between;
	position: absolute;
}
.topbar-left{
	width: 50%;
	text-align: left;
	padding: 8px 16px;
}
.topbar-left img{
	max-width: 100%;
	max-height: 100%;
}
.topbar-right{
	width: 50%;
	text-align: right;
}
.topbar-right img{
	max-width: 100%;
	max-height: 100%;
}


.content-flex{
	width: 100%;
	min-height: 93vh;
	height: auto;
	display: flex;
	justify-content: space-between;
}
.content-block{
	width: 100%;
	min-height: 93vh;
	height: auto;
}
.content-left{
	width: 50%;
	padding: 40px 40px;
}
.content-right{
	width: 50%;
	padding: 40px 40px;
	padding-top: 20px;
}
.content-top{
	width: 100%;
	height: auto;
	padding: 30px 40px 0px 40px;
	margin-bottom: 40px;
}
.content-top .logo-smexpo{
	margin-top: 80px;
}
.content-bottom{
	width: 100%;
	height: auto;
	padding: 40px 40px;
	padding-top: 20px;
}

.logo-smexpo{
	width: 100%;
	margin-top: 80px;
}
.logo-smexpo img{
	width: 100%;
}
.header-text{
	width: 100%;
}
.header-text p{
	font-size: 18px;
	color: #fff;
	padding-top: 40px;
}
.tag-line{
	color: #c3d437;
	letter-spacing: 4px;
	margin-bottom: 8px;
	display: block;
	margin-top: 80px;
}
.list-event{
	border-left: 10px solid #e9292c;
}
.list-event ul{
	padding-inline-start: 16px;
}
.list-event ul li{
	display: block;
	color: #fff;
}


/* FOOTER */
.footer{
	width: 100%;
	height: 64px;
	background-color: #fff;
	background-image: url('../images/footer-left.png');
	background-repeat: no-repeat;
	background-size: contain;
	position: relative;
	bottom: 0;
	padding: 8px 16px;
}
.copyright{
	display: block;
	margin-top: 30px;
	font-size: 12px;
	color: #fff;
}
.social-media{
	text-align: center;
}
.social-media a{
	color: #221f1f !important;
	font-family: SystemFont Bold;
}
.social-media a img{
	width: 32px;
	height: 32px;
	margin: 8px 4px;
}
.support{
	width: 100%;
	height: 100%;
	text-align: right;
	padding-top: 4px;
}
.support a{
	width: 40px;
	height: 40px;
	display: inline-block;
	margin-left: 16px;
}
.support a img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}


.action-header{
	width: 70%;
	margin: auto;
	margin-top: 50%;
}
.form-header{
	width: 90%;
	margin: auto;
}
.action-header a{
	width: 100%;
	text-align: center;
	margin-bottom: 24px;
}


.form-wrapper{
	height: 60vh;
}


#password{
	padding-top: 90px;
}


.text-congrats{
	text-align: right;
	position: absolute;
	bottom: 0;
	right: 20px;
}
.text-congrats h1{
	font-size: 56px;
	margin-bottom: 0;
	font-family: SystemFont Black;
	text-transform: uppercase;
}
.text-congrats p{
	color: #fff !important;
}
strong{
	font-family: SystemFont Black;
	font-weight: 900;
}



.profil-tenant{
	color: #086db5;
}
.profil-tenant h2{
	color: #086db5;
	text-transform: uppercase;
}
.logo-tenant{
	width: auto;
	height: 100px;
	text-align: left;
	margin-bottom: 16px;
}
.logo-tenant img{
	width: auto;
	height: 100%;
	object-fit: contain;
	text-align: left;
}
.list-profil{
	margin-bottom: 16px;
}
.list-profil p{
	font-size: 14px;
	color: #086db5;
	margin-bottom: 0;
}

.product-tenant p{
	margin-bottom: 0;
	color: #086db5;
}
.img-product-tenant{
	width: auto;
	height: 170px;
	text-align: left;
	margin-bottom: 16px;
}
.img-product-tenant img{
	width: auto;
	height: 100%;
	object-fit: contain;
	text-align: left;
}

.action-tenant{
	margin-top: 16px;
}
.action-tenant a{
	margin-bottom: 16px;
}

.table{
	margin-bottom: 0 !important;
}
.table-rundown h3{
	text-align: center;
	color: #fff;
	text-transform: uppercase;
}
.table-rundown table{
	color: #fff;
}
.table-bordered td, .table-bordered th{
	border: 1px solid #c3d437 !important;
}
.table-rundown table th{
	background: #c3d437;
	text-align: center;
}

.block-green{
	width: 100%;
	height: auto;
	display: block;
	position: relative;
	background: #fff;
	border-radius: 24px;
	padding: 32px;
}

.welcome{
	width: 80%;
	margin: auto;
	margin-top: 0;
}
.welcome-wizard-content{
	text-align: center;
}
.text-box{
	display: inline-flex;
	width: auto;
	height: auto;
	font-size: 20px;
	font-family: SystemFont Black;
	padding: 8px 40px;
	color: #fff;
	border: 4px solid #fff;
	margin: 40px 0px 60px 0;
}
.text-box-null{
	width: auto;
	height: 54px;
	display: block;
	margin: 40px 0px 60px 0;
}
.welcome-logo{
	width: 60%;
	height: 100%;
	margin: auto;
}
.welcome-logo img{
	width: 100%;
	height: 100%;
}
.welcome-footer{
	position: absolute;
	width: 100%;
	bottom: -8px;
	z-index: 0;
}
.welcome-footer p{
	font-size: 18px;
	font-family: SystemFont Black;
	color: #fff;
	letter-spacing: 4px;
}
.triangle{
	width: 0; 
	height: 0; 
	border-left: 5px solid transparent;
	border-right: 5px solid transparent;
	border-bottom: 5px solid #fff;
	margin: auto;
}

.pra-login-form{
	width: 30%;
	background: rgba(255,255,255,0.10);
	padding: 120px 40px;
	margin: 60px auto;
}
.pra-login-form img{
	width: 100%;
	height: auto;
	margin-bottom: 120px;
}
.pra-login-form a.btn-custom{
	margin-bottom: 30px;
}

#timer{
	font-size: 80px;
	font-family: SystemFont Medium;
	color: #fff;
	text-align: center;
}
#timer span{
	margin: 0px 20px;
}


.virtual-box{
	width: 100%;
	height: auto;
	margin-top: 100px;
}
.virtual-head{
	font-size: 16px;
	padding: 40px 0px;
	text-align: center;
	background: rgba(255,255,255,0.2);
	color: #fff;
	letter-spacing: 4px;
}
.virtual-body{
	width: 100%;
	height: 360px;
	background: #000;
	border: 1px solid #fff;
}

.rundown {
	text-align: center;
	color: #fff;
	margin-top: 20%;
}
.rundown h4{
	text-align: center;
	color: #fff;
	font-family: SystemFont Black;
}
.rundown .date-launch{
	width: 100px;
	height: auto;
	margin: auto;
}
.rundown .date-launch img{
	width: 100%;
}
.rundown .logo-rundown{
	width: 400px;
	text-align: center;
	margin: auto;
	margin-top: 20px;
}
.rundown .logo-rundown img{
	width: 100%;
}

.inner{
	padding-right: 50%;
    position: relative;
    min-height: 100vh;
    height: auto;
}
.content-inner-left{
	float: right;
    width: 100%;
    margin-right: -100%;
	padding: 40px 40px;
}
.content-inner-right{
	float: left;
    width: 100%;
	padding: 40px 40px;
}

.loading p{
	font-family: SystemFont Bold;
	text-transform: uppercase;
}


#contact{
	padding-top: 0;
	padding-left: 0;
	padding-right: 0;
}
#map{
	height: 480px;
}

.contact{
	padding: 80px 140px 0px 140px;
}

.modal-content
{
	padding: 20px !important;
}


