@import url(cookieconsent.css);
@import url(sweet-alert.css);
* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  font-family: 'Open Sans', sans-serif;
  padding: 0;
  margin: 0;
}

body {
  margin: 0px;
  color: #4B5064;
  font-size: 1em;
}

::-moz-selection {
  background: #ff8200;
  color: #fff;
}

::selection {
  background: #ff8200;
  color: #fff;
}

address {
  font-style: normal;
}

button {
  border: none;
  outline: none;
  padding: 0;
  margin: 0;
  background: none;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.blue {
  color: #005aaa;
}

.orange {
  color: #ff8200;
}

.red {
  color: #c80000;
}

.bold {
  font-weight: 600;
}

.menulayer .menu {
  position: fixed;
  width: 100%;
  background-color: #fff;
  -webkit-box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.2);
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.2);
  z-index: 10;
}

@media screen and (max-width: 800px) {
  .menulayer .menu {
    display: none;
  }
}

.menulayer .menu .menubox {
  height: 80px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
}

.menulayer .menu .menuoptions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
  justify-content: space-around;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 460px;
  color: #4B5064;
  cursor: pointer;
}

.menulayer .menu .menuoptions a {
  width: 100%;
  text-decoration: none;
}

.menulayer .menu .menuoptions a .moption {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 80px;
  text-align: center;
  position: relative;
  -webkit-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  font-size: 1em;
  color: #4B5064;
}

.menulayer .menu .menuoptions a .moption::after {
  position: absolute;
  content: " ";
  display: block;
  width: 100%;
  height: 6px;
  bottom: 0;
  background-color: #ff8200;
  opacity: 0;
  -webkit-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

.menulayer .menu .menuoptions a .moption:hover {
  color: #005aaa;
}

.menulayer .menu .menuoptions a .moption:hover::after {
  opacity: 1;
}

.menulayer .menu .menuoptions .active {
  color: #005aaa !important;
}

.menulayer .menu .menuoptions .active::after {
  opacity: 1 !important;
}

.menulayer .menu .telefono {
  width: 60px;
  -webkit-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

.menulayer .menu .telefono:hover {
  -webkit-transform: scale(1.2);
  -ms-transform: scale(1.2);
  transform: scale(1.2);
}

.menulayer .menum {
  display: none;
  position: fixed;
  width: 100%;
  height: 50px;
  background-color: #fff;
  -webkit-box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.2);
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.2);
  z-index: 10;
}

@media screen and (max-width: 800px) {
  .menulayer .menum {
    display: block;
  }
}

.menulayer .menum .icomenu {
  float: right;
  height: 50px;
}

.menulayer .telefonom {
  float: right;
  height: 50px;
}

.menulayer .logom {
  margin-left: 10px;
  height: 50px;
}

.menulayer .menufull {
  visibility: hidden;
  opacity: 0;
  position: fixed;
  width: 100%;
  height: 100%;
  background-color: #fff;
  -webkit-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  z-index: 10;
}

.menulayer .menufull .icomenuclose {
  float: right;
  width: 50px;
  height: 50px;
  z-index: 999;
  cursor: pointer;
}

.menulayer .on {
  visibility: visible;
  opacity: 1;
}

.submenu {
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 120px;
  height: 240px;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  margin: auto;
}

.submenu a {
  width: 100%;
  height: 60px;
  line-height: 60px;
  text-align: center;
  color: #005aaa;
  border-bottom: 2px solid #ff8200;
  text-decoration: none;
}

.submenu a:last-child {
  border: none !important;
}

.center {
  text-align: center;
}

.padtop {
  padding-top: 80px;
}

@media screen and (max-width: 800px) {
  .padtop {
    padding-top: 50px;
  }
}

h1 {
  font-size: 1.6em;
  font-weight: 600;
  padding: 60px 20px;
  text-align: center;
  color: #005aaa;
}

b {
  font-weight: 600;
  color: #ff8200;
}

.separator {
  max-width: 1200px;
  height: 30px;
  margin: 0 auto;
  background-image: url("/imagenes/separador.png");
  background-size: cover;
  background-position: center;
}

.txtbox {
  width: 100%;
}

.lpadding {
  padding: 0 20px;
}

.tramarecodis {
  background-image: url("/imagenes/tramarecodisl.svg"), url("/imagenes/tramarecodisr.svg");
  background-position: top left, top right;
  background-repeat: repeat-y;
}

