/*==================   RD Mobile Menu    =====================*/
.rd-mobilemenu {
  	display: none;
  	position: fixed;
  	top: 0;
  	left: 0;
  	bottom: 0;
  	z-index: 9999999;
  	text-align: left;
  	-moz-transition: 0.3s all ease;
  	-o-transition: 0.3s all ease;
  	-webkit-transition: 0.3s all ease;
	font-family: 'Open Sans', sans-serif !important;
  	transition: 0.3s all ease;
}
.rd-mobilemenu.active {
  	right: 0;
}
ul.rd-mobilemenu_ul {
    position: fixed;
    top: -66px;
    left: 0;
    bottom: -35px;
    width: 240px;
    padding: 132px 0 76px;
    color: #fff;
    background: rgba(0,0,0,0.9);
    font-size: 14px;
    line-height: 20px;
  	font-weight: 600 !important;
    padding-left:0 !important;
    overflow: auto;
    -moz-transform: translateX(-240px);
    -ms-transform: translateX(-240px);
    -o-transform: translateX(-240px);
    -webkit-transform: translateX(-240px);
    transform: translateX(-240px);
    -moz-transition: 0.3s ease;
    -o-transition: 0.3s ease;
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease;
    -moz-transition: 0.3s cubic-bezier(0.55, 0, 0.1, 1);
    -o-transition: 0.3s cubic-bezier(0.55, 0, 0.1, 1);
    -webkit-transition: 0.3s cubic-bezier(0.55, 0, 0.1, 1);
    transition: 0.3s cubic-bezier(0.55, 0, 0.1, 1);
}
.rd-mobilemenu.active ul.rd-mobilemenu_ul {
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
    -webkit-transform: translateX(0);
    transform: translateX(0); 
	box-shadow: 0 0 7px 0px rgba(0,0,0,0.3);
}
ul.rd-mobilemenu_ul a {  
	display: block; padding: 10px 25px 12px; color:#fff; font-weight:600; text-decoration: none !important
}
ul.rd-mobilemenu_ul ul a{padding: 8px 25px 8px;}
ul.rd-mobilemenu_ul a.active {background: #bd0808; color:#fff; }
ul.rd-mobilemenu_ul a:hover { background: #bd0808; color:#fff;}
ul.rd-mobilemenu_ul a .rd-submenu-toggle {
    position: absolute;
    top: 50%;
    right: 11px;
    margin-top: -17.5px;
    width: 32px;
    height: 32px;
    font: 400 10px "FontAwesome";
    line-height: 32px;
    text-align: center;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    -moz-transition: 0.5s all ease;
    -o-transition: 0.5s all ease;
    -webkit-transition: 0.5s all ease;
    transition: 0.5s all ease;
    z-index: 1;
    background: rgba(0, 0, 0, 0.1); 
}
ul.rd-mobilemenu_ul a .rd-submenu-toggle:after {content: '\f078';  }
ul.rd-mobilemenu_ul a .rd-submenu-toggle:hover {
	background: #FFF;
	color: #666;
}
ul.rd-mobilemenu_ul a.rd-with-ul {position: relative;}
ul.rd-mobilemenu_ul a.rd-with-ul.active .rd-submenu-toggle {
    -moz-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    -o-transform: rotate(180deg);
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
}
ul.rd-mobilemenu_ul ul a {padding-left: 40px; }
ul.rd-mobilemenu_ul ul ul a {padding-left: 60px; }
ul.rd-mobilemenu_ul:after {
    content: '';
    display: block;
    height: 20px; 
}
.rd-mobilepanel {
  	display: none;
  	position: fixed;
  	top: 0;
  	left: 0;
  	height: 56px;
  	color: #000;
  	z-index: 99999991;
  	background: transparent;
}
.rd-mobilepanel_title {
  	position: absolute;
  	padding-top:0;
  	margin-top:0;
  	text-align:center;
  	left: 78px;
  	right: 56px;
  	color: #000;
  	font-size: 24px;
  	text-overflow: ellipsis;
  	white-space: nowrap;
}

.rd-mobilepanel_toggle {
  	position: absolute;
  	border:none;
  	background: #bd0808;
  	top: 2px;
  	left: 8px;
  	width: 48px;
  	height: 48px;
  	border-radius: 3px;
  	margin-bottom: 0 !important;
}
.rd-mobilepanel_toggle span {
  	position: relative;
  	display: block;
  	margin: auto;
  	-moz-transition: all 0.3s ease;
  	-o-transition: all 0.3s ease;
  	-webkit-transition: all 0.3s ease;
  	transition: all 0.3s ease;
}
.rd-mobilepanel_toggle span:after, 
.rd-mobilepanel_toggle span:before {
  	content: "";
  	position: absolute;
  	left: 0;
  	top: -8px;
  	-moz-transition: all 0.3s ease;
  	-o-transition: all 0.3s ease;
  	-webkit-transition: all 0.3s ease;
  	transition: all 0.3s ease;
}
.rd-mobilepanel_toggle span:after {
  	top: 8px;
}
.rd-mobilepanel_toggle span:after, 
.rd-mobilepanel_toggle span:before,
.rd-mobilepanel_toggle span {
  	width: 24px;
  	height: 4px;
  	background-color: #fff;
  	backface-visibility: hidden;
  	-webkit-border-radius: 2px;
  	-moz-border-radius: 2px;
  	border-radius: 2px;
}
.rd-mobilepanel_toggle span:before, 
.rd-mobilepanel_toggle span:after {
  	-webkit-transition-duration: 0.3s, 0.3s;
  	transition-duration: 0.3s, 0.3s;
  	-webkit-transition-delay: 0.3s, 0s;
  	transition-delay: 0.3s, 0s;
  	-webkit-transition-property: top, -webkit-transform;
  	transition-property: top, transform;
}
.rd-mobilepanel_toggle.active span {
  	transition: background .3s 0s ease;
  	background: transparent;
}
.rd-mobilepanel_toggle.active span:before, .rd-mobilepanel_toggle.active span:after {
  	top: 0;
  	-webkit-transition-delay: 0s, 0.3s;
  	transition-delay: 0s, 0.3s;
}
.rd-mobilepanel_toggle.active span:before {
  	-webkit-transform: rotate(45deg);
  	-ms-transform: rotate(45deg);
  	transform: rotate(45deg);
}
.rd-mobilepanel_toggle.active span:after {
  	-webkit-transform: rotate(-45deg);
  	-ms-transform: rotate(-45deg);
  	transform: rotate(-45deg);
}
.rd-mobilepanel_title{padding: 8px 0 0 !important;height: 56px !important;}
.rd-mobilepanel_title #logo img{
	max-width: 140px;
	display: block;
	height: auto;
	position: relative;
	top: -2px;
}

@media (max-width: 767px) {
    .rd-mobilemenu, 
    .rd-mobilepanel {  display: block; } 

}

@media (max-width: 1480px) {
	#logoTop figure {
		max-width: 219px;
		margin: 10px 0;
	}
	#main.contact{
		padding-top: 120px;
	}
	#main.contact::before {
		height: 120px;
	}
}

