/*
*Autor: Juan Pablo Sotelo G.
*Contacto: makonethekillah@gmail.com
*GitHub: github.com/makoneth
*FB: www.facebook.com/MakOne.HH
*Twitter: @makkonee
*/

/* Globales*/
::-webkit-scrollbar{
  width: 2px;
  background: rgba(229, 229, 229, 0.74);
}
::-webkit-scrollbar-button{
  width:4px;
  height: 2.5px;
}
::-webkit-scrollbar-track{
  background:#ffffff;
  border:thin solid rgba(0, 0, 0, 0.65);
  -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
  -webkit-border-radius: 10px;
  border-radius: 5px;
}
::-webkit-scrollbar-thumb{
  background: -webkit-linear-gradient(top, #5aafb0, #10a9b7);
  -webkit-box-shadow:   inset 0 1px 0 rgba(255,255,225,.5),
                inset 1px 0 0 rgba(255,255,255,.4),
                inset 0 1px 2px rgba(255,255,255,.3);

  border:thin solid #232c34;
  border-radius: 10px;
  -webkit-border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover{
    background: -webkit-linear-gradient(top, #46bcc0, #39c4c0);
}
/* Pseudo-clase */
::-webkit-scrollbar-thumb:window-inactive {
  background: rgba(16, 169, 233, 0.6);
}

body{
	max-width: 1550px;
	margin-left: auto;
  margin-right: auto;
  display: flex;
  min-height: 100vh;
  flex-direction: column;

}

main {
  flex: 1 0 auto;
}

.MainHeader{
  max-width: 100%;
  background: #050731;
  height: 9em;
}

#logo{
	text-align: left;
	margin: 1.5em 0 1em 1.5em;
	max-width: 210px;
}

.iconos{
  color: #555e81;
  font-size: 8em;
}

.separador{
  margin-bottom: 5em;
}

.separador2{
   margin-bottom: 3em;
}

.separador3{
   margin-bottom: .5em;
}

.separador4{
   margin-bottom: 6em;
}

.bordeShadow{
	text-shadow: -2px -2px 1px #000, 2px 2px 1px #000, -2px 2px 1px #000, 2px -2px 1px #000;
}

/********************
nav Prodiat
*********************/
@import url(http://fonts.googleapis.com/css?family=Open+Sans);
#nav_PDT,
#nav_PDT ul,
#nav_PDT ul li,
#nav_PDT ul li a,
#nav_PDT #menu-button {
  margin: 0;
  padding: 0;
  border: 0;
  list-style: none;
  line-height: 1;
  display: block;
  position: relative;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
#nav_PDT:after,
#nav_PDT > ul:after {
  content: ".";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}
#nav_PDT #menu-button {
  display: none;
}
#nav_PDT {
  width: 100%;
  font-family: 'Open Sans', sans-serif;
  line-height: 1;
  background: #FFFFFF;
  z-index: 5;
}
#menu-line {
  position: absolute;
  top: 0;
  left: 0;
  height: 3px;
  background: #0d47a1;
  -webkit-transition: all 0.25s ease-out;
  -moz-transition: all 0.25s ease-out;
  -ms-transition: all 0.25s ease-out;
  -o-transition: all 0.25s ease-out;
  transition: all 0.25s ease-out;
}
#nav_PDT > ul > li {
  float: left;
}
#nav_PDT.align-center > ul {
  font-size: 0;
  text-align: center;
}
#nav_PDT.align-center > ul > li {
  display: inline-block;
  float: none;
}
#nav_PDT.align-center ul ul {
  text-align: left;
}
#nav_PDT.align-right > ul > li {
  float: right;
}
#nav_PDT.align-right ul ul {
  text-align: right;
}
#nav_PDT > ul > li > a {
  padding: 20px;
  font-size: .9em;
  text-decoration: none;
  text-transform: uppercase;
  color: #000000;
  -webkit-transition: color .2s ease;
  -moz-transition: color .2s ease;
  -ms-transition: color .2s ease;
  -o-transition: color .2s ease;
  transition: color .2s ease;
}
#nav_PDT > ul > li:hover > a,
#nav_PDT > ul > li.active > a {
  color: #009ae1;
}
#nav_PDT > ul > li.has-sub > a {
  padding-right: 25px;
}
#nav_PDT > ul > li.has-sub > a::after {
  position: absolute;
  top: 21px;
  right: 10px;
  width: 4px;
  height: 4px;
  border-bottom: 1px solid #000000;
  border-right: 1px solid #000000;
  content: "";
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transition: border-color 0.2s ease;
  -moz-transition: border-color 0.2s ease;
  -ms-transition: border-color 0.2s ease;
  -o-transition: border-color 0.2s ease;
  transition: border-color 0.2s ease;
}
#nav_PDT > ul > li.has-sub:hover > a::after {
  border-color: #009ae1;
}
#nav_PDT ul ul {
  position: absolute;
  left: -9999px;
}
#nav_PDT li:hover > ul {
  left: auto;
}
#nav_PDT.align-right li:hover > ul {
  right: 0;
}
#nav_PDT ul ul ul {
  margin-left: 100%;
  top: 0;
}
#nav_PDT.align-right ul ul ul {
  margin-left: 0;
  margin-right: 100%;
}
#nav_PDT ul ul li {
  height: 0;
  -webkit-transition: height .2s ease;
  -moz-transition: height .2s ease;
  -ms-transition: height .2s ease;
  -o-transition: height .2s ease;
  transition: height .2s ease;
}
#nav_PDT ul li:hover > ul > li {
  height: 32px;
}
#nav_PDT ul ul li a {
  padding: 10px 20px;
  width: 160px;
  font-size: 12px;
  background: #333333;
  text-decoration: none;
  color: #dddddd;
  -webkit-transition: color .2s ease;
  -moz-transition: color .2s ease;
  -ms-transition: color .2s ease;
  -o-transition: color .2s ease;
  transition: color .2s ease;
}
#nav_PDT ul ul li:hover > a,
#nav_PDT ul ul li a:hover {
  color: #ffffff;
}
#nav_PDT ul ul li.has-sub > a::after {
  position: absolute;
  top: 13px;
  right: 10px;
  width: 4px;
  height: 4px;
  border-bottom: 1px solid #dddddd;
  border-right: 1px solid #dddddd;
  content: "";
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
  -webkit-transition: border-color 0.2s ease;
  -moz-transition: border-color 0.2s ease;
  -ms-transition: border-color 0.2s ease;
  -o-transition: border-color 0.2s ease;
  transition: border-color 0.2s ease;
}
#nav_PDT.align-right ul ul li.has-sub > a::after {
  right: auto;
  left: 10px;
  border-bottom: 0;
  border-right: 0;
  border-top: 1px solid #dddddd;
  border-left: 1px solid #dddddd;
}
#nav_PDT ul ul li.has-sub:hover > a::after {
  border-color: #ffffff;
}
@media all and (max-width: 780px), only screen and (-webkit-min-device-pixel-ratio: 2) and (max-width: 1550px), only screen and (min--moz-device-pixel-ratio: 2) and (max-width: 1550px), only screen and (-o-min-device-pixel-ratio: 2/1) and (max-width: 1550px), only screen and (min-device-pixel-ratio: 2) and (max-width: 1550px), only screen and (min-resolution: 192dpi) and (max-width: 1550px), only screen and (min-resolution: 2dppx) and (max-width: 1550px) {
  #nav_PDT {
    width: 100%;
  }
  #nav_PDT ul {
    width: 100%;
    display: none;
  }
  #nav_PDT.align-center > ul,
  #nav_PDT.align-right ul ul {
    text-align: left;
  }
  #nav_PDT ul li,
  #nav_PDT ul ul li,
  #nav_PDT ul li:hover > ul > li {
    width: 100%;
    height: auto;
    border-top: 1px solid rgba(120, 120, 120, 0.15);
  }
  #nav_PDT ul li a,
  #nav_PDT ul ul li a {
    width: 100%;
  }
  #nav_PDT > ul > li,
  #nav_PDT.align-center > ul > li,
  #nav_PDT.align-right > ul > li {
    float: none;
    display: block;
  }
  #nav_PDT ul ul li a {
    padding: 20px 20px 20px 30px;
    font-size: 12px;
    color: #000000;
    background: none;
  }
  #nav_PDT ul ul li:hover > a,
  #nav_PDT ul ul li a:hover {
    color: #000000;
  }
  #nav_PDT ul ul ul li a {
    padding-left: 40px;
  }
  #nav_PDT ul ul,
  #nav_PDT ul ul ul {
    position: relative;
    left: 0;
    right: auto;
    width: 100%;
    margin: 0;
  }
  #nav_PDT > ul > li.has-sub > a::after,
  #nav_PDT ul ul li.has-sub > a::after {
    display: none;
  }
  #menu-line {
    display: none;
  }
  #nav_PDT #menu-button {
    display: block;
    padding: 20px;
    color: #000000;
    cursor: pointer;
    font-size: 12px;
    text-transform: uppercase;
  }
  #nav_PDT #menu-button::after {
    content: '';
    position: absolute;
    top: 20px;
    right: 20px;
    display: block;
    width: 15px;
    height: 2px;
    background: #000000;
  }
  #nav_PDT #menu-button::before {
    content: '';
    position: absolute;
    top: 25px;
    right: 20px;
    display: block;
    width: 15px;
    height: 3px;
    border-top: 2px solid #000000;
    border-bottom: 2px solid #000000;
  }
  #nav_PDT .submenu-button {
    position: absolute;
    z-index: 10;
    right: 0;
    top: 0;
    display: block;
    border-left: 1px solid rgba(120, 120, 120, 0.15);
    height: 52px;
    width: 52px;
    cursor: pointer;
  }
  #nav_PDT .submenu-button::after {
    content: '';
    position: absolute;
    top: 21px;
    left: 26px;
    display: block;
    width: 1px;
    height: 11px;
    background: #000000;
    z-index: 99;
  }
  #nav_PDT .submenu-button::before {
    content: '';
    position: absolute;
    left: 21px;
    top: 26px;
    display: block;
    width: 11px;
    height: 1px;
    background: #000000;
    z-index: 99;
  }
  #nav_PDT .submenu-button.submenu-opened:after {
    display: none;
  }
}

