@charset "utf-8";
/* CSS Document */



body, html { 
	padding: 0; 
	margin: 0;
	line-height: 1;
	width:100%;
	font-size: 13px;
	color: #646464;
	font-family: 'Montserrat', sans-serif;
	}


body{
	/*overflow: hidden;*/
	}



html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, font, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend, h1,h2,h3,h4
{
	border: 0;
	font-style: inherit;
	font-weight: normal;
	margin: 0;
	outline: 0;
	padding: 0;
}

p, a, li, div{ margin:0; padding:0; }

a{ 
	text-decoration:none;
}

a img{ border:none;}

:focus, a:focus {
	outline: 0!important;
	text-decoration: none!important;
}

.nav > li > a:hover, .nav > li > a:focus {
    text-decoration: none;
    background: none;
}

ol, ul {
	list-style: none;
	margin:0;
	padding:0;
}

.clear{ clear:both;}

.clear:after{
	display: block;
	content: '';
	clear:both;
}

*, *:after, *:before {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing:border-box;
}  



.padding-remove{
	padding: 0;
}

.padding-remove-l{
	padding-left: 0;
}


.padding-remove-r{
	padding-right: 0;
}


a:hover, a:focus{
	text-decoration: none;
	color: #787878;
}


form:after{
	display: block;
	content: '';
	clear: both;
}









/*HEADER --------------------------------------*/
header {
	height: 130px;
	left: 0;
    padding: 17px 0 0;
    position: absolute;
    width: 100%;
	z-index: 2;
}

div#logo {
    position: absolute;
    left: 0;
    top: 0;
    width: auto;
	padding-right: 15px;
    background-color: #fff;
    padding-top: 23px;
    padding-bottom: 19px;
    z-index: 8;
}



div#navbar {
	position: initial;
	z-index: 3;
	float: left;
	margin-right: 90px;
}


nav.navbar {
    border: 0;
    margin-bottom: 0;
    min-height: inherit;
    float: right;
    position: relative;
    top: 74px;
    text-align: right;
}




.navbar-nav>li + li {
    margin-left: 31px;
}



.navbar-nav>li>a {
    font-size: 11px;
    color: #fff;
    font-weight: 700;
    letter-spacing: 0.5px;
    padding: 15px 0px 15px;
    position: relative;
    -webkit-transition: 0.4s;
    -moz-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
}

.navbar-nav>li>a:after{
	display: block;
	width: 100%;
	content: '';
	height: 2px;
	background-color: #468492;
	position: absolute;
	bottom: 20px;
	left: 0;
	opacity: 0;
	filter: alpha(opacity=0);
	-webkit-transition: 0.4s;
	-moz-transition: 0.4s;
	-o-transition: 0.4s;
	transition: 0.4s;
}




.navbar-nav>li>a:hover:after, .navbar-nav>li.active>a:after{
	bottom: 0px;
	opacity: 1;
	filter: alpha(opacity=100);
}

.navbar-nav>li:first-child>a {
    /* padding-left: 0; */
}


.navbar-nav>li:last-child>a {
    padding-right: 0;
}


.navbar-nav>li>a:hover, .navbar-nav>li.active>a {
    color: #81c4c3;
}



.navbar-nav>li.btn, nav.navbar div.btn{
	margin: 0;
	padding: 0;
	border: 0;
	margin-left: 19px;
}

.navbar-nav>li.btn a, nav.navbar div.btn a, footer a.btn{
	background-color: #81c4c3;
	display: inline-block;
	text-align: center;
	padding: 15px 30px 15px;
	color: #fff;
	border-radius: 10px;
}

.navbar-nav>li.btn a:after, nav.navbar div.btn a:after{
	display: none;
}

.navbar-nav>li.btn a:hover, nav.navbar div.btn a:hover{
	background-color: #fff;
	color: #81c4c3;
}


li.dropdown {
    position: inherit;
}