@media (min-width: 1280px){
	.container {
    	max-width: 1280px;
  	}
}

@media (max-width: 1280px) {
	.bxslider li figcaption{font-size: 50px;}
	#product .container {
		max-width: 1000px !important;
	}
	#product .der h2{
		font-size: 27px;
	}
	#product .der h1 {
		font-size: 44px;
	}
}
@media (max-width: 1199px) {
	a#toTop{
		bottom: 80px
	}
}

@media (max-width: 1099px) {
	.bxslider li figcaption{font-size: 44px;}
	#logoTop figure {
		max-width: 210px;
		margin: 0;
	}
	#home-2 .img {
		width: 50%;
		padding-left: 30px;
	}
	#about .row1 .separator ,
	#about .row2 .separator {
		position: absolute;
		right: auto;
		left: 50%;
		top: 50%;
		transform: translate(-50%, -50%);
	}
	#about .textRight {
		width: 50%;
		padding-left: 35px;
	}
	#about .row1 .img,
	#about .row2 .img{
		width: 50%;
		padding-right: 20px;
	}
	#products figcaption {
		font-size: 24px;
	}
	#main.contact{
		padding-top: 100px;
	}
	#main.contact::before {
		height: 100px;
	}
	#product .der h1 {
		font-size: 40px;
	}
	#product .der h2 {
		font-size: 22px;
	}
	.titAcordeon {
		font-size: 24px;
	}
	.contentAcordeon {
		font-size: 23px;
	}
	.titAcordeon svg {
		top: 0;
		right: 0;
		width: 22px;
		height: 22px;
	}
}
/*Fin 1099*/

