/*======================
   01. Google fonts
========================*/

@import url('https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Vidaloka&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Vidaloka&display=swap');

/*======================
   02. Basic css
========================*/
html,
body,
div,
span,
h1,
h2,
h3,
h4,
h5,
h6,
p,
a,
strong,
i,
ol,
ul,
li,
form,
label,
footer,
header,
menu,
nav,
section {
	margin: 0;
	padding: 0;
}
html{
	font-size: 62.5%;
}
:root{
	--black:#524F4F;
	--gray:#999999;
	--yellow:#F4DA52;
  --red:#98002E;
  --veigl:#F0EAE1;
  --veigb:#DED1BB
  ;
}
body {
	line-height: 1.27;
	font-size: 1.8rem;
	/*font-family: 'Inter', sans-serif;
	font-family: 'Overpass', sans-serif;*/
	font-family: 'Jost', sans-serif;
	background-color: #fff;
	font-weight: 400;
	color: var(--black);
}
p{
  font-family: 'Jost', sans-serif;
}
a, .button{
	-webkit-transition: 0.4s;
	-o-transition: 0.4s;
	transition: 0.4s;
}

ol,
ul {
	list-style: none;
}

a:hover {
	text-decoration: none;
}

button:focus,
a:focus,
input:focus,
textarea:focus{
	outline: none;
}
.ql-align-center {
    text-align: center;
}
/* page loader  */
#preloader {
	position: fixed;
	background: #fff;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 99999;
	height: 100vh;
	width: 100vw;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
}
.loader3 {
	width: 5rem;
	height: 5rem;
	display: inline-block;
	padding: 0px;
	text-align: left;
}

.loader3 span {
	position: absolute;
	display: inline-block;
	width: 5rem;
	height: 5rem;
	border-radius: 100%;
	background: var(--yellow);
	-webkit-animation: loader3 1.5s linear infinite;
	animation: loader3 1.5s linear infinite;
}

.loader3 span:last-child {
	animation-delay: -0.9s;
	-webkit-animation-delay: -0.9s;
}

@keyframes loader3 {
  	0% {
    	-webkit-transform: scale(0, 0);
    	        transform: scale(0, 0);
    	opacity: 0.8;
  	}
  	100% {
    	-webkit-transform: scale(1, 1);
    	        transform: scale(1, 1);
    	opacity: 0;
  	}
}

@-webkit-keyframes loader3 {
  	0% {
    	-webkit-transform: scale(0, 0);
    	opacity: 0.8;
  	}
  	100% {
    	-webkit-transform: scale(1, 1);
    	opacity: 0;
  	}
}
/*Hamburger-menu START CSS*/
.hamburger-menu {
	cursor: pointer;
	display: none;
	z-index: 9;
	text-align: right;
}
.menu_close{
	display: none;
}

header {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 1024;
	width: 100%;
	-webkit-transition: background 0.3s;
	-o-transition: background 0.3s;
	transition: background 0.3s;
	background-color: transparent;
	padding: 5.5rem 0;
}
.lognavarr {
    margin-bottom: -30px;
}
.logorullan{
	float:right;
	margin-top:-20px;
}
/*sticky START CSS*/
header.sticky {
	-webkit-animation: 500ms ease-in-out 0s normal none 1 running fadeInDown;
    animation: 500ms ease-in-out 0s normal none 1 running fadeInDown;
    -webkit-box-shadow: 0 8px 20px 0 rgba(0, 0, 0, .1);
    box-shadow: 0 8px 20px 0 rgba(0, 0, 0, .1);
    background-color: var(--yellow);
    padding: 3rem 0;
}
header.sticky .logo_h1{
	display: none;
}
header.sticky .logo_h3{
	display: block;
}

.logo_h3 {
	display: none;
}
.logo img{
	max-width: 11.6rem;
}
header.sticky #menu li a{
	color: var(--black);
}
header.sticky #menu li a:hover,
header.sticky #menu li a.active{
	color: rgba(82, 79, 79, 0.71);
}
.menu_bar.stycky{
	display:none;
}
#menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: space-evenly;
    margin-top: 3rem;
}
#menu li {
	/* line-height: 1; */
	padding-right: 4rem;
}

#menu li a {	
  font-size: 1.3rem;
  color: var(--red);
  padding: 0;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  font-weight: 500;
  text-transform: uppercase;
  font-family: "Montserrat", sans-serif;
}

#menu li:last-child{
	padding-right: 0;
}

#menu>li>a.active,
#menu>li>a:hover {
	color: rgba(256, 256, 256, 0.7);
}

/*hero area*/
.back-1{
  background-color: var(--veigb);
}
.hero_wrapper{
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center center;
	height: 80rem;
	position: relative;
	z-index: 1;
}
.hero_wrapper::before{
	position: absolute;
	content: '';
	height: 100%;
	width: 100%;
	left: 0;
	top: 0;
	z-index: -1;
	background-color: rgba(153, 153, 153, 0.26);
}
.hero_content{
	padding-top: 29.4rem;
  text-align: center;
  color: var(--red);
}

.hero_content p{
  font-family: "Montserrat",sans-serif;
  font-weight: 500;
  font-size: 18px;
}
.hero_content p.ano{
	margin-top:15px;
}
.hero_content p span{
  font-family: "Montserrat",sans-serif;
  font-weight: 600;
}

.hero_content h1{
  width: 30%;
  margin: 50px auto 0;
	font-size: 2.5rem;
  font-family: "Montserrat",sans-serif;
  font-weight: 500;
}
.hero_content img{
	width: 50%;
}
.hero_content a{
  display: inline-block;
  text-transform: uppercase;
  font-size: 1.4rem;
  color: var(--red);
  font-weight: 500;
  font-family: "Montserrat", sans-serif;
  margin-top: 4rem;
  text-decoration: none;
  border: solid 1px var(--red);
  border-radius: 45px;
  padding: 9px 37px;
}
.hero_content a:hover{
	color: var(--veigb);
  background-color: var(--red);
}
/*descrip area*/
.descrip_wrapper{
	padding-top: 6rem;
	padding-bottom: 7rem;
	background-color: var(--red);
}
.descrip_content{
  text-align: center;
  margin-top: 20px;
}
.col-lg-4:nth-child(1) .descrip_content,.col-lg-4:nth-child(2) .descrip_content{
  border-right: solid 1px #fff;
  height: 300px;
}

