@charset "utf-8";
/* CSS Document */
img {
  max-width: 100% !important;
}
@font-face {
  font-family: "Nexa-Light";
  src: url("../fonts/Nexa-Light.eot");
  src: local("☺"), url("../fonts/Nexa-Light.woff") format("woff"),
    url("../fonts/Nexa-Light.ttf") format("truetype"),
    url("../fonts/Nexa-Light.svg") format("svg");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "Nexa-Book";
  src: url("../fonts/Nexa-Book.eot?#iefix") format("embedded-opentype"),
    url("../fonts/Nexa-Book.woff") format("woff"),
    url("../fonts/Nexa-Book.ttf") format("truetype"),
    url("../fonts/Nexa-Book.svg#NeoSansPro-LightItalic") format("svg");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "Nexa-Bold";
  src: url("../fonts/Nexa-Bold.eot");
  src: local("☺"), url("../fonts/Nexa-Bold.woff") format("woff"),
    url("../fonts/Nexa-Bold.ttf") format("truetype"),
    url("../fonts/Nexa-Bold.svg") format("svg");
  font-weight: normal;
  font-style: normal;
}

@keyframes slideInFromLeft {
  0% {
    transform: translateX(-200%);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

header * {
  margin: auto;
  padding: 0px;
}

/*.home-contactanos *{
	margin:auto;
	padding:0px;
}*/

html,
body {
  min-height: 100vh;
  height: 100%;
}

@media all and (-ms-high-contrast: none) {
  .foo {
    color: green;
  } /* IE10 */
  *::-ms-backdrop,
  .warp-img-home,
  .warp-img-section,
  .panel-section,
  .sidebar-section {
    display: flex;
    min-height: 50%;
    height: 50%;
    width: 100%;
  }
  .warp-img-home > div,
  .warp-img-section > div,
  .panel-section > div,
  .sidebar-section > div {
    margin: auto 0;
  } /* IE11 */
}

body {
  font-family: "Nexa-Light", sans-serif;
  color: #335e77;
  font-size: 16px;
  background-color: #fff;
}

body {
  opacity: 1;
  animation-name: fadeInOpacity;
  animation-iteration-count: 1;
  animation-timing-function: ease-in;
  animation-duration: 0.5s;
}

@keyframes fadeInOpacity {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

h1 {
  font-family: "NeoSans-MediumItalic";
  color: #f48020;
}

h2 {
  font-family: "Nexa-Bold";
}

h1 span {
  font-family: "NeoSans-LightItalic";
}

a:hover {
  text-decoration: none;
}

hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #c9b2de;
  margin: 1em 0;
  padding: 0;
  opacity: 0.2;
}

/*------ MENU ------*/

/*  BURGER
========================================== */

.burger {
  width: 50px;
  height: 50px;
  position: absolute;
  top: -24px;
  right: 20px;
  border-radius: 4px;
  z-index: 10;
}

.burger span {
  position: relative;
  margin-top: 9px;
  margin-bottom: 9px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-left: -15px;
  margin-top: -1.5px;
}

.burger span,
.burger span::before,
.burger span::after {
  display: block;
  width: 30px;
  height: 3px;
  background-color: #fff;
  outline: 1px solid transparent;
  -webkit-transition-property: background-color, -webkit-transform;
  -moz-transition-property: background-color, -moz-transform;
  -o-transition-property: background-color, -o-transform;
  transition-property: background-color, transform;
  -webkit-transition-duration: 0.3s;
  -moz-transition-duration: 0.3s;
  -o-transition-duration: 0.3s;
  transition-duration: 0.3s;
}

.burger-blue span,
.burger-blue span::before,
.burger-blue span::after {
  background-color: #fff;
}

.burger span::before,
.burger span::after {
  position: absolute;
  content: "";
}

.burger span::before {
  top: -9px;
}

.burger span::after {
  top: 9px;
}

.burger.clicked span {
  background-color: transparent;
}

.burger.clicked span::before {
  -webkit-transform: translateY(9px) rotate(45deg);
  -moz-transform: translateY(9px) rotate(45deg);
  -ms-transform: translateY(9px) rotate(45deg);
  -o-transform: translateY(9px) rotate(45deg);
  transform: translateY(9px) rotate(45deg);
}

.burger.clicked span::after {
  -webkit-transform: translateY(-9px) rotate(-45deg);
  -moz-transform: translateY(-9px) rotate(-45deg);
  -ms-transform: translateY(-9px) rotate(-45deg);
  -o-transform: translateY(-9px) rotate(-45deg);
  transform: translateY(-9px) rotate(-45deg);
}

.burger.clicked span:before,
.burger.clicked span:after {
  background-color: #335e77;
}

.burger:hover {
  cursor: pointer;
}

/*  NAV
========================================== */

nav {
  background-color: #fff;
  position: fixed;
  z-index: 9;
  top: 0;
  right: 0;
  height: 100%;
  max-width: 630px;
  width: 100%;
  padding: 100px 40px 60px 40px;
  overflow-y: auto;
  -webkit-transform: translateX(100%);
  -moz-transform: translateX(100%);
  -ms-transform: translateX(100%);
  -o-transform: translateX(100%);
  transform: translateX(100%);
  -webkit-transition: transform 0.55s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  -moz-transition: transform 0.55s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  -o-transition: transform 0.55s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  transition: transform 0.55s cubic-bezier(0.785, 0.135, 0.15, 0.86);
}

nav.show {
  -webkit-transform: translateX(0px);
  -moz-transform: translateX(0px);
  -ms-transform: translateX(0px);
  -o-transform: translateX(0px);
  transform: translateX(0px);
}

nav.show ul.main li {
  -webkit-transform: translateX(0px);
  -moz-transform: translateX(0px);
  -ms-transform: translateX(0px);
  -o-transform: translateX(0px);
  transform: translateX(0px);
  opacity: 1;
}

nav.show ul.main li:nth-child(1) {
  transition-delay: 0.15s;
}

nav.show ul.main li:nth-child(2) {
  transition-delay: 0.3s;
}

nav.show ul.main li:nth-child(3) {
  transition-delay: 0.45s;
}

nav.show ul.main li:nth-child(4) {
  transition-delay: 0.6s;
}

nav.show ul.main li:nth-child(5) {
  transition-delay: 0.75s;
}

nav.show ul.main li:nth-child(6) {
  transition-delay: 0.9s;
}

nav.show ul.main li:nth-child(7) {
  transition-delay: 1.05s;
}

nav.show ul.main li:nth-child(8) {
  transition-delay: 1.2s;
}

nav.show ul.main li:nth-child(9) {
  transition-delay: 1.35s;
}

nav.show .about,
nav.show .social,
nav.show ul.sub {
  -webkit-transform: translateY(0px);
  -moz-transform: translateY(0px);
  -ms-transform: translateY(0px);
  -o-transform: translateY(0px);
  transform: translateY(0px);
  opacity: 1;
  transition-delay: 0.85s;
}
@media (min-width: 667px) {
  nav {
    padding: 120px 90px 70px 90px;
  }
}

nav ul.main {
  list-style-type: none;
}

nav ul.main li {
  margin-bottom: 0;
  -webkit-transform: translateX(40px);
  -moz-transform: translateX(40px);
  -ms-transform: translateX(40px);
  -o-transform: translateX(40px);
  transform: translateX(40px);
  opacity: 0;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

nav ul.main li:last-of-type {
  margin-bottom: 0px;
}

nav ul.main li a {
  color: #335e77;
  font-family: "Nexa-Bold", sans-serif;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 1.5rem;
  display: block;
  font-weight: 600;
  padding: 10px 0;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

nav ul.main li a span {
  color: #4a99c7;
}

nav ul.main li a:hover {
  color: #4a99c7;
}

nav .about {
  margin-top: 40px;
  -webkit-transform: translateY(30px);
  -moz-transform: translateY(30px);
  -ms-transform: translateY(30px);
  -o-transform: translateY(30px);
  transform: translateY(30px);
  opacity: 0;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

nav .about p {
  color: #335e77;
  font-family: "Spectral", serif;
  font-size: 1.05rem;
  letter-spacing: 0.5px;
  line-height: 170%;
}

nav .social {
  margin-top: 40px;
  position: relative;
  padding-bottom: 30px;
  -webkit-transform: translateY(30px);
  -moz-transform: translateY(30px);
  -ms-transform: translateY(30px);
  -o-transform: translateY(30px);
  transform: translateY(30px);
  opacity: 0;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

nav .social a {
  display: inline-block;
  width: 25px;
  height: 25px;
  margin-right: 15px;
  color: #335e77;
  font-size: 1.5em;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

nav .social a:hover {
  color: #4a99c7;
}

nav .social a:last-of-type {
  margin-right: 0px;
}

nav .social a:hover svg path,
nav .social a:hover svg circle {
  fill: #b7ac7f;
}

nav .social a svg {
  width: 100%;
  height: 100%;
}

nav .social a svg path,
nav .social a svg circle {
  fill: #335e77;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

nav ul.sub {
  list-style-type: none;
  margin-top: 40px;
  -webkit-transform: translateY(30px);
  -moz-transform: translateY(30px);
  -ms-transform: translateY(30px);
  -o-transform: translateY(30px);
  transform: translateY(30px);
  opacity: 0;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

nav ul.sub li {
  margin-bottom: 10px;
}

nav ul.sub li:last-of-type {
  margin-bottom: 0px;
}

nav ul.sub li a {
  color: #335e77;
  font-family: "Nexa-Light", sans-serif;
  letter-spacing: 1px;
  font-size: 1.5rem;
  text-decoration: none;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

nav ul.sub li a:hover {
  color: #4a99c7;
}

nav ul.sub .idioma {
  font-family: "Nexa-Bold", sans-serif;
  font-size: 1rem;
}

/*  OVERLAY
========================================== */

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  background-color: #335e77;
  opacity: 0;
  visibility: hidden;
}

.overlay.show {
  opacity: 0.8;
  visibility: visible;
}

/*----- CIERRE MENU ---*/

.no-gutters {
  margin-right: 0;
  margin-left: 0;

  > .col,
  > [class*="col-"] {
    padding-right: 0;
    padding-left: 0;
  }
}

.btn {
  font-family: "NeoSans-MediumItalic";
  padding: 0.575rem 1rem;
  font-size: 1rem;
  line-height: 1.5;
  border-radius: 0.45rem;
  box-shadow: 0 4px 8px 0 rgba(56, 6, 123, 0.7),
    0 10px 50px 0 rgba(56, 6, 123, 0.7);
  transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out,
    box-shadow 0.15s ease-in-out;
}

.btn-primary {
  color: #fff;
  background-color: #f48020;
  border-color: #f48020;
}

.btn-primary:hover {
  color: #fff;
  background-color: #dc741d;
  border-color: #dc741d;
}

.btn-white {
  font-family: "NeoSans-MediumItalic";
  padding: 1.2rem 2rem;
  font-size: 1rem;
  line-height: 1.5;
  border-radius: 0.45rem;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.3), 0 10px 50px 0 rgba(0, 0, 0, 0.3);
  transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out,
    box-shadow 0.15s ease-in-out;
  color: #f48020;
  background-color: #fff;
  border-color: #fff;
}

.btn-white:hover {
  color: #fff;
  background-color: #f48020;
  border-color: #f48020;
  text-decoration: none;
}

header {
  z-index: 100;
  position: relative;
  padding-top: 1em;

  /*background: rgba(51, 94, 119, 0.7); */
}

header.fixed-top {
  position: absolute;
}

.home {
  z-index: 1;
  position: relative;
  background-color: #335e77;
}

hr {
  border: none;
  height: 4px;
  /* Set the hr color */
  color: #fff; /* old IE */
  background-color: #fff; /* Modern Browsers */
  opacity: 1;
  margin-top: 2.5em;
}

div.warp-img-home {
  background-repeat: no-repeat;
  background-position: center;
  background: cover;
  background-size: 100%;
  transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  box-shadow: inset 0 0 0 1000px rgba(51, 94, 119, 0.5);
}

div.warp-img-home:hover {
  background-size: 120%;
  box-shadow: inset 0 0 0 1000px rgba(51, 94, 119, 0);
}

.incendios-img {
  background: url(../img/incendios.jpg);
  animation: 1s ease-out 0s 1 slideInFromLeft;
}

.tratamiento-img {
  background: url(../img/tratamiento.jpg);
  animation: 0.8s ease-out 0s 1 slideInFromLeft;
}

.oil-gas-img {
  background: url(../img/oil-gas.jpg);
  animation: 0.7s ease-out 0s 1 slideInFromLeft;
}

.especiales-img {
  background: url(../img/especiales.jpg);
  animation: 0.6s ease-out 0s 1 slideInFromLeft;
}

.tit-home {
  padding-left: 1.5em;
  padding-right: 1.5em;
}

.tit-home a {
  display: block;
}

.tit-home h2 {
  font-size: 1.375em;
  color: white;
}

.tit-home h2 span {
  font-family: "Nexa-Light";
}

.tit-home p {
  color: white;
  margin-bottom: 2em;
}

/*---------------------- SECTION ---------------------*/

div.warp-img-section {
  background-repeat: no-repeat;
  background-position: center;
  background: cover;
  min-height: 100vh;
  background-size: 100%;
  transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
}

div.warp-img-fotos {
  background-repeat: no-repeat;
  background-position: center;
  background: cover;
  min-height: 90px;
  background-size: 100%;
  transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
}

.panel-section {
  min-height: 100vh;
  padding: 3.5em 1em;
  width: 100%;
  background: #fff;
}

.panel-section h2 {
  font-family: "Nexa-Light", sans-serif;
  color: #335e77;
  font-size: 1.5rem;
  margin-bottom: 1.6rem;
}

.panel-section h3,
.sidebar-section h3 {
  font-family: "Nexa-Bold", sans-serif;
  text-transform: uppercase;
  color: #4a99c7;
  font-size: 0.875rem;
  margin-bottom: 0rem;
}

.panel-section .resaltado {
  font-family: "Nexa-Bold", sans-serif;
}

.panel-section .sub-nav {
  margin-bottom: 2em;
  margin-top: 2em;
}

.panel-section .sub-nav a {
  font-family: "Nexa-Bold", sans-serif;
  padding: 0.9rem 2rem 0.6rem 2rem;
  width: 100%;
  font-size: 0.875rem;
  line-height: 1;
  border-radius: 1.5rem;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.1), 0 10px 50px 0 rgba(0, 0, 0, 0.1);
  transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out,
    box-shadow 0.15s ease-in-out;
  color: #335e77;
  background-color: #fff;
  border-color: #fff;
  opacity: 0.5;
  transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
}

.panel-section .sub-nav a:hover,
.panel-section .sub-nav a:active,
.panel-section .sub-nav a:focus {
  font-family: "Nexa-Bold", sans-serif;
  opacity: 1;
}

.panel-section .card-body {
  padding: 0;
}

.panel-section .card-body ul {
  padding: 0;
  list-style: none;
}

.panel-section .card-body ul li {
  margin-bottom: 1em;
}

.panel-section .card-body a {
  font-family: "Nexa-Light", sans-serif;
  padding: 1.1rem 1rem 0.8rem 1rem;
  font-size: 0.875rem;
  display: inline-block;
  line-height: 1;
  border-radius: 1.5rem;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 10px 50px 0 rgba(0, 0, 0, 0.2);
  color: #fff;
  background-image: -moz-linear-gradient(top, #3a8fc2, #00629f);
  background-image: -webkit-gradient(
    linear,
    0 0,
    0 100%,
    from(#3a8fc2),
    to(#00629f)
  );
  background-image: -webkit-linear-gradient(top, #3a8fc2, #00629f);
  background-image: -o-linear-gradient(top, #3a8fc2, #00629f);
  background-image: linear-gradient(to bottom, #3a8fc2, #00629f);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#3A8FC2', endColorstr='#00629F', GradientType=0);
  background-repeat: repeat-y;
  background-size: 100% 90px;
  background-position: 0 -30px;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
}

.panel-section .card-body a:hover {
  background-position: 0 0;
}

.sidebar-section {
  background-color: #f5f5f5;
  min-height: 100vh;
  padding: 3.5em 2em;
}

.btn-rounded {
  font-family: "Nexa-Light", sans-serif;
  padding: 1.1rem 1rem 0.8rem 1rem;
  font-size: 0.875rem;
  display: inline-block;
  line-height: 1;
  border-radius: 1.5rem;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 10px 50px 0 rgba(0, 0, 0, 0.2);
  color: #fff;
  background-image: -moz-linear-gradient(top, #3a8fc2, #00629f);
  background-image: -webkit-gradient(
    linear,
    0 0,
    0 100%,
    from(#3a8fc2),
    to(#00629f)
  );
  background-image: -webkit-linear-gradient(top, #3a8fc2, #00629f);
  background-image: -o-linear-gradient(top, #3a8fc2, #00629f);
  background-image: linear-gradient(to bottom, #3a8fc2, #00629f);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#3A8FC2', endColorstr='#00629F', GradientType=0);
  background-repeat: repeat-y;
  background-size: 100% 90px;
  background-position: 0 -30px;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
}

.btn-rounded.w100 {
  width: 100%;
}

.btn-rounded:hover {
  background-position: 0 0;
  color: #fff;
}

.btn-rounded-white {
  font-family: "Nexa-Bold", sans-serif;
  padding: 0.9rem 2rem 0.6rem 2rem;
  font-size: 0.875rem;
  display: inline-block;
  line-height: 1;
  border-radius: 1.5rem;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.1), 0 10px 50px 0 rgba(0, 0, 0, 0.1);
  transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out,
    box-shadow 0.15s ease-in-out;
  color: #335e77;
  background-color: #fff;
  border-color: #fff;
  opacity: 0.7;
  transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
}

.btn-rounded-white i {
  color: #4a99c7;
  font-size: 1.1em;
  margin-right: 0.3em;
}

.btn-rounded-white:hover,
.btn-rounded-white:active,
.btn-rounded-white:focus {
  font-family: "Nexa-Bold", sans-serif;
  opacity: 1;
  color: #335e77;
}

div.warp-img-section.incendios-img {
  box-shadow: inset 0 0 0 1000px rgba(255, 0, 0, 0.7);
}

div.warp-img-section.tratamiento-img {
  box-shadow: inset 0 0 0 1000px rgba(193, 161, 3, 0.7);
}

div.warp-img-section.oil-gas-img {
  box-shadow: inset 0 0 0 1000px rgba(3, 186, 193, 0.7);
}

div.warp-img-section.especiales-img {
  box-shadow: inset 0 0 0 1000px rgba(0, 152, 76, 0.7);
}

.incendios-fotos {
  background: url(../img/incendios-1-sm.jpg);
  animation: 0.8s ease-out 0s 1 slideInFromLeft;
}

.tratamiento-fotos {
  background: url(../img/tratamiento-1-sm.jpg);
  animation: 0.8s ease-out 0s 1 slideInFromLeft;
}

.insumos-fotos {
  background: url(../img/insumos-1-sm.jpg);
  animation: 0.8s ease-out 0s 1 slideInFromLeft;
}

.especiales-fotos {
  background: url(../img/especiales-1-sm.jpg);
  animation: 0.8s ease-out 0s 1 slideInFromLeft;
}

.institucional-fnd {
  background-image: linear-gradient(#3a8fc2, #00629f);
}

/*--------------- PRODUCTOS -------------------*/

.header-product {
  margin-bottom: 2.5em;
}

.header-product h2 {
  margin-bottom: 0.4em;
}

.header-product h3 {
  color: #335e77;
}

.body-product h3 {
  margin-bottom: 1em;
}

.body-product p {
  font-size: 1.1875em;
  line-height: 1.3em;
}

.body-product.product-p {
  font-size: 0.85rem;
  line-height: 1.3em;
}

.line-grey {
  border: none;
  height: 1px;
  /* Set the hr color */
  color: #b9c4c9; /* old IE */
  background-color: #b9c4c9; /* Modern Browsers */
  opacity: 1;
  margin-top: 2.5em;
  margin-bottom: 2.5em;
}

.download-product h3 {
  margin-bottom: 1em;
}

.download-product .btn-rounded-white {
  min-width: 200px;
  margin-bottom: 1em;
}

.dropdown-menu {
  border: none;
  margin-bottom: 0.5em;
  margin-top: 0.5em;
  border-radius: 1.5rem;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.1), 0 10px 50px 0 rgba(0, 0, 0, 0.1);
  transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out,
    box-shadow 0.15s ease-in-out;
}

.dropdown-item h3 {
  margin-bottom: 0.4em;
}
.dropdown-item {
  font-size: 0.9em;
}

.footer-product {
  font-size: 0.98em;
  line-height: 1.1em;
}

/*---------------------- CONTACTO---------------------*/

.contacto .panel-section {
  padding: 3.5em 1em;
}

.contacto h2 {
  font-family: "Nexa-Light", sans-serif;
  margin-bottom: 0em;
}

.contacto .resaltado {
  font-family: "Nexa-Bold", sans-serif;
  font-size: 1.125em;
}

form .form-control {
  color: #335e77;
  font-size: 1rem;
  border: none;
  border-radius: 0;
  border-bottom: solid 1px #b9c4c9;
  padding-left: 0;
  margin-bottom: 1.5em;
  background-color: #f5f5f5;
}

form .form-control-file {
  font-size: 0.9em;
}

form .form-control:focus {
  border: none;
  box-shadow: none;
  border-bottom: solid 1px #b9c4c9;
  background-color: #f5f5f5;
}

form .form-control::placeholder {
  /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: #335e77;
  opacity: 1; /* Firefox */
}

form .form-control:-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  color: #335e77;
}

form .form-control::-ms-input-placeholder {
  /* Microsoft Edge */
  color: #335e77;
}

.location-field {
  display: none;
}

.datos-contacto {
  color: #335e77;
}

.panel-section.datos-contacto .resaltado {
  color: #335e77;
  font-size: 1.5em;
  line-height: 1em;
}

.mail,
.tel {
  font-family: "Nexa-Bold", sans-serif;
  color: #4a99c7;
  font-size: 1em;
  transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
}

.mail:hover {
  color: #335e77;
}

.contacto .btn-rounded {
  padding-left: 2em;
  padding-right: 2em;
}

/*-------------------------NOTAS --------------------------*/

.notas h2 {
  font-family: "Nexa-Light", sans-serif;
  font-size: 1.375rem;
}

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

.notas ul li:after {
  content: "";
  display: block;
  height: 1px;
  width: 100%;
  margin: 1.5em 0;
  background: #b9c4c9;
}

.notas .fecha,
.nota-principal .fecha {
  color: #4a99c7;
  font-size: 0.875em;
  margin-bottom: 0.3em;
}

.notas h3 {
  text-transform: none;
  font-size: 1em;
}

.notas a {
  color: #335e77;
  transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
}

.notas a:hover {
  color: #4a99c7;
}

.nota-principal h2 {
  font-family: "Nexa-Bold", sans-serif;
  font-size: 1.625em;
  margin-bottom: 0.5em;
  margin-top: 0.7em;
}



@media (max-width: 576px) {
  div.warp-img-home {
    background-repeat: no-repeat;
    background-position: center;
    background: cover;
    background-size: 100%;
    transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    box-shadow: inset 0 0 0 1000px rgba(51, 94, 119, 0.8);
  }

  div.warp-img-home:hover {
    background-size: 120%;
    box-shadow: inset 0 0 0 1000px rgba(51, 94, 119, 0.4);
  }
  div.warp-img-section {
    background-repeat: no-repeat;
    background-position: center;
    background: cover;
    min-height: 50vh;
    background-size: 100%;
    transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
  }
}

div.warp-img-home {
  min-height: 50vh;
  max-height: 50%;
  overflow: hidden;
}

/*// Small devices (landscape phones, 576px and up)*/
@media (min-width: 576px) {
  div.warp-img-fotos {
    min-height: 135px;
  }

  .panel-section .sub-nav a {
    width: inherit;
  }

  .panel-section {
    min-height: 550px;
    padding: 4.5em 2em;
  }

  .sidebar-section {
    min-height: 550px;
    padding: 3.5em 2em;
  }

  .panel-section h2 {
    font-size: 1.75rem;
  }

  .line-grey {
  }

  .download-product .btn-rounded-white {
    min-width: 100%;
    margin-bottom: 1em;
  }
}

/*// Medium devices (tablets, 768px and up)*/
@media (min-width: 768px) {
  div.warp-img-home {
    min-height: 50vh;
  }

  div.warp-img-section {
    min-height: 50vh;
  }

  div.warp-img-fotos {
    min-height: 190px;
  }

  .panel-section {
    padding: 5em 3.5em;
  }

  .sidebar-section {
    padding: 3.5em 3.5em;
  }
}

/*// Large devices (desktops, 992px and up)*/
@media (min-width: 992px) {

  .burger-blue span,
  .burger-blue span::before,
  .burger-blue span::after {
    background-color: #335e77;
  }

  div.warp-img-home {
    min-height: 100vh;
  }

  div.warp-img-section {
    min-height: 100vh;
  }

  div.warp-img-section {
    background-size: 120%;
  }

  .panel-section {
    padding: 2em 2em;
    min-height: 100vh;
  }

  .sidebar-section {
    padding: 2em 2em;
    min-height: 100vh;
  }

  .panel-section .sub-nav a {
    padding: 0.9rem 1rem 0.6rem 1rem;
  }

  div.warp-img-fotos {
    min-height: 100vh;
    background-size: 120%;
  }

  .incendios-fotos {
    background: url(../img/incendios-1.jpg);
    animation: 0.8s ease-out 0s 1 slideInFromLeft;
  }

  .tratamiento-fotos {
    background: url(../img/tratamiento-1.jpg);
    animation: 0.8s ease-out 0s 1 slideInFromLeft;
  }

  .insumos-fotos {
    background: url(../img/insumos-1.jpg);
    animation: 0.8s ease-out 0s 1 slideInFromLeft;
  }

  .especiales-fotos {
    background: url(../img/especiales-1.jpg);
    animation: 0.8s ease-out 0s 1 slideInFromLeft;
  }

  .sidebar-section p {
    font-size: 0.9rem;
  }

  .panel-section.datos-contacto .resaltado {
    color: #335e77;
    font-size: 1.1em;
    line-height: 1.3em;
  }

  .burger {
    position: fixed;
    top: 20px;
    right: 20px;
  }

  header.fixed-top {
    position: fixed;
  }
}

/*// Extra large devices (large desktops, 1200px and up)*/
@media (min-width: 1200px) {
  nav {
    max-width: 50%;
  }

  .panel-section {
    padding: 2em 3.5em;
  }

  .contacto .sidebar-section {
    padding: 2em 5em;
  }

  .sidebar-section {
    padding: 2em 2.5em;
  }

  .panel-section .sub-nav a {
    padding: 0.9rem 1.5rem 0.6rem 1.5rem;
  }
}

/*// Extra large devices (large desktops, 1200px and up)*/
@media (min-width: 1400px) {
  .tit-home h2 {
    font-size: 165%;
  }

  nav ul.main li a {
    font-size: 185%;
  }

  div.warp-img-section {
    background-size: 100%;
  }

  div.warp-img-fotos {
    background-size: 100%;
  }

  .panel-section h2 {
    font-size: 210%;
  }

  .sidebar-section {
    padding: 2em 3.5em;
  }

  .sidebar-section p {
    font-size: 1rem;
  }

  .contacto .sidebar-section {
    padding: 2em 7em;
  }

  .panel-section.datos-contacto .resaltado {
    font-size: 1.5em;
    line-height: 1.1em;
  }
}

@-moz-document url-prefix() {
  div.warp-img-home {
    min-height: 100vh;
  }

  div.warp-img-section {
    min-height: 100vh;
  }

  .panel-section {
    min-height: 100vh;
  }

  .sidebar-section {
    min-height: 100vh;
  }

  div.warp-img-fotos {
    min-height: 100vh;
  }
}