@media (max-width: 991px) {
	#menuTop .sf-menu > li {
		padding: 0 9px;
	}
	.bxslider li figcaption{font-size: 35px;}
	#home-1 .img {
		top: 50%;
		max-width: 370px;
		transform: translateY(-50%);
	}
	#home-1 {
		padding: 120px 0;
	}
	#home-1 .text {
		line-height: 36px;
		padding-left: 380px;
		max-width: 100%;
	}
	#home-1 .text .title{
		font-size: 50px;
	}
	#home-2 .izq{
		width: 47%;
	}
	#home-2 .der{
		width: 50%;
		right: 15px;
		padding-left: 25px;
	}
	#about .textRight {
		padding-left: 45px;
	}
	#about .img{
		width: 50%;
		padding-right: 15px;
		margin-bottom: 50px;
	}
	#about .row3{
		padding-left: 0;
	}
	#about .row3 .separator{
		display: none;
	}
	#about .row3 .textRight{
		padding-left: 0;
	}
	#about .row3 .textRight{
		padding: 0 15px;
	}
	#about-2 .row .col:last-child{
		padding-left: 15px;
	}
	#products .row{
		align-items: center;
	}
	#products .col {
		flex-basis: 50%;
	}
	#products .item{
		max-width: 350px;
		margin: 0 auto;
		padding: 0 0 25px;
	}
	#product .der h2 {
		font-size: 20px;
	}
}
/*Fin 991*/

@media (max-width: 900px) {
	#about .row1 .separator,
	#about .row2 .separator{
		display: none;
	}
	#about .row .textRight{
		position: static;
		transform: none;
		padding: 0 15px 30px;
		width: 100%;
		max-width: 100%;
	}
	#about .row .img{
		position: static;
		width: 100%;
		max-width: 100%;
		margin: 0 auto;
		padding: 0 15px;
		transform: none;
	}
	#about .row img{
		width: auto;
		display: block;
		max-width: 100%;
		height: auto;
		margin: 0 auto;
	}
	#about .textRight .title{
		text-align: center;
	}
	#about .row3 .separator{
		display: none;
	}
	#about .row3 .title{margin-bottom: 0;}
	#about .row3 .text{
		margin-bottom: 0;
	}
	#about .row3 .textRight{
		padding-bottom: 0;
	}
}

@media (max-width: 890px) {
	#product .der h1 {
		font-size: 34px;
	}
	#product .der h2 {
		font-size: 19px;
	}
	.titAcordeon {
		font-size: 22px;
	}
	.contentAcordeon{
		font-size: 21px;
	}
	.contentAcordeon li {
		font-size: 19px;
	}
}

@media (min-width: 851px) {
	#about-2 .row{
		flex-direction: row-reverse;
	}
}
@media (max-width: 850px) {
	#home-2 .izq {
		width: 100%;
		max-width: 100%;
		margin-right: 15px;
	}
	#home-2 .img {
		position: static;
		width: 100%;
		max-width: 600px;
		margin: 0 auto 55px;
	}
	#home-2 .img2 {
		max-width: 450px;
		width: 40%;
	}
	
	#home-2 .der{
		width: 55%;
		padding-left: 0;
	}
	#home-2 .row2{
		padding-bottom: 50px;
	}
	#about-2 .col{
		width: 100%;
		flex-basis: 100%;
		text-align: center;
	}
	#about-2 img{
		display: block;
		max-width: 100%;
		height: auto;
		margin: 0 auto;
	}
	#about-2 .row .col:last-child{padding-top: 0;}
	#contact .col{
		flex-basis: 100%;
		max-width: 500px;
		margin: 0 auto;
	}
	#contact .row::before {
		height: 1px;
		width: 100%;
		top: 46%;
		left: 0;
		transform: none;
		right: 0;
	}
	#contact .col2{
		padding-top: 30px;
	}
	#contact .formRight{max-width: 100%;}
}
@media (max-width: 767px) {
	body{
    	padding-top: 64px
  	}
  	#menuTop{
    	display: none;
  	}
  	#header{
	    position: fixed;
	    top: 0;
	    left: 0;
	    right: 0;
	    z-index: 11;
	    box-shadow: 0 0 5px rgba(0,0,0,0.5);
	    border-top: none;
  	}
  	#header .container{
    	max-width: 100%;
  	}
  	#logoTop figure {
	  	max-width: 140px;
	  	margin: 0 auto;
	}
	#logoTop{margin-right: 30px;}
	#main.contact {
		padding-top: 0;
	}
	#main.contact:before{
		display: none;
	}
	.bxslider li figcaption{padding-top: 0;}
	
	#footer .tfooter{
		display: block;
		text-align: center;
		float: none;
		margin: 10px 0;
	}
	#footer #powered{
		text-align: center;
		float: none;
		justify-content: center;
	}
	#datFooter{
		background-size: cover;
	}
	#datFooter .col {
		display: block;
	  	width: 100%;
	}
	#footer .tfooter,
	#footer #powered{
		position: relative;
		z-index: 1;
	}
	#datFooter{
		position: relative;
		z-index: 2
	}
	#datFooter .col{
		flex-basis: 100%;
		text-align: center;
		justify-content: center;
	}
	#datFooter .row2 .col:first-child{
		flex-basis: 100%;
	}
	#datFooter .row-2 .col3{
		padding-top: 35px;
		flex-basis: 100%;
		width: 100%;
	}

	#footer .cnt::before {
		background: #FB7F00;
		width: 100%;
		position: absolute;
		left: 0;
		top: 0;
		height: 20px;
	}
	#footer .container{
		padding: 0;
	}
	#footer .container .cnt{
		padding: 40px 15px 20px;
		font-size: 15px;
	}
	#footer .contentFooter{
		padding-top: 0;
	}
	#datFooter .col2 {
		text-align: center;
	}
	#datFooter .text{
		margin: 0 auto;
		max-width: 500px;
	}
	#datFooter .col1 .text > div .fa {
		position: static;
	}
	#datFooter .text > div{padding-left: 0; text-align: center;}


  	.map iframe{
  		height: 400px;
  	}

	#home-1 {
		padding: 80px 0;
	}
	#home-1 .img{
		position: static;
		margin: 0 auto;
		transform: none;
	}
	#home-1 .text{
		padding-left: 0;
	}
	#home-1 .text .title{text-align: center;}
	
	#home-2 .row2{
		padding-bottom: 90px;
	}
	#products-2 .title {
		font-size: 31px;
	}
	#products-2 .subtitle {
		font-size: 23px;
		padding: 20px 0 15px;
		line-height: normal;
	}
	#products-2 .text {
		font-size: 16px;
	}
	#sliderTop.data-slider-3 li figcaption .tit2{
		font-size: 18px;
		font-weight: 400;
	}

	#product .col {
		width: 100%;
		flex-basis: 100%;
		padding: 0;
	}
	#product .img{
		max-width: 545px;
		margin: 0 auto;
	}
	#product .der h1{
		padding-top: 30px;
		text-align: center;
	}
}
/*Fin 767*/

