/* inicia fuentes*/
  body{
    font-family: 'Open Sans', sans-serif;
  }
  .blanco{
    color: #ffffff;
  }
  .negro{
    color: #444444;
  }
  .gris{
    color: #999999;
  }
  .naranja-bot{
    color: #FF7F00;
    font-weight: 700;
  }
  .verde{
    color: #1a3697;
  }
  .verde2{
    color: #006600;
  }
  .texto{  
    font-size: 16px;
  }
  .titulo{
    font-size: 30px;
  }
  .subtitulo{
    font-size: 20px;
  }
  .small{
    font-size: 14px;
  }
  .bold{
    font-weight: 700;
  }
  .light{
    font-weight: 300;
  }
  .regular{
    font-weight: 400;
  }
  .just{
    text-align: justify;
    text-justify: inter-word;
    line-height: 1.1;
  }
  .line1{
    line-height: 1.1;
  }
  a{
    text-decoration: none;
  }
  /* Elementos */
p{
  margin-top: 0;
  margin-bottom: 0;
}
header{
  width: 100%;
  padding: 10px 0;
  border-bottom: 1px solid #DDDDDD;
}
.menu-small{
  background-color: #111111;
  padding-bottom: 30px;
  overflow: hidden;
}
.menu-small .menu li{
  margin-bottom: 10px;
}
.tel{
  display: inline-block;
  border: 1px solid #BBBBBB;
  color: #FF4000;
  font-size: 15px;
  padding: 8px 13px;
  float: right;
  margin-top: 20px;
}
nav > ul.menu{
  margin-top: 30px;
  float: right;
}
nav ul.menu li ul.menu{
  float: none;
  text-align: left;
  padding: 10px;
}
.menu li{
  display: inline-block;
  vertical-align: top;
}
.menu li a{
  color: #444444;
  padding: 6px 12px;
  font-weight: 700;
}
.menu li a:hover{
  color: #555555;
}
#activo > a{
  color: #ffffff;
  background-color: #1a3697;
}
.m50{
  margin-top: 50px;
  margin-bottom: 50px;
}
.mt500{
  margin-top: 25%;
  margin-bottom: 25%;
}
.m20{
  margin-bottom: 20px;
  margin-top: 20px;
}
.mb20{
  margin-bottom: 20px;
}
.mb50{
  margin-bottom: 50px;
}
.mb30{
  margin-bottom: 30px;
}
.mt20{
  margin-top: 20px;
}
.m80{
  margin-top: 80px;
  margin-bottom: 80px;
}
.mb80{
  margin-bottom: 80px;
}
.p50{
  padding: 50px 0;
}
.mt5{
  padding-top: 7px;
}
.mt50{
  margin-top: 50px;
}
.text-right{
  text-align: right;
}
.pattern-top{
  padding: 96px 0;
  background-color: #222222;
}
.fondo-truck{
  margin-top: 60px;
  margin-bottom: 60px;
  width: 100%;
  padding-top: 20px;
    height: 457px;
  background: url(../images/truck.png) no-repeat;
}
.fondo-negro{
  width: 100%;
  background-color: #222222;
}
.fondo-negro2{
  width: 100%;
  background-color: #273439;
}
.fondo-verde{
  width: 100%;
  background-color: #008C00;
  padding: 50px 0;
}
.fondo-gris{
  width: 100%;
  padding: 70px 0;
  background-color: #F4F4F4;
}
.inline{
  display: inline-block;
}
.iconos > div{
  -webkit-filter: grayscale(100%);
    filter: grayscale(100%);
} 
.iconos > div:hover{
  -webkit-filter: grayscale(0%);
    filter: grayscale(0%);
}
.kit-home{
  border: 1px solid #DDDDDD;
  text-align: center;
  margin-bottom: 24px;
}
.kit-home div{
  background-color: #0052C9;
  width: 100%;
}
.kit-text{
  min-height: 142px;
}
#min-h{
  max-height: 50px;
  height: 50px;
}
.kit-home img{
  padding: 30px 0;
  margin: 0 auto;
}
.kit-home h3{
  padding: 15px 20px;
  margin: 0;
}
.kit-home p{
  padding: 10px 20px;
}
.p0{
  padding: 6px 0 !important;
}
footer{
  background-color: #1a3697;
  width: 100%;
  padding: 60px 0 20px;
}
footer div a{
  color: #cccccc;
  font-size: 14px;
}
hr.dotted{
  border: 1px dotted #777777;
  border-style: none none dotted; 
  color: #777777; 
  background-color: transparent;
  margin-top: 50px;
}
/*linea*/
h2 {
  font-size: 30px;
  margin-top: 30px;
  font-weight: 300;
}
h2.background {
  position: relative;
  z-index: 1;
}
h2.background:before {
  border-top: 1px solid #AAAAAA;
  content: "";
  margin: 0 auto;
  /* this centers the line to the full width specified */
  position: absolute;
  /* positioning must be absolute here, and relative positioning must be applied to the parent */
  top: 50%;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  z-index: -1;
}
h2.background span {
  /* to hide the lines from behind the text, you have to set the background color the same as the container */
  background: #fff;
  padding: 0 15px;
}
h2.double:before {
  /* this is just to undo the :before styling from above */
  border-top: none;
}
h2.double:after {
  border-bottom: 1px solid blue;
  -webkit-box-shadow: 0 1px 0 0 red;
  -moz-box-shadow: 0 1px 0 0 red;
  box-shadow: 0 1px 0 0 red;
  content: "";
  margin: 0 auto;
  /* this centers the line to the full width specified */
  position: absolute;
  top: 45%;
  left: 0;
  right: 0;
  width: 95%;
  z-index: -1;
}
h2.no-background {
  position: relative;
  overflow: hidden;
}
h2.no-background span {
  display: inline-block;
  vertical-align: baseline;
  zoom: 1;
  *display: inline;
  *vertical-align: auto;
  position: relative;
  padding: 0 20px;
}
h2.no-background span:before,
h2.no-background span:after {
  content: '';
  display: block;
  width: 1000px;
  position: absolute;
  top: 0.73em;
  border-top: 1px solid red;
}
h2.no-background span:before {
  right: 100%;
}
h2.no-background span:after {
  left: 100%;
}
h2.no-span {
  display: table;
  white-space: nowrap;
}
h2.no-span:before,
h2.no-span:after {
  border-top: 1px solid green;
  content: '';
  display: table-cell;
  position: relative;
  top: 0.5em;
  width: 45%;
}
h2.no-span:before {
  right: 1.5%;
}
h2.no-span:after {
  left: 1.5%;
}
ul.tabs{
  border: 0;
  padding: 0;
  padding-right: 20px;
}
.blindaje-galeria div{
  margin-bottom: 20px;
}
.blindaje-galeria div img{
  margin-bottom: 5px;
}
.tabs-title > a:focus, .tabs-title > a[aria-selected='true'] {
    background: transparent;
}
.tabs-title > a {
    padding: 0;
    padding-bottom: 10px;
    font-size: 1.2rem;
    border-bottom: 1px solid #CCCCCC;
    margin-bottom: 10px;
    color: #222222;
    font-weight: 300;
}
.tabs-title > a:hover{
  color: #FF4000;
}
.tabs-content.vertical{
  background-color: #0052C9;
}
.tabs-title.is-active > a{
  color: #0052C9;
}
.side-blue{
  width: 100%;
  display: inline-block;
  padding: 50px;
  -moz-box-sizing: border-box; 
  -webkit-box-sizing: border-box; 
  box-sizing: border-box; 
}
.side-map{
  width: 50%;
  display: inline-block;
}
.numero{
  padding: 6px 10px;
  display: inline-block;
  color: #ffffff;
  font-size: 20px;
  font-style: 300;
  background-color: #0052C9;
  margin-bottom: 12px;
  float: left;
  margin-right: 20px;
}
td, th{
  padding: 9px 0;
}
h1{
  line-height: 1;
  margin: 0;
}
ul.titulos-blindaje{
  width: 100%;
  display: block;
  background-color: #DDDDDD;
  list-style-type: none;
  margin: 0;
  padding: 0;
  overflow: hidden;
}
ul.titulos-blindaje li{
  display: inline-block;
  float: left;
  width: 20%;
  border-left: 1px solid #BBBBBB;
  padding: 15px 0;
  text-align: center;
  font-size: 14px;
}
ul.titulos-blindaje li:first-of-type{
  width: 40%;
  border-left: 0;
  font-size: 16px;
}
table.blindaje{
  width: 100%;
  overflow: hidden;
}
table.blindaje tr{
  border-top: 1px solid #CCCCCC;
  padding: 5px 0;
}
table.blindaje tr:first-of-type{
  border-top: 0;
}
table.blindaje tr td{
  width: 20%;
  text-align: center;
}
table.blindaje tr td:first-of-type{
  width: 40%;
  text-align: left;
}
ul.perdida{
  width: 100%;
  display: block;
  background-color: #DDDDDD;
  list-style-type: none;
  margin: 0;
  padding: 0;
  overflow: hidden;
}
ul.perdida li{
  display: inline-block;
  float: left;
  width: 33.3%;
  border-left: 1px solid #BBBBBB;
  padding: 15px 0;
  text-align: center;
}
.border-top{
  border-top: 1px solid #CCCCCC;
}
.border-top img{
  margin-top: -15px;
}
.kit{
  border: 1px solid #DDDDDD;
  -moz-border-radius:19px ;
-webkit-border-radius:19px ;
border-radius:19px ;
}
ul.serv{
  color: #ffffff;
  font-size: 16px;
  list-style-image: url('../images/bullet-serv.png');
  padding-left: 15px;
  line-height: 1.5;
  font-weight: 700;
}
ul.cert{
  color: #ffffff;
  font-size: 16px;
  list-style-image: url('../images/bullet-cert.png');
  padding-left: 15px;
  line-height: 1.5;
}
/* botones */
.btn-frm{
  background-color: #0052C9;
  -moz-border-radius:2px ;
  -webkit-border-radius:2px ;
  border: 0;
  padding: 7px 0;
  border-radius:5px ;
  width: 100%;
  display: inline-block;
  margin: 0 auto;
  color: #ffffff;
  font-weight: bold;
  font-size: 17px;
  transition:.6s;
}
.btn-frm:hover{
  background-color: #00CB68;
  transition:.5s;
}
.btn1{
  background-color: #222222;
  -moz-border-radius:5px ;
  -webkit-border-radius:5px ;
  border-radius:5px ;
  padding: 20px 0;
  display: inline-block;
  width: 80%;
  margin: 0 auto;
  color: #ffffff;
  font-weight: bold;
  font-size: 17px;
  transition:.6s;
}
.btn2.primario{
  background-color: #0052C9;
  border: 1px solid #0052C9; 
}
.btn2.primario:hover{
  color: #0052C9;
  border: 1px solid #0052C9;
}
.btn2.grande{
  padding: 20px 50px;
}
.btn1:hover{
  background-color: #ff5722;
  transition:.6s;
}
.btn2{
  background-color: #FF4000;
  padding: 20px 33px;
  display: inline-block;
  margin-top: 20px;
  color: #ffffff;
  font-size: 17px;
  border: 1px solid #FF4000;
  transition:.6s; 
}
.btn2:hover{
  border: 1px solid #FF4000;
  background: transparent;
  color: #FF4000;
  transition:.6s; 
}
.btn2.grande{
  padding: 20px 100px;
}
.btn3{
  background-color: #00A3D8;
  padding: 8px 0;
  display: block;
  color: #ffffff;
  text-align: center;
  width: 100%;
  border: 0;
}
/*margenes centrado*/
hr {
  border: solid #dddddd;
  border-width: 1px 0 0;
  clear: both;
  height: 0;
  width: 100%;
}
.text-center{
  text-align: center !important;  
}
/*HOME CLASSES*/
.titulo-serv{
  background-color: #222222;
  padding: 4px 0;
  text-align: center;
  min-height:110px;
}
.image-wrapper {
  width: 100%;
  height: 100%;
  border: 1px solid rgba(0, 0, 0, 0.04);
  overflow: hidden;
  position: relative;
  border-radius: 4px; }

