/* CSS Document */

@font-face {
	font-family: 'Akzidenz-Grotesk-BQ-Bold';
	src: url('Akzidenz-Grotesk-BQ-Bold.otf')  format('opentype');
	src: url('Akzidenz-Grotesk-BQ-Bold.ttf') format('truetype');
	font-weight: 700;
	font-style: bold;

}

@font-face {
	font-family: 'Akzidenz-Grotesk-BQ-Bold-Condensed';
	src: url('Akzidenz-Grotesk-BQ-Bold-Condensed.otf')  format('opentype');
	src: url('Akzidenz-Grotesk-BQ-Bold-Condensed.ttf') format('truetype');
	font-weight: 800;
}

@font-face {
	font-family: 'Akzidenz-Grotesk-BQ-Regular';
	src: url('Akzidenz-Grotesk-BQ-Regular.otf')  format('opentype');
	src: url('Akzidenz-Grotesk-BQ-Regular.ttf') format('truetype');
	font-weight: 400;
}

* {
	border: 0 none;
	outline: 0;
	padding: 0;
	margin: 0;
}

.contenido_dislicores article, aside, figure, footer, header, menu, nav, section { 
	display: block;
}


/* Mixin itself */
.clearfix() {
  &:before,
  &:after {
    content: " ";
    display: table;
  }
  &:after {
    clear: both;
  }
}

/* Usage as a mixin */
.element {
  .clearfix();
}


/* SLIDER */

#cc-slider {
	text-align: center;
	margin: 0 auto;
	max-width: 732px;
}

#cc-slider input {
	display: none;
}

#cc-slider label, a {
	color: #ef023f;
	cursor: pointer;
	text-decoration: none;
}

#cc-slider label:hover {
	color: #ff0042 !important;
}

#slide1:checked ~ #cc-slides .inner { margin-left:0; }
#slide2:checked ~ #cc-slides .inner { margin-left:-100%; }
#slide3:checked ~ #cc-slides .inner { margin-left:-200%; }
#slide4:checked ~ #cc-slides .inner { margin-left:-300%; }
#slide5:checked ~ #cc-slides .inner { margin-left:-400%; }
#slide6:checked ~ #cc-slides .inner { margin-left:-500%; }


#overflow {
	width: 100%;
	overflow: hidden;
}

#cc-slides article img {
	width: 100%;
}

#cc-slides .inner {
	width: 600%;
	line-height: 0;
}

#cc-slides article {
	width: 16.6667%;
	float: left;
}

#controls {
	margin: -25% 0 18% 0%;
    width: 99%;
    height: 100px;
}

#controls label { 
	display: none;
	width: 50px;
	height: 50px;
	
}

#active {
	margin: 23% 0 0;
	text-align: center;
}

#active label {
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
	display: inline-block;
	width: 10px;
	height: 10px;
	background: #f89e67;
}

#active label:hover {
	background: #ccc;
	border-color: #777 !important;
}

#controls label:hover {
	opacity: 0.8;
}

#slide1:checked ~ #controls label:nth-child(2), 
#slide2:checked ~ #controls label:nth-child(3), 
#slide3:checked ~ #controls label:nth-child(4), 
#slide4:checked ~ #controls label:nth-child(5),
#slide5:checked ~ #controls label:nth-child(6),
#slide6:checked ~ #controls label:nth-child(1) {
	background: url('../image/next.png') no-repeat;
	float: right;
	margin: 0 10px 0 0;
	display: block;
	background-color: #FFFFFF;
    opacity: 0.5;
}


#slide1:checked ~ #controls label:nth-child(6),
#slide2:checked ~ #controls label:nth-child(1),
#slide3:checked ~ #controls label:nth-child(2),
#slide4:checked ~ #controls label:nth-child(3),
#slide5:checked ~ #controls label:nth-child(4),
#slide6:checked ~ #controls label:nth-child(5) {
	background: url('../image/prev.png') no-repeat;
	float: left;
	margin: 0 0 0 17px;
	display: block;
	background-color: #FFFFFF;
    opacity: 0.5;
}



/* cc-slider Styling */

#cc-slides {
	background: #fff;
	
}


/* Animation */

#cc-slides .inner {
	-webkit-transform: translateZ(0);
	-webkit-transition: all 800ms cubic-bezier(0.770, 0.000, 0.175, 1.000); 
	-moz-transition: all 800ms cubic-bezier(0.770, 0.000, 0.175, 1.000); 
    -ms-transition: all 800ms cubic-bezier(0.770, 0.000, 0.175, 1.000); 
     -o-transition: all 800ms cubic-bezier(0.770, 0.000, 0.175, 1.000); 
        transition: all 800ms cubic-bezier(0.770, 0.000, 0.175, 1.000); /* easeInOutQuart */

	-webkit-transition-timing-function: cubic-bezier(0.770, 0.000, 0.175, 1.000); 
	-moz-transition-timing-function: cubic-bezier(0.770, 0.000, 0.175, 1.000); 
    -ms-transition-timing-function: cubic-bezier(0.770, 0.000, 0.175, 1.000); 
     -o-transition-timing-function: cubic-bezier(0.770, 0.000, 0.175, 1.000); 
        transition-timing-function: cubic-bezier(0.770, 0.000, 0.175, 1.000); /* easeInOutQuart */
}

#cc-slider {
	-webkit-transform: translateZ(0);
	-webkit-transition: all 0.5s ease-out;
	-moz-transition: all 0.5s ease-out;
	-o-transition: all 0.5s ease-out;
	transition: all 0.5s ease-out;
}

#controls label{
	-webkit-transform: translateZ(0);
	-webkit-transition: opacity 0.2s ease-out;
	-moz-transition: opacity 0.2s ease-out;
	-o-transition: opacity 0.2s ease-out;
	transition: opacity 0.2s ease-out;
}

