/*
Theme Name: FG
Theme URI: http://www.kunturweb.com
Description: Theme FG de kunturweb.com
Author: kunturweb.com
Author URI: http://www.kunturweb.com
Version: 1.0
*/
*{margin:0px;padding:0px;}
input:focus, textarea:focus{
	outline:0px;
} 
p{
	font-family: "Montserrat", sans-serif;
	font-size: 15px;
	color: #100000;
	font-weight: 400;
	line-height: 24px;
	text-align: left;
    margin: 0;
}
h1, h2, h3, h4{
    color: #000f55;
    margin: 0;
    padding: 0;
    font-family: "Montserrat", sans-serif;
}
a, ul li{
	font-family: "Montserrat", sans-serif;
	font-size: 15px;
	color: #100000;
	font-weight: 400;
	line-height: 24px;
    text-decoration: none;
    text-transform: none;
	transition: all .25s ease-in-out;
   -moz-transition: all .25s ease-in-out;
   -webkit-transition: all .25s ease-in-out;
   -o-transition: all .25s ease-in-out;
}
a:hover, a:focus{
	color: #ff5700;
    text-decoration: none;
}
body{
	width: 100%;
    height: auto;
    overflow-x: hidden;
    background: #fff;
    font-family: "Montserrat", sans-serif;
}
.wrap{
    width: 1300px;
    max-width: 100%;
    margin: 0 auto;
    text-align: center;
}
/*
*****************************************************************
    Estilos header
*****************************************************************
*/
header{
    position: absolute;
    width: 100%;
    height: 100px;
    padding: 0 20px;
    box-sizing: border-box;
    z-index: 1000;
    float: left;
    text-align: center;
    background: none;
    left: 0;
}
.logo{
    position: relative;
    float: left;
    height: 110px;
    width: auto;
    z-index: 10;
    overflow: hidden;
    padding: 0 20px;
    margin: 0;
    box-sizing: border-box;
    animation: aparecelogo 1.2s 1;
    z-index: 22;
    background: #fff;
    border-radius: 0 0 20px 20px;
}
.logo img{
    height: 90px;
    margin: 10px 0;
    width: auto;
}
@keyframes aparecelogo{
    0%{transform: translateX(-100%);opacity: 0}
    100%{transform: translateX(0);opacity: 1}
}
.micuentatop{
    float: right;
    width: auto;
    height: 50px;
    margin: 25px 0 27px 10px;
    position: relative;
    padding: 0 30px 0 50px;
    box-sizing: border-box;
    background: #ff5700;
    border-radius: 50px;
    overflow: hidden;
    transition: all .25s ease-in-out;
   -moz-transition: all .25s ease-in-out;
   -webkit-transition: all .25s ease-in-out;
   -o-transition: all .25s ease-in-out;
}
.micuentatop:after{
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: #ffff01;
    z-index: 2;
    transition: all .25s ease-in-out;
   -moz-transition: all .25s ease-in-out;
   -webkit-transition: all .25s ease-in-out;
   -o-transition: all .25s ease-in-out;
}
.micuentatop i{
    position: absolute;
    top: 0;
    left: 4px;
    font-size: 19px;
    color: #fff;
    z-index: 4;
    width: 50px;
    height: 50px;
    text-align: center;
    border-radius: 100%;
    line-height: 50px;
}
.micuentatop li{
    list-style: none;
    font-size: 15px;
    line-height: 15px;
    text-align: left;
    margin-top: 9px;
    position: relative;
    z-index: 5;
}
.micuentatop li a{
    font-size: 15px;
    color: #fff;
    line-height: 15px;
    font-weight: 700;
    text-transform: uppercase;
}
.micuentatop:hover li a{
    color: #100000;
}
.micuentatop li a small{
    font-weight: 400;
    font-size: 12px;
}
.micuentatop:hover:after{
    left: 0;
}
.micuentatop:hover i{
    color: #100000;
}
.menu{
    width: auto;
    float: none;
    display: inline-block;
    position: relative;
    margin: 25px 0;
    z-index: 20;
    height: auto;
    height: 50px;
}
.menu ul{
    position: relative;
    width: auto;
    height: auto;
    float: right;
    margin: 0;
}
.menu ul li{
    text-align: left;
    color: #fff;
    font-size: 17px;
    width: auto;
    height: 50px;
    margin: 0;
    list-style: none;
    display: block;
    position: relative;
    float: left;
    padding: 0 12px;
    box-sizing: border-box;
    z-index: 2;
}
.menu ul li a{
    color: #fff;
    font-size: 13px;
    font-weight: normal;
    padding: 0;
    display: block;
    position: relative;
    margin: 0;
    text-align: left;
    width: 100%;
    height: 50px;
    float: left;
    line-height: 50px;
    display: inline-block;
    transform-origin: left;
    z-index: 3;
    text-transform: none;
    font-weight: 600;
    text-transform: uppercase;
}
.menu ul li:hover a{
    color: #ffff01;
}
.menu ul li > ul{
    position: absolute;
    top: 25px;
    left: 0;
    width: 280px;
    height: auto;
    background: #fff;
    border-radius: 3px;
    opacity: 0;
    padding: 10px 20px;
    box-sizing: border-box;
    visibility: hidden;
    z-index: -10000;
    box-shadow: 0 2px 5px 0 rgba(0,0,0,0.15);
}
.menu ul li:hover ul{
    opacity: 1;
    visibility: visible;
    z-index: 1;
    transform: translateY(20px);
    transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
}
.menu ul li > ul li{
    width: 100%;
    height: auto;
    padding: 0;
    margin: 3px 10px;
    border-bottom: solid 1px rgba(0,0,0,0.1);  
    color: #23292e !important;
}
.menu ul li > ul li:last-child{
    border: none;
}
.menu ul li > ul li:after{
    display: none;
}
.menu ul li > ul li a{
    font-size: 14px;
    line-height: normal;
    height: auto;
    padding: 10px 0 !important;
    display: inline-block;
    width: 100%;
    float: left;
    text-align: left;
    transform: scale(1) !important;
    color: #192561 !important;
}
.menu ul li > ul li a:before{
    display: none !important;
}
.menu ul li > ul li a:after{
    bottom: -3px !important;
}
.menu ul li > ul li a:hover{
    color: #e62028 !important;
}
#menu ul li > ul li.current-menu-item > a:hover:not(.current-menu-item){
	color: #e62028 !important;
}
#menu ul li > ul li a:hover:not(.current-menu-item){		
	color: #e62028 !important;
}
#menu ul li > ul li a:hover, 
#menu ul li > ul li.current-menu-item > a, 
#menu ul li > ul li.current_page_item > a {	
	color: #e62028 !important;
}
/*
    Estilos para Menu 2
*/
.menu2{
    display: none;
}
.menu ul li:nth-child(3) > ul{
    width: 250px !Important;
}
.menu ul li:nth-child(3) > ul li{
    width: 100% !Important;
    height: auto;
    padding: 0;
    margin: 3px 0 !Important;
    border-bottom: solid 1px rgba(0,0,0,0.1);  
    color: #23292e !important;
}
/*
*****************************************************************
    Estilos Slider top portada
*****************************************************************
*/
.slidertop{
    width: 100%;
    height: auto;
    float: left;
    position: relative;
    z-index: 2;
    overflow: hidden;
}
.swiper-container{
    width: 1400px;
    max-width: 100%;
    height: auto !important;
    left: 50%;
    transform: translateX(-50%);
    position: relative;
    float: left;
    border-radius: 0 0 50px 50px;
    overflow: hidden;
}
.slidertop .swiper-slide{
    text-align: center;
    font-size: 18px;
    display: inline-block;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    /* alutra para slider principal */
    height: 670px !important;
    overflow: hidden !important;
    box-sizing: border-box;
    background: #000;
}
.fotoslidertop{
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    opacity: 0.45;
    animation: crecer 14s infinite;
}
@keyframes crecer{
    0%{transform: scale(1)}
    50%{transform: scale(1.1)}
    100%{transform: scale(1)}
}
.textoslide{
    position: absolute;
    top: calc(50% + 50px);
    left: 0;
    width: 1100px;
    max-width: 100%;
    padding: 0 140px;
    box-sizing: border-box;
    height: auto;
    transform: translateY(-50%);
    z-index: 2;
    text-align: center;
}
.textoslide span{
    text-align: left;
    width: 100%;
    height: auto;
    float: left;
    position: relative;
    color: #ffff01;
    text-transform: uppercase;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 5px;
    opacity: 0;
    transform: translateX(-50px);
}
.textoslide h1{
    text-align: left;
    width: 100%;
    height: auto;
    float: left;
    position: relative;
    margin: 5px 0 20px 0;
    color: #fff;
    font-weight: 900;
    text-transform: uppercase;
    font-size: 45px;
    line-height: 49px;
    opacity: 0;
    transform: translateX(-50px);
}
.textoslide p{
    text-align: left;
    width: 100%;
    height: auto;
    float: left;
    position: relative;
    color: #fff;
    font-size: 17px;
    line-height: 26px;
    opacity: 0;
    transform: translateX(-50px);
}
.swiper-pagination{
    top: 50% !important;
    bottom: auto !important;
    right: 20px !important;
    left: auto !important;
    transform: translateY(-50%) !important;
    width: 15px !important;
    height: auto !important;
}
.swiper-pagination-bullet{
    width: 15px !important;
    height: 15px !important;
    background: #fff !important;
    margin: 10px 0 !important;
    float: left !important;
    position: relative !important;
}
.swiper-pagination-bullet:after{
    content: "";
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: 10px;
    background: #fff;
}
.swiper-pagination-bullet:last-child:after{
    display: none;
}
.slidertop .swiper-slide-active .textoslide span{
    animation: entrasub 1.2s forwards;
    animation-delay: 0;
}
@keyframes entrasub{
    0%{transform: translateX(-50px);opacity: 0;}
    100%{transform: translateX(0);opacity: 1;}
}
.slidertop .swiper-slide-active .textoslide h1{
    animation: entratitu 1.2s forwards;
    animation-delay: 0.8s;
}
@keyframes entratitu{
    0%{transform: translateX(-50px);opacity: 0;}
    100%{transform: translateX(0);opacity: 1;}
}
.slidertop .swiper-slide-active .textoslide p{
    animation: entratitu 1.2s forwards;
    animation-delay: 1.1s;
}
@keyframes entratitu{
    0%{transform: translateX(-50px);opacity: 0;}
    100%{transform: translateX(0);opacity: 1;}
}
.swinavitop{
    position: absolute;
    bottom: 20px;
    right: auto;
    left: 50%;
    width: auto;
    height: auto;
    transform: translateX(-50%);
    z-index: 100;
}
.botongeneral, form .secform input[type=submit]{
    width: auto;
    height: 50px;
    display: inline-block;
    float: left;
    text-align: center;
    max-width: 100%;
    padding: 0 30px;
    border-radius: 50px;
    color: #fff;
    background: #ff5700;
    text-transform: none;
    font-size: 13px;
    line-height: 50px;
    margin: 20px 0 0 0;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    z-index: 1;
    font-weight: 700;
    border: none;
    cursor: pointer;
    transition: all .25s ease-in-out;
   -moz-transition: all .25s ease-in-out;
   -webkit-transition: all .25s ease-in-out;
   -o-transition: all .25s ease-in-out;
}
form .secform input[type=submit]{
    display: inline-block;
    margin: 10px 0 0 0;
    padding: 0 20px;
    float: none;
}
.botongeneral:hover, .botongeneral:focus{
    background: #ffff01;
    color: #100000;
    padding: 0 40px;
}
.slidertop .swiper-slide .textoslide .botongeneral{
    opacity: 0;
    transform: translateY(50px);
}
.slidertop .swiper-slide-active .textoslide .botongeneral{
    animation: entrabtn 1.2s forwards;
    animation-delay: 1.5s;
}
@keyframes entrabtn{
    0%{transform: translateY(50px);opacity: 0;}
    100%{transform: translateY(0);opacity: 1;}
}
.textoslide .botongeneral{
    margin: 10px 10px 0 0;
}
/*
*****************************************************************
    Estilos cuerpo general
*****************************************************************
*/
.cuerpo{
    width: 100%;
    height: auto;
    float: left;
    position: relative;
    padding: 90px 20px;
    box-sizing: border-box;   
    z-index: 2;
    overflow: hidden;
    background: #fff;
}
/*
*****************************************************************
    Estilos cuerpo banner
*****************************************************************
*/
.cuerpobanner{
    margin-top: -90px;
    padding: 0 20px;
    background: none;
}
.cuerpobanner .wrap{
    width: 900px;
    height: auto;
    float: left;
    position: relative;
    border-radius: 30px;
    background: #ff5700;
    padding: 30px 60px 30px 250px;
    box-sizing: border-box;
    left: 50%;
    transform: translateX(-50%) skewX(-5deg);
    overflow: hidden;
}
.expehome{
    position: absolute;
    top: 0;
    left: 0;
    background: #ffff01;
    width: 200px;
    height: 100%;
    z-index: 3;
}
.expehome p{
    top: 50%;
    left: 0;
    width: 100%;
    height: auto;
    text-align: center;
    color: #100000;
    transform: translateY(-50%);
    position: absolute;
    font-size: 45px;
    line-height: 30px;
    font-weight: 700;
}
.expehome p small{
    font-size: 14px;
    font-weight: 500;
}
.banhome img{
    position: absolute;
    top: 10px;
    right: -50px;
    opacity: 0.05;
    width: 350px;
    height: auto;
    z-index: 1;
    transform: rotate(-30deg);
}
.banhome p{
    font-weight: 400;
    font-size: 17px;
    line-height: 26px;
    text-align: left;
    color: #fff;
    font-weight: 700;
    z-index: 3;
    position: relative;
}
.banhome p a{
    font-weight: 700;
    text-decoration: underline;
    color: #fff;
}
.banhome .botongeneral{
    background: #fff;
    color: #100000;
}
.banhome .botongeneral:hover{
    background: #ffff01;
}
/*
*****************************************************************
    Estilos cuerpo nosotros
*****************************************************************
*/
.fotosnos{
    width: 650px;
    height: 550px;
    float: left;
    position: relative;
}
.foto1nos, .foto2nos{
    width: calc(50% - 20px);
    margin: 0 20px 20px 0;
    border-radius: 20px;
    float: left;
    position: absolute;
    height: 400px;
    top: 0;
    left: 0;
}
.foto2nos{
    bottom: 0;
    top: auto;
    left: auto;
    right: 0;
    margin: 0;
    height: 450px;
}
.atencioncli{
    position: absolute;
    bottom: 0;
    left: 0;
    width: calc(50% - 20px);
    height: 130px;
    background: #ff5700;
    border-radius: 20px;
}
.atencioncli i{
    width: 50px;
    height: 50px;
    background: #fff;
    position: absolute;
    top: 50%;
    left: 40px;
    transform: translateY(-50%);
    line-height: 50px;
    text-align: center;
    font-size: 20px;
    color: #ff5700;
    border-radius: 100%;
    box-shadow: 0 0 0 8px rgba(255,255,255,0.2), 0 0 0 15px rgba(255,255,255,0.2);
    animation: sombratel 1.4s infinite;
    transition: all .25s ease-in-out;
   -moz-transition: all .25s ease-in-out;
   -webkit-transition: all .25s ease-in-out;
   -o-transition: all .25s ease-in-out;
}
@keyframes sombratel{
    0%{box-shadow: 0 0 0 0 rgba(255,255,255,0.2), 0 0 0 0 rgba(255,255,255,0.2);}
    50%{box-shadow: 0 0 0 8px rgba(255,255,255,0.2), 0 0 0 15px rgba(255,255,255,0.2);}
    100%{box-shadow: 0 0 0 0 rgba(255,255,255,0.2), 0 0 0 0 rgba(255,255,255,0.2);}
}
.atencioncli p{
    color: #fff;
    font-weight: 700;
    font-size: 18px;
    line-height: 20px;
    text-align: left;
    width: 100%;
    height: auto;
    top: 50%;
    left: 0;
    padding-left: 110px;
    box-sizing: border-box;
    position: absolute;
    transform: translateY(-50%);
    text-transform: uppercase;
    transition: all .25s ease-in-out;
   -moz-transition: all .25s ease-in-out;
   -webkit-transition: all .25s ease-in-out;
   -o-transition: all .25s ease-in-out;
}
.atencioncli p small{
    font-weight: 400;
    font-size: 14px;
}
.atencioncli:hover{
    background: #ffff01;
}
.atencioncli:hover p, .atencioncli:hover i{
    color: #100000;
}
.textonosapu{
    width: calc(100% - 740px);
    height: auto;
    float: right;
    position: relative;
    z-index: 2;
}
.titulocentral{
    width: 100%;
    height: auto;
    float: left;
    position: relative;
    margin: 0 0 30px 0;
}
.titulocentral h2{
    width: 100%;
    height: auto;
    float: left;
    position: relative;
    font-weight: 900;
    font-size: 35px;
    line-height: 38px;
    text-align: left;
    color: #100000;
    text-transform: none;
    margin: 10px 0 0 0;
}
.titulocentral span{
    width: auto;
    height: auto;
    position: relative;
    float: left;
    padding-left: 80px;
    text-transform: uppercase;
    color: #ff5700;
    letter-spacing: 4px;
    font-weight: 700;
}
.titulocentral span:after{
    content: "";
    position: absolute;
    top: 11px;
    left: 0;
    width: 55px;
    height: 1px;
    background: #ff5700;
    border-radius: 5px;
}
.titulocentral span:before{
    content: "";
    position: absolute;
    width: 8px;
    height: 8px;
    background: #ff5700;
    border-radius: 2px;
    transform: rotate(45deg);
    left: 60px;
    top: 7px;
}
.textonosapu p{
    text-align: left;
    width: 100%;
    height: auto;
    float: left;
    margin: 0 0 20px 0;
}
/*
*****************************************************************
    Estilos cuerpo servicios
*****************************************************************
*/
.cuerposervicios{
    background: #ff5700;
    height: auto;
}
.titulocentraldos span, .titulocentraldos h2{
    text-align: center;
    color: #fff;
}
.titulocentraldos span{
    display: inline-block;
    float: none;
    padding: 0;
}
.titulocentraldos span:after, .titulocentraldos span:before{
    display: none;
}
.serviciosec{
    width: 350px;
    max-width: 100%;
    height: 420px;
    display: inline-block;
    border-radius: 20px;
    margin: 20px;
    position: relative;
    overflow: hidden;
    background: #000;
}
.serviciosec:after{
    content: "";
    position: absolute;
    top: 15px;
    left: 15px;
    border-radius: 20px;
    width: calc(100% - 30px);
    height: calc(100% - 30px);
    border: solid 2px rgba(255,255,255,0.7);
    opacity: 0;
    transition: all .25s ease-in-out;
   -moz-transition: all .25s ease-in-out;
   -webkit-transition: all .25s ease-in-out;
   -o-transition: all .25s ease-in-out;
    z-index: 2;
}
.fotoservicio{
    position: absolute;
    top: 0;
    left: -30px;
    width: calc(100% + 30px);
    height: 100%;
    z-index: 1;
    transition: all .25s ease-in-out;
   -moz-transition: all .25s ease-in-out;
   -webkit-transition: all .25s ease-in-out;
   -o-transition: all .25s ease-in-out;
}
.textoservicio{
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: auto;
    transform: translateY(-50%);
    z-index: 5;
    padding: 0 50px;
    box-sizing: border-box;
}
.textoservicio h3{
    width: 100%;
    height: auto;
    float: left;
    color: #fff;
    text-align: left;
    font-size: 25px;
    line-height: 28px;
    margin: 0 0 20px 0;
}
.textoservicio p{
    color: #fff;
    opacity: 0;
    transform: translateX(-50px);
    transition: all .35s ease-in-out;
   -moz-transition: all .35s ease-in-out;
   -webkit-transition: all .35s ease-in-out;
   -o-transition: all .35s ease-in-out;
}
.serviciosec:hover .fotoservicio{
    left: 0;
    opacity: 0.3;
}
.serviciosec:hover:after{
    opacity: 1;
}
.serviciosec:hover p{
    transform: translateY(0);
    opacity: 1;
}
/*
*****************************************************************
    Estilos cuerpo porque elegirnos
*****************************************************************
*/
.titulocentraltres h2{
    text-align: center;
}
.titulocentraltres span{
    text-align: center;
    float: none;
    padding: 0;
    display: inline-block;
}
.titulocentraltres span:after, .titulocentraltres span:before{
    display: none;
}
.elegirsec{
    width: 320px;
    display: inline-block;
    vertical-align: top;
    margin: 20px;
    height: auto;
}
.elegirsec img{
    display: inline-block;
    height: 70px;
    width: auto;
}
.elegirsec span{
    color: #100000;
    font-weight: 700;
    width: 100%;
    height: auto;
    margin: 20px 0;
    text-align: center;
    font-size: 20px;
    line-height: 24px;
    float: left;
}
.elegirsec p{
    text-align: center;
}
/*
*****************************************************************
    Estilos footer
*****************************************************************
*/
footer{
    background: #fff;
    position: relative;
    float: left;
    width: 100%;
    height: auto;
    padding: 0;
    box-sizing: border-box;
}
.fondofoo{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.15;
}
footer .wrap{
    width: 1400px;
    height: auto;
    position: relative;
    float: left;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 40px 40px 0 0;
    background: #100000;
    overflow: hidden;
    padding: 50px 90px;
    box-sizing: border-box;
    z-index: 2;
}
.cuerpomapa{
    height: 400px;
    padding: 0;
    width: 100%;
    border-radius: 30px;
    margin: 0 0 30px 0;
}
.cuerpomapa iframe{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.secfoo{
    width: 30%;
    height: auto;
    float: left;
    position: relative;
    padding: 10px 20px;
    box-sizing: border-box;
}
.secfooatencion{
    width: 30%;
}
.seccocliente{
    width: 40%;
}
.logofoo{
    width: auto;
    height: auto;
    background: #fff;
    border-radius: 20px;
    padding: 20px 30px;
    box-sizing: border-box;
    float: left;
}
.logofoo img{
    height: 70px;
    width: auto;
    float: left;
    position: relative;
}
.secfoologo p{
    color: #fff;
    font-size: 13px;
    text-align: left;
    z-index: 3;
    position: relative;
    float: left;
}
.telfoo{
    width: 100%;
    height: auto;
    position: relative;
    float: left;
    color: #fff;
    font-size: 30px;
    line-height: 32px;
    font-weight: 700;
    text-align: left;
    border-top: dashed 1px rgba(255,255,255,0.2);
    border-bottom: dashed 1px rgba(255,255,255,0.2);
    padding: 15px 0;
    margin-bottom: 10px;
}
.telfoo i{
    font-size: 25px;
    margin-right: 5px;
}
.telfoo:hover{
    color: #eeca05;
}
.seccocliente i{
    margin: 0 6px 0 0;
}
.seccocliente span{
    width: 100%;
    height: auto;
    float: left;
    position: relative;
    margin: 0 0 15px 0;
    padding: 0 0 15px 0;
    border-bottom: solid 1px rgba(255,255,255,0.1);
}
.secfootodo{
    width: calc(100% - 500px);
    float: right;
    position: relative;
}
.secfoo{
    height: auto;
    float: left;
    position: relative;
    padding: 10px 20px;
    box-sizing: border-box;
}
.secfoo h4{
    color: #fff;
    width: 100%;
    height: auto;
    float: left;
    position: relative;
    margin: 15px 0;
    font-size: 14px;
    line-height: 16px;
    font-weight: 700;
    text-align: left;
    text-transform: uppercase;
}
.titfoodos{
    margin-top: 30px !important;
}
.secfoo p{
    font-size: 14px;
    line-height: 30px;
}
.secfoo p, .secfoo p a{
    color: rgba(255,255,255,0.9);
    text-align: left;
    font-size: 14px;
}
.secfoo p a:hover{
    color: #ffff01;
}
.secfoo ul{
    width: 100%;
    height: auto;
    float: left;
    position: relative;
    padding: 0 0 0 15px;
    box-sizing: border-box;
    margin: 0;
}
.secfoo ul li{
    color: rgba(255,255,255,0.7);
    font-size: 13px;
    line-height: 16px;
    width: 100%;
    height: auto;
    margin: 2px 0;
    text-align: left;
    float: left;
}
.secfoo ul li a{
    color: rgba(255,255,255,0.85);
    font-size: 13px;
    display: inline-block;
    width: 100%;
    height: auto;
}
.secfoo ul li a:hover{
    color: #eeca05;
}
.secfoo2 ul li{
    width: calc(33.3% - 10px);
    margin: 4px 5px;
}
.tarjetas{
    float: left;
    position: relative;
    width: 100%;
    height: auto;
    top: auto;
    margin: 10px 0 0 0;
}
.tarjetas p{
    color: rgba(255,255,255,0.8);
    text-align: left;
    font-size: 13px;
    margin: 0 0 10px 0;
}
.tarjetas img{
    height: 25px;
    width: auto;
    float: left;
}
.listacontactofoo{
    padding: 0 !important;
}
.listacontactofoo li{
    position: relative;
    padding-left: 25px;
    list-style: none;
    margin: 6px 0 !important;
}
.listacontactofoo li i{
    position: absolute;
    top: 6px;
    left: 0;
    font-size: 15px;
    color: #fff;
}
.listacontactofoo li a{
    font-size: 16px !important;
    line-height: 19px !important;
    font-weight: 600 !important;
    color: #fff !important;
}
.listacontactofoo li a small{
    font-size: 13px;
    color: rgba(255,255,255,0.8);
    font-weight: 400;
}
.piefinal{
    width: 100%;
    height: auto;
    float: left;
    position: relative;
    border-top: solid 1px rgba(244,255,255,0.25);
    padding: 20px 0 0 0;
    box-sizing: border-box;
    margin: 20px 0 0 0;
}
.redesfoo{
    width: 240px;
    height: auto;
    float: left;
    position: absolute;
    top: -22px;
    left: 50%;
    transform: translateX(-50%);
}
.redesfoo p{
    text-align: left;
    color: #fff;
    width: 100%;
    height: auto;
    float: left;
    margin: 0 0 10px 0;
}
.redesfoo a{
    width: 35px;
    height: 35px;
    float: left;
    position: relative;
    margin: 4px;
    border-radius: 100%;
    text-align: center;
    box-sizing: border-box;
    background: #ff5700;
    color: #fff;
}
.redesfoo a i{
    color: #fff;
    font-size: 14px;
    line-height: 35px;
    text-align: center;
}
.redesfoo a:hover{
    background: #ffff01;
}
.redesfoo a:hover i{
    color: #0d0200;
}
.piefinal p{
    color: rgba(255,255,255,0.7);
    font-size: 12px;
    line-height: 16px;
    width: auto;
    float: left;
}
.piefinal p a{
    color: rgba(255,255,255,0.7);
    font-size: 12px;
}
.piefinal p a:hover{
    color: #ffff01;
}
.credito{
    width: 150px;
    height: auto;
    float: right;
}
.credito img{
    height: 22px;
    width: auto;
    float: right;
    opacity: 0.7;
}
.credito img:hover{
    opacity: 1;
}
.credito a{
    color: rgba(255,255,255,0.7);
    font-size: 12px;
    text-align: right;
    float: right;
}
.cuerpoformcontact{
    padding-top: 30px;
}
.phontfoo{
    margin-left: 20px;
}
.fixedwsp{
    position: fixed;
    right: 20px;
    bottom: 60px;
    z-index: 300;
    width: auto;
    height: auto;
    padding: 0;
    text-align: center;
    opacity: 1;
    display: inline-block;
}
.fixedwsp img{
    width: 50px;
    height: auto;
    opacity: 0.7;
    transition: all .25s ease-in-out;
	-moz-transition: all .25s ease-in-out;
	-webkit-transition: all .25s ease-in-out;
	-o-transition: all .25s ease-in-out;
}
.fixedcal{
    bottom: 95px;
    right: 15px;
}
.fixedcal img{
    width: 47px;
}
.fixedwsp img:hover{
    opacity: 1;
    transform: scale(1.05);
}
.btnup{
    position: fixed;
    bottom: 20px;
    right: 25px;
    width: 40px;
    height: 40px;
    border-radius: 100%;
    background: rgba(0,0,0,0.45);
    text-align: center;
    z-index: 1000;
}
.btnup i{
    line-height: 40px;
    text-align: center;
    font-size: 15px;
    color: #fff;
}
.btnup:hover{
    background: #ff5700;
}
/*
***************************************************************
    Estilos responsivos
***************************************************************
*/
@media only screen and (max-width : 1200px) {
    .textoelegir {
        width: 400px;
    }
    .secelecciones {
        width: calc(100% - 450px);
    }
    .swipervideo {
        width: calc(100% - 450px);
    }
}
@media only screen and (max-width : 1150px) {
    .secfoo {
        width: 30%;
    }
    .secfoologo{
        width: 100%;
    }
    .seccocliente{
        width: 40%;
    }
    .secfoologo img{
        float: none;
        display: inline-block;
    }
    .redesfoo p{
        text-align: center;
    }
    .redesfoo a{
        display: inline-block;
        float: none;
    }
    .paquetesec {
        width: calc(25% - 20px);
    }
}
@media only screen and (max-width : 1130px) {
    .fotosnos {
        width: 450px;
        height: 500px;
    }
    .foto1nos, .foto2nos {
        width: calc(50% - 10px);
        margin: 0 10px 10px 0;
        border-radius: 15px;
        height: 350px;
    }
    .textonosapu {
        width: calc(100% - 500px);
    }
    .atencioncli p {
        padding-left: 85px;
    }
    .atencioncli i {
        left: 20px;
    }
}
@media only screen and (max-width : 900px) {
    .fotosnos {
        width: 650px;
        max-width: 100%;
        height: 500px;
        float: none;
        display: inline-block;
    }
    .foto1nos, .foto2nos {
        width: calc(50% - 10px);
        margin: 0 10px 10px 0;
        border-radius: 15px;
        height: 350px;
    }
    .foto2nos{
        height: 420px;
        margin: 0;
    }
    .textonosapu {
        width: 100%;
        margin: 20px 0 0 0;
    }
    .atencioncli {
        width: calc(50% - 10px);
    }
    .atencioncli p {
        padding-left: 85px;
    }
    .atencioncli i {
        left: 20px;
    }
}
@media only screen and (max-width : 1080px) {
    .menu{
        display: none;
    }
    .menu2{
        float: right;
        position: relative;
        width: auto;
        width: auto;
        z-index: 500;
        margin: 27px 5px 0 0;
        display: inline-block;
    }
    .menu2 .menuresp{
        height: 50px;
        line-height: 50px;
        width: auto;
        padding: 0 20px 0 45px;
        margin: 0;       
        display: inline-block;
        border-radius: 50px;
        position: relative;
        color: #fff;
        box-sizing: border-box;
        float: right;
        background: #ff5700;
    }
    .menu2 .menuresp i{
        position: absolute;
        top: 0;
        left: 20px;
        color: #fff;
        font-size: 18px;
        text-align: center;
        line-height: 50px;
        transition: all .25s ease-in-out;
	   -moz-transition: all .25s ease-in-out;
	   -webkit-transition: all .25s ease-in-out;
	   -o-transition: all .25s ease-in-out;
    }
    .menu2 .menuresp:hover{
        background: #ffff01;
        color: #100000;
    }
    .menu2 .menuresp:hover i{
        color: #100000;
        transform: rotate(90deg);
    }
    .menu2:hover .menuresp{
        background: #ffff01;
        color: #100000;
    }
    .menu2:hover .menuresp i{
        color: #100000;
        transform: rotate(90deg);
    }
    .menu2 .acordion{
        width: 220px;
        height: auto;
        float: left;
        background: #fff;
        border-radius: 3px;
        position: absolute;
        top: 55px;
        right: 0;
        padding: 10px 0;
        box-shadow: 0 3px 6px 0 rgba(0,0,0,0.2);
    }
    .menu2 .acordion li{
        list-style: none;
        width: 100%;
        height: auto;
        float: left;
        position: relative;
        padding: 0 30px;
        box-sizing: border-box;
    }
    .menu2 .acordion li a{
        width: 100%;
        height: auto;
        position: relative;
        display: inline-block;
        border-bottom: solid 1px rgba(0,0,0,0.15);
        float: left;
        text-align: left;
        padding: 10px 0;
        margin: 0;
        font-weight: normal;
        font-size: 13px;
        color: #100000;
        font-weight: 700;
    }
    .menu2 .acordion li:last-child a{
        border: none;
    }
    .menu2 ul li.current-menu-item > a:hover:not(.current-menu-item){
        color: #ff5700;
    }
    .menu2 ul li a:hover:not(.current-menu-item){		
        color: #ff5700;
    }
    .menu2 ul li a:hover, 
    .menu2 ul li.current-menu-item > a, 
    .menu2 ul li.current_page_item > a {	
        color: #ff5700;
    }
    .menu2 .acordion li ul{
        width: 100%;
        height: auto;
        float: left;
        border-bottom: solid 1px rgba(0,0,0,0.15);
        padding: 10px 0;
        box-sizing: border-box;
    }
    .menu2 .acordion li ul li{
        width: auto;
        padding: 0;
        float: left;
        margin: 2px;
    }
    .menu2 .acordion li ul li a{
        width: auto;
        display: inline-block;
        padding: 8px 10px;
        border-radius: 3px;
        background: #dcebdb;
        height: auto;
        font-size: 12px;
        line-height: 14px;
        border: none;
    }
    .menu2 .acordion li ul li a:hover{
        background: #18a10b;
        color: #fff;
    }
    #headdos .menu2{
        position: relative;
    }
    #headdos .menu2 .menuresp{
        margin: 7px 0 0 0;
    }
    .nosotroscont:after {
        width: 250px;
    }
    .nosotroscont img {
        width: 320px;
        left: 0;
        z-index: 2;
    }
    .textonosotros {
        width: calc(100% - 300px);
        padding: 40px 40px 40px 50px;
    }
    .secservicio {
        min-height: 50px;
        margin: 20px 0
    }
    .secservicio img {
        width: 400px;
        height: auto;
    }
    .textoservpage {
        width: calc(100% - 430px);
        height: auto;
        float: right;
        position: relative;
        top: 0;
        right: 0;
        transform: translateY(0);
    }
    footer .wrap {
        border-radius: 20px 20px 0 0;
        padding: 20px;
    }
    .cuerpomapa {
        height: 300px;
        border-radius: 20px;
        margin: 0 0 20px 0;
    }
    .secfoo {
        width: 100%;
        padding: 0;
        margin: 10px 0;
    }
    .fondofoo{
        opacity: 0.1;
    }
}
@media only screen and (max-width : 980px) {
    .slidertop .swiper-slide {
        height: 550px !important;
    }
    .textoslide {
        padding: 0 50px 0 30px;
        top: 50%;
    }
    .textoslide span {
        font-size: 14px;
        letter-spacing: 4px;
    }
    .textoslide h1 {
        margin: 5px 0 15px 0;
        font-size: 30px;
        line-height: 34px;
    }
}
@media only screen and (max-width : 810px) {
    .textoslider {
        position: relative;
        top: 0;
        left: 0;
        transform: translate(0,0);
    }
    .sectextoslider {
        width: 100%;
        float: left;
        height: auto;
        text-align: center;
    }
    .textoslider .sectextoslider .spantextslider{
        display: inline-block;
        float: none;
        text-align: center;
    }
    .textoslider h1 {
        font-size: 30px;
        line-height: 32px;
        margin: 10px 0 20px 0;
        text-align: center;
    }
    .textoslider p {
        font-size: 15px;
        line-height: 20px;
        margin: 0 0 15px 0;
        text-align: center;
    }    
    .textoslider .botongeneral{
        float: none;
        display: inline-block;
    }
    .chicoslider {
        left: 50%;
        right: auto;
        height: 300px;
        transform: translateX(-50%);
    }
    .textonosotros {
        width: 100%;
        padding: 30px;
    }
    .nosotroscont:after {
        display: none;
    }
    .titulogeneral span {
        font-size: 13px;
        letter-spacing: 3px;
    }
    .titulogeneral h2 {
        font-size: 28px;
        line-height: 30px;
        margin: 0 0 15px 0;
    }
    .nosotroscont img {
        display: none;
    }
    .secservicio {
        width: 100%;
    }
    .secservicio img{
        width: 340px;
        max-width: 100%;
        height: auto;
        float: none;
        display: inline-block;
    }
    .textoservpage {
        width: 100%;
        float: left;
        margin-top: 15px;
    }
    .textoservpage .titulocentraldos span{
        font-size: 12px;
        line-height: normal;
    }
    .textoservpage .titulocentraldos h2{
        font-size: 25px;
        line-height: 29px;
    }
    .cuerponos .fotonosapu{
        width: 350px;
        height: 400px;
        max-width: 100%;
        position: relative;
        float: none;
        display: inline-block;
        margin-bottom: 10px;
    }
    .titulocentral h2 {
        font-size: 25px;
        line-height: 29px;
    }
    .textonosapu {
        width: 100%;
        margin: 30px 0 0 0;
    }
    .secsubs {
        padding: 0;
    }
    .secsubs h2{
        text-align: center;
        font-size: 22px;
        line-height: 25px;
    }
    .secsubs p{
        text-align: center;
    }
    .secsubs form {
        width: 100%;
        position: relative;
        top: 0;
        transform: translateY(0);
        margin: 20px 0 0 0;
    }
    .secsubs form input[type=email] {
        width: 100%;
    }
    .fotoprodsingle {
        width: 100%;
    }
    .thumbsingle{
        display: none;
    }
    .galeriaprod {
        width: 100%;
    }
    .textoprodsingle{
        width: 100%;
        padding: 0;
        margin: 20px 0 0 0;
    }
    .textoprodsingle h2 {
        margin: 0 0 10px 0;
        font-size: 22px;
        line-height: 25px;
    }
}
@media only screen and (max-width : 750px) {
    .logo {
        height: 60px;
        padding: 0 10px;
        border-radius: 0 0 15px 15px;
    }
    .logo img {
        height: 50px;
        margin: 5px 0;
        width: auto;
    }
    .menu2 {
        margin: 10px 5px 0 0;
    }
    .menu2 .menuresp {
        height: 45px;
        line-height: 45px;
    }
    .menu2 .menuresp i{
        line-height: 45px;
    }
    .micuentatop {
        margin: 10px 0 0 10px;
        height: 45px;
    }
    .micuentatop i{
        line-height: 45px;
    }
    .micuentatop li {
        margin-top: 5px;
    }
}
@media only screen and (max-width : 610px) {
    .micuentatop {
        display: none;
    }
    .slidertop .swiper-slide {
        height: 500px !important;
    }
    .textoslide {
        padding: 0 50px 0 20px;
    }
    .textoslide span {
        font-size: 12px;
        letter-spacing: 3px;
    }
    .textoslide h1 {
        margin: 5px 0 10px 0;
        font-size: 20px;
        line-height: 23px;
    }
    .textoslide p{
        font-size: 14px;
        line-height: 20px;
    }
    .cuerpobanner .wrap {
        width: 100%;
        border-radius: 20px;
        padding: 30px;
    }
    .expehome {
        position: relative;
        background: none;
        width: 100%;
        height: auto;
        border-bottom: solid 1px rgba(255,255,255,0.3);
        padding: 0 0 10px 0;
        margin-bottom: 15px;
    }
    .expehome p {
        top: 0;
        transform: translateY(0);
        position: relative;
        text-align: center;
        color: #fff;
    }
    .banhome p {
        font-weight: 400;
        font-size: 15px;
        line-height: 22px;
        text-align: center;
    }
    .banhome .botongeneral {
        float: none;
        display: inline-block;
    }
}
@media only screen and (max-width : 570px) {
    .micuentatop{
        display: none;
    }
    .cuerpoform form {
        border-radius: 15px;
        padding: 20px;
    }
}
@media only screen and (max-width : 510px) {
    .micuentatop{
        display: none;
    }
    .textoslider h1 {
        font-size: 30px;
        line-height: 32px;
        margin: 0 0 10px 0;
    }
    .secprod{
        margin: 10px 0;
        width: 320px;
        display: inline-block;
        float: none;
    }
    .secfoo2 ul li {
        width: 100%;
        margin: 4px 0;
    }
    .textopaquete{
        min-height: 100px;
    }
    .btncompras{
        position: relative;
        margin: 10px 0 0 0;
        left: 0;
        top: 0;
    }
    .foto1nos, .foto2nos {
        width: 100%;
        margin: 10px 0;
        border-radius: 10px;
        height: 240px;
        position: relative;
        top: 0;
        left: 0;
    }
    .cuerponos{
        padding: 20px 20px 40px 20px;
    }
    .atencioncli {
        bottom: auto;
        top: calc(50% + 10px);
        left: 20px;
        width: 230px;
        max-width: 100%;
        height: 90px;
        border-radius: 10px;
        transform: translateY(-50%);
    }
    .atencioncli p {
        padding-left: 95px;
    }
    .serviciosec {
        height: 400px;
        border-radius: 10px;
        margin: 10px 0;
    }
    .cuerposervicios, .cuerpoelegir{
        padding: 40px 20px;
    }
    .elegirsec {
        margin: 10px 0;
        max-width: 100%;
    }
}
@media only screen and (max-width : 450px) {
    .redesconttop{
        display: none;
    }
    .redestop{
        border: none;
    }
    .botonslideprod{
        display: none;
    }
    .secopcion {
        width: 300px;
        max-width: 100%;
        margin: 10px 0;
        display: inline-block;
        float: none;
    }
    .paquetesec {
        margin: 10px 0;
        width: 320px;
        float: none;
        display: inline-block;
    }
}