.col-lg-4:nth-child(2) .descrip_content p {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  align-content: center;
}
.descrip_content img{
  width: 45px;
}
.descrip_content h2{
	font-size: 2.8rem;
	max-width: 72.5rem;
	line-height: 1.32;
	padding-top: 2.5rem;
  color:var(--veigb);
  font-family: "Vidaloka",sans-serif;
  font-weight: 100;
}
.descrip_content p{
	font-size: 17px;
  max-width: 72.5rem;
  line-height: 1.32;
  padding-top: 4.5rem;
  color: #ffffff;
  font-family: "Jost",sans-serif;
  font-weight: 300;
  letter-spacing: .5px;
}
.descrip_content a{
	font-size: 17px;
  max-width: 72.5rem;
  line-height: 1.32;
  color: #ffffff;
  font-family: "Jost",sans-serif;
  font-weight: 300;
  letter-spacing: .5px;
}

.title{
	font-size: 5.5rem;
	font-weight: 400;
	color: var(--black);
}
/*Donativo*/
.sec-donativo{
  padding: 50px 0;
  background-color: #fff;
}
.sec-donativo h1,.sec-donativo h2 {
	font-family: "Vidaloka",sans-serif;
	color:var(--red);
	font-size: 2.5rem;
}
.sec-donativo p{
  font-family: "Montserrat",sans-serif;
  font-weight: 400;
  font-size:16px;
  text-transform: uppercase;
  color: var(--red);
  line-height: 1.8;
}
.sec-donativo p strong{
  font-family: "Montserrat",sans-serif;
  font-weight: 600;
  font-size:16px;
  text-transform: uppercase;
}
.sec-donativo .col-lg-4{
  padding:0 30px;
}
.sec-donativo img{
  width: 185px;
}
.sec-donativo .col-lg-4:nth-child(1) img{
  float: right;  
}
.sec-donativo .col-lg-4:nth-child(2){
  align-self: center;
}
/* sec Inscripciones */
.sec-inscripciones {
  background-color: var(--veigl);
  padding: 50px 0;
}
.sec-inscripciones h2{
  color: var(--red);
  font-family: "Vidaloka", sans-serif;
  text-align-last: center;
  font-size: 39px;
  margin: 30px 0;
}
.sec-inscripciones a.nav-link {
  color: var(--red);
  font-family: "Montserrat", sans-serif;
  text-transform: uppercase;
  border-bottom: solid 1px;
  padding: 40px;
  width: 50%;
  
}
.sec-inscripciones a.nav-link:hover {
  border-bottom: solid 4px;
  color:var(--red);
}
.sec-inscripciones a.nav-link.active {
  font-weight: 700;
  border-bottom: solid 4px;
}
.sec-inscripciones .nice-select{
    background: transparent;
    border-radius: 0;
    padding: 12px 0;
    font-size: 1.8rem;
    color: var(--black);
    width: 100%;
    border: none;
    border-bottom: 0.1rem solid #707070;
    height: auto;
}
.sec-inscripciones h3 {
  color: var(--red);
  font-family: "Montserrat",sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 15px;
  margin: 50px 0;
}
.sec-inscripciones .cbox label,.sec-inscripciones .cbox2 label {
  font-size: 1.8rem;  
}
.sec-inscripciones .cbox label a,.sec-inscripciones .cbox2 label a {
  color:var(--black);
}
.sec-inscripciones .cbox2 label.politics {
  font-size: 1.3rem;
  line-height: 1.2;
}
.sec-inscripciones input[type="submit"] {
  margin-top: 40px;
  background-color: transparent;
    border: solid 1px var(--red);
    border-radius: 45px;
    padding: 15px 35px;
    text-transform: uppercase;
    color: var(--red);
    font-family: "Montserrat",sans-serif;
    font-weight: 500;
}
.sec-inscripciones input[type="submit"]:hover {
  background-color: var(--red);    
  color: var(--veigl);
}
.cbox{
	display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-bottom: 25px;
}
.cbox label{
	margin-left: 25px;
}
.cbox2{
	display: flex;
    justify-content: flex-start;
	align-items: flex-start;
    margin-bottom: 25px;
}
.cbox2 label{
	margin-left: 25px;
}
/* Sección oportunidad */
.sec-oportunidad {
  padding: 100px 0 86px;
  background-color: #fff;
}
.sec-oportunidad p{
  color: var(--red);
  font-size: 27px;
  line-height: 1.5;
  width: 100%;
}
/* Sección agenda */
.sec-agenda{
  padding: 100px 0;
  background-color: var(--veigb);
  color:var(--red);
}
.sec-agenda h2{
  color: var(--red);
  font-family: "Vidaloka", sans-serif;
  text-align-last: center;
  font-size: 39px;
  margin: 30px 0;
}
.sec-agenda .descanso{
  background-color: var(--veigl);
}
.sec-agenda .hora p{
  color: var(--red);
  font-family: "Vidaloka", sans-serif;
  font-size: 39px;
  width: 100%;
  border-bottom:solid 1px var(--red);
  margin: 50px 0;
}
.sec-agenda .dato p,.sec-agenda .dato p a{
  color: #000;
}
.sec-agenda .dato p:nth-child(1){
  margin: 50px 0 0;
}
/* Sección Marcas */
.sec-marcas{  
    padding: 100px 0;
    color:var(--red);
}

.sec-marcas h2{  
  color: var(--red);
  font-family: "Vidaloka", sans-serif;
  text-align-last: center;
  font-size: 39px;
  margin: 30px 0;
}
.sec-marcas .testimonial_single {
  height: 138px;
  display: flex;
  align-items: end;
  justify-content: center;
}
.sec-marcas .item {
    display: flex;
    align-items: center;
    height: 165px;
}
.sec-marcas .col-lg-3.col-6{
	height: 150px;
	display: flex;
    align-items: center;
    justify-content: center;
}
.sec-marcas img{  
  width: 150px;
}
.sec-marcas .owl-carousel .owl-item img {
  display: block;
  width: 80%;
  height: auto;
}
/* Sección banner */
.sec-banner {
  background-image: url('/assets/images/foto\ baldosa.jpg');
  height: 625px;
}

