@charset "UTF-8";
/* CSS Document */
@font-face {
	font-family: 'Brandon_bld';
	src: 	url('Brandon_bld.otf')  format('opentype'),
			url('Brandon_bld.ttf')  format('truetype');
	font-weight: 700;
	font-style: bold;
}

@font-face {
	font-family: 'Georgia';
	src: url('Georgia.ttf')  format('truetype');
	font-weight: 400;
	font-style: normal;
}

@font-face {
	font-family: 'Georgia_bld';
	src: url('Georgia_bld.ttf')  format('truetype');
	font-weight: 700;
	font-style: normal;
}

* {
	border: 0 none;
	outline: 0;
	padding: 0;
	margin: 0;
}

.contenido_lafrancol article, aside, figure, footer, header, menu, nav, section { 
	display: block;
}

.contenido_lafrancol strong {
	font-family: "Georgia_bld", Arial, Helvetica, sans-serif;
	font-weight: 700;
}

/* Mixin itself */
.clearfix() {
  &:before,
  &:after {
    content: " ";
    display: table;
  }
  &:after {
    clear: both;
  }
}

/* Usage as a mixin */
.element {
  .clearfix();
}


/* SLIDER 01 */

.slider1 {
	width: 100%;
	margin:auto;
	overflow: hidden;
}

.slider1 ul {
	display: flex;
	padding: 0;
	width: 200%;

	animation: cambio1 5s infinite alternate;
	animation-timing-function: ease-out;
}

.slider1 li {
	width: 100%;
	list-style: none;
}

.slider1 img {
	width: 100%;

}

@keyframes cambio1 {
0% { margin-left: 0%; }
45% { margin-left: 0%; }

50% { margin-left: -100%; }
100% { margin-left: -100%; }

}

/* SLIDER 02 */

#cc-slider {
	margin: 0 auto;
	max-width: 738px;
}

#cc-slider input {
	display: none;
}

#cc-slider label, a {
	cursor: pointer;
	text-decoration: none;
}


#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%; }


#overflow {
	width: 100%;
	overflow: hidden;
}

#cc-slides .inner {
	width: 400%;
	line-height: 0;
}

#cc-slides article {
	width: 25%;
	float: left;
}

#controls {
	margin: -50% 0 32% 0%;
	width: 100%;
	height: 144px;
}

#controls label { 
	display: none;
	width: 48px;
	height: 144px;
	
}

#active {
	margin: -10% 0 50px 20%;
	text-align: center;
}

#active label {
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
	display: inline-block;
	width: 10px;
	height: 10px;
	margin-right: 10px;
	background: #FFFFFF;
}

#active label:hover {
	background: #ccc;
	border-color: #777;
}

#slide1:checked ~ #active label:nth-child(1),
#slide2:checked ~ #active label:nth-child(2),
#slide3:checked ~ #active label:nth-child(3),
#slide4:checked ~ #active label:nth-child(4) {
    background: #2a2b33;
    border-color: #2a2b33;
}

#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(1) {
	background: url('../image/next.png') no-repeat;
	float: right;
	margin: 0;
	display: block;
    opacity: 0.5;
}


#slide1:checked ~ #controls label:nth-child(4),
#slide2:checked ~ #controls label:nth-child(1),
#slide3:checked ~ #controls label:nth-child(2),
#slide4:checked ~ #controls label:nth-child(3) {
	background: url('../image/prev.png') no-repeat;
	float: left;
	margin: 0;
	display: block;
    opacity: 0.5;
}



/* cc-slider Styling */

#cc-slides {
	background: #009bde;
	padding: 0 8% 10% 8%;
	
}


/* 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 {
	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_lafrancol {
	width: 738px;
	/* border: solid 1px #CCCCCC; */
}

.ima_sup {
	position: relative;
    left: 0;
    top: -40px;
    z-index: 1;
}

.conte_pri_01 {
 	padding: 6% 8%;
 	background-color: #009bde;
 	margin-top: -40px;
}

.conte_pri_02 {
 	padding: 0% 8% 6% 8%;
 	background-color: #009bde;
}

.conte_pri_03 {
 	padding: 6% 8%;
 	background-color: #FFFFFF;
}

/* .caja_x {
	float: left;
	width: 50%;
} */


.parrafo_titu {
	font-family: "Brandon_bld", Arial, Helvetica, sans-serif;
	font-weight: 700;
	font-size: 32px;
	text-align: left;
	line-height: 40px;
	color: #FFFFFF;
	width: 45%;
	float: left;
}

.titu_01, .titu_02 {
	font-family: "Brandon_bld", Arial, Helvetica, sans-serif;
	font-weight: 700;
	font-size: 32px;
	text-align: left;
	color: #009bde;
	margin-bottom: 3%;
}

.titu_01 {
	color: #009bde;
}

.titu_02 {
	color: #FFFFFF;
	margin-bottom: 3%;
	padding-top: 10%;
}

.ima_titu {
	width: 50%;
	float: right;
	padding: 3% 0;
}

.parrafo_m {
	font-family: "Georgia", Arial, Helvetica, sans-serif;
	text-align: justify;
	font-size: 18px;
	line-height: 26px;
	color: #FFFFFF;
	letter-spacing: 0.8px;
}

.ul_reforma {
	margin: 3% 0 3% 3%;
	list-style-type: disc;
}

.ul_reforma li {
    color: #009bde;
    font-size: 20px;
    list-style-type: disc;
}

.parrafo_m2 {
	font-family: "Georgia", Arial, Helvetica, sans-serif;
	text-align: justify;
	font-size: 18px;
	line-height: 26px;
	color: #424643;
	margin: 2% 0;
	letter-spacing: 0.8px;
}

.parrafo_m3 {
	font-family: "Georgia", Arial, Helvetica, sans-serif;
	text-align: left;
	font-size: 18px;
	line-height: 26px;
	color: #FFFFFF;
	margin: 2% 4% 2% 10%;
	letter-spacing: 0.8px;
}

.parrafo_m4 {
	font-family: "Georgia", Arial, Helvetica, sans-serif;
	text-align: right;
	font-size: 18px;
	line-height: 26px;
	color: #FFFFFF;
	margin: 2% 25% 2% 10%;
	letter-spacing: 0.8px;
}

.caja_01, .caja_02 {
	float: left;
	display: block;
}

.caja_02 {
	width: 53%;
}

.caja_03 {
	width: 90%;
	margin: 5%;
}



/* FOOTER */
.footer_lafrancol {
	background: #009bde ;
	width: 100%;
	-webkit-box-shadow: 0px -8px 20px -6px rgba(0,0,0,0.5);
	-moz-box-shadow: 0px -8px 20px -6px rgba(0,0,0,0.5);
	box-shadow: 0px -8px 20px -6px rgba(0,0,0,0.5);
}

.box {
	box-sizing: border-box;
	margin: 4% 5%;
	width: 40%;
	float: left;
	display: inline-block;
}

.box_02 {
	float: right;
	box-sizing: border-box;
	margin: 3% 5%;
	width: 40%;
	display: inline-block;
	text-align: right;
}

.logo_r {
	width: 15%;
	margin-right: 4%;
}

@media screen and (min-width:0\0) {
	.slider1 {
	width: 100%;
	margin:auto;
	overflow: hidden;
}

.slider1 ul {
	display: inline-block;
	padding: 0;
	width: 200%;
	animation: cambio1 15s infinite alternate;
	animation-timing-function: ease-out;
}

.slider1 li {
	width: 734px;
	list-style: none;
	float: left;
}
	}