.navbar-nav>li>.dropdown-menu {
    width: 100%;
    position: absolute;
    
	padding-left: 7px;
    padding-top: 20px;
    background-color: transparent;
    -webkit-box-shadow: none;
    box-shadow: none;
    border: 0;
}

.navbar-nav>li>.dropdown-menu ul{
	background-color: #fff;
	margin: 0;
	padding: 8px 12px;
}

.dropdown-menu ul >li>a {
    display: block;
    padding: 5px 0px;
    color: #9ad0cf;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.5px;
    -webkit-transition: 0.4s;
    -moz-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
}

.dropdown-menu ul >li>a span{
	font-size: 9px;
	font-weight: 600;
}


.dropdown-menu ul>li>a:hover, .dropdown-menu ul>li>a.active{
	color: #471444;
	background-color: transparent;
}





.navbar-header {
    position: absolute;
    width: 100%;
}

div#logo a img {
    display: block;
    margin: 0;
}


#buscar{
    float: left;
	display: none;
}

#buscar a{
	display: block;
    padding: 10px 75px 10px 10px;
}

#buscar a img{
	-webkit-transition: 0.4s;
	-moz-transition: 0.4s;
	-o-transition: 0.4s;
	transition: 0.4s;
}

#buscar a img:hover{
	-webkit-transform: scale(1.08);
	-moz-transform: scale(1.08);
	-ms-transform: scale(1.08);
	-o-transform: scale(1.08);
	transform: scale(1.08);
}

#buscar a img{}



.container-fluid.conpad{
	width: 100%;
	padding-left: 289px;
	/* padding-left: 20%; */
}

/*------------------------------------------------------------------

	SLIDER

-------------------------------------------------------------------*/





div#slider {
  	margin-bottom: -1px; 
}






div#slider .item{
	height: 690px;
	width: 100%;
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
}




div#slider .slider-in {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
}

div#slider .item .container-fluid {
    display: inline-block;
    align-self: center;
}



h1{
	color: #fff;
	font-size: 52px;
    line-height: 61px;
}


div#slider h1{
    font-weight: 800;
    margin-bottom: 25px;
    margin-top: 140px;
}
div#slider h1 strong{
	font-weight: 800;
}



a.btn, div.abtn{
	background-color:#81c4c3;
	display: inline-block;
	border: 0;
	border-radius: 0px;
	text-align: left;
	padding: 12px 50px 12px 15px;
	font-size: 13px;
	color: #fff;
	font-weight: 700;
	letter-spacing: 0px;
	-webkit-transition: 0.4s;
	-moz-transition: 0.4s;
	-o-transition: 0.4s;
	transition: 0.4s;
}

a.btn:hover, a.btn:focus, .modulo:hover .abtn{
	background-color:#fff;
	color: #81c4c3;
}



/*------------------------------------------------------------------

	CONTENIDO

-------------------------------------------------------------------*/



.row.col-equal {
	display: table;
	height: 100%;
	width: 100%;
}

.col-equal > [class*="col-"] {
	float: none;
	display: table-cell;
	height: 100%;
	vertical-align: middle;
}





.nomargin {
    margin: 0;
}


.padding-remove {
    padding: 0;
}


.modulo {
    position: relative;
    height: 100%;
    display: block;
	overflow: hidden;
}


.modulo > img.m-img {
    width: 100%;
}

.modulo:before {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background-color: rgb(133 99 131 / 60%);
    background: rgba(133,99,131,.6);
    background: linear-gradient(77deg, rgba(133,99,131,.6) 20%, rgba(133,99,131,0) 100%);
    content: '';
    left: -60%;
    opacity: 0;
    -webkit-transition: 0.4s;
    -moz-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
}


.modulo:hover:before {
    left: 0;
    opacity: .8;
}





.modulo-in{
	position: absolute;
	z-index: 3;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	display: inline-flex;
}

.modulo-in > .row{
	display: inline-block;
    width: 100%;
	align-self: flex-end; /*bottom*/ 
}


