:root{
	--color-primary: #da9600;
	--color-secundary: #383536;
}
*,
*::before,
*::after {
	box-sizing: border-box;
}

body {
	font-family:'Roboto',
		Arial,
		Tahoma,
		Sans-Serif;
	font-size: 12px;
	font-style: normal;
	font-weight: 300;
	line-height: 1;
	color: #383536;
}

img{
	width: 100%;
}
ul{
	list-style-type: none;
	margin: 0;
	padding: 0;
}
a,
a:focus,
a:hover,
a:active{
	text-decoration: none;
	transition: .3s all ease;
}
figure{
	margin: 0;
}
.centrar,
.vertical,
.horizontal{
	display: flex;
	justify-content: center;
	align-items: center;
}
.vertical{
	flex-direction: column;
}
.horizontal{
	flex-direction: row;
}
.max-width{
	max-width: 1366px;
	margin-right: auto;
	margin-left: auto;
}
.cont-width{
	width: 86%;
    margin: auto;
}

/* Botones Primarios */
.button-primary{
	display: inline-block;
	color: #fff;
	background: var(--color-primary);
	text-transform: uppercase;
	font-size: 14px;
	font-weight: 400;
	padding: 10px;
	letter-spacing: .5px;
	border: 2px solid transparent;
	transition: all .3s ease-in-out;
}
.button-primary:hover{
	background: #fff;
	color: var(--color-primary);
	border: 2px solid var(--color-primary);
}

.ekko-lightbox-nav-overlay a {
    color: var(--color-primary);
    font-size: 45px;
    font-weight: 800;
}