/*
Theme Name: Inmolab
Theme URI: http://www.kunturweb.com
Description: Theme Inmolab 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: 16px;
	color: #353434;
	font-weight: normal;
	line-height: 26px;
	text-align: left;
    margin: 0;
}
ul,ol{
    margin: 0;
}
h1, h2, h3, h4{
    color: #000;
    margin: 0;
    padding: 0;
    font-weight: bold;
}
a, ul li{
	font-size: 16px;
    line-height: 25px;
	color: #353434;
	text-decoration: none;
    font-weight: normal;
    text-transform: none;
    outline: 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: #c99b00;
    text-decoration: none;
    outline: 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;
}
.botongeneral{
    width: auto;
    height: auto;
    padding: 16px 30px;
    background: #c99b00;
    border-radius: 40px;
    color: #fff;
    float: left;
    font-weight: 600;
    transition: all 0.25s ease-in-out;
    -moz-transition: all 0.25s ease-in-out;
    -webkit-transition: all 0.25s ease-in-out;
    -o-transition: all 0.25s ease-in-out;
}
.botongeneral:hover{
    background: #000;
    color: #fff;
}
/*
*****************************************************************
    Estilos header
*****************************************************************
*/
header{
    position: absolute;
    width: 100%;
    height: 60px;
    padding: 20px;
    box-sizing: border-box;
    z-index: 10;
    float: left;
}
header .wrap{
    position: relative;
    float: left;
    left: 50%;
    transform: translateX(-50%);
    height: 80px;
    background: #fff;
    border-radius: 60px;
    padding: 0 30px;
    box-sizing: border-box;
}
.logo{
    position: relative;
    height: auto;
    width: auto;
    float: left;
}
.logo img{
    height: 50px;
    width: auto;
    margin: 15px 0;
}
.menu{
    width: auto;
    height: auto;
    float: left;
    position: relative;
    margin: 0;
    height: 50px;
    width: auto;
    margin: 15px 0 15px 30px;
    border-left: solid 1px rgba(0,0,0,0.2);
    padding-left: 10px;
    box-sizing: border-box;
}
.menu ul{
    position: relative;
    width: auto;
    height: auto;
    float: left;
    padding: 0;
    margin: 0;
}
.menu ul li{
    text-align: left;
    color: rgba(255,255,255,0.8);
    font-size: 17px;
    line-height: normal;
    width: auto;
    height: auto;
    margin: 0 20px;
    list-style: none;
    display: block;
    position: relative;
    float: left;
    padding: 0;
    box-sizing: border-box;
}
.menu ul li a{
    color: #000;
    font-size: 15px;
    font-weight: 700;
    padding: 0;
    display: block;
    position: relative;
    margin: 0;
    text-align: left;
    width: 100%;
    float: left;
    height: 50px;
    line-height: 50px;
    display: inline-block;
    transform-origin: left;
}
.menu ul li a:after{
    content: "";
    position: absolute;
    bottom: 10px;
    left: 0;
    width: 100%;
    height: 1px;
    background: #c99b00;
    transform: scaleX(0);
    opacity: 0;
    transform-origin: left;
    transition: all 0.25s ease-in-out;
    -moz-transition: all 0.25s ease-in-out;
    -webkit-transition: all 0.25s ease-in-out;
    -o-transition: all 0.25s ease-in-out;
}
#menu ul li.current-menu-item > a:hover:not(.current-menu-item){
	color: #c99b00;
}
#menu ul li a:hover:not(.current-menu-item){		
	color: #c99b00;
}
#menu ul li a:hover, 
#menu ul li.current-menu-item > a, 
#menu ul li.current_page_item > a {	
	color: #c99b00;
}
.menu ul li:hover a{
    color: #c99b00;
}
#menu ul li.current-menu-item > a:hover:not(.current-menu-item):after{
	transform: scaleX(100%);
    opacity: 1;
}
#menu ul li a:hover:not(.current-menu-item):after{		
	transform: scaleX(100%);
    opacity: 1;
}
#menu ul li a:hover:after, 
#menu ul li.current-menu-item > a:after, 
#menu ul li.current_page_item > a:after {	
	transform: scaleX(100%);
    opacity: 1;
}
.menu ul li > ul{
    position: absolute;
    top: 40px;
    left: 0;
    width: 250px;
    height: auto;
    background: #fff;
    border-radius: 3px;
    opacity: 0;
    padding: 10px 30px;
    box-sizing: border-box;
    z-index: 1;
    transform: scaleY(0);
    transform-origin: top;
    box-shadow: 0 2px 5px 0 rgba(0,0,0,0.15);
    transition: all 0.25s ease-in-out;
    -moz-transition: all 0.25s ease-in-out;
    -webkit-transition: all 0.25s ease-in-out;
    -o-transition: all 0.25s ease-in-out;
}
.menu ul li:hover ul{
    opacity: 1;
    z-index: 1;
    transform: scaleY(1);    
}
.menu ul li > ul li{
    width: 100%;
    height: auto;
    padding: 0;
    margin: 3px 0;
    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 a{
    color: #23292e !important;
    font-size: 15px;
    line-height: 19px;
    padding: 10px 0 !important;
    display: inline-block;
    width: 100%;
    height: auto;
    float: left;
    text-align: left;
    transform: scale(1) !important;
}
.menu ul li > ul li a:after{
    display: none !important;
}
.menu ul li > ul li a:hover{
    color: #c99b00 !important;
}
#menu ul li > ul li.current-menu-item > a:hover:not(.current-menu-item){
	color: #c99b00;
}
#menu ul li > ul li a:hover:not(.current-menu-item){		
	color: #c99b00;
}
#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: #c99b00;
}
.cotizartop{
    float: right;
    width: auto;
    height: 50px;
    background: #c99b00;
    color: #fff;
    border-radius: 50px;
    padding: 0 30px 0 55px;
    margin: 15px 0;
    position: relative;
    text-align: left;
    overflow: hidden;
    transition: all 0.25s ease-in-out;
    -moz-transition: all 0.25s ease-in-out;
    -webkit-transition: all 0.25s ease-in-out;
    -o-transition: all 0.25s ease-in-out;
}
.cotizartop i{
    position: absolute;
    top: 50%;
    left: 25px;
    font-size: 20px;
    z-index: 3;
    transform: translateY(-50%);
    transition: all 0.25s ease-in-out;
    -moz-transition: all 0.25s ease-in-out;
    -webkit-transition: all 0.25s ease-in-out;
    -o-transition: all 0.25s ease-in-out;
}
.cotizartop p{
    text-align: left;
    font-size: 12px;
    line-height: 16px;
    color: #fff;
    margin: 8px 0 0 0;
    font-weight: 700;
    position: relative;
    transition: all 0.25s ease-in-out;
    -moz-transition: all 0.25s ease-in-out;
    -webkit-transition: all 0.25s ease-in-out;
    -o-transition: all 0.25s ease-in-out;
}
.cotizartop:hover{
    background: #000;
    color: #fff;
}
/*
    Estilos para Menu 2
*/