/* Sec Reserva */
.descrip_wrapper.sec-reserva{
	padding-top: 6rem;
	padding-bottom: 7rem;
	background-color: var(--veigl);
}
.sec-reserva .descrip_content{
  text-align: center;
  margin-top: 20px;
}
.sec-reserva .col-lg-4:nth-child(1) .descrip_content,.sec-reserva .col-lg-4:nth-child(2) .descrip_content{
  border-right: solid 0px #fff;
  height: 300px;
}

.sec-reserva .col-lg-4:nth-child(2) .descrip_content p {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  align-content: center;
}
.sec-reserva .descrip_content img{
  width: 45px;
}
.sec-reserva h2{
	color: var(--red);
  font-family: "Vidaloka", sans-serif;
  text-align-last: center;
  font-size: 39px;
  margin: 30px 0;
}
.sec-reserva .descrip_content h3{
	font-size: 2.8rem;
	max-width: 72.5rem;
	line-height: 1.32;
	padding-top: 2.5rem;
  color:var(--red);
  font-family: "Vidaloka",sans-serif;
  font-weight: 100;
}
.sec-reserva .descrip_content p{
	font-size: 17px;
  max-width: 72.5rem;
  line-height: 1.32;
  padding-top: 4.5rem;
  color: #000;
  font-family: "Jost",sans-serif;
  font-weight: 400;
  letter-spacing: .5px;
}
.sec-reserva .descrip_content a{
	font-size: 17px;
  max-width: 72.5rem;
  line-height: 1.32;
  color: #000;
  font-family: "Jost",sans-serif;
  font-weight: 400;
  letter-spacing: .5px;
}
/* Sec Map */
.sec-maps{  
    /* background-image: url('/assets/images/Captura\ de\ pantalla\ 2024-02-15\ 165122.png'); */
    height: 670px;
}
/* Sec Contacto */
.sec-dudas{
    padding: 80px 0;
    background-color: var(--veigb);
}
.sec-dudas h2{
	color: var(--red);
  font-family: "Vidaloka", sans-serif;
  text-align-last: center;
  font-size: 39px;
  margin: 30px 0;
}
.sec-dudas .datos-dudas{
  display: flex;
  justify-content: space-evenly;
  margin: 80px 0;
  align-items: center;
}
.sec-dudas p{
	color: #000;
}
.sec-dudas p a{
  color: #000;
  text-decoration: none;
  font-size: 27px;
}
.sec-dudas p a:hover{
  text-decoration: underline;
}
/* FOOTER */
.footer1 img{
  width: auto;
  height: 113px;
}
.footer1 .colimgfot{
  display: flex;
  justify-content: space-between;
  align-items:center;
}
.footer1{
  margin: 100px 0 50px;
}
.footer1 a{
  color: var(--red);
  border: solid 1px var(--red);
  padding: 16px 35px;
  border-radius: 45px;
  height: 50px;
  text-decoration: none;
  font-family: "Montserrat",sans-serif;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 500;
}
.footer1 a:hover{
  color: #fff;
  background-color: var(--red);
}

/*que area*/
.que_wrapper{
	padding-top: 15.5rem;
}
.que_wrapper_bg{
	margin-top: 6.5rem;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center center;
	height: 52.2rem;
}
.que_box {
   margin-top: -27.5rem;
}
.que_box_content {
    background-color: var(--yellow);
    max-width: 79.2rem;
    padding: 9rem 3rem 9rem 10rem;
    width: 100%;
    margin-left: auto;
}
.que_box_content .p2{
	padding-bottom: 0;
}
.que_box_content h2{
	font-size: 4.5rem;
	color: #fff;
	font-weight: 400;
	padding-bottom: 3rem;
}
.que_box_content p{
	font-size: 2.1rem;
	max-width: 44.8rem;
	padding-bottom: 7rem;
}
.btn{
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	font-size: 1.4rem;
	color: var(--black);
	font-weight: 400;
	text-transform: uppercase;
	font-family: 'Overpass', sans-serif;
	padding: 0;
}
.btn:hover{
	opacity: 0.7;
}
.btn:hover .btn img{
	opacity: 0.7;
}
.btn:focus{
	-webkit-box-shadow: none;
	        box-shadow: none;
}
.btn_img{
	margin-left: 1.5rem;
}
.btn_img .i2{
	display: none !important;
}
.btn:hover .btn_img .i2{
	display: block !important;
}
.btn:hover .btn_img .i1{
	display: none !important;
}
.que_wrapper_bg1{
	position: relative;
	margin-top: 0;
}
.que_wrapper_bg1::before{
	position: absolute;
	content: '';
	left: 0;
	top: 0;
	height: 100%;
	width: 100%;
	background-color: rgba(82, 79, 79, 0.36);
}
.que_box1 {
   margin-top: -15.5rem;
}
.que_box1 .que_box_content{
	padding-bottom: 10rem;
	margin-right: auto !important;
	margin-left: 0;
	position: relative;
	z-index: 1;
}
/*cono area*/
.cono_wrapper{
	padding-top: 14rem;
}
.cono_heading h2 {
    font-size: 4.5rem;
    color: var(--black);
    font-weight: 400;
    max-width: 103.31rem;
    margin-left: auto;
    margin-right: auto;
    padding-bottom: 5rem;
}
.cono_box{
	position: relative;
}
.cono_content{
	max-width: 48rem;
}
.cono_img .sm2_img,
.cono_img .sm1_img{
	display: none;
}
.cono_img{
	position: relative;
	z-index: 0;
}
.cono_img::before{
	position: absolute;
	content: '';
	left: 0;
	top: 0;
	height: 100%;
	width: 100%;
	background-color: rgba(0, 0, 0, 0.35);
}
.cono_content {
    max-width: 48rem;
    position: absolute;
    bottom: 7rem;
    right: 10rem;
}
.con3_img{
	text-align: center;
}
.con3_img img {
    max-width: 15.8rem;
    margin-right: 6rem;
    -o-object-fit: cover;
       object-fit: cover;
}
.cono_content h3{
	font-size: 4.5rem;
	font-weight: 400;
	color: #fff;
	padding-top: 5rem;
}
.cono_content p{
	font-size: 2.1rem;
	max-width: 48rem;
	color: #fff;
	padding-top: 3rem;
}
.cono_content .btn{
	color: #fff;
	margin-top: 2rem;
}
.cono_content .btn{
	min-height: 4.1rem;
}
.cono_content .btn img{
	max-width: 4.1rem;
}
.cono_content .btn .i2 {
    filter: invert(167%) sepia(0%) saturate(7572%) hue-rotate(166deg) brightness(432%) contrast(312%);
}
.cono_content .btn:hover{
	color: rgba(256, 256, 256, 0.8);
}
.cono_content1{
	position: absolute;
	max-width: 44rem;
	right: auto;
	left: 19.5rem;
}