#slide1:checked ~ #cc-slides article:nth-child(1) .cctooltip,
#slide2:checked ~ #cc-slides article:nth-child(2) .cctooltip,
#slide3:checked ~ #cc-slides article:nth-child(3) .cctooltip,
#slide4:checked ~ #cc-slides article:nth-child(4) .cctooltip,
#slide5:checked ~ #cc-slides article:nth-child(5) .cctooltip,
#slide6:checked ~ #cc-slides article:nth-child(6) .cctooltip {
	opacity: 1;
	-webkit-transition: all 1s ease-out 0.6s;
	-moz-transition: all 1s ease-out 0.6s;
	-o-transition: all 1s ease-out 0.6s;
	transition: all 1s ease-out 0.6s;
}





/* CONTENIDO */

.contenido_dislicores {
	font-family: 'Akzidenz-Grotesk-BQ-Regular', Arial,Helvetica,sans-serif;
	font-size: 16px;
	font-weight: 400;
	width: 732px;
	height: auto;
	color: #424143;
	background-image: url(../image/fondo.png);
}

.ima_ban {
	width: 100%;
	background-color: #af9c72;
}

.contenedor_pri {
 	margin: 5% 5%;
}

.contenedor_pri h1, .contenedor_pri h2, .acord {
	font-family: 'Akzidenz-Grotesk-BQ-Bold-Condensed', Arial,Helvetica,sans-serif !important;
	color: #af9c72;
	font-size: 42px;
	font-weight: 800;
	padding: 0;
    margin-top: 20px;
    margin-bottom: 10px;
}

.contenedor_pri h2 {
	font-size: 24px;
	letter-spacing: 1px;
}

.acord {
	font-size: 24px;
	color: #FFFFFF
	margin: 20px 0;
}

.parrafo_m, .parrafo_m2, .parrafo_m3 {
	text-align: left;
	font-family: 'Akzidenz-Grotesk-BQ-Regular', Arial,Helvetica,sans-serif;
	font-size: 18px;
	line-height: 28px;
	color: #424643;
	margin: 0px 0 30px 0;
	text-align: justify;
}

.parrafo_m2 {
	margin: 0px 30px 30px 30px;
}

.parrafo_m3 {
	margin: 0px;
}

.imagenes_ {
	border-bottom: 8px solid #af9c72;
	margin-bottom: 30px;
}

.contenido_dislicores strong {
	font-family: 'Akzidenz-Grotesk-BQ-Bold', Arial,Helvetica,sans-serif;
	color: #af9c72;
}

.caja_conte_01 {
	width: 40%;
	margin: 30px 0 0;
	float: left;
}

.caja_conte_02 {
	width: 55%;
	margin-left: 30px; 
	float: left;
}

.caja_perf_01, .caja_perf_02 {
	width: 21%;
	margin-right: 34px;
	float: left;
}

.caja_perf_02 {
	margin-right: 0px;
}

.contenedor_pri ul {
	margin: 30px;
	list-style-type: square;
	color: #af9c72;
	font-size: 20px;
}

.ima_flecha {
	width: 24px;
    margin-right: 10px;
    margin-top: -4px;
}




/* ACORDEON */
.acordeon__item > label {
    margin-bottom: 0px;
}

.acordeon input {
	display: none;
}

.acordeon__titulo {
	font-family: 'Akzidenz-Grotesk-BQ-Bold-Condensed', Arial,Helvetica,sans-serif;
	color: #af9c72;
	font-size: 24px;
	font-weight: 800;
	letter-spacing: 2px;
	display: block;
	padding: 8px;
	background-color: #af9c72;
	color: #FFFFFF;
	cursor: pointer;
	border-bottom: 1px solid #FFFFFF;
}

.acordeon__titulo:hover {
	background-color: rgba(124, 107, 77, 0.8);
}

.acordeon__item {
	background-color: #FFFFFF;
	/* border: 1px solid #af9c72; */
}

.acordeon__contenido {
	height: 0;
	overflow: hidden;
	transition: all 0.5s;
}

.acordeon input:checked ~ .acordeon__contenido {
	height: auto;
	padding: 0px 30px 30px 30px;
}





/* FOOTER */
.footer_dislicores {
	background-color: #af9c72;
	width: 100%;
	-webkit-box-shadow: 0px -10px 10px -4px rgba(0,0,0,0.3);
	-moz-box-shadow: 0px -10px 10px -4px rgba(0,0,0,0.3);
	box-shadow: 0px -10px 10px -4px rgba(0,0,0,0.3);
}

.caja_conte_03 {
	width: 40%;
	float: left;
}

.caja_conte_04 {
	width: 55%;
	float: left;
}

.caja_logo {
	width: 90%;
    margin: 70px 20px;
}

.box {
	font-family: 'Akzidenz-Grotesk-BQ-Bold-Condensed', Arial,Helvetica,sans-serif !important;
	box-sizing: border-box;
	margin: 30px 30px;
	width: 90%;
	text-align: left;
}

.box h2, .box h2 a  {
	font-family: 'Akzidenz-Grotesk-BQ-Bold-Condensed', Arial,Helvetica,sans-serif !important;
	font-size: 30px;
	font-weight: 800;
	letter-spacing: 2px;
	color: #FFFFFF;
}

.box a {
	font-family: 'Akzidenz-Grotesk-BQ-Bold-Condensed', Arial,Helvetica,sans-serif !important;
	font-size: 24px;
    color: #FFFFFF;
    text-decoration: none;
}

.box a:focus {
    outline: thin dotted;
    outline: 5px auto -webkit-focus-ring-color;
    outline-offset: -2px;
}

.box a:active, a:hover {
    outline: 0;
}

.box a img {
	margin: 10px;
}

