/************************************/
/* GENERAL */
/************************************/
.pageTitle .wrap {
  height: 20vh;
  min-height: 400px;
}

.pageTitle .wrap ul {
  position: absolute;
  bottom: 0;
  left: 0;
  background: #fff;
  padding: 40px 40px 40px 0;
}

.pageTitle .wrap li {
  position: relative;
  display: inline-block;
  padding: 0 40px 0 0;
  font-weight: 700;
  text-transform: uppercase;
}

.pageTitle .wrap li::after {
  content: "//";
  position: absolute;
  top: 0;
  right: 10px;
  font-weight: 300;
}

.pageTitle .wrap li:last-child {
  padding: 0;
  font-weight: 300;
  text-transform: none;
}

.pageTitle .wrap li:last-child::after {
  content: "";
}

.text960 {
  position: relative;
  margin: auto;
  max-width: 960px;
}

.text960 > * {
  margin: 0 0 20px 0;
}
/************************************/
/* END GENERAL */
/************************************/

/************************************/
/* PAGE ACERCA */
/************************************/
#group {
  padding: 70px 0;
}

#activities {
  background: #26afec;
  padding: 70px 0;
}

#activities > * {
  color: #fff;
}

#activities .services{
  margin: 40px 0 0 0;
}

#activities .services li {
  width: 33.33%;
  float: left;
  padding: 0 10px;
  box-sizing: border-box;
  text-align: center;
}

#activities .services .image {
  width: 100%;
  height: 300px;
}

#activities .services h2 {
  padding: 20px 0;
  text-transform: uppercase;
}

/************************************/
/* END PAGE ACERCA */
/************************************/

/************************************/
/* PAGE CONTACTOS */
/************************************/

#contacts li {
  position: relative;
  width: 50%;
  float: left;
  text-align: center;
  padding: 25px 10px 25px 10px;
  box-sizing: border-box;
  border-top: 1px solid #999;
}

#contacts li::after {
  content: "";
  position: absolute;
  width: 40px;
  height: 1px;
  background: #fff;
  bottom: -1px;
  left: 0;
  z-index: 1;
}

#contacts li::before {
  content: "";
  position: absolute;
  width: 50px;
  height: 1px;
  background: #fff;
  bottom: -1px;
  right: 0;
  z-index: 1;
}

#contacts li:nth-child(1), #contacts li:nth-child(2) {
  border-top: none;
}

#contacts address {
  border-right: 1px solid #999;
}

#contacts li:nth-child(even) > address {
  border-right: none;
}

#contacts li > * {
  margin: 0 0 10px 0;
}

#contacts li > a {
  display: inline-block;
}
/************************************/
/* END PAGE CONTACTOS */
/************************************/

/************************************/
/* PAGE EMPRESAS */
/************************************/

.services {
  padding: 70px 0;
}

.services .articleWrap {
  float: left;
  width: 50%;
  padding: 0 30px 0 0;
}

.services .articleWrap:last-of-type {
  padding: 0 0 0 20px;
}

.services .articleWrap h2 {
  margin: 0 0 30px 0;
  text-transform: uppercase;
  text-align: center;
}

.services .articleWrap p {
  margin: 10px 0 0 0;
}

.services a {
  display: inline-block;
  margin: 20px 0;
}

.first {
  margin: 70px 0 0 0;
}

.blue {
  background: #26afec;
  color: #fff;
}

.lightBlue {
  background: #e9f7fd;
}

.slideshow {
  padding: 0;
}

.slideWrap {
  position: relative;
}

.wideSlick li {
  width: 100%;
  height: 70vh;
  min-height: 500px;
}

.slickNav {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  transform: translateY(-50%);
}

.slickNav li {
  padding: 30px;
  margin: 10px;
  color: #fff;
  background: rgba(0,0,0,.3);
  border-radius: 50%;
}

.slickNav li:first-child {
  float: left;
}

.slickNav li:last-child {
  float: right;
}
/************************************/
/* END PAGE EMPRESAS */
/************************************/

/************************************/
/* PAGE LOGIN TEXT */
/************************************/
.loginText {
  text-align: center;
}