/* Intro */

.containerI {
  padding: 0 1.5rem;
  margin: 0 auto;
  max-width: 1280px;
  width: 95%;
}

@media only screen and (min-width : 601px) {
  .containerI {
    width: 90%; }
 }

@media only screen and (min-width : 993px) {
  .containerI {
    width: 80%; }
 }

.mainINT{
  margin-top: 2em;
  padding: 6em 6em 6em 3em;
  background-image: url("../img/intro.jpg");
  background-size: cover;
  color:  white;
  text-shadow: -2px -2px 1px #000, 2px 2px 1px #000, -2px 2px 1px #000, 2px -2px 1px #000;
}

.ContInt{
  background: #F5F5F5;
}

.Introvalign{
  background: #F3F3F3;
  text-align: center;
}

  .lgo{
    width: 15em;
    padding-top: 1em;
  }

#BodInt{
  margin-top: -1em;
  background: #747474;
}

	@media screen and (max-width : 692px){
		.containerI{
			width: 100%;
		}
	}

.IntroMin{
  width: 15.2em;
  text-align: center;
}

.MiniaturasIntro{
  margin-left: auto;
  margin-right: auto;
  width: 15em;
}

.cont--int{
  padding-top: 3em;
  text-align: center;
}

.btn--int{
	border-radius: 0.7em;
	height: 4em;
	font-size: 1.2em;
}