/*confia area*/
.confia_wrapper{
	padding-top: 22.5rem;
}
.confia_content h5{
	font-size: 1.4rem;
	color: var(--black);
	font-weight: 400;
	text-transform: uppercase;
	font-family: 'Overpass', sans-serif;
	padding-bottom: 2.5rem;
}
.confia_content h2{
	font-size: 4.5rem;
	max-width: 64.7rem;
	padding-bottom: 1.5rem;
}
.confia_content p{
	padding-top: 3rem;
	font-size: 2.1rem;
	max-width: 64.7rem;
}
.confia_content .btn{
	margin-top: 7.5rem;
}
/*que slider area*/
.que_slider_wrapper{
	background-color: var(--yellow);
	padding: 17rem 0 33.3rem;
	margin-top: 15rem;
}
.que_slider_container{
	position: relative;
}
.que_slider_container .s1 {
    position: absolute;
    right: 31rem;
    top: 1rem;
    max-width: 10.4rem;
}
.que_slider_container .s2{
	position: absolute;
	left: 1.5rem;
   bottom: -17rem;
   max-width: 10.4rem;
}
.que_slider_box{
	max-width: 32.8rem;
}
.que_slider_box>p {
   min-height: 17.7rem;
   padding-bottom: 4rem;
}
.que_designation h5{
	font-size: 1.8rem;
	font-weight: 700;
}
.que_designation p{
	font-size: 1.6rem;
}
.que_slider_img{
	margin-top: 10rem;
}
.que_slider_box{
	position: relative;
	z-index: 1;
	margin-top: 8.5rem;
}

/*casos area*/
.casos_wrapper{
	padding-top: 16rem;
}
.casos_box_wrap{
	margin-top: 4.5rem;
}
.casos_row{
	margin-left: -.8rem;
	margin-right: -.8rem;
}
.casos_row>div{
	padding-left: .8rem;
	padding-right: .8rem;
}
.casos_box_wrap1{
	margin-top: 17.5rem;
}
.casos_img{
	position: relative;
}
.casos_img::before{
	position: absolute;
	content: '';
	height: 100%;
	width: 100%;
	left: 0;
	top: 0;
	background-color: rgba(153, 153, 153, 0.32);
}
.casos_content{
	background-color: #F2F2F2;
	padding: 4.5rem 3rem 10rem 4rem;
	min-height: 33.6rem;
}
.casos_content .casos_content_h{
	font-size: 2.4rem;
	max-width: 29.6rem;
	display: inline-block;
	color: var(--black);
}
.casos_content .casos_content_h:hover{
	opacity: 0.85;
}
.casos_content .btn{
	margin-top: 7.5rem;
}

.casos_content1 p{
	max-width: 34.7rem;
}
.casos_btn{
	margin-top: 14rem;
	margin-bottom: 14.5rem;
	text-align: center;
}
.button{
	display: inline-block;
	padding: 1.7rem 4.5rem 1.4rem;
	border: .1rem solid var(--black);
	max-width: 21rem;
	width: 100%;
	text-align: center;
	text-transform: uppercase;
	color: var(--black);
	font-family: 'Overpass', sans-serif;
	font-size: 1.4rem;
	font-weight: 400;
}
.button:hover{
	background-color: var(--black);
	color: #fff;
}
/*como area*/
.como_wrapper{
	background-color: var(--yellow);
	padding: 15.5rem 0 13.5rem;
}
.como_content h2{
	font-size: 6rem;
	color: var(--black);
	font-weight: 400;
	padding-bottom: 6.5rem;
}
.como_content ul li:first-child{
	margin-top: 0;
}
.como_content ul li{
	margin-top: 4.5rem;
	position: relative;
	padding-left: 3.1rem;
}
.como_content ul li::before {
    position: absolute;
    content: '';
    height: .7rem;
    width: .7rem;
    background-color: var(--black);
    border-radius: 50%;
    left: 0;
    top: 1.5rem;
}
.como_content ul li{
	font-size: 2.6rem;
	font-weight: 400;
	color: var(--black);
	max-width: 67.7rem;
}
/*habla area*/
.habla_wrapper{
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center center;
	height: 66.7rem;
	position: relative;
	z-index: 1;
}
.habla_wrapper::before{
	position: absolute;
	content: '';
	height: 100%;
	width: 100%;
	left: 0;
	top: 0;
	background-color: rgba(0, 0, 0, 0.27);
}
.habla_content{
	padding-top: 22rem;
}
.habla_content h2{
	font-size: 6rem;
	color: #fff;
	font-weight: 400;
	padding-bottom: 3.5rem;
}
.habla_content p{
	font-size: 2.1rem;
	color: #fff;
	max-width: 30.5rem;
}
.habla_content .button{
	margin-top: 5rem;
	color: #fff;
	border-color: #fff;
}
.habla_content .button:hover{
	background-color: #fff !important;
	color: var(--black);
}

