/*
	MAIN SASS THEME
	Author: WE ARE GROSSA
	Version: 0.0.1
*/
/* BASE - Base styles, variables, mixins, etc */
/* Font size */
/* Font family */
/* Font Colors */
/* Background Colors */
/* Mixins */
html {
  height: 100%; }

body {
  font-family: "Raleway", sans-serif;
  font-size: 18px;
  color: #000000;
  background-color: #ffffff;
  height: 100%; }
  @media screen and (max-width: 1440px) {
    body {
      font-size: 17px; } }
  @media screen and (max-width: 768px) {
    body {
      font-size: 14px; } }

#contenedor {
  overflow: auto;
  height: 100%; }

a {
  color: #ffffff; }

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

input,
textarea,
button {
  -moz-border-radius: 0px;
  -webkit-border-radius: 0px;
  border-radius: 0px; }

textarea {
  resize: none; }

button:hover,
button:focus {
  outline: none; }

h1, h2, h3, h4, h5 {
  font-family: "Montserrat", sans-serif; }

h1, h2, h3, h4, h5, p {
  color: #000000; }

.font-withe,
.font-withe h1,
.font-withe h2,
.font-withe h3,
.font-withe h4,
.font-withe h5,
.font-withe p {
  color: #ffffff; }

.font-red h1,
.font-red h2,
.font-red h3,
.font-red h4,
.font-red h5,
.font-red p {
  color: #fe1123; }

.subrayado {
  text-decoration: underline; }

.resaltado {
  font-weight: 700; }

.section .titulos {
  font-size: 52px;
  font-weight: 700;
  letter-spacing: 6px;
  padding-bottom: 25px;
  position: relative;
  display: inline-block; }
  @media screen and (max-width: 1440px) {
    .section .titulos {
      font-size: 45px;
      line-height: 40px;
      letter-spacing: 3px; } }
  @media screen and (max-width: 768px) {
    .section .titulos {
      display: block;
      margin: 0 auto;
      font-size: 30px;
      line-height: 35px;
      letter-spacing: 2px;
      text-align: center; } }

iframe {
  display: block;
  border: none; }

/* MODULES - Individual site components */
/* mensaje de Formulario de contacto*/
.statusMessage {
  border: 2px solid #ffffff;
  bottom: 0;
  color: #ffffff;
  font-family: 'Raleway', sans-serif;
  font-weight: 500;
  font-size: 14px;
  line-height: 25px;
  margin: auto;
  width: 400px;
  height: 80px;
  padding: 20px;
  position: fixed;
  top: -90px;
  right: 0;
  left: 0;
  text-align: center;
  background-color: #222222;
  background-color: rgba(71, 185, 174, 0.91);
  -moz-box-shadow: 0 0 1em rgba(0, 0, 0, 0.2);
  -webkit-box-shadow: 0 0 1em rgba(0, 0, 0, 0.2);
  box-shadow: 0 0 1em rgba(0, 0, 0, 0.2);
  text-transform: uppercase;
  opacity: 0;
  z-index: -1;
  transition: all 0.8s ease-in-out;
  -webkit-transition: all 0.8s ease-in-out;
  -o-transition: all 0.8s ease-in-out;
  -moz-transition: all 0.8s ease-in-out; }

#overlay {
  background: #222222;
  bottom: 0;
  opacity: 0;
  -webkit-opacity: 0;
  -moz-opacity: 0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: -1;
  transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out; }

#overlay.active {
  opacity: 0.85;
  -webkit-opacity: 0.9;
  -moz-opacity: 0.9;
  z-index: 1000; }

.statusMessage p {
  margin: 0;
  color: #ffffff !important; }

#sendingMessage {
  height: 70px;
  width: 250px; }

#successMessage, #failureMessage {
  height: 95px;
  width: 550px; }

#failureMessage {
  width: 380px; }

#incompleteMessage {
  height: 90px; }

.statusMessage.active {
  opacity: 0.95;
  -webkit-opacity: 0.95;
  -moz-opacity: 0.95;
  z-index: 10000; }

.statusMessage.active {
  opacity: 0.95;
  -webkit-opacity: 0.95;
  -moz-opacity: 0.95;
  z-index: 10000; }

@media (max-width: 767px) {
  #successMessage, #failureMessage {
    width: 100%;
    max-width: 320px;
    height: 120px; }

  #incompleteMessage {
    height: 110px;
    width: 100%;
    max-width: 320px; } }
/* LAYOUTS - Page layout styles */
/*++=========== Navbar +++++++++++++++++++++======*/
/*++===========+++++++++++++++++++++++++++++======*/
/*++++ NAV FULL ++++ */
nav {
  position: absolute;
  padding-top: 30px;
  padding-bottom: 30px;
  width: 100%;
  z-index: 3; }
  nav:before {
    content: '';
    position: fixed;
    height: 2px;
    background-color: rgba(204, 204, 204, 0.2);
    width: 0;
    top: 75px;
    left: 0;
    z-index: 2; }

nav.nav_smaller:before {
  width: 100%;
  -webkit-transition: width 0.5s ease-in-out;
  -o-transition: width 0.5s ease-in-out;
  transition: width 0.5s ease-in-out; }

.logo-cont {
  padding-left: 70px;
  padding-right: 70px;
  height: 75px; }
  .logo-cont .row,
  .logo-cont .row > div,
  .logo-cont h1,
  .logo-cont a {
    height: 100%; }
  .logo-cont h1 {
    margin: 0;
    font-size: 0; }
  .logo-cont a {
    display: block;
    width: 122px;
    background-image: url(../img/withewalkers_logo.png);
    background-image: url(../img/withewalkers_logo.svg);
    background-position: center center;
    background-repeat: no-repeat; }
    .logo-cont a span {
      visibility: hidden; }

.nav-content {
  position: relative;
  z-index: 4;
  -webkit-transition: background-color 0.5s cubic-bezier(0.68, 0, 0, 1);
  -o-transition: background-color 0.5s cubic-bezier(0.68, 0, 0, 1);
  transition: background-color 0.5s cubic-bezier(0.68, 0, 0, 1); }

.nav_ontop .nav-content {
  position: fixed;
  width: 100%;
  top: 0px;
  left: 0;
  padding-top: 30px;
  -webkit-transition: top 0.5s cubic-bezier(0.68, 0, 0, 1);
  -o-transition: top 0.5s cubic-bezier(0.68, 0, 0, 1);
  transition: top 0.5s cubic-bezier(0.68, 0, 0, 1); }

.nav_ontop .nav_smaller .nav-content {
  position: fixed;
  width: 100%;
  top: 0px;
  left: 0;
  padding-top: 30px;
  -webkit-transition: top 0.5s cubic-bezier(0.68, 0, 0, 1);
  -o-transition: top 0.5s cubic-bezier(0.68, 0, 0, 1);
  transition: top 0.5s cubic-bezier(0.68, 0, 0, 1); }