@media (max-width: 600px) {
	.bx-controls{display: none;}
	#datFooter .col{width: 100%; flex-basis: 100%;}
	a#toTop {
	  bottom: 46px;
	  left: 10px;
	}
	#home-2 .row>div{
		padding-left: 15px;
		padding-right: 15px;
	}
	#home-2 .der {
		width: 100%;
		position: static;
		transform: none;
	}
	#home-2 .der .text{
		max-width: 100%;
		padding-bottom: 30px;
	}
	#home-2 .img2{
		margin: 0 auto;
		max-width: 100%;
		width: 100%;
	}
	#home-2 {
		background-size: cover;
		padding-bottom: 0;
	}
	#titleAbout .text {
		font-size: 24px;
		line-height: 32px;
		max-width: 390px;
	}
	#about .row .title,
	#about .text-2 {
		font-size: 24px;
	}
	#products figcaption {
		font-size: 19px;
	}
	#titleProducts .container {
		font-size: 33px;
	}
	#products .col{
		flex-basis: 100%;
	}
	#products-2 .title {
		font-size: 27px;
		letter-spacing: 0;
	}
	#products-2 .subtitle {
		font-size: 20px;
	}
	#products-2 .text {
		font-size: 15px;
		font-weight: 300;
	}
	#products-3 .title{
		font-size: 38px;
	}
	#products-3 .text {
		font-size: 18px;
		font-weight: 300;
	}
	#products-3 .col {
		flex-basis: 100%;
	}
	#products-3 .col figure{
		max-width: 200px;
		margin: 0 auto;
	}
}

/*Fin 600*/

@media (max-width: 500px) {
	#home-2 .izq {
		font-size: 19px;
		line-height: 32px;
	}
}

@media (max-width: 480px) {
	.bxslider li figcaption {
		font-size: 28px;
	}
	#about-2 .col .title{font-size: 27px;}
	#about-2 .col{padding: 15px;}
	#sliderTop.data-slider-3 li figcaption .tit2 {
		font-size: 16px;
	}
	#sliderTop.data-slider-3 li figcaption {
		font-size: 25px;
	}
	#titleProducts .container {
		font-size: 28px;
	}
	#contact .title {
		font-size: 26px;
	}
	#product .der h1 {
		padding-top: 25px;
	}
	#product .der h2 {
		font-size: 17px;
	}
	.titAcordeon {
		font-size: 20px;
	}
	
	.contentAcordeon{
		font-size: 18px;
	}
	.contentAcordeon li {
		font-size: 17px;
	}
}
@media (max-width: 420px) {
	#titleAbout .text {
		font-size: 20px;
		line-height: 26px;
		max-width: 310px;
	}
}
@media (max-width: 380px) {
	#home-2 .izq {
		font-size: 17px;
		line-height: 26px;
	}
	#contact .title {
		font-size: 24px;
	}
	.titAcordeon {
		font-size: 17px;
	}
	.titAcordeon svg {
		top: 0;
		right: 0;
		width: 20px;
		height: 20px;
	}
}