.modulo-in .align-right .text-left {
    float: right;
}

.modulo-in h1 {
    font-weight: 700;
    margin-bottom: 20px;
}


.modulo-in .mas {
    color: #fff;
    font-size: 120px;
    line-height: 100px;
    font-weight: 600;
}

.mb-40{
	margin-bottom: 40px;
}


/*------------------------------------------------------------------

	FOOTER

-------------------------------------------------------------------*/


footer {
    padding: 40px 0 90px;
    line-height: 23px;
	position: relative;
	color: #9d9d9e;
}


footer ul {
    margin: 0;
}

footer h6{
	color: #9d9d9e;
	font-size: 11px;
	font-weight: 700;
	margin-bottom: 7px;
}



footer ul li a, footer a, footer p {
	font-size: 10px;
	color: #9d9d9e;
	font-weight: 400;
	display: block;
}


footer a {
    display: inline-block;
}

footer p strong{
	font-weight: 600;
}

footer ul li a span{
	font-size: 9px;
}


footer ul li +li{
    margin-left: 0;
}


footer a:hover, footer a.active{
	color: #000;
}


.row.flex{
	display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.row.flex .col{
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -ms-flex-positive: 1;
    flex-grow: 1;
    max-width: 100%;
}


.col-sm-20{
	position: relative;
    min-height: 1px;
    padding-right: 15px;
    padding-left: 15px;
}


footer a.btn{
    background-color: #471444;
    float: right;
    margin-right: 90px;
    font-size: 11px;
    letter-spacing: 0.5px;
}
footer a.btn:hover, footer a.btn:focus{
	background-color: #81c4c3;
	color: #fff;
}







/*------------------------------------------------------------------

	MODAL

-------------------------------------------------------------------*/












.modal-dialog {
    background-color: #81c4c3;
}


button.close-modal {
    position: absolute;
	z-index: 9;
    right: 0;
    top: 0;
    border: 0;
    border-radius: 0;
    width: 50px;
    height: 50px;
    color: #fff;
    background-color: #471444;
    line-height: 40px;
    font-size: 19px;
	-webkit-transition: 0.4s;
	-moz-transition: 0.4s;
	-o-transition: 0.4s;
	transition: 0.4s;
}

button.close-modal:hover{
	background-color: #fff;
	color: #81c4c3;
}


#modalcontacto div#logo {
    position: relative;
    left: 0;
    top: 0;
    width: auto;
    display: inline-block;
    padding: 20px 35px;
    background-color: #fff;
    z-index: 3;
}



#modalcontacto h1{
    font-weight: 700;
    margin-bottom: 25px;
    font-size: 45px;
}

.modal-content img {
    vertical-align: middle;
    max-width: 100%;
    height: auto;
}


.modal-backdrop.in {
    filter: alpha(opacity=70);
    opacity: .7;
	background-color: #fff;
}


#modalcontacto form#contact-form {
    width: 470px;
}

.modal-dialog:after {
    position: absolute;
    bottom: 0;
    width: 65.66%;
    height: 13px;
    right: 0;
    content: '';
    background-color: #471444;
}


.form-group{
    margin-bottom: 12px;
}

#modalcontacto .form-control{
    border: 0;
    border-radius: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
    font-size: 13px;
    border: 1px solid #9ad0cf;
    background-color: transparent;
    height: 38px;
    padding: 0px 12px;
    color: #fff;
}


#modalcontacto .form-control::-webkit-input-placeholder{
	   color:#fff;
	}

#modalcontacto .form-control:-moz-placeholder{ /* Firefox 18- */
	   color:#fff; 
	}

#modalcontacto .form-control::-moz-placeholder{  /* Firefox 19+ */
	   color:#fff; 
	}

#modalcontacto .form-control:-ms-input-placeholder{  
	   color:#fff;
	}

#modalcontacto .form-control:focus {
    border-color: #fff;
    outline: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
}