.nav_ontop_out .nav-content {
  position: fixed;
  width: 100%;
  top: 0px;
  left: 0;
  padding-top: 0px;
  background-color: #f8f8f8;
  -webkit-transition: top 0.5s cubic-bezier(0.68, 0, 0, 1), padding-top 0.5s cubic-bezier(0.68, 0, 0, 1);
  -o-transition: top 0.5s cubic-bezier(0.68, 0, 0, 1), padding-top 0.5s cubic-bezier(0.68, 0, 0, 1);
  transition: top 0.5s cubic-bezier(0.68, 0, 0, 1), padding-top 0.5s cubic-bezier(0.68, 0, 0, 1); }

.nav_smaller .nav-content {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  background-color: #f8f8f8; }

.toggle-nav {
  text-align: right;
  line-height: 75px; }
  .toggle-nav p {
    display: inline-block;
    vertical-align: middle;
    margin: 0;
    text-decoration: underline;
    line-height: 1;
    font-size: 14px;
    font-weight: 700; }
  .toggle-nav--button {
    display: inline-block;
    vertical-align: middle;
    margin-top: 0px;
    border: none;
    background: none; }

.nav-full {
  position: fixed;
  z-index: 3;
  visibility: hidden;
  opacity: 1;
  top: 0px;
  bottom: 0px;
  width: 100%;
  left: -100%;
  background: #f8f8f8;
  margin-top: 0;
  -webkit-transition: left 0.5s cubic-bezier(0.68, 0, 0, 1), visibility 0.5s cubic-bezier(0.68, 0, 0, 1), opacity 0.5s cubic-bezier(0.68, 0, 0, 1);
  -o-transition: left 0.5s cubic-bezier(0.68, 0, 0, 1), visibility 0.5s cubic-bezier(0.68, 0, 0, 1), opacity 0.5s cubic-bezier(0.68, 0, 0, 1);
  transition: left 0.5s cubic-bezier(0.68, 0, 0, 1), visibility 0.5s cubic-bezier(0.68, 0, 0, 1), opacity 0.5s cubic-bezier(0.68, 0, 0, 1);
  -webkit-transition-delay: 0.5s;
  transition-delay: 0.5s; }
  .nav-full .container {
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: 2; }
    .nav-full .container.section-heigth .row, .nav-full .container.section-heigth .row > div {
      height: 100%;
      text-align: center; }

.nav-list li {
  font-family: "Montserrat", sans-serif;
  color: #000000;
  font-size: 30px;
  margin-bottom: 8px;
  visibility: hidden;
  opacity: 0;
  -webkit-transform: translate(0, 20px);
  -ms-transform: translate(0, 20px);
  -o-transform: translate(0, 20px);
  transform: translate(0, 20px);
  -webkit-transition: transform 0.4s cubic-bezier(0.14, 0.9, 0.15, 1) 1s, opacity 0.4s ease, visibility 0.4s ease;
  -o-transition: transform 0.4s cubic-bezier(0.14, 0.9, 0.15, 1) 1s, opacity 0.4s ease, visibility 0.4s ease;
  transition: transform 0.4s cubic-bezier(0.14, 0.9, 0.15, 1) 1s, opacity 0.4s ease, visibility 0.4s ease; }
  @media screen and (max-width: 1024px) {
    .nav-list li {
      font-size: 33px; } }
  @media screen and (max-width: 1100px) {
    .nav-list li {
      font-size: 30px; } }
  @media screen and (max-width: 767px) {
    .nav-list li {
      font-size: 22px; } }
.nav-list a {
  font-family: "Montserrat", sans-serif;
  color: #000000;
  font-size: 30px;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out; }
  .nav-list a:hover {
    color: #2cafa2;
    text-decoration: none; }
  @media screen and (max-width: 1024px) {
    .nav-list a {
      font-size: 33px; } }
  @media screen and (max-width: 1100px) {
    .nav-list a {
      font-size: 30px; } }
  @media screen and (max-width: 767px) {
    .nav-list a {
      font-size: 22px; } }
.nav-list__titulo {
  text-decoration: underline;
  font-weight: bold;
  margin-bottom: 20px; }
.nav-list.visible li {
  visibility: visible;
  opacity: 1;
  -webkit-transform: translate(0, 0);
  -ms-transform: translate(0, 0);
  -o-transform: translate(0, 0);
  transform: translate(0, 0); }

.nav-list.visible li:nth-of-type(1) {
  -webkit-transition: -webkit-transform 0.4s cubic-bezier(0.22, 0.02, 0, 0.99) 0.39091s, opacity 2s cubic-bezier(0.22, 0.02, 0, 0.99) 0.39091s, visibility 0.4s cubic-bezier(0.14, 0.9, 0.15, 1);
  -o-transition: transform 0.4s cubic-bezier(0.22, 0.02, 0, 0.99) 0.39091s, opacity 2s cubic-bezier(0.22, 0.02, 0, 0.99) 0.39091s, visibility 0.4s cubic-bezier(0.14, 0.9, 0.15, 1);
  transition: transform 0.4s cubic-bezier(0.22, 0.02, 0, 0.99) 0.39091s, opacity 2s cubic-bezier(0.22, 0.02, 0, 0.99) 0.39091s, visibility 0.4s cubic-bezier(0.14, 0.9, 0.15, 1); }

.nav-list.visible li:nth-of-type(2) {
  -webkit-transition: -webkit-transform 0.4s cubic-bezier(0.22, 0.02, 0, 0.99) 0.48182s, opacity 2s cubic-bezier(0.22, 0.02, 0, 0.99) 0.48182s, visibility 0.4s cubic-bezier(0.14, 0.9, 0.15, 1);
  -o-transition: transform 0.4s cubic-bezier(0.22, 0.02, 0, 0.99) 0.48182s, opacity 2s cubic-bezier(0.22, 0.02, 0, 0.99) 0.48182s, visibility 0.4s cubic-bezier(0.14, 0.9, 0.15, 1);
  transition: transform 0.4s cubic-bezier(0.22, 0.02, 0, 0.99) 0.48182s, opacity 2s cubic-bezier(0.22, 0.02, 0, 0.99) 0.48182s, visibility 0.4s cubic-bezier(0.14, 0.9, 0.15, 1); }

.nav-list.visible li:nth-of-type(3) {
  -webkit-transition: -webkit-transform 0.4s cubic-bezier(0.22, 0.02, 0, 0.99) 0.57273s, opacity 2s cubic-bezier(0.22, 0.02, 0, 0.99) 0.57273s, visibility 0.4s cubic-bezier(0.14, 0.9, 0.15, 1);
  -o-transition: transform 0.4s cubic-bezier(0.22, 0.02, 0, 0.99) 0.57273s, opacity 2s cubic-bezier(0.22, 0.02, 0, 0.99) 0.57273s, visibility 0.4s cubic-bezier(0.14, 0.9, 0.15, 1);
  transition: transform 0.4s cubic-bezier(0.22, 0.02, 0, 0.99) 0.57273s, opacity 2s cubic-bezier(0.22, 0.02, 0, 0.99) 0.57273s, visibility 0.4s cubic-bezier(0.14, 0.9, 0.15, 1); }

.nav-list.visible li:nth-of-type(4) {
  -webkit-transition: -webkit-transform 0.4s cubic-bezier(0.22, 0.02, 0, 0.99) 0.66364s, opacity 2s cubic-bezier(0.22, 0.02, 0, 0.99) 0.66364s, visibility 0.4s cubic-bezier(0.14, 0.9, 0.15, 1);
  -o-transition: transform 0.4s cubic-bezier(0.22, 0.02, 0, 0.99) 0.66364s, opacity 2s cubic-bezier(0.22, 0.02, 0, 0.99) 0.66364s, visibility 0.4s cubic-bezier(0.14, 0.9, 0.15, 1);
  transition: transform 0.4s cubic-bezier(0.22, 0.02, 0, 0.99) 0.66364s, opacity 2s cubic-bezier(0.22, 0.02, 0, 0.99) 0.66364s, visibility 0.4s cubic-bezier(0.14, 0.9, 0.15, 1); }

.nav-list.visible li:nth-of-type(5) {
  -webkit-transition: -webkit-transform 0.4s cubic-bezier(0.22, 0.02, 0, 0.99) 0.75455s, opacity 2s cubic-bezier(0.22, 0.02, 0, 0.99) 0.75455s, visibility 0.4s cubic-bezier(0.14, 0.9, 0.15, 1);
  -o-transition: transform 0.4s cubic-bezier(0.22, 0.02, 0, 0.99) 0.75455s, opacity 2s cubic-bezier(0.22, 0.02, 0, 0.99) 0.75455s, visibility 0.4s cubic-bezier(0.14, 0.9, 0.15, 1);
  transition: transform 0.4s cubic-bezier(0.22, 0.02, 0, 0.99) 0.75455s, opacity 2s cubic-bezier(0.22, 0.02, 0, 0.99) 0.75455s, visibility 0.4s cubic-bezier(0.14, 0.9, 0.15, 1); }

.nav-list.visible li:nth-of-type(6) {
  -webkit-transition: -webkit-transform 0.4s cubic-bezier(0.22, 0.02, 0, 0.99) 0.84545s, opacity 2s cubic-bezier(0.22, 0.02, 0, 0.99) 0.84545s, visibility 0.4s cubic-bezier(0.14, 0.9, 0.15, 1);
  -o-transition: transform 0.4s cubic-bezier(0.22, 0.02, 0, 0.99) 0.84545s, opacity 2s cubic-bezier(0.22, 0.02, 0, 0.99) 0.84545s, visibility 0.4s cubic-bezier(0.14, 0.9, 0.15, 1);
  transition: transform 0.4s cubic-bezier(0.22, 0.02, 0, 0.99) 0.84545s, opacity 2s cubic-bezier(0.22, 0.02, 0, 0.99) 0.84545s, visibility 0.4s cubic-bezier(0.14, 0.9, 0.15, 1); }

.nav-list.visible li:nth-of-type(7) {
  -webkit-transition: -webkit-transform 0.4s cubic-bezier(0.22, 0.02, 0, 0.99) 0.93636s, opacity 2s cubic-bezier(0.22, 0.02, 0, 0.99) 0.93636s, visibility 0.4s cubic-bezier(0.14, 0.9, 0.15, 1);
  -o-transition: transform 0.4s cubic-bezier(0.22, 0.02, 0, 0.99) 0.93636s, opacity 2s cubic-bezier(0.22, 0.02, 0, 0.99) 0.93636s, visibility 0.4s cubic-bezier(0.14, 0.9, 0.15, 1);
  transition: transform 0.4s cubic-bezier(0.22, 0.02, 0, 0.99) 0.93636s, opacity 2s cubic-bezier(0.22, 0.02, 0, 0.99) 0.93636s, visibility 0.4s cubic-bezier(0.14, 0.9, 0.15, 1); }

.nav-list.visible li:nth-of-type(8) {
  -webkit-transition: -webkit-transform 0.4s cubic-bezier(0.22, 0.02, 0, 0.99) 1.02727s, opacity 2s cubic-bezier(0.22, 0.02, 0, 0.99) 1.02727s, visibility 0.4s cubic-bezier(0.14, 0.9, 0.15, 1);
  -o-transition: transform 0.4s cubic-bezier(0.22, 0.02, 0, 0.99) 1.02727s, opacity 2s cubic-bezier(0.22, 0.02, 0, 0.99) 1.02727s, visibility 0.4s cubic-bezier(0.14, 0.9, 0.15, 1);
  transition: transform 0.4s cubic-bezier(0.22, 0.02, 0, 0.99) 1.02727s, opacity 2s cubic-bezier(0.22, 0.02, 0, 0.99) 1.02727s, visibility 0.4s cubic-bezier(0.14, 0.9, 0.15, 1); }

/*++++ ANiMACION CON BODY ++++ */
body.nav-open {
  overflow-y: hidden;
  overflow-y: scroll; }
  body.nav-open .nav-full {
    left: 0;
    visibility: visible;
    opacity: 1;
    -webkit-transition-delay: 0.2s;
    transition-delay: 0.2s; }

/*++++ hambuerger ++++ */
.lines-bar .icon-bar {
  display: block;
  width: 30px;
  height: 4px;
  background-color: #000000;
  position: relative;
  margin: 4px auto;
  -webkit-transition: all 0.2s ease-in-out 0s;
  -o-transition: all 0.2s ease-in-out 0s;
  transition: all 0.2s ease-in-out 0s; }
.lines-bar .icon-bar:nth-child(2) {
  left: 5px; }
.lines-bar .icon-bar:nth-child(3) {
  left: 10px; }
.lines-bar.active .icon-bar:nth-of-type(1) {
  top: 8px;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg); }