.image-overlay-content {
  width: 100%;
  height: 100%;
  position: absolute;
  overflow: hidden;
  top: 0;
  left: 0; }

.overlay-fade-in p {
  color: #1a3697;
  font-size: 16px;
  opacity: 0;
  padding-top:30%; 
  transition: all 0.2s linear; }
.overlay-fade-in img {
  transition: all 0.2s linear; 
  width: 100%
}
.overlay-fade-in .image-overlay-content {
  opacity: 0;
  background-color: rgba(0, 0, 0, 0.7);
  transition: all 0.4s ease-in-out; }
.overlay-fade-in h2 {
  color: #f2f2f2;
  font-size: 1.8rem;
  margin-top: 40%;
  opacity: 0;
  transition: all 0.2s ease-in-out;
  background: rgba(0, 0, 0, 0.7); }
.overlay-fade-in .button {
  display: inline-block;
  text-decoration: none;
  padding: 7px 14px;
  background: #FFF;
  color: #222;
  text-transform: uppercase;
  box-shadow: 0 0 1px #000;
  position: relative;
  border: 1px solid #999;
  opacity: 0;
  transition: all 0.2s ease-in-out; }
  .overlay-fade-in .button:hover {
    box-shadow: 0 0 5px #000; }
.overlay-fade-in:hover img {
  transform: scale(1.2); }
.overlay-fade-in:hover .image-overlay-content {
  opacity: 1; }
.overlay-fade-in:hover h2, .overlay-fade-in p, .overlay-fade-in .button {
  opacity: 1; }
.overlay-fade-in:hover p {
  transition-delay: 0.1s; }
.overlay-fade-in:hover .button {
  transition-delay: 0.2s; }
// Small screens
@media only screen { } /* Define mobile styles */

@media only screen and (max-width: 40em) {
  #activo-small{
    color: #1a3697;
  }
  .fondo-negro{
    padding: 30px 0;
  }
  .side-blue{
  width: 100%;
  display: inline-block;
}
.side-map{
  width: 100%;
  display: inline-block;
}
ul.titulos-blindaje li{
  font-size: 12px;
}
table.blindaje tr td{
  font-size: 12px;
}
.menu{
  float: none;
}
 } /* max-width 640px, mobile-only styles, use when QAing mobile issues */

// Medium screens
@media only screen and (min-width: 40.063em) { } /* min-width 641px, medium screens */

@media only screen and (min-width: 40.063em) and (max-width: 64em) { 
  .menu{
    margin-top: 5px;
    margin-bottom: 10px;
    float: right;
  }
  .tel{
    display: inline-block;
    float: right;
    margin: 0;
    margin-top: 20px;
  }
  .side-blue{
  padding: 30px;
  -moz-box-sizing: border-box; 
  -webkit-box-sizing: border-box; 
  box-sizing: border-box; 
}
  } /* min-width 641px and max-width 1024px, use when QAing tablet-only issues */

// Large screens
@media only screen and (min-width: 64.063em) { } /* min-width 1025px, large screens */

@media only screen and (min-width: 64.063em) and (max-width: 90em) { } /* min-width 1025px and max-width 1440px, use when QAing large screen-only issues */

// XLarge screens
@media only screen and (min-width: 90.063em) { } /* min-width 1441px, xlarge screens */

@media only screen and (min-width: 90.063em) and (max-width: 120em) { } /* min-width 1441px and max-width 1920px, use when QAing xlarge screen-only issues */

// XXLarge screens
@media only screen and (min-width: 120.063em) { } /* min-width 1921px, xxlarge screens */