/*!
 * CSS Stylesheet para DTM Industry
 * Made by microcode. - gerardomarquezpdl@gmail.com
 */
@font-face {
  font-family: "Logik Wide Bold Oblique";
  src: url("../../vendor/fonts/Logik-WideBoldOblique.woff") format("woff");
}
@font-face {
  font-family: "Oblivian Text Regular";
  src: url("../../vendor/fonts/OblivianText-Regular.woff") format("woff");
}
@font-face {
  font-family: "Oblivian Text Light";
  src: url("../../vendor/fonts/OblivianText-Light.woff") format("woff");
}
@font-face {
  font-family: "Oblivian Text Medium";
  src: url("../../vendor/fonts/OblivianText-Medium.woff") format("woff");
}
@font-face {
  font-family: "Oblivian Text Bold";
  src: url("../../vendor/fonts/OblivianText-Bold.woff") format("woff");
}
/* GENERAL */
html, body {
  font-family: "Oblivian Text Regular", sans-serif;
  font-size: 14px;
  font-weight: 500;
  margin: 0;
}

h1, h2, h3, p, a {
  margin: 0;
  padding: 0;
}

.title {
  font-family: "Logik Wide Bold Oblique", sans-serif;
  color: #0126bf;
  margin-bottom: 2.5rem;
  line-height: 1.2;
  font-size: 2.5rem;
}

.subtitle {
  font-family: "Oblivian Text Light", sans-serif;
  color: #000000;
  margin-bottom: 0.8rem;
  text-transform: uppercase;
  font-size: 0.6rem;
  letter-spacing: 1px;
}

.background-blue .title {
  color: #FFFFFF;
}
.background-blue .subtitle {
  color: #FFFFFF;
}

a, button, input, select, textarea {
  text-decoration: none !important;
  outline: none !important;
  background: unset;
}

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

.wrapper {
  max-width: 100vw;
  overflow: hidden;
}

.ordinary {
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.abs-pos {
  position: absolute;
  display: block;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  z-index: -1;
}
.abs-pos.bg-cover {
  background-size: cover !important;
}
.abs-pos.bg-contain {
  background-size: contain !important;
}

.transition {
  transition: all 500ms ease;
}

.custom-btn {
  background-color: #d81616;
  font-family: "Oblivian Text Medium", sans-serif;
  color: #FFFFFF;
  padding: 8px 20px;
  font-size: 12px;
  border-radius: 22px;
  border: 1px solid transparent;
  transition: 500ms ease all;
}
.custom-btn:hover {
  background-color: #FFFFFF;
  color: #d81616;
  border: 1px solid #d81616;
}

.whatsapp {
  position: fixed;
  width: 50px;
  height: 50px;
  bottom: 25px;
  right: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  text-align: center;
  color: #fff;
  border-radius: 50%;
  background-color: #13762f;
  transition: 350ms ease all;
  z-index: 69420666;
}
.whatsapp:hover {
  background-color: #0b441b;
  text-decoration: none;
  color: #fff;
}

/* SPACING */
.spacing {
  padding: 100px 10px;
}

.regular-spacing {
  padding: 75px 10px;
}

.light-spacing {
  padding: 50px 10px;
}

.thin-spacing {
  padding: 25px 10px;
}

.clearfix {
  display: inline-block;
  width: 100%;
  margin: 0;
}
.clearfix.spacing-lg {
  margin: 25px 0px;
}
.clearfix.spacing-md {
  margin: 15px 0px;
}
.clearfix.spacing-sm {
  margin: 5px 0px;
}

/* MENU */
.welcome-bar {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 34px;
  padding: 0 10px;
  text-align: center;
  background-color: #0126bf;
  color: #FFFFFF;
}
.welcome-bar span {
  font-size: 16px;
  font-family: "Logik Wide Bold Oblique", sans-serif;
}

#nav {
  height: 80px;
  position: absolute;
  width: 100%;
  background-color: #000000;
  z-index: 99;
  transition: 300ms ease all;
}
#nav.fixed-top-nav {
  position: fixed;
  top: 0;
  box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.3);
}
#nav .container {
  height: 100%;
}
#nav .container .d-flex {
  height: 100%;
}
#nav .container .d-flex a.brand {
  height: 40px;
}
#nav .container .d-flex a.brand > img {
  height: 100%;
}
#nav .container .d-flex ul.nav-links {
  display: flex;
  margin: 0;
}
#nav .container .d-flex ul.nav-links li:not(:last-of-type) {
  margin-right: 5px;
}
#nav .container .d-flex ul.nav-links a {
  font-family: "Oblivian Text Light", sans-serif;
  font-size: 14px;
  color: #FFFFFF;
  transition: 300ms ease all;
}
#nav .container .d-flex ul.nav-links a:hover, #nav .container .d-flex ul.nav-links a:focus {
  color: #0126bf;
}
#nav .container .d-flex ul.nav-links li.social {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 35px;
}
#nav .container .d-flex ul.nav-links li.social a {
  padding: 0;
  font-size: 18px;
}
#nav .container .d-flex ul.nav-links li.social a:not(:last-of-type) {
  margin-right: 15px;
}