/* Index*/

.Barra{
  background: #EFEFEF;
  height: 6em;
  font-family: 'Roboto Slab', serif;
}

.ISO{
    font-size: 2em;
}

.light{
  text-align: justify;
}

.marcatreinta{
  max-width: 9em;
}

.promo-caption{
  font-size: 1.1em;
}

.containermd {
  padding: 0 5rem;
  margin: 0 auto;
  max-width: 1280px;
  width: 90vh;
  }

@media only screen and (min-width : 601px) {
  .containermd {
    width: 85%;
  }
 }

@media only screen and (min-width : 993px) {
  .containermd {
    width: 70%;
  }
 }

.containermd .row {
  margin-left: -0.70em;
  margin-right: -0.70rem;
  }

/* Nosotros */

.headerinfo{
  background: #5a8db8;
  padding: 3em 4em 4em 4em;
}

.txtblanco{
  color: #FFF;
}

.txtazulligth{
  color:  #555555;
}

.certificado{
  padding: 1em 0 0 0;
  width: 32em;
}

@media screen and (max-width: 580px){
	.certificado{
		width: 50em;
		margin-top: 3em;
	}
}

.marco{
  margin-top: 35px;
  padding-bottom: 20px;
}

.Nosotros--P{
  font-size: 1.1em;
  text-indent: 1em;
  padding: 1em 0 1.3em 0;
  margin: 0 auto;
  max-width: 1280px;
  width: 95%;
}

/*contacto*/

.Hcontacto{
  text-align: center;
}

.direccion, .telefonos{
  font-size: 1em;
}

.contaicont{
  padding-top: 7em;
  padding-bottom: 5em;
}

.datos{
  border-left: dashed 1px #b0bec5;
  margin-right: 3px;
}

@media screen and (max-width: 991px){
	.datos{
		border-left: none;
		margin-top: 3em;
	}
	.direccion{
		max-width: 100%;
	  	height: auto;
	}
}

.Stit{
  font-size: 1.1em;
}


/* catalogos*/
/* ruedas standard*/

.imagenescatalogo{
  padding: 1em 0 2em 0;
  width: 28em;
}

.catalogos{
  padding: 1em 0 0.3em 0;
}

.catalogos--a{
  font-size: 1.4em;
}

table {
  text-align: center;
  border-collapse: collapse;
  width: 35%;
}

th {
    height: 25px;
}

td {
    padding: 0.1em;
}

table, th, td {
   border: 1px solid black;
}