@media screen and (max-width: 1720px) {
  .tramarecodis {
    background-position: top left -100px, top right -100px;
  }
}

@media screen and (max-width: 1500px) {
  .tramarecodis {
    background-position: top left -140px, top right -140px;
  }
}

@media screen and (max-width: 1200px) {
  .tramarecodis {
    background-image: none;
  }
}

.botonverde {
  padding: 10px 30px 12px;
  font-size: 1em;
  text-align: center;
  color: #fff;
  background-color: #50C800;
}

.botonverde:hover {
  background-color: #3D9900;
}

.botonoutline {
  padding: 10px 30px 12px;
  font-size: 1em;
  font-weight: 600;
  text-align: center;
  color: #005aaa;
  border: 3px solid #ff8200;
}

.botonoutline:hover {
  color: #fff;
  background-color: #ff8200;
}

.bmarleft {
  margin-left: 40px;
}

@media screen and (max-width: 660px) {
  .bmarleft {
    margin-left: 0;
  }
}

.btopblank {
  margin-top: 10px;
}

.txtcenter {
  text-align: center;
}

.mno {
  display: block;
}

@media screen and (max-width: 960px) {
  .mno {
    display: none;
  }
}

.msi {
  display: none;
}

@media screen and (max-width: 960px) {
  .msi {
    display: block;
  }
}

.backmodal {
  visibility: hidden;
  opacity: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 20px;
  background-color: rgba(0, 40, 80, 0.6);
  -webkit-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
  z-index: 10;
}