menu {
  position: fixed;
  width: 35%;
  height: 100vh;
  background-color: #000000;
  top: 0;
  right: 0;
  margin: 0;
  padding: 0 100px;
  margin-right: -35%;
  transition: all 0.5s ease-out;
  opacity: 0.4;
  z-index: 100;
}
menu.active-nav {
  margin-right: 0px;
  opacity: 1;
}
menu button.close-nav {
  position: absolute;
  border: none;
  background-color: transparent;
  right: 10%;
  top: 10%;
  z-index: 99;
  opacity: 0.8;
  cursor: pointer;
}
menu button.close-nav:hover {
  opacity: 1;
}
menu button.close-nav i {
  font-size: 32px;
  color: #FFFFFF;
}
menu .menu-content {
  display: inline-flex;
  height: 100%;
  justify-content: center;
  flex-flow: column;
}
menu .menu-content a.brand {
  display: inline-block;
}
menu .menu-content a.brand img {
  max-width: 200px;
}
menu .menu-content ul.menu-list {
  position: relative;
  width: 100%;
  margin: 0;
  padding: 0;
  text-align: left;
}
menu .menu-content ul.menu-list li {
  list-style: none;
}
menu .menu-content ul.menu-list li a.menu-item {
  position: relative;
  font-size: 34px;
  color: #FFFFFF;
  border-bottom: 1px solid transparent;
}
menu .menu-content ul.menu-list li a.menu-item:hover {
  color: #FFFFFF;
  border-bottom: 1px solid #FFFFFF;
}
menu .menu-content ul.menu-list::before {
  position: absolute;
  display: block;
  content: "";
  height: 1px;
  width: 75px;
  background-color: #999999;
  top: -10px;
}
menu .menu-content .contact-info .social a:not(:last-of-type) {
  margin-right: 10px;
}
menu .menu-content .contact-info .social a:hover i {
  color: #FFFFFF;
}
menu .menu-content .contact-info .social a i {
  font-size: 20px;
  color: #FFFFFF;
}