/*contact page area*/
.header2_area {
    background-color: var(--yellow);
    padding: 5.5rem 0 1.5rem;
}
.header2_area.sticky{
	padding: 1.5rem 0;
}
.logo3 img{
	max-width: 25.9rem;
}
.header2_area #menu li a{
	color: var(--black);
	-webkit-transition: 0.4s;
	-o-transition: 0.4s;
	transition: 0.4s;
	position: relative;
}
.header2_area #menu li a::before{
	position: absolute;
	content: '';
	height: .4rem;
	width: 0;
	left: 0;
	bottom: -2.5rem;
	background-color: transparent;
	transition: 0.4s;
}
.header2_area #menu li a.active,
.header2_area #menu li a:hover{
	text-shadow: 0px 0px 1px var(--black);
	color: var(--black);
}
.header2_area #menu li a.active::before,
.header2_area #menu li a:hover::before{
	background-color: var(--black);
	width: 100%;
}
header.d-flex.align-items-center.stycky {
  height: 20px;
  background-color: var(--red);
}
header.d-flex.align-items-center.stycky .logo img{
  max-width: 7.6rem;
}
header.d-flex.align-items-center.stycky .logo .logo_h1{
  display:none;
}
header.d-flex.align-items-center.stycky .logo .logo_h3{
  display:block;
}
header.d-flex.align-items-center.stycky .logorullan{
	margin-top: -15px;
}
header.d-flex.align-items-center.stycky .logorullan .logo_h1{
	display:none;
  }
header.d-flex.align-items-center.stycky .logorullan .logo_h3{
display:block;
max-width: 75%;

}
header.d-flex.align-items-center.stycky #menu p {
	color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.3rem;
    text-transform: uppercase;
    margin-top: -33px;
	font-weight: 500;
}
#menu2 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: space-evenly;
    margin-top: 3rem;
}
header.d-flex.align-items-center #menu2 p {
	color: var(--red);
    font-family: 'Montserrat', sans-serif;
    font-size: 1.3rem;
    text-transform: uppercase;
    margin-top: -20px;
    margin-bottom: 15px;
	font-weight: 500;
}
header.d-flex.align-items-center.stycky #menu2 p {
	color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    text-transform: uppercase;
    margin-top: -33px;
	font-weight: 500;
}
header.d-flex.align-items-center.stycky #menu a {
  color:#fff;
}
header.d-flex.align-items-center.stycky #menu a:hover {
	text-decoration: underline;
  }
header.d-flex.align-items-center.stycky #menu .nice-select {
  color: #fff;
}
header.d-flex.align-items-center.stycky #menu .nice-select:after {
  border-bottom: 2px solid #fff;
  border-right: 2px solid #fff;
}
#menu .nice-select{
  background-color: transparent;
  border: none;
  top: -11px;
  font-weight: 500;
  text-transform: uppercase;
  font-family: "Montserrat", sans-serif;
  color: var(--red);
}
#menu .nice-select:after {
  border-bottom: 2px solid var(--red);
  border-right: 2px solid var(--red);
  content: '';
  display: block;
  height: 8px;
  margin-top: -4px;
  pointer-events: none;
  position: absolute;
  right: 12px;
  top: 50%;
  -webkit-transform-origin: 66% 66%;
  -ms-transform-origin: 66% 66%;
  transform-origin: 66% 66%;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transition: all 0.15s ease-in-out;
  transition: all 0.15s ease-in-out;
  width: 8px;
}
#menu .nice-select.open .list {
  background-color: var(--veigl);
  color:var(--red);
}

#menu .nice-select .option.selected {
  font-weight: bold;
}
.contact_hero_wrapper{
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center center;
	height: 37.5rem;
}
.carca_wrapper{
	background-color: var(--yellow);
	padding: 8.5rem 0;
}
.carca_content h2{
	font-size: 5rem;
	font-weight: 400;
	color: var(--black);
	padding-bottom: 3.5rem;
}
.carca_content p{
	max-width: 33.7rem;
}
.input_box{
	padding-top: 2.5rem;
}
.input_box input,
.textarea_box textarea{
	padding: 2rem 0;
	font-size: 1.8rem;
	color: var(--black);
	width: 100%;
	border: none;
	border-bottom: .1rem solid #707070;
  background-color: transparent;
}
.input_box input::-webkit-input-placeholder{
	font-size: 1.8rem;
	color: var(--black);
}
.input_box input::-moz-placeholder{
	font-size: 1.8rem;
	color: var(--black);
}
.input_box input:-ms-input-placeholder{
	font-size: 1.8rem;
	color: var(--black);
}
.input_box input::-ms-input-placeholder{
	font-size: 1.8rem;
	color: var(--black);
}
.input_box input::placeholder{
	font-size: 1.8rem;
	color: var(--black);
}
.textarea_box{
	padding-top: 7.5rem;
}
.textarea_box textarea {
	resize: none;
	-webkit-user-select: none;
	   -moz-user-select: none;
	    -ms-user-select: none;
	        user-select: none;
	height: 24rem;
}
.contact_btn{
	text-align: right;
	margin-top: 8rem;
}
.contact_btn .button{
	background-color: transparent;
}
.contact_btn .button:hover{
	background-color: #524F4F;
	color: #fff;
}
.check_box{
	margin-top: 2.5rem;
}
.check_box input{
	display: none;
}
.check_box label {
	font-size: 1.2rem;
	line-height: 1;
	color: var(--black);
	position: relative;
	-webkit-user-select: none;
	   -moz-user-select: none;
	    -ms-user-select: none;
	        user-select: none;
	font-weight: 400;
	cursor: pointer;
	padding-left: 3.8rem;
}
.check_box label p{
	max-width: 53.9rem;
}
.check_box label::before {
	position: absolute;
	content: '';
	height: 1.8rem;
	width: 1.8rem;
	border: .1rem solid #707070;
	left: 0rem;
	top: -.3rem;
}
.check_box input:checked + label::after {
    position: absolute;
    content: '';
    border-left: .1rem solid #707070;
    border-bottom: .1rem solid #707070;
    left: .45rem;
    top: .1rem;
    height: .5rem;
    width: .9rem;
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
}
.como_contact_wrapper{
	background-color: var(--yellow);
	padding: 14rem 0 17rem;
	margin-top: 16rem;
}
.como_contact_heading h3{
	font-size: 3.6rem;
	color: var(--black);
}
.como_address_box{
	margin-top: 8rem;
	padding-top: 5rem;
	position: relative;
}
.como_address_box::before{
	position: absolute;
	content: '';
	top: 0;
	left: 0;
	height: .1rem;
	width: 22rem;
	background-color: var(--black);
}
.como_address_box p{
	font-size: 2.1rem;
	color: var(--black);
	font-weight: 400;
	line-height: 1.42;
}
.como_address_box1{
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	    -ms-flex-direction: column;
	        flex-direction: column;
}
.como_address_box a{
	font-size: 2.1rem;
	color: var(--black);
	line-height: 1.42;
}
.como_address_box a:hover{
	color: rgba(82, 79, 79, 0.76);
}
.contact_map_wrapper{
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center center;
	height: 84.9rem;
}