#modalcontacto #enviar{
	background-color: #fff;
    display: inline-block;
	margin-top: 30px;
    border: 0;
    border-radius: 0px;
    text-align: left;
    padding: 16px 81px 16px 15px;
    font-size: 13px;
    color: #81c4c3;
    font-weight: 700;
    letter-spacing: 0px;
    -webkit-transition: 0.4s;
    -moz-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
}


#modalcontacto #enviar:hover{
	background-color: #471444;
    color: #fff;
}




.form-control:focus::-webkit-input-placeholder{
	   color:transparent;
	}

.form-control:focus:-moz-placeholder{ /* Firefox 18- */
	   color:transparent; 
	}

.form-control:focus::-moz-placeholder{  /* Firefox 19+ */
	   color:transparent; 
	}

.form-control:focus:-ms-input-placeholder{  
	   color:transparent;
	}






/*------------------------------------------------------------------

	INTERNAS

-------------------------------------------------------------------*/

.interna{}


body.interna footer, body.contact footer{
	border-top: 1px solid #dadadb;
}


body.interna div#slider .item {
    height: 620px;
}



body.interna div#slider .item .num{
    font-size: 120px;
    font-weight: 600;
    color: #fff;
    position: relative;
    left: -8px;
    margin-bottom: 21px;
}
body.interna div#slider .item .container-fluid, body.contact div#slider .item .container-fluid {
    display: inline-block;
    align-self: flex-end;
	margin-bottom: 66px;
}

body.interna div#slider h1, body.contact div#slider h1 {
    font-weight: 800;
    margin-top: 0;
    margin-bottom: 0px;
	white-space: nowrap;
}


body.interna div#slider a.btn{
	margin-top: 30px;
	background-color: #fff;
    color: #81c4c3;
}
body.interna div#slider a.btn:hover{
	margin-top: 30px;
	background-color: #81c4c3;
    color: #fff;
}



.interna section{
	
}

.interna section .conpad{
}


body.contact{
	
}

body.contact section{
	padding: 67px 0 160px;
}

body.contact section .contacto{
	max-width: 700px;
}







body.contact div#slider{
	background-color: #461344;
}


body.contact div#slider .item {
    height: 490px;
}




body .contacto h6{
	font-weight: 500;
	font-size: 15px;
	color: #9d9d9e;
	margin: 47px 0 30px;
}


.datos{}

.datos ul{}

.datos ul li + li {
    margin-top: 15px;
}

.datos ul li span, .datos ul li  a{
	display: inline-block;
	text-align: left;
	font-weight: 600;
}

.datos ul li span{
	width: 110px;
	font-size: 11px;
	color: #81c4c3;
}

.datos ul li a{
	font-size: 15px;
	color: #471444;
	-webkit-transition: 0.4s;
	-moz-transition: 0.4s;
	-o-transition: 0.4s;
	transition: 0.4s;
}

.datos ul li a:hover{
	color: #81c4c3;
	
}


.form-control{
    border: 0;
    border-radius: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
    font-size: 13px;
    border: 1px solid #dadadb;
    background-color: transparent;
    height: 38px;
    padding: 0px 12px;
    color: #dadadb;
}


.form-control::-webkit-input-placeholder{
	   color:#dadadb;
	}

.form-control:-moz-placeholder{ /* Firefox 18- */
	   color:#dadadb; 
	}

.form-control::-moz-placeholder{  /* Firefox 19+ */
	   color:#dadadb; 
	}

.form-control:-ms-input-placeholder{  
	   color:#dadadb;
	}

.form-control:focus {
    border-color: #929293;
    outline: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
}



#enviar{
	background-color: #81c4c3;
    display: inline-block;
	margin-top: 30px;
    border: 0;
    border-radius: 0px;
    text-align: left;
    padding: 16px 81px 16px 15px;
    font-size: 13px;
    color: #fff;
    font-weight: 700;
    letter-spacing: 0px;
    -webkit-transition: 0.4s;
    -moz-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
}