/***** HOME *****/
#home {
  background-color: #000000;
  /*** HEADER ***/
  /*** SOMOS ***/
  /*** NOSOTROS ***/
  /*** INSTAGRAM FEED ***/
  /*** CLIENTS ***/
  /*** SERVICIOS ***/
  /*** PRODUCTOS ***/
  /*** BLOG ***/
  /*** CONTACTO ***/
}
#home header {
  height: calc(100vh - 114px);
  margin-top: 80px;
  background-color: #000000;
}
#home header video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  min-width: 100%;
  min-height: 100%;
  z-index: -1;
  object-position: center;
  object-fit: cover;
}
#home header .text-container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  width: 100%;
  flex-flow: column;
  background-color: rgba(0, 0, 0, 0.5);
  padding: 0 15px;
}
#home header .text-container h1 {
  font-family: "Logik Wide Bold Oblique", sans-serif;
  color: #FFFFFF;
  margin-bottom: 1rem;
  line-height: 1.2;
  font-size: 3rem;
}
#home header .text-container h2 {
  font-family: "Oblivian Text Light", sans-serif;
  color: #FFFFFF;
  margin-bottom: 1rem;
  letter-spacing: 1px;
  font-size: 1rem;
}
#home header img.certification {
  position: absolute;
  bottom: 5vh;
  left: 50%;
  transform: translateX(-50%);
  width: 90px;
}
#home #somos {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-flow: column;
  padding: 50px 10vw;
  background-color: #0126bf;
}
#home #somos .content {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 400px;
  background-color: #000000;
}
#home #somos .content .img-container {
  width: 50%;
  height: 100%;
}
#home #somos .content .img-container img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
#home #somos .content .text-container {
  width: 50%;
  padding: 50px 10vw 50px 50px;
}
#home #somos .content .text-container strong {
  font-family: "Logik Wide Bold Oblique", sans-serif;
  font-size: 1.2rem;
  margin-top: 2rem;
  display: inline-block;
}
#home #somos .content .text-container p {
  color: #FFFFFF;
  text-align: justify;
}
#home #somos .content .text-container p:not(:last-of-type) {
  margin-bottom: 1rem;
}
#home #nosotros {
  background-color: #FFFFFF;
}
#home #nosotros .about-container {
  position: relative;
}
#home #nosotros .about-container::before {
  position: absolute;
  display: block;
  content: "";
  background: url(../img/imago.png) no-repeat center center;
  height: 100%;
  width: 200px;
  background-size: contain;
}
#home #nosotros .about-container .logo h3 {
  font-size: 3rem;
  font-family: "Logik Wide Bold Oblique", sans-serif;
  color: #000000;
  text-align: right;
}
#home #nosotros .about-container .about .bullets {
  margin-top: -20px;
}
#home #nosotros .about-container .about .bullets .bullet {
  margin-top: 20px;
  display: flex;
  align-items: flex-start;
}
#home #nosotros .about-container .about .bullets .bullet .icon {
  height: 20px;
  margin-right: 20px;
  margin-top: 4px;
}
#home #nosotros .purpose-container {
  margin-top: 50px;
}
#home #nosotros .purpose-container .purposes {
  display: flex;
}
#home #nosotros .purpose-container .purposes .purpose {
  height: 400px;
  width: 50%;
  padding: 35px 50px;
}
#home #nosotros .purpose-container .purposes .purpose.mision {
  background-color: #000000;
}
#home #nosotros .purpose-container .purposes .purpose.vision {
  background-color: #0126bf;
}
#home #nosotros .purpose-container .purposes .purpose h3 {
  font-family: "Logik Wide Bold Oblique", sans-serif;
  color: #FFFFFF;
}
#home #nosotros .purpose-container .purposes .purpose p {
  margin-top: 1rem;
  color: #FFFFFF;
}
#home #instagram-feed {
  background-color: #FFFFFF;
  padding-top: 20px;
}
#home #clients {
  background-color: #FFFFFF;
}
#home #clients .clients-container {
  margin-top: -30px;
}
#home #clients .clients-container .client {
  margin-top: 30px;
}
#home #clients .clients-container .client img {
  height: 75px;
  width: 100%;
  object-fit: contain;
}
#home #servicios {
  background-color: #0126bf;
}
#home #servicios .services-container .services .service {
  display: flex;
  align-items: center;
  padding: 10px 25px;
  background-color: #000000;
}
#home #servicios .services-container .services .service:not(:last-of-type) {
  margin-bottom: 15px;
}
#home #servicios .services-container .services .service img.icon {
  height: 28px;
  margin-right: 20px;
}
#home #servicios .services-container .services .service span {
  color: #FFFFFF;
  font-family: "Logik Wide Bold Oblique", sans-serif;
  font-size: 16px;
  letter-spacing: 0.5px;
  transition: 500ms ease all;
}
#home #servicios .services-container .services .service:hover span {
  color: #0126bf;
}
#home #servicios .img-container img {
  height: 350px;
  width: 100%;
  object-fit: cover;
}
#home #productos {
  background-color: #FFFFFF;
}
#home #productos .products-container p {
  font-family: "Logik Wide Bold Oblique", sans-serif;
  font-size: 1.2rem;
  margin-bottom: 1rem;
}
#home #productos .products-container .products .product-container {
  margin-bottom: 20px;
}
#home #productos .products-container .products .product-container .card {
  padding: 10px 10px 10px 70px;
  border: none;
}
#home #productos .products-container .products .product {
  display: flex;
  align-items: center;
  background-color: #000000;
}
#home #productos .products-container .products .product:not(:last-of-type) {
  margin-bottom: 15px;
}
#home #productos .products-container .products .product a {
  width: 100%;
  padding: 10px 25px;
}
#home #productos .products-container .products .product img.icon {
  height: 20px;
  margin-right: 20px;
  filter: saturate(1) brightness(0) invert(1);
}
#home #productos .products-container .products .product span {
  color: #FFFFFF;
  font-family: "Logik Wide Bold Oblique", sans-serif;
  font-size: 16px;
  letter-spacing: 0.5px;
  transition: 500ms ease all;
}
#home #productos .products-container .products .product:hover span {
  color: #0126bf;
}
#home #productos .img-container img {
  height: 350px;
  width: 100%;
  object-fit: cover;
}
#home #productos .img-container img:not(:last-of-type) {
  margin-bottom: 25px;
}
#home #blog {
  background-color: #FFFFFF;
}
#home #contacto .section-title h1.title {
  color: #FFFFFF;
}
#home #contacto .form-container .row {
  margin-bottom: 25px;
}
#home #contacto .form-container .row span {
  color: white;
}
#home #contacto .form-container .row.etc .col-12:not(:last-of-type) {
  margin-bottom: 10px;
}
#home #contacto .form-container .row.etc label {
  color: #FFFFFF;
  margin: 0 10px;
}
#home #contacto .form-container .row.etc input, #home #contacto .form-container .row.etc select {
  border: 1px solid white;
  padding: 6px 25px;
  color: #FFFFFF;
}
#home #contacto .form-container .row.etc option {
  color: #000000;
}
#home #contacto .form-container .row.etc .col-12 {
  display: flex;
  align-items: center;
}
#home #contacto .form-container .row.etc .col-lg-5 input {
  width: 100%;
}
#home #contacto .form-container .row:not(.etc) input, #home #contacto .form-container .row:not(.etc) textarea {
  width: 100%;
  border: 1px solid white;
  padding: 6px 25px;
  color: #FFFFFF;
}
#home #contacto .form-container .row:not(.etc) input[type=submit] {
  background-color: #d81616;
  font-family: "Oblivian Text Medium", sans-serif;
  color: #FFFFFF;
  padding: 6px 45px;
  font-size: 16px;
  border-radius: 22px;
  transition: 500ms ease all;
  border: none;
  width: auto;
}
#home #contacto .form-container .row:not(.etc) input[type=submit]:hover {
  background-color: #FFFFFF;
  color: #d81616;
}