/*nostros page area*/
.nostros_text_wrap{
	padding-top: 4.5rem;
	padding-bottom: 5.5rem;
}
.nostros_text_wrap .carca_content p {
   max-width: 42rem;
}
.nostros_casos_wrapper{
	padding-top: 0;
	margin-top: 1rem;
}
.nostros_casos_wrapper .casos_box_wrap{
	margin-top: 8rem;
}
.nostros_casos_wrapper .casos_box_wrap1 {
   margin-top: 20.5rem;
   position: relative;
   z-index: 1;
}
.nostros_casos_wrapper .casos_row1 {
   margin-top: -14rem;
}
.nostros_casos_wrapper .casos_btn{
	margin-top: 15.5rem;
	margin-bottom: 25rem;
}
.nostros_casos_wrapper .casos_btn .button{
	font-weight: 600;
}
.nostros_hab_wrapper{
	background-color: var(--yellow);
	padding: 19rem 0 20rem;
}
.nostros_hab_heading h2{
	font-size: 4.5rem;
	font-weight: 400;
	color: var(--black);
	text-align: center;
}
.nostros_hab_p p{
	max-width: 27.7rem;
	margin-left: auto;
	margin-right: auto;
}
.nostros_hab_btn{
	text-align: center;
}

/*blog details page area*/
.blog_deatils_wrapper{
	padding-top: 9rem;
}
.blog_details_content{
	padding-top: 6.5rem;
}
.blog_details_content h2{
	font-size: 3.6rem;
	color: var(--black);
	max-width: 65rem;
	padding-bottom: 4rem;
}
.blog_details_content p{
	max-width: 65rem;
	padding-top: 2.5rem;
}
.blog_details_social{
	padding-top: 7.5rem;
	padding-bottom: 3rem;
	border-bottom: .1rem solid #707070;
}
.blog_details_social P{
	font-size: 1.4rem;
	color: var(--black);
	font-weight: 400;
	text-transform: uppercase;
	font-family: 'Overpass', sans-serif;
	padding-bottom: 2.5rem;
}
.blog_details_social .footer_social a:first-child{
	padding-left: 0;
}
.blog_details_social .footer_social a:first-child::before{
	display: none;
}
.blog_details_social .footer_social a:last-child{
	padding-right: 0;
}
.blog_details_social .footer_social a:last-child::before{
	display: none;
}
.blog_deatils_casos{
	margin-top: 34rem;
	margin-bottom: 16rem;
}
.blog_deatils_casos .casos_box_wrap1{
	margin-top: 8rem;
}
.b_sm1_img{
	display: none;
}

/*laboratio page area*/
.siner_wrapper{
	background-color: var(--yellow);
	padding: 6rem 0 9rem;
}
.siner_content h2{
	font-size: 4.5rem;
	color: var(--black);
	padding-bottom: 1.5rem;
}
.siner_contetn_p{
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}
.siner_contetn_p p{
	max-width: 39rem;
	padding-top: 3rem;
}
.siner_contetn_p p:first-child{
	margin-right: 15rem;
}
.segu_wrapper{
	padding-top: 9rem;
}
.segu_heading h2{
	font-size: 3.6rem;
	font-weight: 400;
	color: var(--black);
	padding-bottom: 2.5rem;
}
.accordion_box{
	border-bottom: .1rem solid #707070;
}
.accordion_box button{
	display: block;
	font-size: 1.8rem;
	color: var(--black);
	font-weight: 400;
	padding: 3.5rem 4rem 3rem 0;
	-webkit-transition: 0.4s;
	-o-transition: 0.4s;
	transition: 0.4s;
	position: relative;
	text-transform: inherit;
}
.accordion_box button span{
	max-width: 49.4rem;
	display: inline-block;
}
.accordion_box button::before{
	position: absolute;
	content: '';
	background-image: url(../img/i11.png);
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center center;
	height: .9rem;
	width: 1.4rem;
	right: 2.5rem;
	top: 50%;
	-webkit-transform: translateY(-50%);
	    -ms-transform: translateY(-50%);
	        transform: translateY(-50%);
	-webkit-transition: 0.4s;
	-o-transition: 0.4s;
	transition: 0.4s;
}
.accordion_box button[aria-expanded="true"]{
	font-size: 2.1rem;
	font-weight: 700;
	color: var(--yellow);
}
.accordion_box button[aria-expanded="true"]::before{
	background-image: url(../img/la6.png);
	height: .9rem;
	width: 1.4rem;
	-webkit-transform: rotate(0deg);
	    -ms-transform: rotate(0deg);
	        transform: rotate(0deg);
}
.accordion_box button.active,
.accordion_box button:hover{
	color: var(--yellow);
}
.accordion_box button:hover{
	text-decoration: none;
}
.accordion_box button:focus{
	-webkit-box-shadow: none;
	        box-shadow: none;
	text-decoration: none;
}
.accordion_content {
	padding: 0rem 1rem 9.5rem 0rem;
}
.accordion_content p{
	max-width: 44rem;
}
.segu_img{
	text-align: right;
	padding-top: 6.5rem;
}
.segurid_wrapper{
	padding: 10rem 0 7.5rem;
	background-color: #F2F2F2;
	margin-top: 7rem;
}
.segurid_wrapper .segu_img{
	padding-top: 0;
}
.segu_service_wrapper{
	margin-bottom: 18.8rem;
}
.segu_service_wrapper .segu_img{
	padding-top: 0;
}
.la_sm2_img{
	display: none;
}
.accordion_content p {
	padding-top: 2.5rem;
	max-width: 58.1rem;
}
.accordion_content a{
	font-size: 1.4rem;
	text-transform: uppercase;
	font-weight: 400;
	color: var(--black);
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-box-align: end;
	    -ms-flex-align: end;
	        align-items: flex-end;
	font-family: 'Overpass', sans-serif;
	margin-top: 6rem;
}
.accordion_content a span{
	text-decoration: underline;
}
.accordion_content a img{
	margin-left: 1.5rem;
	max-width: 1.7rem;
}
.accordion_content a:hover{
	opacity: 0.8;
}