@media screen and (max-width: 460px) {
  .backmodal {
    -webkit-box-pack: normal;
    -ms-flex-pack: normal;
    justify-content: normal;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
}

.on {
  visibility: visible;
  opacity: 1;
}

.exitmodal {
  position: absolute;
  width: 100%;
  height: 100%;
}

.vmodal {
  position: relative;
  overflow: auto;
  max-width: 460px;
  max-height: 100%;
  padding: 40px;
  background-color: #fff;
  -webkit-box-shadow: 0px 6px 50px 0px rgba(0, 40, 80, 0.6);
  box-shadow: 0px 6px 50px 0px rgba(0, 40, 80, 0.6);
}

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

.vmodal h2 {
  margin-bottom: 20px;
  color: #005aaa;
  font-weight: 600;
  text-align: center;
}

.vmodal p {
  margin-bottom: 20px;
}

.vmclose {
  position: absolute;
  top: 10px;
  right: 10px;
}

.vmclose .layerback {
  position: relative;
  width: 40px;
  height: 40px;
  border-radius: 20px;
  background-color: #fff;
  background-image: url("/imagenes/ico40close.svg");
  background-position: center bottom;
  -webkit-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

.vmclose .layerback .layertop {
  position: absolute;
  width: 40px;
  height: 40px;
  border-radius: 20px;
  background-image: url("/imagenes/ico40close.svg");
  background-position: center top;
  -webkit-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

.vmclose .layerback:hover {
  background-color: #c80000;
}

.vmclose .layerback:hover .layertop {
  visibility: hidden;
  opacity: 0;
}

.modalform input, .modalform textarea {
  width: 100%;
  height: 3em;
  margin-bottom: .8em;
  padding: 10px;
  font-size: 1em;
  background-color: rgba(255, 255, 255, 0);
  border: 2px solid #005aaa;
  outline: none;
  -webkit-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}

.modalform textarea {
  height: 8em;
  margin-bottom: .8em;
}

.checkn {
  display: inline-block;
  vertical-align: top;
  width: 22px;
  height: 22px;
  cursor: pointer;
  background-image: url("/imagenes/ico22check.svg");
  background-position: center top;
}

.checkn:hover {
  background-position: center bottom;
}

.checks {
  display: inline-block;
  vertical-align: top;
  width: 22px;
  height: 22px;
  cursor: pointer;
  background-image: url("/imagenes/ico22check.svg");
  background-position: center bottom;
}

.mainofertas {
  width: 100%;
  padding: 50px 20px;
}

@media screen and (max-width: 960px) {
  .mainofertas {
    padding: 30px 20px;
  }
}

.offerblocks {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  max-width: 960px;
  margin: 0 auto;
}

@media screen and (max-width: 960px) {
  .offerblocks {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}

.oblock {
  width: 50%;
}

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

.oblock h1 {
  font-size: 1.2em;
  font-weight: 600;
  padding: 0;
  text-align: left;
  color: #005aaa;
}

@media screen and (max-width: 960px) {
  .oblock h1 {
    text-align: center;
  }
}

.obtxt {
  padding-right: 40px;
}

@media screen and (max-width: 960px) {
  .obtxt {
    padding-right: 0;
  }
}

.buscabox {
  position: relative;
}

.buscaofertas {
  width: 100%;
  height: 50px;
  padding: 0 60px 0 25px;
  font-size: 1.1em;
  color: #005aaa;
  background-color: rgba(255, 255, 255, 0.6);
  -webkit-box-shadow: inset 0px 4px 30px 0px rgba(0, 40, 80, 0.2);
  box-shadow: inset 0px 4px 30px 0px rgba(0, 40, 80, 0.2);
  border: none;
  border-radius: 25px;
  outline: none;
}

.buscaofertas::-webkit-input-placeholder {
  font-style: italic;
  color: #ccc;
}

.buscaofertas:-ms-input-placeholder {
  font-style: italic;
  color: #ccc;
}

.buscaofertas::-ms-input-placeholder {
  font-style: italic;
  color: #ccc;
}

.buscaofertas::placeholder {
  font-style: italic;
  color: #ccc;
}

.botonbuscar {
  position: absolute;
  width: 50px;
  height: 50px;
  top: 0;
  right: 10px;
  cursor: pointer;
  background-image: url("/imagenes/ico50lupa.svg");
  background-repeat: no-repeat;
}

.ayudaofertas {
  display: block;
  max-width: 100%;
  margin: 20px auto;
}

.payuda {
  margin: 26px 0;
}

.map {
  width: 100%;
}

.lineaazul {
  width: 100%;
  height: 2px;
  background-color: #d2e1f0;
}

.resultadoautoc {
  display: none;
  width: 100%;
  padding: 10px 0;
  position: absolute;
  background-color: #FFF;
  border-radius: 10px;
  -webkit-box-shadow: 0px 6px 50px 0px rgba(0, 80, 160, 0.2);
  box-shadow: 0px 6px 50px 0px rgba(0, 80, 160, 0.2);
  z-index: 999;
}

@media screen and (max-width: 960px) {
  .resultadoautoc {
    position: relative;
  }
}

.botonautoc {
  padding: 10px 15px;
  cursor: pointer;
}

.botonautoc:hover {
  background-color: rgba(0, 80, 160, 0.1);
}

.locabox {
  max-width: 960px;
  margin: 0 auto 80px;
  padding: 40px 40px 20px;
  -webkit-box-shadow: 0px 6px 50px 0px rgba(0, 80, 160, 0.2);
  box-shadow: 0px 6px 50px 0px rgba(0, 80, 160, 0.2);
}

.lbrow {
  width: 100%;
}

.lbrow h3 {
  position: relative;
  height: 32px;
  margin-bottom: 10px;
  color: #ff8200;
  border-bottom: 2px solid rgba(0, 90, 170, 0.1);
}

.lbrow ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  width: 100%;
  margin-bottom: 30px;
  list-style-type: none;
}

.lbrow ul li {
  display: block;
  width: calc(100% / 3);
  cursor: pointer;
}

.lbrow ul li:hover {
  color: #ff8200;
  font-weight: 600;
  text-decoration: underline;
}

@media screen and (max-width: 860px) {
  .lbrow ul li {
    width: 50%;
  }
}

@media screen and (max-width: 600px) {
  .lbrow ul li {
    width: 100%;
  }
}

.offerbox {
  max-width: 960px;
  margin: 0 auto 80px;
  -webkit-box-shadow: 0px 6px 50px 0px rgba(0, 80, 160, 0.2);
  box-shadow: 0px 6px 50px 0px rgba(0, 80, 160, 0.2);
}

.offerbox .obtitle {
  width: 100%;
  padding: 10px 20px;
  text-align: center;
  background-color: #005aaa;
  color: #fff;
  font-weight: 500;
}

.offercontent {
  padding: 20px 40px 40px;
}

.oferta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  margin: 20px auto;
}

.selectbox {
  min-width: 220px;
}

.selectbox p {
  margin-bottom: 6px;
  text-align: center;
  color: #005aaa;
  font-size: 1.08em;
  font-weight: 600;
}

.selectbox select {
  width: 100%;
  height: 40px;
  margin-bottom: 10px;
  font-size: 1.4em;
  line-height: 32px;
  font-weight: 600;
  border: 3px solid #005aaa;
  outline: none;
  text-align-last: center;
  color: #ff8200;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-color: #fff;
  background-image: url("/imagenes/selectarrow.svg");
  background-repeat: no-repeat;
  background-position: center right 10px;
}

.selectbox select option {
  font-weight: 600;
}

.pricetag {
  min-width: 260px;
  text-align: center;
}

.pricetag h3 {
  font-size: 1.8em;
  color: #005aaa;
}

.pricetag .pricetagbox {
  font-size: 2.4em;
  font-weight: 700;
  color: #ff8200;
}

.pricetag .pricetagbox b {
  color: #005aaa;
}

.pricetag .pricetagbox span {
  font-size: 0.8em;
}

.offerbuttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 100%;
  margin: 0 auto;
}

@media screen and (max-width: 660px) {
  .offerbuttons {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .offerbuttons .bcontratar {
    margin-bottom: 20px;
  }
}

.iva {
  margin-top: 0.4em;
}

.pllxfixed {
  width: 100%;
  padding: 80px 20px;
  background-size: cover;
  background-attachment: fixed;
}

.pllx1 {
  background-image: url("/imagenes/mapa1.jpg");
}

.pllx2 {
  background-image: url("/imagenes/mapa2.jpg");
}

.mapa1 {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.mapa1 p {
  color: #fff;
  font-size: 1.2em;
  font-weight: 600;
  text-align: left;
  margin-bottom: 20px;
}

.mapa1 button {
  padding: 14px 30px;
  font-size: 1.2em;
  font-weight: 600;
  color: #fff;
  background-color: #ff8200;
}

.mapa1 button:hover {
  color: #ff8200;
  background-color: #fff;
}

.mapa2 {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.mapa2 p {
  color: #fff;
  font-size: 1.4em;
  font-weight: 600;
  margin-bottom: 20px;
}

.mapa2 button {
  padding: 14px 30px;
  font-size: 1.2em;
  font-weight: 600;
  color: #fff;
  background-color: #005aaa;
}

.mapa2 button:hover {
  color: #005aaa;
  background-color: #fff;
}

.boxventajas {
  max-width: 1400px;
  margin: 0 auto;
  padding-bottom: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.boxventajas .ventaja {
  width: 260px;
  margin: 20px 40px;
  text-align: center;
}

.boxventajas .ventaja h2 {
  height: 40px;
  font-size: 1em;
  color: #005aaa;
}

.boxventajas .ventaja p {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 140px;
  font-size: 0.94em;
}

.opinionbox {
  max-width: 800px;
  margin: 0 auto;
  padding: 20px 0;
}

.opinionbox h2 {
  text-align: center;
  font-weight: 600;
  color: #005aaa;
  margin: 10px 0 20px;
}

.opinionbox .opinion, .opinionbox .opinionr {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 60px;
  padding: 0 20px;
}

.opinionbox .opinion .opphoto, .opinionbox .opinionr .opphoto {
  min-width: 140px;
  min-height: 140px;
  margin: 0 auto 20px;
  padding-top: 10px;
  border: 4px solid #005aaa;
  text-align: center;
  font-size: 0;
}

.opinionbox .opinion .opphoto img, .opinionbox .opinionr .opphoto img {
  width: 110px;
  height: 110px;
}

.opinionbox .opinion .optxt, .opinionbox .opinionr .optxt {
  width: 100%;
}

.opinionbox .opinion .optxtr, .opinionbox .opinionr .optxtr {
  padding-left: 40px;
}

.opinionbox .opinion .optxtl, .opinionbox .opinionr .optxtl {
  padding-right: 40px;
}

@media screen and (max-width: 700px) {
  .opinion, .opinionr {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .opinion .optxtr, .opinionr .optxtr {
    padding-left: 0 !important;
  }
  .opinion .optxtl, .opinionr .optxtl {
    padding-right: 0 !important;
  }
  .opinionr {
    -ms-flex-wrap: wrap-reverse;
    flex-wrap: wrap-reverse;
  }
}

.parallaxempresa {
  width: 100%;
  height: 400px;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

@media screen and (max-width: 600px) {
  .parallaxempresa {
    height: 300px;
  }
}

@media screen and (max-width: 400px) {
  .parallaxempresa {
    height: 220px;
  }
}

.textoempresa {
  max-width: 840px;
  padding: 0 20px 220px;
  margin: 0 auto;
  background-image: url("/imagenes/empresabottom.svg");
  background-repeat: no-repeat;
  background-size: 90%;
  background-position: bottom 80px center;
}

@media screen and (max-width: 600px) {
  .textoempresa {
    padding: 0 20px 140px;
  }
}

.textoempresa p {
  text-align: justify;
}

@media screen and (max-width: 600px) {
  .textoempresa p {
    text-align: left;
  }
}

.fotoempresa {
  width: 220px;
  text-align: center;
}

.fotoempresa img {
  width: 180px;
  margin: 40px 0 10px;
  border-radius: 50%;
}

.fotoempresa .firma {
  text-align: center;
  color: #005aaa;
}

.fotoempresa .firma span {
  color: #ff8200;
}

@media screen and (max-width: 600px) {
  .fotoempresa {
    margin: 0 auto;
  }
}

.parallaxservicios {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 100%;
  height: 350px;
}

.parallaxservicios h1 {
  position: absolute;
  font-weight: 700;
  font-size: 6em;
  padding: 0;
  color: #fff;
  bottom: -30px;
}

@media screen and (max-width: 1200px) {
  .parallaxservicios h1 {
    font-size: 5em;
    bottom: -24px;
  }
}

@media screen and (max-width: 600px) {
  .parallaxservicios h1 {
    font-size: 3.8em;
    bottom: -20px;
  }
}

.servicebox {
  max-width: 840px;
  padding: 30px 20px 60px;
  margin: 0 auto;
}

.servicebox .notes {
  font-size: 0.8em;
  margin-top: 30px;
}

.servicebox .notes span {
  font-weight: 600;
  color: #ff8200;
}

.servicebox .service {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-pack: distribute;
  justify-content: space-around;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.servicebox .service img {
  width: 284px;
  height: 240px;
}

.servicebox .service .servtxt {
  max-width: 400px;
}

.servicebox .service .servtxt h2 {
  font-weight: 600;
  margin-bottom: 20px;
  color: #005aaa;
}

.servicebox .service .servtxt p {
  margin-bottom: 20px;
}

.servicebox .service .servtxt ul {
  list-style: none;
}

.servicebox .service .servtxt ul li {
  margin-bottom: 14px;
}

.servicebox .service .servtxt ul li::before {
  content: " ";
  position: absolute;
  width: 16px;
  height: 16px;
  margin-top: 4px;
  background-image: url("/imagenes/ico16check.svg");
}

.servicebox .service .servtxt ul li h3 {
  font-weight: 600;
  color: #ff8200;
  padding-left: 24px;
}

.servicebox .service .servtxt ul li .label {
  font-size: 0.92em;
  padding-left: 24px;
}

.servicebox .service .servtxt ul li .label sup {
  font-weight: 700;
  color: #ff8200;
}

.servicebox .sright {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}

.servicefooter {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
}

@media screen and (max-width: 1300px) {
  .servicefooter {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}

.servicefooter .sf {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
  width: 100%;
  padding: 80px;
  color: #fff;
  background-size: cover;
  background-position: center;
}

.servicefooter .sf h2 {
  margin-bottom: 24px;
}

.servicefooter .sf button {
  margin-top: 24px;
  height: 40px;
  font-size: 1em;
  font-weight: 600;
  color: #005aaa;
  background-color: #fff;
  padding: 0 30px;
}

.servicefooter .sf button:hover {
  color: #fff;
  background-color: #005aaa;
}

.servicefooter .sfcobertura {
  background-image: url("/imagenes/cobertura.jpg");
}

.servicefooter .sfseguimiento {
  background-image: url("/imagenes/seguimiento.jpg");
}

.servicefooter .sfcumplimientos {
  background-image: url("/imagenes/cumplimientos.jpg");
}

.contactcontainer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
}

.contactcontainer .contactbox h1 {
  text-align: left;
  padding: 0;
  margin-bottom: 40px;
}

.contactcontainer .data {
  -webkit-box-ordinal-group: 2;
  -ms-flex-order: 1;
  order: 1;
  width: 25%;
  padding: 50px;
  line-height: 1.6em;
}

.contactcontainer .data .contactphone {
  font-size: 2.4em;
  font-weight: 700;
  color: #005aaa;
  margin-bottom: 20px;
}

.contactcontainer .data .contactmail {
  font-size: 1.2em;
  font-weight: 600;
  color: #005aaa;
}

.contactcontainer .data .contactaddress {
  color: #005aaa;
}

.contactcontainer .data .contactaddress:hover {
  text-decoration: underline;
}

.contactcontainer .form {
  -webkit-box-ordinal-group: 3;
  -ms-flex-order: 2;
  order: 2;
  width: 35%;
  padding: 50px 80px;
}

.contactcontainer .form .campo {
  width: 100%;
  padding: 10px;
  font-size: 1em;
  margin-bottom: 20px;
  border: 2px solid #005aaa;
  outline: none;
}

.contactcontainer .form .txtarea {
  min-height: 160px;
}

.contactcontainer .map {
  -webkit-box-ordinal-group: 4;
  -ms-flex-order: 3;
  order: 3;
  width: 50%;
}

.contactcontainer .map iframe {
  width: 100%;
  min-height: 460px;
  height: 100%;
  border: none;
}

@media screen and (max-width: 1420px) {
  .contactcontainer {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .contactcontainer .data {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
    width: 40%;
  }
  .contactcontainer .form {
    -webkit-box-ordinal-group: 4;
    -ms-flex-order: 3;
    order: 3;
    width: 60%;
  }
  .contactcontainer .map {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
    width: 100%;
  }
}

@media screen and (max-width: 820px) {
  .contactcontainer .data {
    width: 100%;
  }
  .contactcontainer .form {
    width: 100%;
    padding: 50px;
  }
  .contactcontainer .map {
    width: 100%;
  }
}

@media screen and (max-width: 460px) {
  .contactcontainer .data {
    padding: 40px 20px 20px;
  }
  .contactcontainer .form {
    padding: 40px 20px;
  }
}

.checkdiv {
  margin: 10px auto;
}

#botonenviar {
  max-width: 180px;
  padding: 10px 30px 12px;
  margin: 20px auto;
  font-size: 1em;
  text-align: center;
  color: #fff;
  background-color: #50C800;
  cursor: pointer;
}

#botonenviar:hover {
  background-color: #3D9900;
}

footer {
  background-color: #162536;
  padding: 10px 0 0;
  color: #fff;
}

.footermenubox {
  width: 100%;
  padding: 20px 0;
  background-color: #005aaa;
}

.footermenu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  max-width: 960px;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  margin: 0 auto;
}

@media screen and (max-width: 1080px) {
  .footermenu {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}

.footbox {
  padding: 20px;
}

.footbox h2 {
  position: relative;
  margin-bottom: 30px;
  font-size: 1.2em;
  font-weight: 600;
}

.footbox h2::after {
  position: absolute;
  content: " ";
  display: block;
  width: 100%;
  height: 3px;
  bottom: -10px;
  background-color: #162536;
}

.footbox ul {
  width: 280px;
  list-style-type: none;
}

.footbox ul a {
  color: #ff8200;
  margin-bottom: 30px;
  text-decoration: none;
}

.footbox ul a li {
  height: 30px;
  margin-bottom: 10px;
  line-height: 30px;
  font-size: 0.94em;
  color: #fff;
  opacity: 0.8;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.footbox ul a:hover {
  text-decoration: underline;
}

.footbox ul a:hover li {
  opacity: 1;
}

.frecodis {
  min-width: 320px;
  width: 100%;
  -ms-flex-negative: 2;
  flex-shrink: 2;
}

.fservicios {
  width: 100%;
}

.fservicios div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.blankleft {
  margin-right: 40px;
}

@media screen and (max-width: 400px) {
  .blankleft {
    margin-right: 0;
  }
}

.blueline {
  width: 100%;
  height: 10px;
  margin-top: 10px;
  background-color: #005aaa;
}

.footerdata {
  padding: 60px 20px;
  text-align: center;
}

.footerdata a {
  color: #fff;
}

.lpcinde {
  position: relative;
  top: 5px;
}

.legaltxtcontainer {
  max-width: 1200px;
  margin: 0 auto 180px;
  padding: 20px;
}

.legaltxtcontainer a {
  color: #ff8200;
  text-decoration: underline;
}

.legaltxtcontainer h1 {
  font-weight: 600;
  margin: 0 auto 40px;
  color: #005aaa;
}

.legaltxtcontainer h2 {
  font-weight: 600;
  margin: 60px auto 20px;
  text-align: left;
  color: #ff8200;
}

.legaltxtcontainer h3 {
  margin: 40px auto 10px;
  text-align: left;
  font-weight: normal;
  color: #ff8200;
}

.legaltxtcontainer ol, .legaltxtcontainer ul {
  padding-left: 20px;
  margin: 20px auto;
}