/*** ENTRIES BLOG ***/
.entries {
  margin-top: -20px;
}
.entries article.entry {
  margin-top: 20px;
}
.entries article.entry .img-container {
  height: 200px;
}
.entries article.entry .img-container img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.entries article.entry .text-container {
  text-align: center;
  padding: 25px 15px;
  border-left: 2px solid #0126bf;
  border-right: 2px solid #0126bf;
}
.entries article.entry .text-container span.date {
  font-family: "Oblivian Text Light", sans-serif;
  color: #000000;
  text-transform: uppercase;
  font-size: 0.6rem;
  letter-spacing: 1px;
  margin-bottom: 2px;
}
.entries article.entry .text-container h1.title {
  font-family: "Logik Wide Bold Oblique", sans-serif;
  color: #000000;
  margin-bottom: 1.4rem;
  line-height: 1.2;
  font-size: 1.4rem;
}
.entries article.entry .text-container h1.title a {
  color: #000000;
}
.entries article.entry .text-container p {
  text-align: justify;
  line-height: 1.2;
  font-size: 16px;
  height: 57.6px;
  overflow: hidden;
}
.entries article.entry a.more {
  width: 100%;
  text-align: center;
  display: block;
  background-color: #0126bf;
  color: #000000;
  padding: 14px 0;
}

#single-page header {
  height: 225px;
  margin-top: 80px;
  background-color: #000000;
  display: flex;
  align-items: center;
  justify-content: center;
}
#single-page header h1 {
  font-family: "Logik Wide Bold Oblique", sans-serif;
  color: #FFFFFF;
  font-size: 2.5rem;
}
#single-page #section-content {
  margin-bottom: 50px;
}
#single-page #section-content .section-title {
  background-color: #0126bf;
  text-align: center;
  padding: 40px 20px;
  margin-bottom: 3rem;
}
#single-page #section-content .section-title span.date {
  font-family: "Oblivian Text Light", sans-serif;
  color: #000000;
  margin-bottom: 1rem;
  text-transform: uppercase;
  font-size: 0.6rem;
  letter-spacing: 1px;
}
#single-page #section-content .section-title h1 {
  font-family: "Logik Wide Bold Oblique", sans-serif;
  color: #000000;
  line-height: 1.2;
  font-size: 2rem;
}
#single-page #section-content .content p {
  margin-top: 0;
  margin-bottom: 1rem;
}
#single-page #blog {
  background-color: #000000;
}
#single-page #blog .title {
  color: #FFFFFF;
}
#single-page #blog .entries article.entry .text-container {
  color: #FFFFFF;
}
#single-page #blog .entries article.entry .text-container span.date {
  color: #FFFFFF;
}
#single-page #blog .entries article.entry .text-container h1.title {
  color: #FFFFFF;
}
#single-page #blog .entries article.entry .text-container h1.title a {
  color: #FFFFFF;
}