/*consultoria page area*/
.siner_contetn_p1 p{
	max-width: 42.8rem;
}
.siner_contetn_p1 p:first-child{
	margin-right: 12.7rem;
}
.sosten_wrapper{
	padding-top: 6.5rem;
}
.sosten_main_wrap{
	border-bottom: .1rem solid #524F4F;
	padding-bottom: 4rem;
}
.sosten_content h2{
	font-size: 3.6rem;
	color: var(--black);
	font-weight: 400;
	padding-bottom: .5rem;
}
.sosten_content p{
	max-width: 53.9rem;
	padding-top: 2.5rem;
}
.sosten_accordion{
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	width: 100%;
	margin-top: 5.5rem;
}
.sosten_down{
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-box-align: end;
	    -ms-flex-align: end;
	        align-items: flex-end;
	font-size: 1.2rem;
	color: var(--black);
	font-weight: 400;
	text-transform: uppercase;
	font-family: 'Overpass', sans-serif;
	white-space: nowrap;
	margin-right: 8.5rem;
}
.sosten_down span{
	text-decoration: underline;
}
.sosten_down img{
	margin-left: 1.5rem;
}
.sosten_down:hover{
	opacity: 0.8;
	color: var(--black);
}
.sosten_accordion .sosnten_accordion_btn{
	display: inline-block !important;
	font-size: 1.2rem;
	color: var(--black);
	font-weight: 400;
	text-transform: uppercase;
	font-family: 'Overpass', sans-serif;
	position: relative;
}
.sosten_accordion .sosnten_accordion_btn:hover{
	text-decoration: none;
}
.sosten_accordion .sosnten_accordion_btn:focus{
	-webkit-box-shadow: none;
	        box-shadow: none;
	text-decoration: none;
}
.sosten_accordion .sosnten_accordion_btn::before {
    position: absolute;
    content: '';
    background-image: url(../img/i11.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center center;
    height: .9rem;
    width: 1.4rem;
    right: -3.3rem;
    top: .2rem;
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
}
.sosten_accordion .sosnten_accordion_btn[aria-expanded="true"]::before{
	background-image: url(../img/la6.png);
	height: .9rem;
	width: 1.4rem;
	-webkit-transform: rotate(0deg);
	    -ms-transform: rotate(0deg);
	        transform: rotate(0deg);
}
.sosten_accordion .sosnten_accordion_btn[aria-expanded="true"]{
	font-weight: 700;
	color: var(--yellow);
}
.sosten_accordion_content{
	padding-top: 6rem;
	padding-bottom: 7rem;
}
.sosten_accordion_content p{
	font-size: 1.8rem;
	color: var(--black);
	font-weight: 400;
	max-width: 58.1rem;
	padding-top: 3rem;
}
.sosten_wrapper4{
	padding-bottom: 19.5rem;
}

/*blog 1 page area*/
.blog1_hero_wrapper{
	position: relative;
}
.blog1_hero_wrapper::before{
	position: absolute;
	content: '';
	left: 0;
	top: 0;
	height: 100%;
	width: 100%;
	background-color: rgba(82, 79, 79, 0.17);
}
.blog1_content h2{
	font-size: 5rem;
	max-width: 76.9rem;
}
.blog1_content .siner_contetn_p p:first-child{
	margin-right: 12.7rem;
}
.blog1_content .siner_contetn_p p{
	max-width: 42.8rem;
	padding-top: 3.5rem;
}
.nuestros_wrapper{
	padding-top: 10rem;
	padding-bottom: 9rem;
}
.nuestros_box{
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	margin-top: 7.5rem;
}
.nuestros_box_left img{
	max-width: 9.6rem;
	margin-right: 12.8rem;
}
.nuestros_box_right h4{
	font-size: 3rem;
	font-weight: 400;
	padding-bottom: 1.5rem;
}
.nuestros_box_right p{
	font-size: 2.1rem;
	max-width: 56rem;
}
.nuestros_box_left1 img{
	max-width: 8.1rem;
}
.nuestros_box_left2 img{
	max-width: 8.7rem;
}
.nuestros_heading h2{
	font-size: 3.6rem;
}
.nuestros_obj_wrapper{
	background-color: #F2F2F2;
	padding-top: 14rem;
	padding-bottom: 24.6rem;
}
.nuestros_obj_heading h3{
	font-size: 3.6rem;
	color: var(--black);
	font-weight: 400;
}
.nuestros_obj_box{
	padding-top: 9.5rem;
}
.nuestros_obj_box p{
	font-size: 2.1rem;
	color: var(--black);
	max-width: 24.6rem;
	position: relative;
	padding-bottom: 3.5rem;
	position: relative;
}
.nuestros_obj_box p::before{
	position: absolute;
	content: '';
	bottom: 0;
	left: 0;
	height: .1rem;
	width: 22rem;
	background-color: #707070;
}
.nuestros_banner_wrapper{
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center center;
	height: 69.5rem;
}
.quienes_wrapper{
	padding-top: 9rem;
	padding-bottom: 17.5rem;
}
.quienes_heading_box h2{
	font-size: 3.6rem;
	color: var(--black);
	font-weight: 400;
}
.quienes_heading_box p{
	font-size: 2.1rem;
	max-width: 51.7rem;
	padding-top: 2.5rem;
}
.quines_person_box{
	padding-top: 8rem;
}
.quienies_person_img{
	position: relative;
	z-index: 0;
	display: inline-block;
}
.quienies_person_img::before{
	position: absolute;
	content: '';
	height: 100%;
	width: 100%;
	left: 0;
	top: 0;
	background-color: rgba(82, 79, 79, 0.12);
}
.quines_person_content{
	padding-top: 3.5rem;
}
.quines_person_content h3{
	font-size: 2.1rem;
	color: var(--black);
	font-weight: 400;
}
.quines_person_content p{
	font-size: 1.6rem;
	padding-top: 1.2rem;
	max-width: 39.4rem;
}
.quienies_person_img1::before{
	background-color: rgba(82, 79, 79, 0.25) !important;
}
.quienes_row{
	margin-left: -1rem;
	margin-right: -1rem;
}
.quienes_row>div{
	padding-left: 1rem;
	padding-right: 1rem;
}
.quienes_heading_box1{
	padding-top: 12rem;
}
.quienes_heading_box1 h2{
	font-size: 3rem;
}
.quienes_heading_box1 p{
	padding-top: 3.5rem;
	max-width: 53.9rem;
}




/*footer area*/
.footer_cast {
    text-align: right;
    width: 100%;
    display: block;
    max-width: 12rem;
    margin-left: auto;
    margin-top: 5.5rem;
}
.footer_cast .nice-select {
    font-size: 1.4rem;
    color: var(--black);
    font-family: 'Overpass', sans-serif;
    border: none;
    text-transform: uppercase;
    line-height: 3.9;
    padding: 0;
    float: none;
}
.footer_cast .nice-select:after{
	height: 1rem;
	width: 1rem;
	border-color: var(--black);
	right: 0rem;
}
.footer_logo_box{
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
	margin-top: 8rem;
}
.footer_logo img{
	max-width: 20.2rem;
}
.footer_social{
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
}
.footer_social a{
	display: inline-block;
	padding-right: 3rem;
	position: relative;
	-webkit-transition: 0.4s;
	-o-transition: 0.4s;
	transition: 0.4s;
}
.footer_social a:first-child::before{
	position: absolute;
	content: '';
	height: 6.5rem;
	width: .1rem;
	background-color: #707070;
	left: 0;
	top: 50%;
	-webkit-transform: translateY(-50%);
	    -ms-transform: translateY(-50%);
	        transform: translateY(-50%);
}
.footer_social a:first-child{
	padding-left: 4rem;
}
.footer_social a:last-child::before{
	position: absolute;
	content: '';
	height: 6.5rem;
	width: .1rem;
	background-color: #707070;
	right: 0;
	top: 50%;
	-webkit-transform: translateY(-50%);
	    -ms-transform: translateY(-50%);
	        transform: translateY(-50%);
}
.footer_social a:last-child{
	padding-right: 5.5rem;
}
.footer_social a img{
	max-width: 100%;
	max-height: 100%;
	-o-object-fit: contain;
	   object-fit: contain;
	-webkit-transition: 0.4s;
	-o-transition: 0.4s;
	transition: 0.4s;
}
.footer_social a:hover img{
	opacity: 0.7;
}
.footer_img_wrap{
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
	padding-left: 2.5rem;
	margin-top: 8rem;
}
.footer_img_box p{
	font-size: 1.2rem;
	color: var(--black);
	font-weight: 400;
	font-family: 'Inter', sans-serif;
	padding-top: 1.1rem;
}
.footer_img3{
	min-height: 5rem;
}
.footer_img1 img{
	max-width: 8.9rem;
}
.footer_img2 img{
	max-width: 11.1rem;
}
.footer_img3 img{
	max-width: 23.4rem;
}
.footer_wrapper2{
	padding-bottom: 11rem;
}
.ft_brd{
	border-top: .1rem solid #909288;
	padding-top: 4.5rem;
	margin-top: 3.5rem;
}
.fcookies ul{
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}
.fcookies ul li{
	position: relative;
	padding: 0 .8rem;
}

.fcookies ul li:last-child{
	padding-right: 0;
}
.fcookies ul li:first-child{
	padding-left: 0;
}
.fcookies ul li:first-child::before{
	display: none;
}
.fcookies ul li:last-child::before{
	display: none;
}
.fcookies ul li:nth-child(2){
	padding-left: 0;
}
.fcookies ul li,
.fcookies ul li a{
	font-size: 1.2rem;
	font-weight: 400;
	color: var(--black);
  text-decoration: none;
}
.fcookies ul li a{
	-webkit-transition: 0.4s;
	-o-transition: 0.4s;
	transition: 0.4s;
}
.fcookies ul li a:hover{
	color: var(--yellow);
}
.footer_last_img{
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	margin-left: 6rem;
}
.footer_last_img .f4{
	margin-right: 6rem;
	max-width: 16.1rem;
}
.footer_last_img .f5{
	max-width: 12.4rem;
}


/*return-to-top START CSS*/

.back-to-top {
	font-size: 24px;
	width: 45px;
	height: 45px;
	line-height: 45px;
	text-align: center;
	display: none;
	position: fixed;
	bottom: 30px;
	right: 20px;
	border-radius: 50%;
	background: var(--red);
	z-index: 1000;
}
.back-to-top svg{
	margin-top: -10px;
}
.back-to-top i {
	color: #fff;
}

.msg-form {
	display: block;
	width: 100%;
	padding: 13px;
	background-color: var(--msg-bg-color);
	margin-top: 20px;
	color: black;
	border-radius: 5px;
	border: 1px solid var(--msg-color);
	--msg-color: #b50505;
	--msg-bg-color: #ffe1e1;
  }
  .check_box input:checked + label::after {
    position: absolute;
    content: '';
    border-left: 0.1rem solid #707070;
    border-bottom: 0.1rem solid #707070;
    left: 0.45rem;
    top: 0.1rem;
    height: 0.5rem;
    width: 0.9rem;
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
}
.sec-oportunidad a img.face{
	width: 40%;
	margin-top: -11px;
}
.sec-oportunidad a img.insta{
	width: 54%;
	margin-top: -15px;
}
.footer_wrapper2 a img.face{
	width: 40%;margin-top: 3px;
}
.footer_wrapper2 a img.insta{
	width: 54%;margin-top: 3px;
}
.sec-oportunidad a:hover img,.footer_wrapper2 a:hover img{
	opacity:.5;
}