#enviar:hover{
	background-color: #471444;
    color: #fff;
}




body.interna div#slider{
	background-color: #e0dce0;
	}

body.interna div#slider .item{
    background-image: url(images/slider-bg.png);
    height: 620px;
    width: 100%;
    background-repeat: no-repeat;
    background-position: bottom right;
    background-size: auto;
}





body.interna div#slider .item > .row, body.interna div#slider .item > .row [class*="col-"]{
	height: 100%
}


.slideimg {
    height: 100%;
    margin-left: 0;
	display: flex;
}

.slideimg img{
	display: inline-block;
    align-self: center; 
	margin: 86px auto 0;
    margin-left: 15%;
}



.productos h3 {
    font-size: 54px;
    font-weight: 700;
    color: #81c4c3;
    margin: 76px 0 50px;
}





.proyect-box{
	margin-bottom: 36px;
	display: block;
	position: relative;
}

.proyect-box:hover{
	cursor: pointer;
}



.proyect-box .img{
	height: 310px;
	width: 100%;
	overflow: hidden;
}



.proyect-box .img img{
	width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
	-webkit-transition: 0.9s;
	-moz-transition: 0.9s;
	-o-transition: 0.9s;
	transition: 0.9s;
}





.caption{
	position: absolute;
	bottom: 0;
	width: 100%;
	height: 47px;
}

.proyect-box .titulo{
	float: left;
	height: 100%;
	width: 269px;
	line-height: 47px;
	padding-left: 15px;
	background-color: #fff;
	color: #81c4c3;
	font-size: 11px;
	font-weight: 700;
	-webkit-transition: 0.4s;
	-moz-transition: 0.4s;
	-o-transition: 0.4s;
	transition: 0.4s;
}

.proyect-box .titulo span {
    font-size: 10px;
    padding-right: 3px;
}

.proyect-box .mas{
	float: right;
	text-align: center;
	width: 52px;
	height: 100%;
	line-height: 45px;
	background-color: #461344;
	color: #fff;
	font-size: 33px;
	padding-left: 0;
	font-weight: 100;
	padding: 0;
	-webkit-transition: 0.4s;
	-moz-transition: 0.4s;
	-o-transition: 0.4s;
	transition: 0.4s;
}





.proyect-box:hover .img img{
	-webkit-transform: scale(1.1);
	-moz-transform: scale(1.1);
	-ms-transform: scale(1.1);
	-o-transform: scale(1.1);
	transform: scale(1.1);
}



.proyect-box:hover .titulo{
	color:#461344;
}


.proyect-box .mas:hover{
	background-color: #81c4c3;
}


.banner{
	background-position: center;
	background-size: cover;
	margin-bottom: 30px;
}

.banner h1 {
    color: #81c4c3;
    text-align: center;
    padding: 120px 20px 110px;
    font-weight: 600;
}




/*------------------------------------------------------------------

	BACK TO TOP

-------------------------------------------------------------------*/
#gotop {
    cursor: pointer;
    position: absolute;
    top: 60px;
    right: 55px;
    display: none;
    z-index: 20;
    width: 48px;
    height: 48px;
    background: #5768af;
    border-radius: 50%;
    border: none;
    padding: 15px;
    -webkit-transition: 0.4s;
    -moz-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
}

#gotop:after {
    content: '\f106';
    font-family: FontAwesome;
    color: #fff;
    font-size: 26px;
    line-height: 17px;
}

#gotop:hover{
	background-color: #94d5de;
}

#gotop:hover:after{
	color: #5768af;
}








@media only screen and (min-width: 1499px) {
	.container-fluid.conpad{
	
	}

}


@media only screen and (max-width: 1450px) {
	.container-fluid.conpad{
	padding-left: 240px;
	}

}


@media only screen and (max-width: 1399px)  and (min-width: 1199px) {
	.container-fluid.conpad {
    padding-left: 150px;
	}
}