.loginText h1 {
  text-transform: uppercase;
  margin: 0 0 20px 0;
}

.loginForm {
  width: 100%;
  max-width: 560px;
  margin: auto;
}

.loginForm form {
  padding: 0 10px;
  box-sizing: border-box;
}

.loginForm p {
  color: #999;
  margin: 0 0 5px 0;
}

.loginForm .field {
  width: 100%;
  margin: 0 0 20px 0;
  padding: 8px 10px;
  border-radius: 3px;
  background: #f7f7f7;
  border: 1px solid #ccc;
}

.loginForm .submeter {
  border: none;
  font-family: 'Roboto Condensed', sans-serif;
  text-transform: uppercase;
  padding: 10px 50px;
}

.loginForm a {
  float: right;
  margin: 10px 0 0 0;
}
/************************************/
/* END PAGE LOGIN TEXT */
/************************************/


/************************************/
/************************************/
/* TABLET */
/************************************/
/************************************/

@media (max-width:1200px) {

  /************************************/
  /* GENERAL */
  /************************************/
  .pageTitle .wrap {
    min-height: 320px;
  }

  .text960 {
    max-width: 720px;
  }
  /************************************/
  /* END GENERAL */
  /************************************/

	/************************************/
	/* PAGE ACERCA */
	/************************************/
  #group {
    padding: 60px 0;
  }

  #activities {
    padding: 60px 0;
  }
	/************************************/
	/* END PAGE ACERCA */
	/************************************/

  /************************************/
  /* PAGE CONTACTOS */
  /************************************/

  /************************************/
  /* END PAGE CONTACTOS */
  /************************************/

  /************************************/
  /* PAGE EMPRESAS */
  /************************************/
  .services {
    padding: 60px 0;
  }

  .first {
    margin: 60px 0 0 0;
  }

  .wideSlick li {
    height: 60vh;
    min-height: 400px;
  }
  /************************************/
  /* END PAGE EMPRESAS */
  /************************************/

  /************************************/
  /* PAGE LOGIN TEXT */
  /************************************/

  /************************************/
  /* END PAGE LOGIN TEXT */
  /************************************/
}


/************************************/
/************************************/
/* MOBILE */
/************************************/
/************************************/

@media (max-width:767px) {

  /************************************/
  /* GENERAL */
  /************************************/
  .pageTitle .wrap {
    min-height: 260px;
  }

  .pageTitle .wrap ul {
    padding: 25px 25px 25px 10px;
  }
  /************************************/
  /* END GENERAL */
  /************************************/

	/************************************/
	/* PAGE ACERCA */
	/************************************/
  #group {
    padding: 40px 0;
  }

  #activities {
    padding: 40px 0;
  }

  #activities .services li {
    width: 100%;
    float: none;
    padding: 0;
    margin: 0 0 30px 0;
  }

  #activities .services .image {
    height: 240px;
  }
	/************************************/
	/* END PAGE ACERCA */
	/************************************/

  /************************************/
  /* PAGE CONTACTOS */
  /************************************/
  #contacts li {
    width: 100%;
    float: none;
    padding: 15px 0 15px 0;
  }

  #contacts li:nth-child(2) {
    border-top: 1px solid #999;
  }

  #contacts address {
    border-right: none;
  }
  /************************************/
  /* END PAGE CONTACTOS */
  /************************************/

  /************************************/
  /* PAGE EMPRESAS */
  /************************************/
  .services {
    padding: 40px 0;
  }

  .services .articleWrap h2 {
    margin: 0 0 20px 0;
  }

  .first {
    margin: 40px 0 0 0;
  }

  .services .articleWrap {
    float: none;
    width: 100%;
    padding: 0;
  }

  .services .articleWrap:last-of-type {
    padding: 30px 0 0 0;
  }

  .wideSlick li {
    height: 50vh;
    min-height: 260px;
  }

  .slickNav li {
    padding: 10px;
  }
  /************************************/
  /* END PAGE EMPRESAS */
  /************************************/

  /************************************/
  /* PAGE LOGIN TEXT */
  /************************************/

  /************************************/
  /* END PAGE LOGIN TEXT */
  /************************************/
}