/***** FOOTER *****/
footer {
  background-color: #0126bf;
}
footer .container {
  padding: 50px 10px 150px;
}
footer p {
  color: #FFFFFF;
}
footer p a {
  color: #FFFFFF;
}
footer p a:hover {
  color: #FFFFFF;
}
footer p:not(:last-of-type) {
  margin-bottom: 1rem;
}
footer p.footer-title {
  font-family: "Logik Wide Bold Oblique", sans-serif;
  font-size: 1.5rem;
}
footer p.emails {
  white-space: pre-line;
}
footer .brand img {
  height: 55px;
}

/***** RESPONSIVE *****/
@media (max-width: 991px) {
  /***** GENERAL *****/
  h1 {
    font-size: 2rem;
  }
  h2 {
    font-size: 1.4rem;
  }
  .title {
    font-size: 2rem;
  }
  #nav .container .d-flex ul.nav-links {
    display: none;
  }
  #nav button {
    background-color: transparent;
    border: none;
    z-index: 99;
    cursor: pointer;
  }
  #nav button i {
    color: #FFFFFF;
    font-size: 30px;
  }
  menu {
    width: 100%;
    padding: 0 10%;
    margin-right: -100%;
  }
  menu button.close-nav i {
    font-size: 28px;
  }
  menu .menu-content {
    width: 100%;
    text-align: center;
    align-items: center;
  }
  menu .menu-content ul.menu-list {
    text-align: center;
  }
  menu .menu-content ul.menu-list li a.menu-item {
    font-size: 28px;
  }
  menu .menu-content ul.menu-list::before {
    left: 50%;
    transform: translateX(-50%);
  }
  menu .menu-content ul.menu-list::after {
    left: 50%;
    transform: translateX(-50%);
  }
  /***** GENERAL *****/
  #home {
    /* HEADER */
    /* SOMOS */
    /* SERVICIOS */
    /* PRODUCTOS */
    /* TRABAJOS */
    /* CONTACTO */
  }
  #home header .text-container {
    text-align: center;
  }
  #home header .text-container h1 {
    font-size: 2rem;
  }
  #home #somos .content {
    height: auto;
    flex-flow: column;
  }
  #home #somos .content .img-container {
    height: 275px;
    width: 100%;
  }
  #home #somos .content .text-container {
    width: 100%;
    padding: 50px;
  }
  #home #servicios .services-container {
    margin-bottom: 25px;
  }
  #home #nosotros .about-container .logo h3 {
    font-size: 2rem;
    text-align: center;
  }
  #home #nosotros .purpose-container .purposes {
    flex-flow: column;
  }
  #home #nosotros .purpose-container .purposes .purpose {
    width: 100%;
    height: auto;
  }
  #home #nosotros .purpose-container .purposes .purpose h3 {
    text-align: center;
  }
  #home #productos .products-container {
    margin-bottom: 25px;
  }
  #home #productos .products-container p {
    text-align: center;
  }
  #home #productos .products-container .card {
    padding: 10px;
  }
  #home #productos .img-container img {
    height: 250px;
    object-fit: contain;
  }
  #home #clients .clients-container .client img {
    height: 45px;
  }
  #home #trabajos .section-content h1.title {
    white-space: normal;
  }
  #home #contacto .section-title {
    text-align: center;
  }
  #home #contacto .row.main .col-12:not(:last-of-type) {
    margin-bottom: 25px;
  }
  #home #contacto .row.submit {
    text-align: center;
  }
  footer .container {
    padding: 50px 10px;
  }
  footer .col-lg-4 {
    text-align: center;
    margin-bottom: 25px;
  }
}
@media (max-width: 767px) {
  /***** GENERAL *****/
  h1 {
    font-size: 1.8rem;
  }
  h2 {
    font-size: 1.2rem;
  }
  #home header .swiper .swiper-slide .text-container h1 {
    font-size: 2rem;
  }
}

/*# sourceMappingURL=main.css.map */