.lines-bar.active .icon-bar:nth-of-type(2) {
  background-color: transparent;
  left: 0; }
.lines-bar.active .icon-bar:nth-of-type(3) {
  top: -8px;
  left: 0;
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg); }

.logo-cont .idioma {
  display: inline-block;
  margin-left: 20px;
  font-weight: 700; }
  .logo-cont .idioma li {
    display: inline-block; }
  .logo-cont .idioma a {
    background: none;
    height: inherit;
    height: auto;
    width: inherit;
    width: auto;
    font-weight: 700;
    font-size: 14px;
    color: #202020; }
  .logo-cont .idioma li.active a {
    text-decoration: underline;
    color: #fe0000;
    pointer-events: none; }

@media (max-width: 1100px) {
  .logo-cont {
    padding-left: 10px;
    padding-right: 10px; }

  .nav-content {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    background-color: #f8f8f8; }

  nav:before {
    width: 100%; }

  .nav_ontop .nav-content,
  .nav_ontop .nav_smaller .nav-content {
    padding-top: 0px; } }
@media (max-width: 768px) {
  nav:before {
    top: 55px; }

  .logo-cont {
    padding-left: 20px;
    padding-right: 25px;
    height: 55px; }

  .toggle-nav {
    line-height: 55px; }

  .logo-cont a {
    width: 75px;
    background-size: 100%; }

  .nav-full .container {
    top: 0px;
    bottom: inherit;
    height: 100%;
    overflow: scroll;
    padding-top: 55px; } }
/* HEADER */
header {
  height: 100%;
  min-height: 650px;
  background-color: #ffffff;
  background-image: url(../img/ww_header_bg.jpg);
  background-position: bottom right;
  background-repeat: no-repeat; }
  header .container,
  header .row,
  header .row > div {
    height: 100%; }
  header .row > div {
    padding-left: 70px;
    padding-right: 70px; }
  header p {
    font-size: 52px;
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
    letter-spacing: 5px;
    margin-bottom: 100px;
    line-height: 72px; }
  header span.font-dark {
    color: #202020; }

.center-table {
  display: table;
  height: 100%;
  width: 100%; }
  .center-table--cont {
    display: table-cell;
    vertical-align: middle;
    width: 100%; }

@media (max-width: 1440px) {
  header p {
    font-size: 40px;
    letter-spacing: 4px;
    margin-bottom: 100px;
    line-height: 60px;
    max-width: 730px; } }
@media (max-width: 1100px) {
  header .row > div {
    padding-left: 10px;
    padding-right: 10px; } }
@media (max-width: 768px) {
  header {
    text-align: center;
    min-height: inherit;
    height: auto;
    padding-top: 140px;
    padding-bottom: 90px;
    background-size: 570px; }
    header p {
      font-size: 31px;
      letter-spacing: 0px;
      margin-bottom: 100px;
      line-height: 48px;
      margin: 0 auto;
      max-width: 400px; } }
/*====///// Footer ///====*/
footer {
  padding-top: 50px;
  padding-bottom: 45px;
  background-color: #efefef; }
  footer .footer-logo {
    padding-left: 90px; }
  footer .footer-text {
    text-align: right;
    padding-right: 90px; }
    footer .footer-text p {
      font-size: 14px;
      margin-top: 54px; }
  footer .imagen-picos {
    display: block;
    width: 173px;
    height: 58px;
    position: absolute;
    top: -107px;
    right: 100px;
    background-image: url(../img/footer_bg.jpg);
    background-position: center center;
    background-repeat: no-repeat; }

@media (max-width: 1100px) {
  footer .footer-logo {
    padding-left: 10px;
    padding-right: 10px; }

  footer .footer-text {
    padding-right: 10px;
    padding-left: 10px; }

  footer .imagen-picos {
    right: 30px; } }
@media (max-width: 768px) {
  footer .footer-logo img {
    margin: 0 auto; }

  footer .imagen-picos {
    display: none; }

  footer .footer-text {
    text-align: center; } }
.section {
  background-color: #ffffff;
  min-height: 300px; }
  .section h2 {
    font-size: 50px; }
  .section h2:after {
    content: '';
    display: block;
    height: 9px;
    width: 160px;
    background-color: #fe0000;
    margin-top: 20px; }

@media (max-width: 1440px) {
  .section h2 {
    font-size: 45px; }
  .section h2:after {
    content: '';
    display: block;
    height: 7px;
    width: 140px; } }
@media (max-width: 768px) {
  .section {
    text-align: center; }
    .section h2 {
      font-size: 30px; }
    .section h2:after {
      content: '';
      display: block;
      position: static;
      height: 5px;
      width: 90px;
      margin: 10px auto; } }
.conoce-section {
  background-color: #f6f6f6;
  overflow: hidden;
  padding-top: 130px;
  padding-bottom: 160px;
  background-image: url(../img/ww_conocenos_bg.png);
  background-position: 20px center;
  background-repeat: no-repeat; }
  .conoce-section--cont {
    padding-left: 180px;
    padding-right: 90px; }
  .conoce-section h2 {
    margin-bottom: 55px;
    margin-left: 44px; }
  .conoce-section p {
    margin-left: 55px;
    margin-bottom: 40px;
    letter-spacing: 2.5px;
    line-height: 29px; }
  .conoce-section h2:after {
    position: absolute;
    bottom: 0;
    right: 0;
    margin: 0; }

p.destacado {
  display: inline-block;
  width: 100%;
  position: relative;
  background: #2cafa2;
  background: rgba(44, 175, 162, 0.87);
  padding: 95px 15px 65px 140px;
  font-size: 27px;
  font-weight: 600;
  margin-left: 0;
  line-height: 39px;
  letter-spacing: 1.5px;
  margin-bottom: 54px; }
  p.destacado:before {
    content: '';
    display: block;
    height: 100%;
    width: 370px;
    background: #2cafa2;
    background: rgba(44, 175, 162, 0.87);
    position: absolute;
    top: 0;
    bottom: 0;
    right: -370px; }
  p.destacado .comillas {
    display: block;
    height: 50px;
    width: 50px;
    position: absolute;
    top: 20px;
    left: 50px;
    font-size: 180px;
    font-weight: 400;
    color: #ffffff;
    line-height: 1;
    text-align: center; }

@media (max-width: 1440px) {
  .conoce-section {
    padding-top: 100px;
    padding-bottom: 140px;
    background-size: 460px; }
    .conoce-section h2 {
      margin-bottom: 50px; }
    .conoce-section p {
      margin-bottom: 35px;
      letter-spacing: 2px; }

  p.destacado {
    padding: 63px 15px 45px 110px;
    font-size: 25px;
    line-height: 37px; }

  p.destacado .comillas {
    left: 50px;
    font-size: 138px; } }
@media (max-width: 1100px) {
  .conoce-section--cont {
    padding-left: 10px;
    padding-right: 10px; } }
@media (max-width: 768px) {
  .conoce-section {
    padding-top: 70px;
    padding-bottom: 50px;
    background-size: 300px; }

  .conoce-section h2::after {
    position: static;
    margin: 8px auto; }

  .conoce-section p {
    margin-left: 0;
    letter-spacing: 1px;
    line-height: 23px; }

  p.destacado {
    padding: 30px 45px 30px 40px;
    font-size: 17px;
    line-height: 26px;
    text-align: center; }

  p.destacado::before {
    content: '';
    display: block;
    height: 100%;
    width: 10px;
    background: #2cafa2;
    background: rgba(44, 175, 162, 0.87);
    position: absolute;
    top: 0;
    bottom: 0;
    right: -10px; }

  p.destacado::after {
    content: '';
    display: block;
    height: 100%;
    width: 10px;
    background: #2cafa2;
    background: rgba(44, 175, 162, 0.87);
    position: absolute;
    top: 0;
    bottom: 0;
    left: -10px; }

  p.destacado .comillas {
    display: none; } }
.hacemos-section {
  background-color: #ffffff;
  position: relative; }
  .hacemos-section .container {
    position: relative; }
  .hacemos-section .row {
    padding-top: 45px;
    padding-bottom: 50px; }
  .hacemos-section--titulo {
    padding-bottom: 780px;
    padding-left: 130px; }
  .hacemos-section--info {
    position: static;
    padding-top: 35px;
    padding-right: 70px;
    padding-left: 85px; }
  .hacemos-section .hacemos-slider-cont {
    position: absolute;
    bottom: 0;
    left: 130px;
    width: 520px;
    height: 700px;
    background-image: url(../img/hacemos_slider_bg.jpg);
    background-repeat: no-repeat;
    background-position: bottom center;
    text-align: center;
    font-size: 30px;
    font-weight: 700;
    letter-spacing: 1.5px; }
    .hacemos-section .hacemos-slider-cont img {
      display: block;
      margin: 0 auto;
      margin-bottom: 25px;
      margin-top: 90px; }
  .hacemos-section #hacemos-slider,
  .hacemos-section .owl-wrapper-outer,
  .hacemos-section .owl-wrapper,
  .hacemos-section .owl-item,
  .hacemos-section .item {
    height: 100%; }
  .hacemos-section #hacemos-slider {
    padding-left: 40px;
    padding-right: 40px; }
  .hacemos-section .center-table {
    max-width: 220px;
    margin: 0 auto; }
  .hacemos-section .owl-theme .owl-controls .owl-buttons div {
    background: none;
    background-color: inherit;
    top: 59.5%;
    position: absolute;
    margin-top: 10px;
    color: #9b9b9b;
    font-size: 45px;
    opacity: 0.8; }
  .hacemos-section .owl-theme .owl-controls .owl-buttons .owl-prev {
    left: 70px; }
  .hacemos-section .owl-theme .owl-controls .owl-buttons .owl-next {
    right: 70px; }
  .hacemos-section h2 {
    display: inline-block;
    position: relative;
    margin-left: 55px; }
    .hacemos-section h2 span {
      display: block;
      margin-top: 5px; }
    .hacemos-section h2:after {
      width: 55px;
      position: absolute;
      top: 12px;
      right: 0; }
  .hacemos-section p {
    margin-bottom: 60px;
    letter-spacing: 2px;
    line-height: 32px; }

.titulo-izq {
  position: absolute;
  top: -271px;
  left: 0;
  width: 100%;
  width: calc(100% - 70px);
  background: #f7f7f7;
  padding: 70px; }

@media (max-width: 1440px) {
  .hacemos-section h2::after {
    width: 40px;
    top: 3px; } }
@media (max-width: 1270px) {
  .hacemos-section--titulo {
    padding-bottom: 630px; }

  .hacemos-section .hacemos-slider-cont {
    width: 420px;
    height: 600px;
    background-size: 100%;
    font-size: 25px; }

  .hacemos-section .owl-theme .owl-controls .owl-buttons .owl-next {
    right: 55px; }

  .hacemos-section .owl-theme .owl-controls .owl-buttons .owl-prev {
    left: 55px; }

  .hacemos-section .owl-theme .owl-controls .owl-buttons div {
    top: 61%; } }
@media (max-width: 1100px) {
  .hacemos-section .row {
    padding-top: 45px;
    padding-bottom: 0; }

  .hacemos-section--titulo {
    padding-bottom: 10px;
    padding-right: 10px;
    padding-left: 10px; }

  .hacemos-section h2 {
    margin-left: 0px; }

  .hacemos-section--info {
    padding-top: 14px;
    padding-right: 10px;
    padding-left: 10px; }

  .hacemos-section p {
    margin-bottom: 30px; }

  .hacemos-section p.resaltado {
    margin-bottom: 70px; }

  .hacemos-section .hacemos-slider-cont {
    position: static;
    margin: 0px auto; } }
@media (max-width: 768px) {
  .hacemos-section .hacemos-slider-cont {
    width: 280px;
    height: 390px;
    font-size: 18px; }

  .hacemos-section #hacemos-slider {
    padding-left: 20px;
    padding-right: 20px; }

  .hacemos-section .hacemos-slider-cont img {
    display: block;
    margin: 0 auto;
    margin-bottom: 15px;
    margin-top: 50px;
    max-width: 75px; }

  .hacemos-section .owl-theme .owl-controls .owl-buttons div {
    top: 57%;
    font-size: 37px; }

  .hacemos-section .owl-theme .owl-controls .owl-buttons .owl-next {
    right: 30px; }

  .hacemos-section .owl-theme .owl-controls .owl-buttons .owl-prev {
    left: 30px; }

  .hacemos-section h2::after {
    position: static;
    margin: 10px auto;
    width: 90px; }

  .hacemos-section h2 span {
    display: inline-block;
    margin: 0; }

  .hacemos-section p {
    margin-bottom: 60px;
    letter-spacing: 1px;
    line-height: 25px; } }
.formatos-section {
  background: #2cafa2;
  background: rgba(44, 175, 162, 0.87);
  padding-top: 131px;
  padding-bottom: 105px; }
  .formatos-section--titulo {
    float: right;
    width: 48%; }
  .formatos-section--slider {
    padding-left: 110px;
    padding-right: 110px;
    margin-top: 10px; }
  .formatos-section h3 {
    font-size: 38px;
    text-decoration: underline;
    letter-spacing: 3px;
    font-family: "Raleway", sans-serif;
    margin-bottom: 16px; }
  .formatos-section p {
    letter-spacing: 1.5px;
    font-size: 24px; }
  .formatos-section .owl-theme .owl-controls {
    text-align: center;
    position: absolute;
    margin: 0;
    top: 22px;
    left: -110px; }
  .formatos-section .owl-theme .owl-controls .owl-buttons div {
    width: 37px;
    height: 37px;
    line-height: 37px;
    padding: 0;
    background-color: #ffffff;
    opacity: 1;
    color: #000000;
    border-radius: 0;
    font-size: 30px;
    margin: 2px; }
  .formatos-section .owl-theme .owl-controls.clickable .owl-buttons div:hover {
    color: #fe1123; }
  .formatos-section figure {
    margin-top: 80px;
    text-align: center; }
    .formatos-section figure img {
      display: inline-block; }
  .formatos-section .bannerhtml div {
    margin-top: 80px;
    display: inline-block;
    margin-right: 57px; }
  .formatos-section .bannerhtml img {
    display: none; }
  .formatos-section .bannerhtml .bannerhtml-3 {
    margin-right: 0; }
  .formatos-section .bannermobile .margin {
    margin-right: 3.5%; }
  .formatos-section .bannermobile .bannerchico {
    margin-top: 50px; }
  .formatos-section .bannermobile .bannerchico.margin {
    margin-right: 20%; }
  .formatos-section .bannerstandar {
    margin-top: 80px; }
    .formatos-section .bannerstandar object {
      display: inline-block;
      width: 30%;
      height: 250px; }
    .formatos-section .bannerstandar .banner-medio embed {
      margin-left: 5%; }
    .formatos-section .bannerstandar .bannerstandar1,
    .formatos-section .bannerstandar .bannerstandar2,
    .formatos-section .bannerstandar .bannerstandar3 {
      width: 32%;
      text-align: center;
      display: inline-block;
      display: none; }
      .formatos-section .bannerstandar .bannerstandar1 img,
      .formatos-section .bannerstandar .bannerstandar2 img,
      .formatos-section .bannerstandar .bannerstandar3 img {
        display: inline-block; }
  .formatos-section .bannerswf {
    margin-top: 80px;
    text-align: center; }
    .formatos-section .bannerswf object, .formatos-section .bannerswf embed {
      display: block;
      width: 100%;
      max-width: 729px;
      margin: 30px auto;
      max-height: 180px; }
    .formatos-section .bannerswf img {
      display: inline-block;
      display: none;
      margin-bottom: 20px; }
  .formatos-section .bannerhtmlRM {
    margin-top: 80px;
    text-align: center; }
    .formatos-section .bannerhtmlRM img {
      display: inline-block;
      margin-bottom: 25px; }

.no-canvas .bannerhtml iframe {
  display: none; }
.no-canvas .bannerhtml img {
  display: block; }

.no-flash .bannerhtml iframe {
  display: none; }
.no-flash .bannerhtml img {
  display: block; }
.no-flash .formatos-section .bannerstandar object {
  display: none; }
.no-flash .formatos-section .bannerstandar .bannerstandar1,
.no-flash .formatos-section .bannerstandar .bannerstandar2,
.no-flash .formatos-section .bannerstandar .bannerstandar3 {
  display: inline-block; }
  @media (max-width: 1100px) {
    .no-flash .formatos-section .bannerstandar .bannerstandar1,
    .no-flash .formatos-section .bannerstandar .bannerstandar2,
    .no-flash .formatos-section .bannerstandar .bannerstandar3 {
      width: 49%; } }
.no-flash .formatos-section .bannerswf object,
.no-flash .formatos-section .bannerswf embed {
  display: none; }
.no-flash .formatos-section .bannerswf img {
  display: inline-block; }

@media (max-width: 1270px) {
  .formatos-section .bannerhtml .bannerhtml-3 {
    display: none; }

  .formatos-section .bannerhtml div {
    margin-left: 57px; }

  .formatos-section .bannermobile img {
    max-width: 350px; }

  .formatos-section .bannermobile .bannerchico.margin {
    margin-right: 8%; } }
@media (max-width: 1100px) {
  .formatos-section {
    padding-top: 51px;
    padding-bottom: 95px; }

  .formatos-section--titulo {
    float: none;
    text-align: right;
    margin-bottom: 60px;
    width: 100%; }

  .titulo-izq {
    position: static;
    width: auto;
    padding: 20px 70px;
    display: inline-block; }

  .formatos-section--slider {
    padding-left: 100px;
    padding-right: 100px;
    margin-top: 10px;
    float: none; }

  .formatos-section .owl-theme .owl-controls {
    left: -100px;
    top: 18px; }

  .formatos-section h3 {
    font-size: 33px;
    text-decoration: underline;
    letter-spacing: 2px; }

  .formatos-section p {
    letter-spacing: 1px;
    font-size: 19px; }

  .formatos-section .bannermobile img {
    max-width: 240px; }

  .formatos-section .bannermobile .bannerchico.margin {
    margin-right: 5%; }

  .formatos-section .bannerstandar .margin {
    margin-right: 4%; }

  .formatos-section .bannerstandar .banner-medio {
    display: none; }

  .formatos-section .bannerstandar object {
    width: 44%; }

  .formatos-section .bannerhtml {
    text-align: center; }

  .formatos-section .bannerhtml div {
    margin: 0;
    margin-top: 60px;
    display: inline-block; }

  .formatos-section .bannerhtml .bannerhtml-2 {
    display: none; }

  .formatos-section .bannermobile .margin {
    display: none; }

  .formatos-section .bannermobile img {
    max-width: 280px; }

  .formatos-section .bannermobile .bannerchico {
    margin-top: 30px; }

  .formatos-section .bannerswf object,
  .formatos-section .bannerswf embed {
    display: none; }

  .formatos-section .bannerswf img {
    display: inline-block; } }
@media (max-width: 768px) {
  .titulo-izq {
    background: none;
    background-color: inherit;
    padding: 0; }

  .formatos-section--titulo {
    text-align: center;
    margin-bottom: 0px; }

  .formatos-section--titulo h2 {
    color: #ffffff; }

  .formatos-section h3 {
    font-size: 26px;
    letter-spacing: 1px; }

  .formatos-section p {
    letter-spacing: 1px;
    font-size: 17px; }

  .formatos-section--slider {
    padding-left: 10px;
    padding-right: 10px;
    max-width: 500px;
    margin: 0 auto; }

  .formatos-section .owl-theme .owl-controls {
    position: static;
    margin-top: 30px; }

  .formatos-section .owl-theme .owl-controls .owl-buttons div {
    margin: 0;
    width: 50%; }

  .formatos-section .owl-theme .owl-controls .owl-buttons .owl-next {
    border-left: 1px solid #47b9ae; }

  .formatos-section .owl-theme .owl-controls .owl-buttons .owl-prev {
    border-right: 1px solid #47b9ae; }

  .formatos-section .bannerhtml img {
    width: 100%; }

  .formatos-section .bannerhtml div {
    margin: 0;
    margin-top: 40px; }

  .formatos-section .bannerstandar .bannerstandar2.nodisplay,
  .formatos-section .bannerstandar object.nodisplay {
    display: none; }

  .formatos-section .bannerstandar {
    margin-top: 40px; }

  .formatos-section .bannerstandar .bannerstandar1,
  .formatos-section .bannerstandar .bannerstandar2 {
    width: 100%; }

  .formatos-section .bannerswf {
    margin-top: 40px; }

  .formatos-section figure {
    margin-top: 40px; }

  .formatos-section .bannerhtmlRM {
    margin-top: 55px; }

  .formatos-section .bannerhtmlRM img {
    margin-bottom: 35px; } }
.procesos-section {
  padding-top: 160px;
  padding-bottom: 100px;
  background-color: #f6f6f6;
  background-image: url(../img/ww_procesos_bg.png);
  background-position: right center;
  background-repeat: no-repeat; }
  .procesos-section--titulo {
    padding-left: 70px;
    padding-right: 70px; }
  .procesos-section h2 {
    padding-left: 25px;
    display: inline-block;
    position: relative;
    margin-bottom: 45px; }
    .procesos-section h2:after {
      position: absolute;
      top: -25px;
      left: 0;
      margin: 0; }
  .procesos-section--info {
    padding-left: 70px;
    padding-right: 70px;
    margin-bottom: 80px; }
    .procesos-section--info.menospadding {
      padding-left: 20px; }
  .procesos-section h3 {
    font-weight: 700;
    font-size: 34.5px;
    font-family: "Raleway", sans-serif;
    letter-spacing: 2px;
    margin-bottom: 15px; }

@media (max-width: 1100px) {
  .procesos-section {
    background-size: 200px;
    background-position: bottom right; }

  .procesos-section {
    padding-top: 100px;
    padding-bottom: 60px; }

  .procesos-section--titulo {
    padding-left: 10px;
    padding-right: 10px; }

  .procesos-section--info {
    padding-left: 10px;
    padding-right: 10px; }

  .procesos-section h3 {
    font-size: 28px;
    letter-spacing: 1px; } }
@media (max-width: 768px) {
  .procesos-section {
    padding-top: 60px;
    padding-bottom: 50px; }

  .procesos-section--titulo {
    margin-bottom: 15px; }

  .procesos-section h2 {
    padding-left: 0; }

  .procesos-section h2::after {
    margin: 10px auto;
    position: static; }

  .procesos-section h3 {
    font-size: 22px;
    letter-spacing: 1px;
    margin-top: 0; }

  .procesos-section--info {
    margin-bottom: 45px; } }
.premios-section {
  background-color: #ffffff;
  border-top: 1px solid #efefef;
  padding-bottom: 165px;
  background-image: url(../img/premios_bg.jpg);
  background-position: 75% bottom;
  background-repeat: no-repeat; }
  .premios-section--titulo {
    padding-left: 20px;
    padding-right: 70px;
    float: right;
    margin-bottom: 50px; }
  .premios-section h2 {
    padding-left: 25px;
    display: inline-block;
    position: relative;
    margin-bottom: 45px; }
    .premios-section h2:after {
      position: absolute;
      top: -25px;
      left: 0;
      margin: 0; }
  .premios-section--info {
    width: 55%;
    padding-left: 70px;
    padding-right: 70px; }
  .premios-section h3 {
    font-size: 26px;
    font-weight: 700;
    letter-spacing: 1.5px;
    margin-bottom: 33px;
    margin-top: 5px; }
  .premios-section .logo_clarin {
    display: inline-block;
    vertical-align: middle;
    width: 28px;
    height: 40px;
    background-image: url(../img/logo_clarin.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    margin-right: 20px; }
  .premios-section p {
    border-bottom: 1px solid #efefef;
    margin-left: 50px;
    letter-spacing: 1.5px;
    margin-bottom: 12px;
    padding-bottom: 5px; }
  .premios-section--links {
    overflow: hidden;
    margin-left: 50px;
    margin-top: 20px; }
    .premios-section--links a {
      float: left;
      color: #000000;
      display: block; }
    .premios-section--links a.mira {
      float: right;
      height: 53px;
      padding: 0 25px;
      line-height: 53px;
      color: #ffffff;
      background: #2cafa2;
      background: rgba(44, 175, 162, 0.87);
      font-size: 14px;
      font-weight: 700;
      letter-spacing: 1.5px; }
    .premios-section--links a.ver {
      font-size: 14px;
      font-weight: 700;
      color: #0054a6;
      text-decoration: underline;
      letter-spacing: 1.5px;
      line-height: 53px; }
  .premios-section--img {
    padding-right: 70px;
    width: 45%;
    text-align: right; }
    .premios-section--img img {
      display: inline-block; }

.mobile .premios-section--links a.mira, .tablet .premios-section--links a.mira, .phone .premios-section--links a.mira {
  display: none !important; }

.fancybox-item.fancybox-close {
  background: none;
  top: -26px;
  right: 0;
  width: 80px;
  height: 25px; }

.fancybox-item.fancybox-close:hover {
  color: #5cdfd2; }

.fancybox-item.fancybox-close:before {
  content: 'x Close';
  text-transform: uppercase;
  font-weight: 700;
  font-size: 14px;
  color: #2cafa2;
  letter-spacing: 1px; }

.fancybox-opened .fancybox-skin {
  padding: 0 !important; }

@media (max-width: 1270px) {
  .premios-section--info {
    width: 60%; }

  .premios-section--img {
    width: 40%; }

  .premios-section h3 {
    font-size: 23px; } }
@media (max-width: 1100px) {
  .premios-section {
    background-position: bottom center; }

  .premios-section--info {
    width: 100%;
    padding-left: 10px;
    padding-right: 10px;
    max-width: 600px;
    margin: 0 auto;
    margin-bottom: 60px; }

  .premios-section--img {
    width: 100%;
    padding-left: 10px;
    padding-right: 10px;
    text-align: center; }

  .premios-section--links a.mira {
    display: none; } }
@media (max-width: 768px) {
  .premios-section {
    padding-top: 60px;
    padding-bottom: 112px; }

  .premios-section--titulo {
    padding-left: 10px;
    padding-right: 10px;
    float: none;
    margin-bottom: 20px; }

  .premios-section h2 {
    padding-left: 0px; }

  .premios-section h2::after {
    position: static;
    margin: 10px auto; }

  .premios-section .logo_clarin {
    margin: 0 auto;
    margin-bottom: 15px;
    display: block;
    width: 21px;
    background-size: 100%;
    height: 30px; }

  .premios-section h3 {
    font-size: 20px; }

  .premios-section p {
    margin-left: 0; }

  .premios-section--links {
    margin-left: 0; }

  .premios-section--links a.mira,
  .premios-section--links a.ver {
    float: none; }

  .premios-section--links a.mira {
    height: 40px;
    padding: 0 20px;
    line-height: 40px;
    max-width: 300px;
    margin: 0 auto;
    letter-spacing: 1px; } }
.eligen-section {
  padding-top: 53px;
  padding-bottom: 0;
  background-color: #f7f7f7; }
  .eligen-section--titulo {
    text-align: center;
    margin-bottom: 40px; }
  .eligen-section .titulos {
    font-size: 48px;
    letter-spacing: 4px; }
    .eligen-section .titulos:after {
      height: 5px;
      width: 144px; }
  .eligen-section--info {
    padding-bottom: 73px; }
  .eligen-section .lista-logos {
    overflow: hidden; }
  .eligen-section .lista-logos li {
    display: block;
    float: left;
    width: 20%;
    height: 155px; }
  .eligen-section .lista-logos--img {
    display: block;
    width: 100%;
    height: 100%;
    background-position: center center;
    background-repeat: no-repeat;
    font-size: 0; }
  .eligen-section--masinfo {
    background: #2cafa2;
    background: rgba(44, 175, 162, 0.87);
    padding-bottom: 62px; }
    .eligen-section--masinfo .col1,
    .eligen-section--masinfo .col2 {
      padding-top: 105px; }
    .eligen-section--masinfo .col1 {
      padding-left: 70px;
      padding-right: 80px;
      background-position: 70px 0px;
      background-repeat: no-repeat;
      background-image: url(../img/clientes_bg.png); }
    .eligen-section--masinfo .col1 p {
      font-weight: 700;
      font-size: 22px;
      letter-spacing: 2px;
      max-width: 350px;
      margin-left: 30px; }
    .eligen-section--masinfo .col2 {
      padding-left: 0px;
      padding-right: 40px; }
    .eligen-section--masinfo .col2 p {
      line-height: 34px;
      letter-spacing: 2px; }

.lista-logos--img.logo1 {
  background-image: url(../img/logo1.jpg); }

.lista-logos--img.logo2 {
  background-image: url(../img/logo2.jpg); }

.lista-logos--img.logo3 {
  background-image: url(../img/logo3.jpg); }

.lista-logos--img.logo4 {
  background-image: url(../img/logo4.jpg); }

.lista-logos--img.logo5 {
  background-image: url(../img/logo5.jpg); }

.lista-logos--img.logo6 {
  background-image: url(../img/logo6.jpg); }

.lista-logos--img.logo7 {
  background-image: url(../img/logo7.jpg); }

.lista-logos--img.logo8 {
  background-image: url(../img/logo8.jpg); }

.lista-logos--img.logo9 {
  background-image: url(../img/logo9.jpg); }

.lista-logos--img.logo10 {
  background-image: url(../img/logo10.jpg); }

.lista-logos--img.logo11 {
  background-image: url(../img/logo11.jpg); }

.lista-logos--img.logo12 {
  background-image: url(../img/logo12.jpg); }

.lista-logos--img.logo13 {
  background-image: url(../img/logo13.jpg); }

.lista-logos--img.logo14 {
  background-image: url(../img/logo14.jpg); }

.lista-logos--img.logo15 {
  background-image: url(../img/logo15.jpg); }

@media (max-width: 1100px) {
  .eligen-section--info {
    padding-left: 10px;
    padding-right: 10px; }

  .eligen-section .lista-logos li {
    width: 33.33333333%; }

  .eligen-section--masinfo .col1,
  .eligen-section--masinfo .col2 {
    padding-left: 10px;
    padding-right: 10px; }

  .eligen-section--masinfo .col1 {
    background-position: 9px 0px; }

  .eligen-section--masinfo .col1 p {
    font-size: 20px;
    letter-spacing: 1px;
    max-width: 300px;
    margin-left: 0; }

  .eligen-section--masinfo .col2 p {
    line-height: 30px;
    letter-spacing: 1px; } }
@media (max-width: 768px) {
  .eligen-section .titulos {
    font-size: 30px;
    letter-spacing: 2px;
    margin-bottom: 0; }

  .eligen-section--titulo {
    margin-bottom: 0; }

  .eligen-section--masinfo .col2 {
    padding-top: 31px; }

  .eligen-section--masinfo .col1 {
    background-position: center top; }

  .eligen-section--masinfo .col1 p {
    font-size: 18px;
    letter-spacing: 1px;
    max-width: 500px;
    margin: 0 auto; }

  .eligen-section--masinfo .col2 p {
    line-height: 24px; } }
@media (max-width: 650px) {
  .eligen-section .lista-logos li {
    width: 50%;
    height: 115px; }

  .eligen-section .lista-logos--img {
    background-size: 91px; } }
.contacto-section {
  padding-top: 130px;
  padding-bottom: 100px;
  background-color: #ffffff;
  background-image: url(../img/ww_contacto_bg.jpg);
  background-position: left bottom;
  background-repeat: no-repeat; }
  .contacto-section--titulo {
    padding-left: 70px;
    padding-right: 70px; }
  .contacto-section h2 {
    padding-left: 20px;
    display: inline-block;
    position: relative;
    margin-bottom: 65px; }
    .contacto-section h2:after {
      position: absolute;
      top: -25px;
      left: 0;
      margin: 0; }
  .contacto-section--form, .contacto-section--info {
    padding-left: 70px;
    padding-right: 90px; }
  .contacto-section--form {
    padding-left: 90px;
    padding-right: 90px; }
    .contacto-section--form .form-control {
      height: 56px;
      border: none;
      box-shadow: none;
      background-color: #f0f0f0;
      font-size: 16px;
      color: #000000;
      padding-left: 25px;
      padding-right: 25px; }
      .contacto-section--form .form-control::-moz-placeholder {
        color: #000000;
        opacity: 1; }
      .contacto-section--form .form-control:-ms-input-placeholder {
        color: #000000; }
      .contacto-section--form .form-control::-webkit-input-placeholder {
        color: #000000; }
    .contacto-section--form .btn {
      width: 100%;
      background: #2cafa2;
      background: rgba(44, 175, 162, 0.87);
      color: #ffffff;
      text-transform: uppercase;
      font-size: 16px;
      font-weight: 700;
      padding: 0;
      height: 56px;
      line-height: 56px; }
  .contacto-section--info {
    padding-left: 30px;
    padding-top: 15px; }
    .contacto-section--info a {
      text-decoration: none;
      color: #000000; }
    .contacto-section--info p {
      margin-bottom: 42px;
      font-weight: 600; }
  .contacto-section span {
    display: inline-block;
    max-width: 270px;
    vertical-align: middle; }
  .contacto-section .info-icon {
    display: inline-block;
    vertical-align: middle;
    height: 75px;
    width: 75px;
    border: 1px solid #000000;
    border-radius: 100%;
    line-height: 75px;
    text-align: center;
    letter-spacing: 0;
    font-size: 29px;
    margin-right: 21px; }
    .contacto-section .info-icon .fa-mobile {
      font-size: 44px;
      padding-top: 17px; }
    .contacto-section .info-icon .fa-map-marker {
      font-size: 37px;
      padding-top: 4px;
      padding-top: 19px; }

@media (max-width: 1270px) {
  .contacto-section .info-icon {
    height: 65px;
    width: 65px;
    line-height: 65px;
    font-size: 25px; }

  .contacto-section .info-icon .fa-mobile {
    font-size: 39px;
    padding-top: 14px; }

  .contacto-section .info-icon .fa-map-marker {
    font-size: 32px;
    padding-top: 18px; }

  .contacto-section--info {
    padding-right: 70px; } }
@media (max-width: 1100px) {
  .contacto-section {
    padding-top: 100px;
    background-size: 200px; }

  .contacto-section--titulo {
    padding-left: 10px;
    padding-right: 10px; }

  .contacto-section--info {
    padding-left: 30px;
    padding-right: 10px; }

  .contacto-section--form {
    padding-left: 10px;
    padding-right: 30px; }

  .contacto-section .info-icon {
    height: 50px;
    width: 50px;
    line-height: 50px;
    font-size: 21px; }

  .contacto-section .info-icon .fa-mobile {
    font-size: 35px;
    padding-top: 9px; }

  .contacto-section .info-icon .fa-map-marker {
    font-size: 25px;
    padding-top: 14px; }

  .contacto-section--info p {
    margin-bottom: 31px;
    font-weight: 600;
    font-size: 15px; }

  .contacto-section span {
    display: inline-block;
    max-width: 190px; }

  .contacto-section--form .form-control {
    height: 50px; }

  .contacto-section--form .btn {
    height: 50px;
    line-height: 50px; } }
@media (max-width: 768px) {
  .contacto-section {
    padding-top: 60px;
    padding-bottom: 70px; }

  .contacto-section h2 {
    padding-left: 0; }

  .contacto-section h2::after {
    position: static;
    margin: 10px auto; }

  .contacto-section--info {
    padding-left: 10px; }

  .contacto-section--form {
    padding-right: 10px;
    max-width: 500px;
    margin: 10px auto 20px; }

  .contacto-section .info-icon {
    display: block;
    margin: 0px auto 10px; }

  .contacto-section--form .form-control {
    height: 50px;
    text-align: center; }

  .form-horizontal .form-group {
    margin-left: 0;
    margin-right: 0; }

  .form-horizontal .form-group > div {
    padding-left: 0;
    padding-right: 0; } }

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