/*CSS Style*/

/*General*/
* {
	margin: 0px;
	padding: 0px;
	outline: none;
	box-sizing: border-box;
	-webkit-font-smoothing: antialiased !important;
	font-family: "Livvic-Regular";
	font-size: 14px;
	line-height: 1;
}
body {
	padding-top: 50px;
}
@media (min-width: 992px) {
	.container {
		width: 92%;
		max-width: 1600px;
	}
}

/*Custom*/
.bg-main-gold {
	background: #FFDF00;
}
.text-main-gold {
	color: #FFDF00;
}
.bg-main-dark {
	background: rgb(34,34,34);
}
.text-main-dark {
	color: rgb(34,34,34);
}

/*Home*/

/*_Navbar*/
#navbar {
	background: rgb(22,22,22);
	height: 50px;
	z-index: 1000;
}
#navbar-link-home span {
	font-size: 42px;
	color: #FFDF00;
	line-height:0.7;
	margin-top:4px;
	margin-left: -7px;
}
#navbar-svg-logo {
	height: 32px;
}
#navbar-menu-mobile {
	width: 25px;
	display: none;
	flex-direction: row;
	justify-content: center;
	align-items: center;
}
#navbar-menu-mobile div {
	width: 21px;
	cursor: pointer;
}
#navbar-menu-mobile div div {
	width: 21px;
	height: 1px;
	background: #FFDF00;
	margin: 7px 0px;
	transition: all 300ms;
}
#navbar-items-social a {
	color: rgba(255,255,255,0.8);
}
#navbar-items-social a:hover {
	color: rgba(255,255,255,1);
}
#navbar-items-social a i {
	font-size: 22px;
}
@media (max-width: 991px) {
	#navbar-link-home span {
		font-size: 36px;
	}
	#navbar-svg-logo {
		height: 28px;
	}
	#navbar-menu-mobile {
		display: flex;
	}
	#navbar-items-navegation {
		position: absolute;
		z-index: 1000;
		display: block;
		background: linear-gradient(to right, rgba(22,22,22,1), 70%, rgba(22,22,22,0.85));
		top: 50px;
		left: -100%;
		width: 100%;
		height: calc(100vh - 50px);
		padding: 0px 10px;
		border-top: 1px solid rgba(255,255,255,0.3);
		transition: all 300ms;
		overflow-y: scroll;
	}
	#navbar-items-navegation li.nav-item {
		border-bottom: 1px solid rgba(255,255,255,0.3);
		padding: 5px 0px;
		transition: all 300ms;
	}
	#navbar-items-navegation li.nav-item a {
		padding: 5px 0px;
	}
	#navbar-items-navegation li.nav-item .dropdown-menu {
		background: rgba(255,255,255,0.15);
	}
	#navbar-items-navegation li.nav-item .dropdown-menu .dropdown-item {
		padding: 8px;
		color: #FFFFFF;
	}
	#navbar-items-navegation li.nav-item .dropdown-menu .dropdown-item:hover,#navbar-items-navegation li.nav-item .dropdown-menu .dropdown-item:focus {
		background: rgba(255,255,255,0.2);
	}
	#navbar-items-navegation-right {
		margin-bottom: 40px;
	}
	#navbar-items-social {
		position: fixed;
		bottom: 0;
		left: -100%;
		width: 100%;
		box-sizing: border-box;
		display: flex;
		flex-direction: row;
		flex-wrap: nowrap;
		justify-content: space-around;
		align-items: center;
		background: #111111;
		transition: all 300ms;
	}
}

/*_Banner*/
#home {
	position: relative;
	z-index: 1;
	background-color: #111111;
	background-image: url('../_images/home.jpg');
	background-position: top;
	background-repeat: no-repeat;
	background-size: cover;
	min-height: calc(100vh - 50px);
}
#home:before {
	position: absolute;
	z-index: 10;
	content: "";
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	background: linear-gradient(45deg, rgba(0,0,0,0.7), rgba(0,0,0,0.2));
}
#home .container {
	position: relative;
	z-index: 100;
}

/*Contact*/
#contact-social-box a {
	text-decoration: none;
}
#contact-social-box .contact-social-icon {
	margin-right: 10px;
	background: rgb(22,22,22);
	height: 40px;
	width: 40px;
	border-radius: 50%;
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	transition: all 300ms;
}
#contact-social-box .contact-social-icon:hover {
	box-shadow: 1px 1px 4px rgba(0,0,0,0.5);
}
#contact-social-box .contact-social-icon i {
	font-size: 24px;
	color: #FFDF00;
}
#contact-social-box .contact-social-name {
	font-size: 18px;
}

/*Access*/
#access {
	background: #FFFFFF;
}
#access .access-column h5 {
	font-family: "Maven-Bold";
	color: #6C757D;
}
#access .access-column ul {
	list-style: none;
}
#access .access-column ul li {
	padding: 5px 0px;
	margin: 5px 0px;
}
#access .access-column ul li a {
	text-decoration: none;
	padding: 5px 0px;
	margin: 5px 0px;
	color: #6C757D;
}
#access .access-column ul li a:hover {
	text-decoration: underline;
}

/*Footer*/
#footer #footer-social a {
	color: #6C757D;
	margin-left: 12px;
}
#footer #footer-social a i {
	font-size: 22px;
}
@media (max-width: 992px) {
	#footer #footer-social a {
		margin: 0px 6px;
	}
}

/*Modal Contact*/
#modal-contact {
	position: fixed;
	z-index: 100000;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	background: rgba(0,0,0,0.5);
	display: none;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	padding: 20px;
}
#modal-contact #modal-contact-box {
	border: 1px solid #FFDF00;
	max-width: 760px;
}