@media only screen and (max-width: 1199px) {
	nav.navbar div.btn a {
    margin-right: 15px;
	}
	
	
	div#slider .item{
    height: 600px;
	}
	
	div#slider .item{
    height: 600px;
	}
	.container-fluid.conpad {
    padding-left: 189px	;
	}
	h1 {
    font-size: 44px;
    line-height: 50px;	
	}
	.modulo-in h1 {
    margin-bottom: 15px;
    font-size: 40px;
    line-height: 45px;
	}
	.modulo-in .mas {
    font-size: 87px;
    line-height: 74px;
	}
	#buscar a {
    padding-right: 35px;
	}
	.navbar-nav>li.btn a,nav.navbar div.btn a, footer a.btn {
    padding: 15px 20px 15px;
	}
	footer a.btn {
    margin-right: 15px;
    letter-spacing: 0px;
	}
	
	.caption {
    height: 40px;
	}
	.proyect-box .titulo {
    width: 85%;
    line-height: 40px;
	}
	.proyect-box .mas {
    width: 15%;
    height: 100%;
    line-height: 40px;
	}
	

}





@media only screen and (min-width: 992px) {
	.modal-dialog {
	width: 900px;
    padding:80px 0px 80px 0;
	}
}


@media only screen and (max-width: 991px) {
	.modal-dialog {
    width: 90%;
	padding:60px 0px;
	margin: 0 auto;
	}
}





@media only screen and (min-width: 901px) {
	.visible-xsm{
	display: none;
	}
}

@media only screen (min-width: 769px){
	.hidden-xsm{
	display: none;
	}
}
@media only screen and (max-width: 991px) and (min-width: 768px){
	.proyect-box .img {
    height: 250px;
	}
}








@media only screen and (max-width: 900px) and (min-width: 768px){
	
	.container-fluid.conpad {
    padding-left: 100px;
	}
	.modulo-in h1 {
    margin-bottom: 9px;
    font-size: 31px;
    line-height: 35px;
	}
	a.btn, div.abtn {
    font-size: 11px;
	}
	#buscar a {
    padding-right: 15px;
	}
	footer a.btn {
    margin-right: 50px;
	}
	div#navbar {
    padding-right: 0;
	}
	footer .logo {
    margin-bottom: 6px;
	}

	footer .logo img {
    width: 58px;
	}
	
	
}

@media only screen and (min-width: 768px) {
	.col-sm-20{
	width: 20%;
	float: left;
	}
	
	
	

}


@media only screen and (max-width: 768px) {

}