.menu2{
    display: none;
}
.headerdos{
    top: -65px;
    position: fixed;
    left: 0;
    width: 100%;
    height: 60px;
    background: #fff;
    z-index: 1000;
    padding: 0 20px;
    box-sizing: border-box;
    box-shadow: 0 0 10px 0 rgba(0,0,0,0.2);
    transition: all 0.25s ease-in-out;
    -moz-transition: all 0.25s ease-in-out;
    -webkit-transition: all 0.25s ease-in-out;
    -o-transition: all 0.25s ease-in-out;
}
.headerdos .logo{
    width: auto;
    height: auto;
    float: left;
    position: relative;
}
.headerdos .logo img{
    height: 50px;
    width: auto;
    float: left;
    margin: 5px 0;
}
.headerdos .menu{
    margin: 0 0 0 30px;
    height: 60px;
}
.headerdos .menu ul li{
    height: auto;
    padding: 0;
    margin: 0 15px;
}
.headerdos .menu ul li a{
    color: #000;
    height: 60px;
    padding: 17px 0;
    font-weight: 700;
    line-height: normal;
}
.headerdos .menu ul li a:after {
    bottom: 17px;
}
.headerdos .menu ul li ul li{
    margin: 0;
}
.headerdos .menu ul li ul li a{
    height: auto;
}
.headerdos .cotizartop{
    margin: 5px 0;
}
/*
*****************************************************************
    Estilos Slider top portada
*****************************************************************
*/
.sliderhome{
    width: 100%;
    height: auto;
    float: left;
    position: relative;
    background: linear-gradient(120deg,#211c18,#86680a);
    overflow: hidden;
}
.fotosliderhome{
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: 0.4;
    border: none;
    background-image: url(images/slider1.jpg);
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
.slidertexto{
    position: relative;
    width: 800px;
    max-width: 100%;
    padding: 200px 20px 90px 20px;
    box-sizing: border-box;
    height: auto;
    z-index: 2;
    left: 50%;
    text-align: center;
    transform: translateX(-50%);
}
.slidertexto h1{
    font-size: 60px;
    line-height: 64px;
    color: #fff;
    width: 100%;
    height: auto;
    float: left;
    position: relative;
    margin: 0 0 30px 0;
    text-align: center;
    font-weight: 700;
}
.slidertexto h1 span{
    text-decoration: underline;
}
.slidertexto p{
    text-align: center;
    font-size: 18px;
    line-height: 25px;
    color: #fff;
}
.slidertextobot{
    width: 1100px;
    max-width: 100%;
    float: left;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    border-top: solid 1px rgba(255,255,255,0.3);
    padding: 60px 20px;
    box-sizing: border-box;
}
.slidertextobot p{
    width: 600px;
    max-width: 100%;
    float: left;
    position: relative;
    font-size: 23px;
    line-height: 32px;
    text-align: left;
    font-weight: 700;
    color: #fff;
}
.slidertextobot .botongeneral{
    position: absolute;
    top: 50%;
    right: 20px;
    left: auto;
    float: none;
    transform: translateY(-50%);
    background: #fff;
    color: #000;
}
.slidertextobot .botongeneral i{
    margin: 0 0 0 5px;
    transition: all 0.25s ease-in-out;
    -moz-transition: all 0.25s ease-in-out;
    -webkit-transition: all 0.25s ease-in-out;
    -o-transition: all 0.25s ease-in-out;
}
.slidertextobot .botongeneral:hover{
    background: #c99b00;
    color: #fff;
}
.slidertextobot .botongeneral:hover i{
    margin: 0 0 0 13px;
    transform: rotate(-45deg);
}
/*
*****************************************************************
    Estilos cuerpo general
*****************************************************************
*/
.cuerpo{
    width: 100%;
    height: auto;
    float: left;
    position: relative;
    padding: 70px 20px;
    box-sizing: border-box;   
    z-index: 2;
    background: #fff;
}
.titibenepage{
    width: 100%;
    height: auto;
    float: left;
    position: relative;
    margin: 0 0 30px 0;
}
.titibenepage span{
    color: #c99b00;
    text-transform: uppercase;
    width: 100%;
    height: auto;
    float: left;
    position: relative;
    font-size: 12px;
    line-height: normal;
    text-align: left;
    padding-left: 60px;
    box-sizing: border-box;
    letter-spacing: 4px;
    font-weight: 600;
}
.titibenepage span:after{
    position: absolute;
    content: "";
    width: 50px;
    height: 1px;
    background: #c99b00;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}
.titibenepage span:before{
    background: #bc9a12 !important;
}
.titibenepage h2{
    text-align: left;
    width: 100%;
    height: auto;
    float: left;
    position: relative;
    margin: 10px 0 0 0;
    font-size: 33px;
    line-height: 38px;
    color: #000;
    font-weight: 900;
}
/*
*****************************************************************
    Estilos cuerpo nosotros home
*****************************************************************
*/
.cuerponos img{
    float: left;
    position: relative;
    width: 600px;
    height: auto;
}
.textonos{
    width: calc(100% - 680px);
    height: auto;
    float: right;
    margin: 0;
}
.textonos .botongeneral{
    margin: 20px 20px 0 0;
}
.textonos .botongeneraldos{
    margin: 20px 0 0 0;
    background: none;
    border: solid 1px rgba(0,0,0,0.4);
    color: #000;
    box-sizing: border-box;
}
.textonos .botongeneraldos:hover{
    background: #000;
    color: #fff;
}
/*
*****************************************************************
    Estilos servicios home
*****************************************************************
*/
.cuerposervicios{
    background: #f5f3ea;
}
.titibenepagedos{
    width: 800px;
    max-width: 100%;
    float: none;
    display: inline-block;
}
.titibenepagedos span{
    text-align: center;
    display: inline-block;
    width: auto;
    padding: 0 60px;
    box-sizing: border-box;
    float: none;
}
.titibenepagedos span:before{
    position: absolute;
    content: "";
    width: 50px;
    height: 1px;
    background: #817e7c;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}
.titibenepagedos h2{
    text-align: center;
}
.secservicios{
    width: 100%;
    height: auto;
    float: left;
    position: relative;
}
.secservicioh{
    width: 360px;
    height: auto;
    border-radius: 15px;
    background: #fff;
    display: inline-block;
    vertical-align: top;
    padding: 120px 50px 50px 50px;
    box-sizing: border-box;
    position: relative;
    margin: 20px;
    transition: all 0.25s ease-in-out;
    -moz-transition: all 0.25s ease-in-out;
    -webkit-transition: all 0.25s ease-in-out;
    -o-transition: all 0.25s ease-in-out;
}
.secservicioh:after, .secservicioh:before{
    content: "";
    position: absolute;
    width: 30px;
    height: 30px;
    background: #f5f3ea;
    top: 0;
    left: calc(50% - 79px);
    z-index: 4;
    clip-path: path("M0 0 Q0,30 30,30 L 0 30 Z");
    transform: rotate(180deg);
}
.secservicioh:before{
    left: auto;
    right: calc(50% - 79px);
    transform: rotate(90deg);
}
.iconoserv{
    position: absolute;
    top: 0;
    left: 50%;
    width: 100px;
    height: 100px;
    background: #f5f3ea;
    transform: translateX(-50%);
    border-radius: 100%;
}
.iconoserv img{
    position: absolute;
    top: 50%;
    left: 50%;
    width: 45px;
    height: auto;
    transform: translate(-50%,-50%);
    z-index: 5;
}
.iconoserv:after{
    content: "";
    position: absolute;
    width: 100%;
    height: 50px;
    top: 0;
    left: 0;
    background: #f5f3ea;
    z-index: 2;
}
.secservicioh h3{
    text-align: left;
    width: 100%;
    height: auto;
    float: left;
    position: relative;
    margin: 0 0 20px 0;
    font-size: 21px;
    line-height: 24px;
    transition: all 0.25s ease-in-out;
    -moz-transition: all 0.25s ease-in-out;
    -webkit-transition: all 0.25s ease-in-out;
    -o-transition: all 0.25s ease-in-out;
}
.secservicioh p{
    transition: all 0.25s ease-in-out;
    -moz-transition: all 0.25s ease-in-out;
    -webkit-transition: all 0.25s ease-in-out;
    -o-transition: all 0.25s ease-in-out;
}
.secservicioh:hover{
    background: #c99b00;
}
.secservicioh:hover h3, .secservicioh:hover p{
    color: #fff;
}
.secservicioh .botongeneral{
    margin: 20px 0 0 0;
    background: #f5f3ea;
    box-sizing: border-box;
    color: #000;
}
.secservicioh .botongeneral i{
    margin: 0 0 0 8px;
    transition: all 0.25s ease-in-out;
    -moz-transition: all 0.25s ease-in-out;
    -webkit-transition: all 0.25s ease-in-out;
    -o-transition: all 0.25s ease-in-out;
}
.secservicioh .botongeneral:hover{
    color: #fff;
    background: #000;
}
.secservicioh .botongeneral:hover i{
    transform: translateX(5px);
}
/*
*****************************************************************
    Estilos proceso de trabajo
*****************************************************************
*/
.mySwiper{
    width: 100%;
    height: auto;
    float: left;
    position: relative;
    margin: 20px 0;
    overflow: hidden;
}
.mySwiper .swiper-slide{
    position: relative;
    width: 100%;
    padding: 60px 100px;
    box-sizing: border-box;
}
.mySwiper .swiper-slide img{
    width: 550px;
    float: right;
    position: relative;
    height: auto;
}
.textoproceso{
    width: calc(100% - 550px);
    height: auto;
    float: left;
    position: relative;
    margin-top: 100px;
}
.textoproceso span{
    position: absolute;
    top: -100px;
    left: -50px;
    color: #f5f3ea;
    font-size: 200px;
    text-align: left;
    line-height: normal;
    z-index: 1;
    font-weight: 900;
    opacity: 0.7;
}
.textoproceso h3{
    text-align: left;
    width: 100%;
    height: auto;
    float: left;
    position: relative;
    margin: 0 0 20px 0;
    z-index: 3;
}
.textoproceso p{
    position: relative;
    z-index: 3;
}
.textoproceso .botongeneral{
    margin: 20px 0 0 0;
}
.fotoproceso{
    position: relative;
    width: 400px;
    height: 540px;
    float: right;
    border-radius: 200px 20px 20px 20px;
}
.swiper-button-nextproceso, .swiper-button-prevproceso{
    background: none;
    position: absolute;
    top: 50%;
    left: 0;
    width: auto;
    height: auto;
    transform: translateY(-50%);
    z-index: 10;
    cursor: pointer;
}
.swiper-button-nextproceso i, .swiper-button-prevproceso i{
    font-size: 25px;
}
.swiper-button-nextproceso{
    left: auto;
    right: 0;
}
.swiper-button-nextproceso:hover i, .swiper-button-prevproceso:hover i{
    color: #c99b00;   
}





















/*
*****************************************************************
    Estilos propiedades en venta
*****************************************************************
*/
.cuerpoprop{
    padding: 0 20px 40px 20px !important;
}
.titurlogeneral{
    width: 100%;
    height: auto;
    float: left;
    position: relative;
    margin: 0 0 30px 0;
    padding: 0;
}
.titurlogeneral h3{
    font-size: 30px;
    line-height: 33px;
    text-align: center;
    width: auto;
    color: #211c18;
    font-weight: 700;
    letter-spacing: -1px;
}
.paquetesec{
    width: 100%;
    margin: 10px 0;
    padding: 0;
    background: #fff;
    height: auto;
    position: relative;
    display: inline-block;
    float: left;
    border-radius: 10px;
    overflow: hidden;
    border: solid 1px rgba(0,0,0,0.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;
}
.fotospaquete{
    width: 100%;
    height: 350px;
    position: relative;
    margin: 0;
    z-index: 1;
    float: left;
}
.textopaquete{
    float: left;
    width: 100%;
    height: auto;
    min-height: 100px;
    padding: 30px 60px;
    box-sizing: border-box; 
    position: relative;
    z-index: 2;
    margin: 0;
}
.textopaquete h2{
    font-size: 22px;
    line-height: 25px;
    float: left;
    text-align: left;
    width: 100%;
    color: #000;
    font-weight: 700;
    margin: 0 0 5px 0;
    padding: 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;
}
.textopaquete h2 a{
    font-size: 22px;
    line-height: 25px;
    font-weight: 700;
    color: #000;
}
.textopaquete h2 a:hover{
    color: #c99b00;
}
.textopaquete p{
    text-align: left;
    width: 100%;
    height: auto;
    float: left;
    position: relative;
    margin: 20px 0;
}
.textopaquete .botongeneral{
    width: 100%;
    float: left;
    font-weight: 400;
    font-size: 13px;
    background: #f5f3ea;
    padding: 12px 20px;
    color: #000;
}
.textopaquete .botongeneral:hover{
    background: #c99b00;
    color: #fff;
}
.textopaquete span{
    font-size: 12px;
    text-transform: none;
    color: #595553;
    font-weight: 400;
    margin: 0;
    float: left;
    text-align: left;
    width: 100%;
}
.textopaquete span i{
    font-size: 12px;
    opacity: 0.6;
    margin: 0 5px 0 0;
}
.listacarct{
    width: 100%;
    height: auto;
    float: left;
    margin: 15px 0 10px 0;
    position: relative;
    box-sizing: border-box;
}
.listacarct li{
    list-style: none;
    width: 92px;
    height: auto;
    display: inline-block;
    margin: 0;
    padding: 5px;
    box-sizing: border-box;
    text-align: center;
    font-size: 12px;
    line-height: 21px;
    color: #817e7c;
}
.listacarct li i{
    font-size: 18px;
    opacity: 0.7;
    color: #c99b00;
}
.listacarct li big{
    font-size: 18px;
    font-weight: 700;
    color: #211c18;
}
.botoncomprapac{
    width: 100%;
    height: auto;
    float: left;
    position: relative;
    padding: 0;
    border-top: solid 1px rgba(0,0,0,0.1);
}
.secbotonpac{
    width: 50%;
    height: auto;
    float: left;
    position: relative;
    margin: 0;
    display: inline-block;
    padding: 0 10px;
    box-sizing: border-box;
}
.secbotonpac p{
    font-size: 19px;
    font-weight: 700;
    color: #211c18;
    text-align: center;
    line-height: 48px;
}
.secbotonpac p small{
    font-size: 13px;
}
.secbotonpacenlace{
    background: #211c18;
    padding: 0 20px;
    box-sizing: border-box;
    font-size: 14px;
    font-weight: 400;
    line-height: 50px;
    color: #fff;
    height: 50px;
}
.secbotonpacenlace:hover{
    background: #c99b00;
    color: #fff;
}
.paquetesec .decuentopaq{
    position: absolute;
    top: 20px;
    left: 20px;
    width: auto;
    height: 30px;
    padding: 0 10px;
    z-index: 5;
    background: #211c18;
    color: #fff;
    font-weight: 700;
    text-align: center;
    border-radius: 4px;
    font-size: 11px;
    line-height: 30px;
    text-transform: uppercase;
}
/*
*****************************************************************
    Estilos cuerpo vendemos tu terreno
*****************************************************************
*/
.cuerpovender{
    padding: 100px 20px;
    background: #c99b00;
    overflow: hidden;
    min-height: 300px;
}
.fondovender{
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0.15;
}
.textovender{
    width: calc(100% - 550px);
    height: auto;
    float: left;
    position: relative;
    margin: 0;
    display: inline-block;
    padding: 20px 60px 20px 0;
    box-sizing: border-box;
}
.textovenderpage{
    width: calc(100% - 500px);
    border-right: solid 1px rgba(255,255,255,0.5);
}
.textovender h3{
    font-size: 30px;
    line-height: 34px;
    font-weight: 700;
    text-align: left;
    margin: 30px 0;
    color: #fff;
}
.textovender p{
    font-size: 16px;
    line-height: 25px;
    color: #fff;
    text-align: left;
}
.textovender ul{
    width: 100%;
    height: auto;
    float: left;
    margin: 20px 0 0 0;
}
.textovender ul li{
    list-style: none;
    width: auto;
    height: auto;
    float: left;
    margin: 10px 15px 10px 0;
    color: #211c18;
    text-align: left;
    position: relative;
    padding: 15px 30px 15px 50px;
    box-sizing: border-box;
    font-size: 14px;
    line-height: 19px;
    background: #fff;
    border-radius: 5px;
}
.textovender ul li i{
    position: absolute;
    top: 50%;
    left: 15px;
    font-size: 25px;
    opacity: 0.9;
    width: 25px;
    height: auto;
    text-align: center;
    color: #c99b00;
    transform: translateY(-50%);
}
.textovenderpage img{
    height: 50px;
    width: auto;
    float: left;
    position: relative;
    margin: 0 0 5px 0;
}
.textovenderpage h3{
    width: 100%;
    height: auto;
    float: left;
    text-align: left;
}
.textovenderpage p{
    width: 100%;
    height: auto;
    float: left;
    position: relative;
}
.textovenderpage ul{
    float: left;
    position: relative;
    width: 100%;
    height: auto;
}
.textovenderpage ul li i{
    font-size: 20px;
}
.textovender ul li big{
    color: #211c18;
    font-weight: 700;
    font-size: 20px;
}
.textovenderpage ul li a{
    font-size: 20px;
}
.textovender ul li a:hover{
    color: #c99b00;
}
.formvender{
    width: 550px;
    height: auto;
    position: relative;
    float: right;
    background: #fff;
    border-radius: 10px;
    padding: 30px 40px;
    box-sizing: border-box;
}
.formvendermark{
    width: 500px;
    float: right;
    background: none;
    height: 100%;
    position: absolute;
    top: 0;
    right: 0;
}
.wrapmark{
    height: auto;
    float: left;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
}
.secfomrvendrmark{
    position: absolute;
    top: 50%;
    left: 0;
    padding: 20px 40px;
    box-sizing: border-box;
    transform: translateY(-50%);
}
.secfomrvendrmark p{
    font-size: 16px;
    line-height: 23px;
    text-align: center;
    color: #fff;
    font-weight: 600;
}
.secfomrvendrmark a, .btnwspbene{
    width: auto;
    height: auto;
    display: inline-block;
    padding: 15px 40px;
    background: #00923f;
    border-radius: 60px;
    color: #fff;
    margin: 20px 0 0 0;
    font-size: 14px;
    font-weight: 600;
}
.secfomrvendrmark a:hover, .btnwspbene:hover{
    background: #0ab956;
    color: #fff;
}
.fotomarkjor{
    width: 110px;
    height: 110px;
    display: inline-block;
    border-radius: 100%;
    margin: 0 0 20px 0;
    box-shadow: 0 0 0 10px rgba(255,255,255,0.2), 0 0 0 20px rgba(255,255,255,0.2);
    animation: fotojor 1.2s infinite;
}
@keyframes fotojor{
    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 10px rgba(255,255,255,0.2), 0 0 0 20px rgba(255,255,255,0.2)}
    100%{box-shadow: 0 0 0 10px rgba(255,255,255,0), 0 0 0 20px rgba(255,255,255,0)}
}
.secform{
    width: calc(100% - 20px);
    margin: 10px;
    padding: 0;
    box-sizing: border-box;
    float: left;
    position: relative;
    text-align: left;
    font-family: 'Hind', sans-serif;
    font-size: 16px;
    color: #575d61;
    font-weight: normal;
    line-height: 25px;
}
.secformdos{
    width: calc(50% - 20px);
}
.secform input[type=text], .secform input[type=email], .secform input[type=number], .secform textarea, .secform input[type=date], .secform input[type=tel], .secform select{
    width: 100%;
    position: relative;
    float: left;
    border: none;
    border-bottom: solid 1px rgba(0,0,0,0.15);
    border-radius: 4px;
    height: 35px;
    padding: 0;
    box-sizing: border-box;
    z-index: 2;
    font-size: 14px;
    font-weight: 400;
    font-family: 'Montserrat', sans-serif;
}
#wpcf7-f707-p586-o1{
    float: left;
    width: 100%;
    height: auto;
    margin: 10px 0;
}
.secform input[type=submit]{
    padding: 15px 20px;
    border: none;
    font-weight: bold;
    width: 100%;
    height: auto;
    background: #0a529a;
    font-size: 16px;
    cursor: pointer;
}
.secform input[type=submit]:hover{
    background: #0b86c8;    
}
.secform textarea{
    height: 70px;
}
.secform input[type=submit]{
    width: 100%;
    height: auto;
    background: #c99b00;
    color: #fff;
    padding: 14px 30px;
    float: left;
    border: none;
    border-radius: 30px;
    margin: 10px 0 0 0;
    display: inline-block;
    font-size: 17px;
    font-weight: 400;
    transition: all 0.25s ease-in-out;
    -moz-transition: all 0.25s ease-in-out;
    -webkit-transition: all 0.25s ease-in-out;
    -o-transition: all 0.25s ease-in-out;
}
.secform input[type=submit]:hover{
    background: #fac207;
}
/*
*****************************************************************
    Estilos footer
*****************************************************************
*/
footer{
    background: #211c18;
    width: 100%;
    height: auto;
    float: left;
    position: relative;
    padding: 40px 0 0 0;
    box-sizing: border-box;
    min-height: 100px;
    z-index: 10;
}
.logofoo{
    width: 100%;
    height: auto;
    float: left;
    margin: 10px 0;
}
.logofoo img{
    height: 40px;
    width: auto;
    display: inline-block;
}
.redesfoo{
    width: 100%;
    height: auto;
    float: left;
    margin: 15px 0 0 0;
    padding: 0;
}
.redesfoo a{
    width: 35px;
    height: 35px;
    border-radius: 100%;
    float: left;
    margin: 5px;
    line-height: 40px;
    text-align: center;    
    border: solid 1px rgba(255,255,255,0.4);
}
.redesfoo a i{
    line-height: 35px;
    font-size: 14px;
    color: rgba(255,255,255,0.6);
    transition: all 0.25s ease-in-out;
    -moz-transition: all 0.25s ease-in-out;
    -webkit-transition: all 0.25s ease-in-out;
    -o-transition: all 0.25s ease-in-out;
}
.redesfoo a:hover{
    border-color: #c99b00;
}
.redesfoo a:hover i{
    color: #c99b00;
}
.piefinal{
    width: 100%;
    height: auto;
    float: left;
    position: relative;
    padding: 10px 20px;
    box-sizing: border-box;
    background: #211c18;
    border-top: solid 1px rgba(255,255,255,0.1);
}
.piefinal p{
    width: auto;
    float: left;
    margin: 0 10px 0 0;
    text-align: left;
}
.piefinal p, .piefinal p a{
    color: #737c7c;
    font-size: 12px;
    line-height: 17px;
    text-align: left;
}
.piefinal p a:hover{
    color: #c99b00;
}
.credito{
    position: relative;
    width: 120px;
    float: right;
    display: inline-block;
    margin: 0 0 0 10px;
}
.credito a{
    text-align: right;
    color: #737c7c;
    font-size: 10px;
    line-height: 17px;
    float: none;
    display: inline-block;
    text-transform: uppercase;
    font-weight: normal;
}
.credito img{
    height: 23px;
    margin: 2px 0 0 0;
    opacity: 0.6;
    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;
}
.credito a:hover img{
    opacity: 0.9;
}
/*
*****************************************************************
    Estilos páginas Internas: header
*****************************************************************
*/
.headerinterno{
    background: #211c18;
    position: relative;
    float: left;
}
.bread{
    background: #f5f3ea;
    width: 100%;
    height: auto;
    float: left;
    position: relative;
    padding: 20px;
    box-sizing: border-box;
}
.bread ul{
    position: relative;
    float: left;
    position: relative;
    width: 100%;
    height: auto;
    box-sizing: border-box;
    border-bottom: solid 1px rgba(255,255,255,0.2);
}
.bread ul li{
    float: left;
    position: relative;
    font-size: 11px;
    line-height: 16px;
    font-weight: normal;
    list-style: none;
    margin: 0 5px 0 0;
    color: rgba(0,0,0,0.7);
}
.bread ul li a{
    font-size: 11px;
    line-height: 16px;
    font-weight: normal;
    color: rgba(0,0,0,0.7);
}
.bread ul li a:hover{
    color: #c99b00;
}
.cuerposingle{
    background: #fff;
}
.cuerposingle .wrap{
    width: 950px;
}
.contenidosingle{
    width: calc(100% - 450px);
    float: left;
    position: relative;
}
.sidebar{
    width: 410px;
    float: left;
    margin: 0 0 0 40px;
    position: relative;
    min-height: 100px;
}
.widget{
    position: relative;
    float: left;
    width: 100%;
    background: #fff;
    box-shadow: 0 5px 25px 0 rgba(33,28,24,0.1);
    border-radius: 5px;
    padding: 30px 40px;
    box-sizing: border-box;
    margin: 0 0 30px 0;
}
.widgetdesc{
    margin: 0 0 30px 0;
}
.widgetdesc ul{
    width: 100%;
    height: auto;
    float: left;
    position: relative;
}
.widgetdesc ul li{
    width: 100%;
    height: auto;
    float: left;
    position: relative;
    padding: 0 0 0 14px;
    box-sizing: border-box;
    text-align: left;
    list-style: none;
    color: #575d61;
}
.widgetdesc ul li:after{
    content: "";
    position: absolute;
    top: 11px;
    left: 0;
    width: 5px;
    height: 5px;
    border-radius: 100%;
    background: rgba(0,0,0,0.3);
}
.widget h1, .widget h2{
    text-align: left;
    font-size: 20px;
    line-height: 24px;
    width: 100%;
    height: auto;
    float: left;
    margin: 0 0 5px 0;
}
.widget h2{
    font-size: 16px;
    line-height: 20px;
    margin: 0 0 20px 0;
}
.ubicacion{
    text-align: left;
    width: 100%;
    height: auto;
    float: left;
    padding: 0 0 10px 0;
    margin: 0 0 10px 0;
    border-bottom: solid 1px rgba(0,0,0,0.1);
    font-size: 13px;
    color: rgba(0,0,0,0.6);
}
.ubicacion i{
    margin: 0 5px 0 0;
    color: rgba(0,0,0,0.4);
}
.preciowidget{
    font-size: 40px;
    line-height: 40px;
    font-weight: 700;
    text-align: left;
    width: 100%;
    height: auto;
    float: left;
    color: #211c18;
    margin: 10px 0 0 0;
}
.preciowidget small{
    font-size: 20px;
}
.blocks-gallery-grid, .wp-block-gallery{
    float: left;
    margin: 0 0 10px 0;
}
.widcompra{
    background: linear-gradient(135deg,#c99b00,#4c4123);
    padding: 60px 40px;
}
.fotocompra{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.06;
    z-index: 1;
}
.textocompra{
    width: 100%;
    height: auto;
    position: relative;
    float: left;
    z-index: 2;
}
.textocompra h3{
    text-align: left;
    color: #fff;
    margin: 0 0 20px 0;
    font-size: 25px;
    line-height: 28px;
}
.textocompra p{
    color: #fff;
    text-align: left;
    font-size: 15px;
    line-height: 23px;
}
.textocompra p i{
    margin: 0 0 0 4px;
    animation: moverflecha 1.2s infinite;
}
@keyframes moverflecha{
    0%{transform: translateY(-3px);}
    50%{transform: translateY(3px);}
    100%{transform: translateY(-3px);}
}
.botoncompra{
    width: 100%;
    max-width: 370px;
    margin: 30px 0 0 0;
    background: #fff;
    font-size: 15px;
    text-align: center;
    position: relative;
    overflow: hidden;
    color: #211c18;
    font-weight: 700;
    float: none;
    display: inline-block;
    box-shadow: 0 4px 20px 0 rgba(44,68,6,0.4);
}
.botoncompra i{
    position: absolute;
    top: 4px;
    left: 4px;
    width: 45px;
    height: 45px;
    background: #77ba0e;
    border-radius: 100%;
    font-size: 25px;
    line-height: 45px;
    color: rgba(255,255,255,0.9);
    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;
}
.botoncompra:hover{
    background: #5c8f0b;
    color: #fff;
    transform: translateY(-5px);
    box-shadow: 0 10px 25px 0 rgba(44,68,6,0.7);
}
.cuerporela h3{
    margin: 0 0 20px 0;
    font-size: 22px;
    line-height: 25px;
}
.blocks-gallery-item{
    padding: 0 !important;
}
.blocks-gallery-item:after{
    display: none;
}
.widget .listacarct li{
    width: 33.3%;
    float: left;
}
.cuerporela{
    background: #f5f3ea;
}
.cuerporela .wrap{
    width: 950px;
}
.cuerposingle h2, .cuerposingle h3, .cuerposingle h4{
    width: 100%;
    height: auto;
    float: left;
    position: relative;
    text-align: left;
    font-size: 30px;
    line-height: normal;
}
.cuerposingle h3{
    font-size: 24px;
}
.cuerposingle h4{
    font-size: 20px;
}
.seccontenidosingle{
    position: relative;
    width: 100%;
    height: auto;
    float: left;
}
.seccontenidosingle img{
    width: auto;
    height: auto;
    max-width: 100%;
    display: inline-block;
    border-radius: 20px;
    margin: 15px 0;
}
.seccontenidosingle ul{
    width: 100%;
    height: auto;
    float: left;
    position: relative;
    padding: 0 0 0 20px;
    box-sizing: border-box;
}
.seccontenidosingle ul li{
    width: 100%;
    height: auto;
    float: left;
    position: relative;
    text-align: left;
}
/*
*****************************************************************
    Estilos categoria paquetes de viaje
*****************************************************************
*/
/*
 * estilo navegación de páginas
*/
.pagenavi {
    margin: 15px 0 0 0;
    float: left;
    width: 100%;
    padding: 0 10px;
    box-sizing: border-box;
    font-family: 'Open Sans', sans-serif;
}
.pagenavi a {
   	display: inline-block;
   	padding: 0;
    margin: 3px;
    height: 35px;
    width: 35px;
    overflow: hidden;
    font-size: 14px;
    line-height: 35px;
    text-align: center;
    background: #ecf2f5;
	border-radius: 100%;
    float: left;
    font-weight: bold;
    color: #000;
    font-family: 'Open Sans', sans-serif;
    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;
}
.pagenavi a:hover {
    background: #fff;
    color: #000;
}
.pagenavi span.pages {
	display: inline-block;
    padding: 0;
    margin: 3px;
    height: 35px;
    width: 35px;
    color: #000;
    font-size: 14px;
    line-height: 35px;
    font-weight:bold;
    background: #fff;
    border-radius: 100%;
}
.pagenavi span.current {
	display: inline-block;
   	padding: 0;
    margin: 3px;
    height: 35px;
    width: 35px;    
    overflow: hidden;
    font-size: 14px;
    line-height: 35px;
    text-align: center;
    background: #000;
	border-radius: 100%;
    float: left;
    font-weight: bold;
    color: #fff;
}
.pagenavi span.expand {
	display: inline-block;
    padding: 0;
    margin: 3px;
    height: 35px;
    width: 35px;
    font-size: 14px;
    line-height: 35px;
    overflow: hidden;
    color: #000;
    text-align: center;
    background: #fff;
	border-radius: 50%;
}
.pagenavi .first, .pagenavi .last {
	display: inline-block;
	font-size: 14px;
    line-height: 35px;
}
.pagenavi .single_page {
	display: inline-block;
	font-size: 14px;
    line-height: 35px;
}

/*
*****************************************************************
    Estilos single blog
*****************************************************************
*/
.slidersingleblog{
    height: 500px;
}
.cuerposingleblog{
    background: none;
    margin-top: -150px;
}
.contenidoblog{
    border-radius: 30px;
    padding: 0;
    box-sizing: border-box;
    position: relative;
}
.titulosingleblog{
    width: 100%;
    height: auto;
    float: left;
    position: relative;
    margin: 0 0 20px 0;
}
.titulosingleblog h1{
    font-family: 'Hind', sans-serif;
    font-size: 40px;
    line-height: 44px;
    text-align: center;
    margin: 0;
    width: 750px;
    max-width: 100%;
    height: auto;
    display: inline-block;
}
.titulosingleblog .listadatsingleblog{
    border: none;
    margin: 0;
}
.titulosingleblog .listadatsingleblog li{
    float: none;
    display: inline-block;
}
.textocontblog img{
    width: auto;
    max-width: 100%;
    height: auto;
    display: inline-block;
    margin: 10px 0;
}
.textocontblog ul{
    width: 100%;
    height: auto;
    position: relative;
    padding: 0 0 0 20px;
    box-sizing: border-box;
}
.textocontblog ul li{
    font-family: 'Hind', sans-serif;
    font-size: 16px;
    color: #575d61;
    font-weight: normal;
    line-height: 25px;
    width: 100%;
    height: auto;
    text-align: left;
}
.textocontblog h2{
    font-size: 25px;
    line-height: 28px;
}
.textocontblog h3{
    font-size: 21px;
    line-height: 24px;
}
div.flex-video {
    position: relative;
    padding-bottom: 56.25%;
    padding-top: 30px;
    padding-left: 55px;
    padding-right: 40px;
    height: 0;
    overflow: hidden;
    margin: 30px 0; /* esto es opcional */
    clear: both;
    z-index: 2;
    box-shadow: 0 0 20px 0 rgba(0,0,0,0.2);
}
div.flex-video iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.likefacebook{
    float: right;
    margin: 0 0 15px 15px;
    width: 300px;
    max-width: 100%;
    height: auto;
}
.socialdiv, .etiquetas{
    float: left;
    width: 100%;
    height: auto;
    padding: 10px 0;    
    box-sizing: border-box;
    margin: 30px 0 0 0;
    border-top: solid 1px rgba(0,0,0,0.1)
}
.socialdiv p{
    text-align: left;
    float: left;
    text-transform: uppercase;
    font-size: 12px;
    font-weight: bold;
    margin: 9px 5px 0 0;
    vertical-align: middle;
}
.shared-social{
	width: auto;
	height: 36px;
	float: left;
	margin: 0 5px 5px 5px;
	position: relative;
    vertical-align: middle;
    border-radius: 30px;
    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;
}
.shared-social span{
    height: 35px;
    padding: 0 15px 0 10px;
    text-decoration: none;
    margin: 0;
    color: #fff;
    line-height: 36px;
    font-size: 12px;
    float: left;
    width: auto;
}
.shared-social a{
    text-decoration: none;
    text-transform: none;
    line-height: 35px;
    color: #fff;
}
.shared-social a:hover{
    color: #fff;
}
.shared-social i{
    float: left;
    height: 35px;
    line-height: 35px;
    width: 35px;
    background: #325292;
    text-align: center;
    color: #fff;
    padding: 0;
    margin: 0;
    border-right: solid 1px rgba(255,255,255,0.1);
}
.face-shared{
    background: #304a80;
}
.face-shared:hover{
    background: #325292;
}
.twit-shared{
    background: #2097c9;
}
.twit-shared:hover{
    background: #28aae1;
}
.twit-shared i{
    background: #28aae1;
}
.google-shared{
    background: #ba3929;
}
.google-shared:hover{
    background: #dd4b39;
}
.google-shared i{
    background: #dd4b39;
}
.secblogcat{
    width: 100%;
    margin: 0 0 40px 0;
}
.secblogcat .fotobloghome{
    height: 410px;
}



.wpcf7-form-control-wrap {
    position: relative;
    width: 100%;
    float: left;
}
span.wpcf7-not-valid-tip {
    color: #f00;
    font-size: 10px;
    font-weight: normal;
    display: block;
    top: -25px;
    right: 1px;
    width: auto;
    position: absolute;
    text-align: right;
    background: #d74747;
    padding: 2px 5px;
    color: #fff;
    border-radius: 3px;
    z-index: 10;
}
span.wpcf7-not-valid-tip:after{
    content: "";
    position: absolute;
    bottom: -3px;
    left: 15px;
    height: 6px;
    width: 6px;
    background: #d74747;
    transform: rotate(45deg);
    -o-transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
}
div.wpcf7-response-output {
    margin: 5px 0 !important;
    padding: 7px 13px !important;
    border: none !important;
    position: relative;
    border-radius: 4px;
    background: #cfc06c;
    border: none;
    text-align: left;
    width: 100%;
    font-size: 14px;
    box-sizing: border-box;
    float: left;
    color: #1e324a;
}
.sliderpage{
    width: 100%;
    height: auto;
    float: left;
    position: relative;
    background: #211c18;
}
.fotosliderpage{
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0.25;
    z-index: 1;
}
.sombramenu{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 150px;
    background: linear-gradient(rgba(0,0,0,0.6),rgba(0,0,0,0));
    -o-background: linear-gradient(rgba(0,0,0,0.6),rgba(0,0,0,0));
    -webkit-background: linear-gradient(rgba(0,0,0,0.6),rgba(0,0,0,0));
    -moz-background: linear-gradient(rgba(0,0,0,0.6),rgba(0,0,0,0));
    z-index: 2;
}
.slidertitulopage{
    position: relative;
    width: 100%;
    max-width: 100%;
    height: auto;
    z-index: 4;
    float: left;
    padding: 170px 600px 90px 20px;
    box-sizing: border-box;
    float: left;
}
.slidertitulopage h1{
    color: #fff;
    font-size: 35px;
    line-height: 38px;
    text-align: left;
    margin: 0 0 15px 0;
}
.slidertitulopage p{
    text-align: left;
    font-size: 16px;
    line-height: 22px;
    color: rgba(255,255,255,0.85);
}
.slidertitulopage ul{
    width: 100%;
    height: auto;
    float: left;
    position: relative;
    margin: 20px 0 30px 0;
}
.slidertitulopage ul li{
    width: 100%;
    height: auto;
    float: left;
    position: relative;
    margin: 3px 0;
    text-align: left;
    color: #fff;
    list-style: none;
    padding-left: 20px;
    box-sizing: border-box;
}
.slidertitulopage ul li:after{
    content: "\f058";
    position: absolute;
    top: 0;
    left: 0;
    font-family: "FontAwesome";
    font-size: 12px;
    color: #c99b00;
}
.slidertitulopage img{
    position: absolute;
    bottom: -60px;
    right: 0;
    width: 750px;
    height: auto;
}
.secbenepage{
    width: 100%;
    height: auto;
    float: left;
    position: relative;
    padding-left: 480px;
    box-sizing: border-box;
}
.fotobenepage{
    width: 400px;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 20px;
}
.fotobenepage:after,.fotobenepage:before{
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    left: -20px;
    top: 20px;
    border-radius: 20px;
    border: solid 2px #ece0b8;
    box-sizing: border-box;
    z-index: 1;
}
.fotobenepage:before{
    left: auto;
    top: -20px;
    right: -20px;
}
.listabenepage{
    width: 100%;
    height: auto;
    float: left;
    position: relative;
    margin-top: 20px;
}
.listabenepage li{
    list-style: none;
    width: 100%;
    margin: 10px 0;
    float: left;
    position: relative;
    text-align: left;
    background: #f5f3ea;
    border-radius: 5px;
    padding: 14px 20px 14px 90px;
    box-sizing: border-box;
    overflow: hidden;
    font-size: 15px;
    line-height: 22px;
}
.listabenepage li .iconolistapage{
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 85px;
    text-align: center;
}
.iconbenepage1{
    position: absolute;
    top: 50%;
    left: 50%;
    height: 40px;
    width: auto;
    transform: translate(-50%,-50%);
    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;
}
.iconbenepage2{
    opacity: 0;
    transform: translateY(50px) translateX(-50%);
}
.listabenepage li:hover{
    transform: translateX(5px);
    background: #c99b00;
    color: #fff;
}
.listabenepage li:hover .iconbenepage1{
    opacity: 0;
    transform: translateY(-50px) translateX(-50%);
}
.listabenepage li:hover .iconbenepage2{
    opacity: 1;
    transform: translateY(-50%) translateX(-50%);
}
.listabenemas{
    width: 100%;
    height: auto;
    float: left;
    position: relative;
}
.listabenemas li{
    list-style: none;
    width: calc(25% - 20px);
    height: auto;
    float: left;
    position: relative;
    margin: 10px;
}
.listabenemas li img{
    height: 50px;
    width: auto;
    display: inline-block;
}
.listabenemas li span{
    font-size: 16px;
    line-height: normal;
    font-weight: 600;
    text-align: center;
    width: 100%;
    height: auto;
    float: left;
    position: relative;
    margin: 15px 0;
    color: #211c18;
}
.listabenemas li p{
    text-align: center;
    font-size: 15px;
    line-height: 22px;
}
.cuerpologos{
    padding: 60px 20px;
    background: #fff;
}
.cuerpologos .titibenepage h2{
    color: #000;
}
.logoseccion{
    width: 100%;
    height: auto;
    position: relative;
    float: left;
}
.cuerpologos img{
    width: auto;
    height: auto;
    display: inline-block;
    vertical-align: middle;
    max-width: 170px;
    max-height: 35px;
    margin: 20px;
    filter: grayscale(1);
    opacity: 0.75;
    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;
}
.cuerpologos img:hover{
    opacity: 1;
    filter: grayscale(0);
    opacity: 1;
}
.cuerpocoti{
    height: auto;
    min-height: 50px;
}
.cuerpocoti .fondovender{
    opacity: 0.05;
}
.titibenepagetres{
    width: 100%;
    float: left;
    padding-right: 400px;
    box-sizing: border-box;
}
.titibenepagetres span{
    color: #fff;
}
.titibenepagetres span:after{
    background: #fff;
}
.titibenepagetres h2{
    color: #fff;
    text-align: left;
    margin-bottom: 30px;
}
.titibenepagetres p{
    color: #fff;
    text-align: left;
    font-size: 16px;
    line-height: 26px;
    font-weight: 600;
}
.titibenepagetres .btnwspbene{
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
}
.secfoo{
    width: 25%;
    height: auto;
    float: left;
    position: relative;
    padding: 20px;
    box-sizing: border-box;
}
.secfoo img{
    float: left;
    position: relative;
    height: 40px;
    width: auto;
}
.secfoo p{
    width: 100%;
    height: auto;
    float: left;
    position: relative;
    font-size: 13px;
    line-height: 22px;
    text-align: left;
    color: rgba(255,255,255,0.9);
    margin: 20px 0 0 0;
}
.secfoo h4{
    width: 100%;
    height: auto;
    float: left;
    position: relative;
    margin: 0 0 20px 0;
    font-size: 17px;
    color: #fff;
    text-align: left;
    text-transform: uppercase;
}
.secfoo ul{
    width: 100%;
    height: auto;
    float: left;
    position: relative;
    padding-left: 20px;
    box-sizing: border-box;
}
.secfoo ul li{
    width: 100%;
    height: auto;
    float: left;
    margin: px 0;
}
.secfoo ul li a{
    font-size: 13px;
    width: 100%;
    height: auto;
    float: left;
    position: relative;
    text-align: left;
    color: rgba(255,255,255,0.9);
    margin: 0;
    padding: 0;
}
.secfoo ul li a:hover{
    color: #c99b00;
}
.listacontacto{
    padding: 0 !important;
}
.listacontacto li{
    list-style: none;
    padding: 0 !important;
    margin: 5px 0 !important;
}
.listacontacto li a{
    padding: 12px 30px 12px 50px !important;
    background: #00923f;
    border-radius: 40px;
    color: #fff !important;
    line-height: 16px !important;
    font-weight: 600 !important;
    font-size: 15px !important;
}
.listacontacto li i{
    position: absolute;
    top: 50%;
    left: 20px;
    font-size: 18px;
    color: #fff;
    transform: translateY(-50%);
}
.listacontacto li a small{
    font-size: 12px !important;
    font-weight: 400 !important;
}
.listacontacto li a:hover{
    background: #0ab956;
}
.listacontacto li:nth-child(2) a{
    background: #c99b00 !important;
}
.listacontacto li:nth-child(2) a:hover{
    background: #fcc50e !important;
}
.listacontacto li:nth-child(3) a{
    background: #465ba1 !important;
}
.listacontacto li:nth-child(3) a:hover{
    background: #5e74bc !important;
}
.listabeneseo li{
    width: calc(33.3% - 20px);
    margin: 10px;
    min-height: 230px;
}
.listabeneseo li small{
    width: 60px;
    height: 60px;
    background: #211c18;
    color: #fff;
    text-align: center;
    line-height: 60px;
    font-size: 30px;
    font-weight: 600;
    margin: 0 0 15px 0;
    display: inline-block;
    border-radius: 4px;
    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;
}
.listabeneseo li:hover small{
    background: #c99b00;
}
.sliderpagedos{
    height: 350px;
}
.sliderpagedos .slidertitulopage ul{
    margin: 0;
}
.sliderpagedos .slidertitulopage ul li:after{
    display: none;
}
.sliderpagedos .slidertitulopage ul li{
    float: left;
    width: auto;
    font-size: 13px;
    color: rgba(255,255,255,0.6);
    padding: 0;
    margin: 0 4px;
}
.sliderpagedos .slidertitulopage ul li a{
    font-size: 13px;
    color: rgba(255,255,255,0.6);
}
.logoshosting{
    width: 600px;
    max-width: 50%;
    height: auto;
    position: absolute;
    right: 50%;
    top: 50%;
    padding: 0 40px;
    box-sizing: border-box;
    max-height: 100%;
    transform: translateY(-50%);
}
.logoshosting img{
    width: auto;
    height: auto;
    max-width: 120px;
    max-height: 60px;
    margin: 20px;
    display: inline-block;
}
.textologoshost{
    width: 600px;
    max-width: 50%;
    float: left;
    left: 50%;
    position: relative;
}
.textologoshost h2{
    color: #fff;
    margin: 0 0 20px 0;
    font-size: 30px;
    line-height: 35px;
}
.textologoshost p{
    color: #fff;
}
.cuerpossl{
    background: #f5f3ea;
    padding: 40px 20px;
}
.secssl{
    width: 900px;
    height: auto;
    display: inline-block;
    max-width: 100%;
    padding-left: 200px;
    box-sizing: border-box;
    position: relative;
}
.secssl img{
    float: left;
    position: absolute;
    height: 120px;
    width: auto;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}
.cuerpossl h2{
    text-align: left;
    color: #83c927;
    margin: 0 0 10px 0;
}
.planeshostcent{
    width: 100%;
    height: auto;
    float: left;
    position: relative;
}
.planhost{
    width: 340px;
    max-width: 100%;
    display: inline-block;
    border-radius: 20px;
    padding: 40px 0 0 0;
    position: relative;
    overflow: hidden;
    margin: 10px;
    vertical-align: top;
    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;
}
.ofertaplan{
    position: relative;
    width: 250px;
    height: 40px;
    background: red;
    color: #fff;
    font-weight: 700;
    text-transform: uppercase;
    display: inline-block;
    float: none;
    border-radius: 30px 30px 0 0;
    line-height: 40px;
    text-align: center;
}
.tituloplanhost{
    width: 100%;
    height: auto;
    padding: 30px 50px;
    box-sizing: border-box;
    position: relative;
    background: #bc9a12;
    float: left;
    border-radius: 20px 20px 0 0;
}
.tituloplanhost span{
    font-size: 25px;
    line-height: 29px;
    width: 100%;
    height: auto;
    float: left;
    position: relative;
    text-align: center;
    font-weight: 900;
    text-transform: uppercase;
    color: #fff;
    margin: 0 0 10px 0;
}
.tituloplanhost h3{
    font-size: 14px;
    line-height: 18px;
    width: 100%;
    height: auto;
    float: left;
    position: relative;
    text-align: center;
    color: rgba(255,255,255,0.9);
}
.textoplanhost{
    width: 100%;
    height: auto;
    float: left;
    position: relative;
    padding: 30px 40px;
    box-sizing: border-box;
    background: #f5f3ea;
}
.textoplanhost ul{
    width: 100%;
    height: auto;
    float: left;
    position: relative;
    margin: 0;
}
.textoplanhost ul li{
    width: 100%;
    height: auto;
    float: left;
    position: relative;
    text-align: left;
    list-style: none;
    padding: 0 0 0 23px;
    box-sizing: border-box;
    margin: 3px 0;
}
.textoplanhost ul li i{
    position: absolute;
    top: 5px;
    left: 0;
    font-size: 13px;
    color: #bc9a12;
}
.preciohost{
    width: 100%;
    height: auto;
    float: left;
    margin: 20px 0;
    padding: 10px 0 15px 0;
    box-sizing: border-box;
    border-top: solid 1px rgba(255,255,255,0.2);
    border-bottom: solid 1px rgba(255,255,255,0.2);
}
.preciohost p{
    color: #bc9a12;
    text-align: center;
    width: auto;
    position: relative;
    font-size: 35px;
    line-height: 25px;
    font-weight: 900;
    padding-right: 45px;
    box-sizing: border-box;
    display: inline-block;
}
.preciohost p big{
    font-size: 15px;
    font-weight: 500;
    color: red;
    text-decoration: line-through;
}
.preciohost p small{
    position: absolute;
    top: 20px;
    right: 0;
    width: 40px;
    text-align: left;
    font-size: 14px;
    font-weight: 600;
    line-height: 17px;
}
.textoplanhost .botongeneral{
    display: inline-block;
    float: none;
}
.planhost:hover{
    transform: translateY(-10px);
}
/*
*****************************************************************
    Estilos pagina de contacto
*****************************************************************
*/
.secdatoscontacto{
    width: 100%;
    height: auto;
    float: left;
    position: relative;
    margin: 20px 0 0 0;
}
.secdatoscontacto ul{
    width: 100%;
    height: auto;
    float: left;
    position: relative;
}
.secdatoscontacto ul li{
    width: 100%;
    left: auto;
    float: left;
    position: relative;
    text-align: left;
    margin: 10px 0;
    list-style: none;
    padding: 0 0 0 60px;
    box-sizing: border-box;
}
.secdatoscontacto ul li i{
    color: rgba(0,0,0,0.6);
    font-size: 30px;
    position: absolute;
    top: 5px;
    left: 0;
    width: 50px;
    height: auto;
    text-align: center;
}
.secdatoscontacto ul li a{
    font-weight: 700;
    font-size: 17px;
}
/*
*****************************************************************
    Estilos pagina de nosotros
*****************************************************************
*/
.cuerpovalores{
    background: #f5f3ea;
}
.listavalores img{
    display: inline-block;
    height: 40px;
    width: auto;
    margin: 0 0 10px 0;
}
/*
***************************************************************
    Estilos responsivos
***************************************************************
*/
@media only screen and (max-width : 1150px) {
    .cuerponos img {
        width: 400px;
    }
    .textonos {
        width: calc(100% - 440px);
    }
}
@media only screen and (max-width : 1100px) {
    .menu{
        display: none;
    }    
    .menu2{
        display: inline-block;
        position: relative;
        float: right;
        width: auto;
        z-index: 3;
        margin: 0;
    }
    .menu2 .menuresp{
        height: 50px;
        line-height: 50px;
        width: auto;
        padding: 0 25px 0 45px;
        margin: 15px 10px;
        background: #f5f3ea;
        display: inline-block;
        border-radius: 50px;
        position: relative;
        color: #000;
        box-sizing: border-box;
        float: right;
        font-size: 13px;
        text-decoration: none;
        font-weight: 700;
    }
    .menu2 .menuresp i{
        position: absolute;
        top: 0;
        left: 20px;
        color: #000;
        font-size: 16px;
        text-align: center;
        line-height: 50px;
    }
    .menu2 .menuresp:hover{
        background: #c99b00;
        color: #fff;
    }
    .menu2 .menuresp:hover i, .menu2:hover .menuresp i{
        color: #fff;
    }
    .menu2:hover .menuresp{
        background: #c99b00;
        color: #fff;
    }
    .menu2 .acordion{
        width: 210px;
        height: auto;
        float: left;
        background: #fff;
        border-radius: 3px;
        position: absolute;
        top: 70px;
        left: 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 20px;
        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.1);
        float: left;
        text-align: left;
        padding: 10px 0;
        font-weight: normal;
        font-size: 13px;
        color: #000;
        font-weight: 700;
    }
    .menu2 .acordion li:last-child a{
        border: none;
    }
    .menu2 .acordion li ul{
        display: none;
    }
    .menu2 ul li.current-menu-item > a:hover:not(.current-menu-item){
        color: #c99b00;
    }
    .menu2 ul li a:hover:not(.current-menu-item){		
        color: #c99b00;
    }
    .menu2 ul li a:hover, 
    .menu2 ul li.current-menu-item > a, 
    .menu2 ul li.current_page_item > a {	
        color: #c99b00;
    }
    .headerdos .menu2 .menuresp{
        margin: 5px 10px;
    }
    .mySwiper .swiper-slide {
        padding: 20px 40px;
    }
    .textoproceso span {
        left: -40px;
    }
    .fotoproceso {
        width: 350px;
        height: 480px;
    }
    .textoproceso {
        width: calc(100% - 400px);
        margin-top: 60px;
    }
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    .textovender {
        width: calc(100% - 420px);
        padding: 20px 40px 20px 0;
    }
    .formvender {
        width: 420px;
        padding: 20px 30px;
    }
    .secformdos {
        width: calc(100% - 20px);
    }
    .contenidosingle {
        width: 100%;
    }
    .sidebar {
        width: 100%;
        margin: 0;
    }
    .slidertitulopage {
        padding: 150px 20px 70px 20px;
    }
    .slidertitulopage img {
        bottom: -60px;
        right: -70px;
        width: 650px;
    }
}
@media only screen and (max-width : 900px) {
    .slidertexto {
        padding: 160px 20px 50px 20px;
    }
    .slidertexto h1 {
        font-size: 40px;
        line-height: 43px;
        margin: 0 0 20px 0;
    }
    .slidertextobot {
        padding: 30px 20px 40px 20px;
    }
    .slidertextobot p {
        width: 100%;
        font-size: 19px;
        line-height: 23px;
    }
    .slidertextobot .botongeneral {
        position: relative;
        top: 0;
        right: 0;
        transform: translateY(0);
        float: left;
        margin: 20px 0 0 0;
    }
    .cuerponos img {
        width: 450px;
        max-width: 100%;
        float: none;
        display: inline-block;
    }
    .textonos {
        width: 100%;
        float: left;
        margin: 30px 0 0 0;
    }
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    .seccontenidopage, .secpaquetesingle{
        width: 100%;
    }
    .slidertitulopage {
        padding: 150px 20px 20px 20px;
    }
    .slidertitulopage img {
        bottom: -60px;
        right: auto;
        left: auto;
        position: relative;
        display: inline-block;
        width: 550px;
        max-width: 100%;
        float: none;
        left: auto;
        margin: 0;
    }
    .slidertitulopage h1 {
        font-size: 27px;
        line-height: 31px;
    }
    .secbenepage {
        padding-left: 0;
    }
    .fotobenepage {
        width: 100%;
        height: 380px;
        position: relative;
        float: left;
        margin: 0 0 40px 0;
    }
    .titibenepage span {
        font-size: 11px;
        letter-spacing: 3px;
    }
    .titibenepage h2 {
        margin: 5px 0 0 0;
        font-size: 25px;
        line-height: 29px;
    }
    .textovender {
        width: 100%;
        padding: 0 0 20px 0;
        border: none;
        border-bottom: solid 1px rgba(255,255,255,0.5);
    }
    .formvendermark {
        width: 100%;
        float: left;
        height: auto;
        position: relative;
        float: left;
        padding: 20px 0;
    }
    .secfomrvendrmark {
        position: relative;
        top: 0;
        padding: 20px 0;
        transform: translateY(0);
    }
    .listabenemas li {
        width: 100%;
        margin: 10px 0;
    }
    .titibenepagetres {
        padding-right: 0;
        margin: 0;
    }
    .titibenepagetres h2{
        margin: 5px 0 10px 0;
    }
    .titibenepagetres p {
        font-size: 15px;
        line-height: normal;
        font-weight: 400;
    }
    .titibenepagetres .btnwspbene {
        position: relative;
        top: 0;
        right: 0;
        transform: translateY(0);
        float: left;
        margin: 20px 0 0 0;
    }
    .cuerpovender {
        padding: 50px 20px;
    }
    .logoshosting{
        width: 100%;
        max-width: 100%;
        position: relative;
        right: 0;
        top: 0;
        padding: 0;
        transform: translateY(0);
        float: left;
        text-align: center;
    }
    .logoshosting img{
        max-width: 100px;
        max-height: 50px;
        margin: 10px;
    }
    .textologoshost{
        width: 100%;
        max-width: 100%;
        float: left;
        left: 0;
        position: relative;
        margin: 30px 0 0 0;
    }
    .textologoshost h2 {
        margin: 0 0 15px 0;
        font-size: 21px;
        line-height: 24px;
        text-align: center;
    }
    .textologoshost p{
        text-align: center;
    }
}
@media only screen and (max-width : 850px) {
    .secformdos {
        width: calc(100% - 20px);
    }
    .textovender h3 {
        font-size: 25px;
        line-height: 29px;
        margin: 15px 0;
    }
    .textovender ul li{
        float: none;
        display: inline-block;
        margin: 10px;
    }
}
@media only screen and (max-width : 820px) {
    .logo {
        height: 35px;
    }
    .textoproceso span {
        left: -40px;
        top: -50px
    }
    .fotoproceso {
        width: 350px;
        height: 400px;
        float: none;
        display: inline-block;
        margin: 20px 0 0 0;
    }
    .textoproceso {
        width: 100%;
        margin-top: 0;
    }
    
    
    
    
    
    
    
    
    
    
    
    
    
    

    
    
    
    
    
    
    
    
    
    .slidertop .swiper-slide{
        height: 510px;
    }
    .slidertextouno h1 {
        font-size: 40px;
        line-height: 43px;
        margin: 0 0 25px 0;
    }
    .slidertextouno span {
        font-size: 14px;
        line-height: 17px;
        padding: 0 0 0 70px;
    }
    .slidertextouno span:after {
        top: 7px;
        width: 60px;
    }
    .slidertextouno p {
        font-size: 16px;
        line-height: 26px;
    }
    .sombramenu{
        display: none;
    }
    .thumbnail {
        opacity: 0.6;
    }
    #headdos .menu2{
        position: relative;
    }
    .secmenubuscardos{        
        position: absolute;
        top: 0;
        right: 100px;
        z-index: 800;
        width: auto;
    }
    .secpaquete{        
        width: 50%;
    }
    .secblog {
        margin: 10px 0;
        width: 450px;
        max-width: 100%;
        float: none;
        display: inline-block;
    }
    .secfoo{
        width: 100%;
        padding: 20px;
    }
    .secfoologo {
        padding: 140px 20px 20px 20px;
    }
    .secfoo .logo {
        height: 100px;
        padding: 10px 30px 10px 20px;
    }
    .sliderpaquetesingle{
        height: 400px;
    }
    .slidertextopaqeuqtesingle{
        bottom: 60px;
        padding: 20px 20px;
    }
    .slidertextopaqeuqtesingle span {
        font-size: 12px;
        line-height: 15px;
        padding: 0 0 0 40px;
    }
    .slidertextopaqeuqtesingle span:after {
        top: 7px;
        width: 30px;
    }
    .sliderpaquetesingle .slidertextopaqeuqtesingle h1 {
        font-size: 33px;
        line-height: 36px;
    }
}
@media only screen and (max-width : 750px) {
    .secreapertura {
        font-size: 40px;
        line-height: 44px;
        width: 100%;
        text-align: center;
        border: none;
    }
    .efectoletras {
        width: 100%;
        text-align: center;
    }
    .efectoletras span {
        font-size: 17px;
        text-align: center;
    }
}
@media only screen and (max-width : 700px) {
    .slidertexto h1 {
        font-size: 30px;
        line-height: 33px;
        margin: 0 0 20px 0;
    }
    .slidertextobot {
        padding: 30px 20px 40px 20px;
    }
    .slidertextobot p {
        width: 100%;
        font-size: 17px;
        line-height: 21px;
    }
}
@media only screen and (max-width : 610px) {
    .cotizartop{
        padding: 0 25px;
        height: 45px;
        margin: 10px 0;
    }
    .cotizartop p{
        display: none;
    }
    .cotizartop i{
        left: 17px;
    }
    header .wrap{
        padding: 0 20px;
        height: 65px;
    }
    .logo img {
        height: 40px;
        width: auto;
        margin: 10px 0;
    }
    .menu2 .menuresp {
        margin: 10px 5px;
        height: 45px;
        line-height: 45px;
    }
    .menu2 .menuresp i{
        line-height: 45px;
    }
    .headerdos{
        padding: 0 15px;
        height: 55px;
    }
    .headerdos .logo img{
        height: 40px;
    }
    .fotospaquete {
        height: 280px;
    }
    .textopaquete {
        padding: 20px 30px;
    }
    .textopaquete h2 a {
        font-size: 18px;
        line-height: 21px;
    }
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    .paquetecat {
        width: 370px !important;
        max-width: 100%;
        margin: 15px 0;
        float: none;
    }
    .sliderpaquetesingle .slidertextopaqeuqtesingle h1 {
        font-size: 27px;
        line-height: 30px;
    }
    .textocompra h3 {
        margin: 0 0 15px 0;
        font-size: 20px;
        line-height: 23px;
    }
    p, ul li{
        font-size: 14px;
        line-height: 24px;
    }
    .secssl {
        float: left;
        padding-left: 0;
    }
    .secssl img {
        float: none;
        display: inline-block;
        position: relative;
        height: 90px;
        top: 0;
        transform: translateY(0);
    }
    .cuerpossl h2 {
        text-align: center;
        margin: 0 0 10px 0;
        font-size: 21px;
        line-height: 24px;
    }
    .cuerpossl p{
        text-align: center;
    }
}
@media only screen and (max-width : 550px) {
    .contactotop a:last-child{
        display: none;
    }
    .titurlogeneral h3 {
        font-size: 23px;
        line-height: 26px;
    }
}
@media only screen and (max-width : 510px) {
    .cuerposingle{
        padding: 20px;
    }
    .widget{
        padding: 20px;
    }
    .preciowidget {
        font-size: 30px;
        line-height: 30px;
    }
    .botoncompra span{
        display: none;
    }
}
@media only screen and (max-width : 450px) {
    .redesconttop{
        display: none;
    }
    .redestop{
        border: none;
    }
}