@media only screen and (max-width: 767px) {
	.container-fluid.conpad {
    padding-left: 160px;
	}
	nav.navbar, .navbar-toggle, #buscar {
    float: none;
	}
	nav.navbar {
    top: 0px;
    padding-top: 70px;
	}
	div#buscar {
	display: none!important
	}
	#buscar a {
    padding-right: 0;
	}
	
	
	header {
    padding: 0px 0 0;
	}
	
	nav.navbar div.btn {
    position: absolute;
    right: 0px;
    top: 0px;
	}
	
	
	
	.navbar-toggle .icon-bar {
    background-color: #fff;
	}
	
	
	div#navbar {
	float: none;
    background-color: #fff;
    position: absolute;
    width: 100%;
    top: 0;
	}
	
	
	button.navbar-toggle, nav.navbar div.btn {
    z-index: 9;
	}
	.navbar-nav {
	margin: 110px 15px 7.5px;
    padding: 10px 0 20px;
	}
	
	.navbar-toggle[aria-expanded="true"] .icon-bar {
    background-color: #000;
	}
	
	.navbar-nav>li>a {
    font-size: 13px;
    color: #818181;
	padding-bottom: 10px;
	}
	.navbar-nav>li.btn, nav.navbar div.btn {
	margin-left: 0;
    margin-top: 15px;
    margin-right: 0;
    text-align: right;
	}
	
	
	li.dropdown {
    position: relative;
    margin-bottom: 6px;
	}
	
	.navbar-nav>li>.dropdown-menu {
    position: relative;
    display: block!important;
    text-align: right;
    padding-left: 7px;
    padding-top: 0px;
    float: none;
	}
	
	.navbar-nav>li>.dropdown-menu ul {
    padding: 0;
	}
	
	.dropdown-menu ul >li>a {
	text-transform: uppercase;
	}
	
	.navbar-nav>li>a:after{
	display: none;
	}
	
	
	.modulo-in .mas {
    text-align: left;
	}
	.modulo.fondo-xs {
    height: 250px;
	
	}
	.modulo.fondo-xs img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
	
	}
	footer [class*="col-"]{
	margin-bottom: 15px;
	}
	footer a.btn {
    float: none;
    margin-top: 10px;
    margin-left: -5px;
	}
	footer {
    padding-bottom:  10px;
	text-align: center;
	}
	
	
	footer .text-left {
    text-align: center;
	}
	footer .logo img {
    margin: 0 auto;
	}
	
	footer a.btn {
    margin: 10px auto;
    text-align: center;
	}
	
	
	
	body.contact div#slider .item {
    height: 390px;
	}
	

	.modal-dialog {
    padding: 0px 15px 40px;
	}
	#modalcontacto div#logo {
    left: -15px;
    margin-bottom: 20px;
    width: 119px;
    padding: 16px;
	}
	#modalcontacto form#contact-form {
    width: 100%;
	}
	.modal-dialog:after {
    width: 100%;
	}
	
	body.interna .container-fluid.conpad {
    padding-left: 15px;
	}
	
	
	body.interna div#slider h1 {
    white-space: inherit;
	}
	
	body.interna div#slider .item {
    height: 100%;
	}
	
	body.interna div#slider .item > .row, body.interna div#slider .item > .row [class*="col-"] {
    height: auto;
	}
	body.interna div#slider .slider-in {
    position: relative;
	margin-top: 140px;
	}
	body.interna div#slider .item .container-fluid {
    margin-bottom: 0px;
	}
	body.interna .slideimg {
    height: auto;
	}
	
	body.interna .slideimg img {
    max-height: 230px;
    margin: 30px auto 20px;
	}
}

@media only screen and (max-width: 668px) {
	.container-fluid.conpad {
    padding-left: 60px;
	}
	div#logo {
    padding-right: 3px;
    padding-top: 15px;
    padding-bottom: 15px;
	}
	div#logo a img {
    width: 80px;
	}
	
	
	
}
@media only screen and (min-width: 568px) {
	/*body.interna .slideimg img {
    margin-left: 15px;
	}*/
	
	
	body.interna .slideimg.prod3 img {
    /*margin-left: 70px;*/
    margin-top: 25px;
	}
		
}


@media only screen and (min-width: 486px) {
	
}

@media only screen and (max-width: 485px) {
	h1 {
    font-size: 35px;
    line-height: 50px;
	}
	
	.productos h3 {
    font-size: 30px;
	}
	div#slider .item .container-fluid {
    padding-left: 15px;
	}
	.modulo {
    height: 400px;
	}
	.modulo img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
	}
	.modulo.fondo-xs {
    height: 230px;
	}
	#modalcontacto h1 {
    font-size: 30px;
	}
	
	body.contact div#slider .item {
    height: 320px;
	}
	body.contact div#slider .item .container-fluid {
    margin-bottom: 45px;
	}
	
	body.interna div#slider .item{
	background-position-x: 80%;
    background-position-y: bottom;
	}
	.banner h1 {
    padding: 50px 20px 50px;
	}
	
	.container-fluid.conpad {
    padding-left: 15px;
	}
}

@media only screen and (max-width: 414px) {	

}

@media only screen and (max-width: 375px) {
	nav.navbar div.btn a {
    font-size: 12px;
	}
}


@media only screen and (max-width: 360px) {
	
}

@media only screen and (max-width: 320px) {
	nav.navbar div.btn a {
    font-size: 10px;
	}
}
















