@import url("https://fonts.googleapis.com/css2?family=Cardo&family=Montserrat:wght@500;600;700&display=swap");
html, body {
  margin: 0;
  padding: 0;
  font-family: "Cardo", serif;
  font-size: 20px;
  font-weight: 400;
  color: #575E62; }

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

h1 {
  font-family: "Montserrat", sans-serif;
  font-size: 70px;
  line-height: 60px;
  font-weight: 600;
  letter-spacing: -0.8px; }

h2 {
  font-family: "Montserrat", sans-serif;
  font-size: 50px;
  line-height: 50px;
  font-weight: 600; }

h3 {
  font-family: "Montserrat", sans-serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 2px;
  line-height: 20px;
  text-transform: uppercase; }

p {
  font-family: "Cardo", serif;
  font-size: 20px;
  line-height: 22px; }

button, a {
  font-family: inherit;
  color: inherit;
  text-decoration: none;
  border: none;
  background-color: transparent;
  -webkit-appearance: none;
  cursor: pointer; }
  button:focus, button:active, a:focus, a:active {
    outline: none; }

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

input, textarea, select {
  margin: 0;
  padding: 0;
  background-color: transparent;
  width: 100%;
  border: 1px solid #d0d0d0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: border-color 0.2s ease;
  -o-transition: border-color 0.2s ease;
  transition: border-color 0.2s ease;
  font-family: inherit;
  font-size: 15px;
  line-height: 20px;
  -webkit-appearance: none; }
  input:focus, input:active, textarea:focus, textarea:active, select:focus, select:active {
    outline: none; }

input {
  height: 40px;
  padding: 0 10px 0 20px; }
  input:focus {
    border-color: #E31B83; }

textarea {
  padding: 10px 20px;
  resize: none; }

@media screen and (max-width: 1080px) {
  h1 {
    font-size: 45px;
    line-height: 50px; }
  h2 {
    font-size: 30px;
    line-height: 30px; }
  p {
    line-height: 20px; } }

.l-main-wrapper {
  width: 90vw;
  max-width: 1080px;
  margin: 0 auto; }

nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  background-color: #FFF;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: 16px;
  padding-left: 55px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  z-index: 10; }
  nav .logo img:nth-of-type(1) {
    display: block; }
  nav .logo img:nth-of-type(2) {
    display: none; }
  nav ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    height: 100%; }
    nav ul li:not(:last-of-type) {
      margin-right: 50px; }
    nav ul li:last-of-type {
      margin-left: 90px; }
    nav ul li a {
      -webkit-transition: color 0.2s ease;
      -o-transition: color 0.2s ease;
      transition: color 0.2s ease; }
      nav ul li a:hover {
        color: #F7AE41; }
      nav ul li a.contact-button {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        width: 80px;
        height: 80px;
        background-color: #F7AE41;
        -webkit-transition: background-color 0.2s ease;
        -o-transition: background-color 0.2s ease;
        transition: background-color 0.2s ease; }
        nav ul li a.contact-button:hover {
          background-color: #E31B83; }
        nav ul li a.contact-button img {
          height: 30px; }

@media screen and (max-width: 1080px) {
  nav {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    height: 70px;
    padding: 0; }
    nav.--active ul {
      -webkit-transform: none;
      -ms-transform: none;
      transform: none; }
    nav.--active .logo img {
      height: 30px;
      margin: 0; }
      nav.--active .logo img:nth-of-type(1) {
        display: none; }
      nav.--active .logo img:nth-of-type(2) {
        display: block; }
    nav.--active .mobile-button span {
      background-color: #FFF; }
      nav.--active .mobile-button span:nth-of-type(1) {
        top: 50%;
        left: 50%;
        -webkit-transform: translate(-50%, -50%) rotate(45deg);
        -ms-transform: translate(-50%, -50%) rotate(45deg);
        transform: translate(-50%, -50%) rotate(45deg); }
      nav.--active .mobile-button span:nth-of-type(2) {
        opacity: 0; }
      nav.--active .mobile-button span:nth-of-type(3) {
        top: 50%;
        left: 50%;
        -webkit-transform: translate(-50%, -50%) rotate(-45deg);
        -ms-transform: translate(-50%, -50%) rotate(-45deg);
        transform: translate(-50%, -50%) rotate(-45deg); }
    nav ul {
      position: absolute;
      right: 0;
      top: 0;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
      -ms-flex-flow: column;
      flex-flow: column;
      width: 100vw;
      height: 100vh;
      background-color: #FFF;
      z-index: 11;
      -webkit-transform: translateX(100%);
      -ms-transform: translateX(100%);
      transform: translateX(100%);
      -webkit-transition: -webkit-transform 0.2s ease;
      transition: -webkit-transform 0.2s ease;
      -o-transition: transform 0.2s ease;
      transition: transform 0.2s ease;
      transition: transform 0.2s ease, -webkit-transform 0.2s ease;
      background-image: url(/assets/images/common/img_mobile-bg.png);
      background-size: cover;
      z-index: -1;
      padding: 100px 10vw;
      -webkit-box-sizing: border-box;
      box-sizing: border-box; }
      nav ul li {
        width: 100%; }
        nav ul li:not(:last-of-type) {
          margin: 0 0 30px 0; }
        nav ul li:last-of-type {
          margin-left: 0; }
        nav ul li a {
          font-size: 30px;
          line-height: 30px;
          color: #FFF; }
          nav ul li a.contact-button {
            display: none; }
    nav .logo {
      position: absolute;
      top: 50%;
      left: 50%;
      -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
      transform: translate(-50%, -50%);
      z-index: 1; }
      nav .logo img {
        height: 30px; }
        nav .logo img:nth-of-type(1) {
          display: block; }
        nav .logo img:nth-of-type(2) {
          display: none; }
    nav .mobile-button {
      position: absolute;
      top: 50%;
      right: 5vw;
      width: 30px;
      height: 30px;
      -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
      transform: translateY(-50%);
      z-index: 1; }
      nav .mobile-button span {
        position: absolute;
        left: 0;
        width: 100%;
        height: 1px;
        background-color: #575E62;
        -webkit-transition: all 0.2s ease;
        -o-transition: all 0.2s ease;
        transition: all 0.2s ease; }
        nav .mobile-button span:nth-of-type(1) {
          top: 5px; }
        nav .mobile-button span:nth-of-type(2) {
          top: 50%; }
        nav .mobile-button span:nth-of-type(3) {
          bottom: 5px; } }

.button {
  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: 42px;
  padding: 0 20px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 15px;
  border-radius: 20px; }
  .button.--icon {
    padding-right: 15px; }
    .button.--icon img {
      margin-left: 15px;
      max-height: 12px; }
  .button.--primary {
    background-color: #F7AE41;
    color: #FFF; }

label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-flow: column;
  flex-flow: column;
  width: 100%; }
  label h3 {
    font-size: 14px;
    line-height: 20px; }

section#landing__hero {
  position: relative;
  height: 640px;
  margin-top: 80px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  background-color: #FCF5EB;
  background-image: url(/assets/images/landing/img_hero-person.png);
  background-repeat: no-repeat;
  background-position: 90% bottom; }
  section#landing__hero .bubble {
    position: absolute; }
    section#landing__hero .bubble:nth-of-type(1) {
      top: 15%;
      left: 52%; }
    section#landing__hero .bubble:nth-of-type(2) {
      top: 28%;
      right: 8%; }
    section#landing__hero .bubble:nth-of-type(3) {
      bottom: 20%;
      left: 55%; }
  section#landing__hero .l-main-wrapper {
    height: 100%; }
    section#landing__hero .l-main-wrapper div {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
      -ms-flex-flow: column;
      flex-flow: column;
      -webkit-box-pack: center;
      -ms-flex-pack: center;
      justify-content: center;
      -webkit-box-align: start;
      -ms-flex-align: start;
      align-items: flex-start;
      height: 100%;
      max-width: 425px; }
      section#landing__hero .l-main-wrapper div p {
        font-size: 25px;
        margin: 30px 0; }

@media screen and (max-width: 1080px) {
  section#landing__hero {
    height: 100vh;
    margin-top: 0;
    padding-top: 90px;
    background-position: center bottom;
    background-size: 60vh auto; }
    section#landing__hero .l-main-wrapper div {
      -webkit-box-pack: start;
      -ms-flex-pack: start;
      justify-content: flex-start;
      -webkit-box-align: center;
      -ms-flex-align: center;
      align-items: center;
      text-align: center; }
      section#landing__hero .l-main-wrapper div p {
        margin: 20px 0; }
    section#landing__hero .l-main-wrapper .bubble:nth-of-type(1) {
      top: 50%;
      left: 5vw;
      width: 94px;
      height: 94px; }
    section#landing__hero .l-main-wrapper .bubble:nth-of-type(2) {
      top: 60%;
      right: 5vw;
      width: 106px;
      height: 106px; }
    section#landing__hero .l-main-wrapper .bubble:nth-of-type(3) {
      bottom: 10%;
      left: 15%;
      width: 63px;
      height: 63px; } }

section#valores {
  padding: 110px 0 50px 0; }
  section#valores .l-main-wrapper div {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-flow: column;
    flex-flow: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 650px;
    margin: 0 auto;
    text-align: center;
    padding-bottom: 30px;
    border-bottom: 1px solid #575E62;
    margin-bottom: 30px; }
    section#valores .l-main-wrapper div h3 {
      color: #E31B83;
      margin-bottom: 10px; }
  section#valores .l-main-wrapper ul {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (minmax(0, 1fr))[4];
    grid-template-columns: repeat(4, minmax(0, 1fr));
    grid-column-gap: 10px; }
    section#valores .l-main-wrapper ul li {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
      -ms-flex-flow: column;
      flex-flow: column;
      -webkit-box-align: center;
      -ms-flex-align: center;
      align-items: center;
      padding: 20px 14px 30px 14px;
      -webkit-box-sizing: border-box;
      box-sizing: border-box;
      -webkit-transition: background-color 0.2s ease;
      -o-transition: background-color 0.2s ease;
      transition: background-color 0.2s ease;
      border-radius: 10px; }
      section#valores .l-main-wrapper ul li:hover {
        background-color: #F0F0F0; }
        section#valores .l-main-wrapper ul li:hover p:nth-of-type(2) {
          opacity: 1; }
      section#valores .l-main-wrapper ul li span {
        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;
        width: 80px;
        height: 80px;
        border-radius: 50%;
        background-color: #E31B83;
        margin-bottom: 20px; }
      section#valores .l-main-wrapper ul li p {
        text-align: center; }
        section#valores .l-main-wrapper ul li p:nth-of-type(1) {
          font-family: "Montserrat", sans-serif;
          font-size: 18px;
          margin-bottom: 10px; }
        section#valores .l-main-wrapper ul li p:nth-of-type(2) {
          opacity: 0;
          -webkit-transition: opacity 0.2s ease;
          -o-transition: opacity 0.2s ease;
          transition: opacity 0.2s ease; }

@media screen and (max-width: 1080px) {
  section#valores {
    padding: 40px 0; }
    section#valores .l-main-wrapper div {
      width: 100%;
      padding-bottom: 20px; }
      section#valores .l-main-wrapper div h3 {
        margin-bottom: 5px; }
    section#valores .l-main-wrapper ul {
      display: -ms-grid;
      display: grid;
      -ms-grid-columns: (minmax(0, 1fr))[2];
      grid-template-columns: repeat(2, minmax(0, 1fr));
      grid-gap: 20px; }
      section#valores .l-main-wrapper ul li:hover, section#valores .l-main-wrapper ul li:focus {
        opacity: 1; }
        section#valores .l-main-wrapper ul li:hover p:nth-of-type(2), section#valores .l-main-wrapper ul li:focus p:nth-of-type(2) {
          display: block; }
      section#valores .l-main-wrapper ul li p:nth-of-type(2) {
        display: none; } }


section#productos {
  padding: 110px 0 50px 0; }
  section#productos .l-main-wrapper div {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-flow: column;
    flex-flow: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 650px;
    margin: 0 auto;
    text-align: center;
    padding-bottom: 30px;
    border-bottom: 1px solid #575E62;
    margin-bottom: 30px; }
    section#productos .l-main-wrapper div h3 {
      color: #E31B83;
      margin-bottom: 10px; }
  section#productos .l-main-wrapper ul {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (minmax(0, 1fr))[4];
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-column-gap: 10px; }
    section#productos .l-main-wrapper ul li {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
      -ms-flex-flow: column;
      flex-flow: column;
      -webkit-box-align: center;
      -ms-flex-align: center;
      align-items: center;
      padding: 20px 14px 30px 14px;
      -webkit-box-sizing: border-box;
      box-sizing: border-box;
      -webkit-transition: background-color 0.2s ease;
      -o-transition: background-color 0.2s ease;
      transition: background-color 0.2s ease;
      border-radius: 10px; }
      section#productos .l-main-wrapper ul li:hover {
        background-color: #F0F0F0; }
        section#productos .l-main-wrapper ul li:hover p:nth-of-type(2) {
          opacity: 1; }
      section#productos .l-main-wrapper ul li span {
        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;
        width: 80px;
        height: 80px;
        border-radius: 50%;
        background-color: #E31B83;
        margin-bottom: 20px; }
      section#productos .l-main-wrapper ul li p {
        text-align: center; }
        section#productos .l-main-wrapper ul li p:nth-of-type(1) {
          font-family: "Montserrat", sans-serif;
          font-size: 18px;
          margin-bottom: 10px; }
        section#productos .l-main-wrapper ul li p:nth-of-type(2) {
          opacity: 0;
          -webkit-transition: opacity 0.2s ease;
          -o-transition: opacity 0.2s ease;
          transition: opacity 0.2s ease; }

@media screen and (max-width: 1080px) {
  section#productos {
    padding: 40px 0; }
    section#productos .l-main-wrapper div {
      width: 100%;
      padding-bottom: 20px; }
      section#productos .l-main-wrapper div h3 {
        margin-bottom: 5px; }
    section#productos .l-main-wrapper ul {
      display: -ms-grid;
      display: grid;
      -ms-grid-columns: (minmax(0, 1fr))[2];
      grid-template-columns: repeat(2, minmax(0, 1fr));
      grid-gap: 20px; }
      section#productos .l-main-wrapper ul li:hover, section#productos .l-main-wrapper ul li:focus {
        opacity: 1; }
        section#productos .l-main-wrapper ul li:hover p:nth-of-type(2), section#productos .l-main-wrapper ul li:focus p:nth-of-type(2) {
          display: block; }
      section#productos .l-main-wrapper ul li p:nth-of-type(2) {
        display: none; } }








section#nosotros {
  background-color: #FFFFFF;
  padding: 40px;
  background-image: url(/assets/images/landing/img_about-bg.png);
  background-repeat: no-repeat;
  background-position: 95% center; }
  section#nosotros .l-main-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex; }
    section#nosotros .l-main-wrapper .content {
      padding-top: 25px;
      margin-right: 130px; }
      section#nosotros .l-main-wrapper .content .title-wrapper {
        position: relative;
        padding-bottom: 20px;
        margin-bottom: 20px; }
        section#nosotros .l-main-wrapper .content .title-wrapper:before {
          content: '';
          position: absolute;
          right: 0;
          bottom: 0;
          width: 100vw;
          height: 1px;
          background-color: #575E62; }
        section#nosotros .l-main-wrapper .content .title-wrapper h3 {
          color: #E31B83;
          margin-bottom: 20px; }
        section#nosotros .l-main-wrapper .content .title-wrapper h2 {
          white-space: nowrap; }
      section#nosotros .l-main-wrapper .content p:not(:last-of-type) {
        margin-bottom: 20px; }
    section#nosotros .l-main-wrapper aside {
      position: relative; }
      section#nosotros .l-main-wrapper aside .button {
        position: absolute;
        bottom: 70px;
        left: 0; }
      section#nosotros .l-main-wrapper aside .bubble {
        position: absolute;
        top: 30px;
        right: 10px;
        width: 78px; }

@media screen and (max-width: 1080px) {
  section#nosotros {
    padding: 0; }
    section#nosotros .l-main-wrapper {
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
      -ms-flex-flow: column;
      flex-flow: column;
      padding: 40px 0 70px 0; }
      section#nosotros .l-main-wrapper p {
        text-align: center; }
      section#nosotros .l-main-wrapper .content {
        padding: 0;
        margin: 0; }
        section#nosotros .l-main-wrapper .content .title-wrapper {
          text-align: center;
          padding-bottom: 30px;
          margin-bottom: 30px; }
          section#nosotros .l-main-wrapper .content .title-wrapper:before {
            content: '';
            position: absolute;
            right: initial;
            bottom: 0;
            left: 50%;
            width: 100vw;
            height: 1px;
            background-color: #575E62;
            -webkit-transform: translateX(-50%);
            -ms-transform: translateX(-50%);
            transform: translateX(-50%); }
          section#nosotros .l-main-wrapper .content .title-wrapper h3 {
            margin-bottom: 5px; }
      section#nosotros .l-main-wrapper aside {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-flow: column;
        flex-flow: column;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        margin-top: 60px; }
        section#nosotros .l-main-wrapper aside img:not(.bubble) {
          width: 264px;
          height: 264px; }
        section#nosotros .l-main-wrapper aside img.bubble {
          top: initial;
          bottom: 60%;
          right: 5%;
          width: 63px;
          height: 63px; }
        section#nosotros .l-main-wrapper aside .button {
          bottom: 0;
          left: 50%;
          -webkit-transform: translateX(-50%);
          -ms-transform: translateX(-50%);
          transform: translateX(-50%);
          width: 200px; } }

section#servicios {
  padding: 50px 0; }
  section#servicios .l-main-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    max-width: none; }
    section#servicios .l-main-wrapper .content {
      min-width: 430px;
      max-width: 430px;
      padding-left: calc((100vw - 1080px) / 2);
      margin-right: 20px; }
      section#servicios .l-main-wrapper .content h3 {
        color: #E31B83; }
      section#servicios .l-main-wrapper .content h2 {
        margin: 20px 0; }
      section#servicios .l-main-wrapper .content p {
        margin-bottom: 70px; }
      section#servicios .l-main-wrapper .content span {
        display: none; }
      section#servicios .l-main-wrapper .content .buttons-wrapper {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex; }
        section#servicios .l-main-wrapper .content .buttons-wrapper button {
          display: -webkit-box;
          display: -ms-flexbox;
          display: flex;
          -webkit-box-align: center;
          -ms-flex-align: center;
          align-items: center;
          -webkit-box-pack: center;
          -ms-flex-pack: center;
          justify-content: center;
          width: 42px;
          height: 42px;
          border-radius: 50%;
          background-color: #F7AE41;
          -webkit-box-shadow: 0 5px 5px 0 rgba(0, 0, 0, 0.09);
          box-shadow: 0 5px 5px 0 rgba(0, 0, 0, 0.09); }
          section#servicios .l-main-wrapper .content .buttons-wrapper button.--prev {
            margin-right: 10px; }
            section#servicios .l-main-wrapper .content .buttons-wrapper button.--prev img {
              -webkit-transform: rotate(180deg);
              -ms-transform: rotate(180deg);
              transform: rotate(180deg);
              margin-right: 4px; }
          section#servicios .l-main-wrapper .content .buttons-wrapper button.--next img {
            margin-left: 4px; }
    section#servicios .l-main-wrapper .slides-wrapper {
      width: 100%; }
      section#servicios .l-main-wrapper .slides-wrapper .slide {
        position: relative;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-flow: column;
        flex-flow: column;
        width: 100%;
        border-radius: 10px 0 0 10px;
        padding: 40px 0 70px 110px;
        background: #E31B83;
        /* Old browsers */
        background: -moz-linear-gradient(left, #F7AE41 0%, #E31B83 100%);
        /* FF3.6-15 */
        background: -webkit-linear-gradient(left, #F7AE41 0%, #E31B83 100%);
        /* Chrome10-25,Safari5.1-6 */
        background: -webkit-gradient(linear, left top, right top, from(#F7AE41), to(#E31B83));
        background: -o-linear-gradient(left, #F7AE41 0%, #E31B83 100%);
        background: linear-gradient(to right, #F7AE41 0%, #E31B83 100%);
        /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
        filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f6a645', endColorstr='#e31b83',GradientType=1 );
        /* IE6-9 */
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
        margin-bottom: 20px; }
        section#servicios .l-main-wrapper .slides-wrapper .slide .slide-content {
          position: absolute;
          opacity: 0;
          color: #FFF;
          -webkit-transition: opacity 1s ease;
          -o-transition: opacity 1s ease;
          transition: opacity 1s ease; }
          section#servicios .l-main-wrapper .slides-wrapper .slide .slide-content.--active {
            position: initial;
            opacity: 1; }
          section#servicios .l-main-wrapper .slides-wrapper .slide .slide-content .icon {
            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;
            width: 80px;
            height: 80px;
            margin-bottom: 10px;
            background-color: #FFF;
            border-radius: 50%;
            -webkit-box-shadow: 0 2px 15px 0 rgba(0, 0, 0, 0.2);
            box-shadow: 0 2px 15px 0 rgba(0, 0, 0, 0.2); }
            section#servicios .l-main-wrapper .slides-wrapper .slide .slide-content .icon img {
              max-height: 38px; }
          section#servicios .l-main-wrapper .slides-wrapper .slide .slide-content .title-wrapper {
            position: relative;
            margin-bottom: 10px;
            padding-bottom: 10px; }
            section#servicios .l-main-wrapper .slides-wrapper .slide .slide-content .title-wrapper:before {
              content: '';
              position: absolute;
              bottom: 0;
              left: 0;
              width: 100%;
              height: 1px;
              background-color: #FFF; }
            section#servicios .l-main-wrapper .slides-wrapper .slide .slide-content .title-wrapper p {
              font-family: "Montserrat", sans-serif; }
          section#servicios .l-main-wrapper .slides-wrapper .slide .slide-content p {
            width: 100%;
            padding-right: 280px;
            -webkit-box-sizing: border-box;
            box-sizing: border-box; }
      section#servicios .l-main-wrapper .slides-wrapper .slides-titles {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        width: 100%;
        padding-right: 55px;
        -webkit-box-sizing: border-box;
        box-sizing: border-box; }
        section#servicios .l-main-wrapper .slides-wrapper .slides-titles button {
          opacity: 0.25;
          -webkit-transition: opacity 0.2s ease;
          -o-transition: opacity 0.2s ease;
          transition: opacity 0.2s ease; }
          section#servicios .l-main-wrapper .slides-wrapper .slides-titles button:hover, section#servicios .l-main-wrapper .slides-wrapper .slides-titles button.--active {
            opacity: 1; }
          section#servicios .l-main-wrapper .slides-wrapper .slides-titles button span {
            font-family: "Montserrat", sans-serif;
            font-size: 18px; }
      section#servicios .l-main-wrapper .slides-wrapper .buttons-wrapper.--mobile {
        display: none; }

@media screen and (max-width: 1080px) {
  section#servicios {
    padding: 80px 0; }
    section#servicios .l-main-wrapper {
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
      -ms-flex-flow: column;
      flex-flow: column; }
      section#servicios .l-main-wrapper .content {
        min-width: unset;
        max-width: unset;
        margin: 0;
        width: 100%;
        text-align: center;
        padding-bottom: 30px; }
        section#servicios .l-main-wrapper .content h2 {
          max-width: 300px;
          margin: 0 auto; }
        section#servicios .l-main-wrapper .content span {
          display: block;
          width: 100%;
          height: 1px;
          margin: 30px 0;
          background-color: #575E62; }
        section#servicios .l-main-wrapper .content p {
          margin: 0 5vw; }
        section#servicios .l-main-wrapper .content .buttons-wrapper {
          display: none; }
      section#servicios .l-main-wrapper .slides-wrapper {
        width: 100%; }
        section#servicios .l-main-wrapper .slides-wrapper .slide {
          border-radius: 0;
          padding: 30px 0; }
          section#servicios .l-main-wrapper .slides-wrapper .slide .slide-content {
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            -webkit-box-orient: vertical;
            -webkit-box-direction: normal;
            -ms-flex-flow: column;
            flex-flow: column;
            -webkit-box-align: center;
            -ms-flex-align: center;
            align-items: center; }
            section#servicios .l-main-wrapper .slides-wrapper .slide .slide-content .title-wrapper {
              width: 100%;
              padding: 0 5vw 16px 0;
              -webkit-box-sizing: border-box;
              box-sizing: border-box;
              text-align: center; }
            section#servicios .l-main-wrapper .slides-wrapper .slide .slide-content p {
              padding: 0 5vw;
              -webkit-box-sizing: border-box;
              box-sizing: border-box;
              text-align: center;
              margin-top: 30px; }
        section#servicios .l-main-wrapper .slides-wrapper .slides-titles {
          padding: 0;
          -webkit-box-pack: center;
          -ms-flex-pack: center;
          justify-content: center;
          margin-bottom: 20px; }
          section#servicios .l-main-wrapper .slides-wrapper .slides-titles button {
            width: 10px;
            height: 10px;
            background-color: #575E62;
            border-radius: 50%;
            padding: 0; }
            section#servicios .l-main-wrapper .slides-wrapper .slides-titles button:not(:last-of-type) {
              margin-right: 37px; }
            section#servicios .l-main-wrapper .slides-wrapper .slides-titles button.--active {
              background-color: #F7AE41; }
            section#servicios .l-main-wrapper .slides-wrapper .slides-titles button span {
              display: none; }
        section#servicios .l-main-wrapper .slides-wrapper .buttons-wrapper.--mobile {
          display: -webkit-box;
          display: -ms-flexbox;
          display: flex;
          -webkit-box-pack: center;
          -ms-flex-pack: center;
          justify-content: center; }
          section#servicios .l-main-wrapper .slides-wrapper .buttons-wrapper.--mobile button {
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            -webkit-box-align: center;
            -ms-flex-align: center;
            align-items: center;
            -webkit-box-pack: center;
            -ms-flex-pack: center;
            justify-content: center;
            width: 42px;
            height: 42px;
            border-radius: 50%;
            background-color: #F7AE41;
            -webkit-box-shadow: 0 5px 5px 0 rgba(0, 0, 0, 0.09);
            box-shadow: 0 5px 5px 0 rgba(0, 0, 0, 0.09); }
            section#servicios .l-main-wrapper .slides-wrapper .buttons-wrapper.--mobile button.--prev {
              margin-right: 10px; }
              section#servicios .l-main-wrapper .slides-wrapper .buttons-wrapper.--mobile button.--prev img {
                -webkit-transform: rotate(180deg);
                -ms-transform: rotate(180deg);
                transform: rotate(180deg);
                margin-right: 4px; }
            section#servicios .l-main-wrapper .slides-wrapper .buttons-wrapper.--mobile button.--next img {
              margin-left: 4px; } }

section#contacto .header-wrapper {
  position: relative;
  height: 585px;
  background-image: url(/assets/images/landing/img_contact-bg.png);
  background-size: cover; }
  section#contacto .header-wrapper:before {
    content: url(/assets/images/landing/img_contact-gradient.png);
    position: absolute;
    bottom: -35%;
    left: 0; }
  section#contacto .header-wrapper .l-main-wrapper {
    position: relative;
    color: #FFF;
    padding-top: 125px;
    z-index: 1; }
    section#contacto .header-wrapper .l-main-wrapper h3 {
      margin-bottom: 20px; }
    section#contacto .header-wrapper .l-main-wrapper h1 {
      font-size: 80px;
      line-height: 80px; }

section#contacto .content-wrapper {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  z-index: 1;
  margin-top: -180px; }
  section#contacto .content-wrapper .person {
    margin-left: -40px; }
  section#contacto .content-wrapper form {
    position: relative;
    -ms-flex-item-align: start;
    align-self: flex-start;
    width: 580px;
    background-color: #FFF;
    border-radius: 10px;
    -webkit-box-shadow: 0 5px 5px 0 rgba(0, 0, 0, 0.09);
    box-shadow: 0 5px 5px 0 rgba(0, 0, 0, 0.09);
    padding: 40px 30px 70px 30px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box; }
    section#contacto .content-wrapper form h2, section#contacto .content-wrapper form p {
      text-align: center; }
    section#contacto .content-wrapper form h2 {
      margin-bottom: 10px; }
    section#contacto .content-wrapper form .buttons-wrapper {
      display: -ms-grid;
      display: grid;
      -ms-grid-columns: (minmax(0, 1fr))[3];
      grid-template-columns: repeat(3, minmax(0, 1fr));
      grid-column-gap: 22px;
      margin: 30px 0 56px 0; }
      section#contacto .content-wrapper form .buttons-wrapper a {
        border-radius: 10px;
        background-color: #F7AE41;
        -webkit-box-shadow: 0 5px 5px 0 rgba(0, 0, 0, 0.09);
        box-shadow: 0 5px 5px 0 rgba(0, 0, 0, 0.09);
        padding: 17px;
        -webkit-box-sizing: border-box;
        box-sizing: border-box; }
        section#contacto .content-wrapper form .buttons-wrapper a img {
          height: 28px;
          margin-bottom: 8px; }
        section#contacto .content-wrapper form .buttons-wrapper a p {
          font-family: "Montserrat", sans-serif;
          font-size: 15px;
          line-height: 15px;
          color: #FFF; }
          section#contacto .content-wrapper form .buttons-wrapper a p:nth-of-type(2) {
            display: none; }
    section#contacto .content-wrapper form .form-wrapper {
      display: -ms-grid;
      display: grid;
      -ms-grid-columns: [c1] 1fr [c2] 1fr [c3];
      grid-template-columns: [c1] 1fr [c2] 1fr [c3];
      -ms-grid-rows: [r1] 1fr [r2] 1fr [r3] 1fr [r4];
      grid-template-rows: [r1] 1fr [r2] 1fr [r3] 1fr [r4];
      grid-gap: 22px; }
      section#contacto .content-wrapper form .form-wrapper label {
        -ms-grid-column: c1;
        grid-column-start: c1;
        -ms-grid-column-span: NaN;
        grid-column-end: c2; }
        section#contacto .content-wrapper form .form-wrapper label:last-of-type {
          -ms-grid-column: c2;
          grid-column-start: c2;
          -ms-grid-column-span: NaN;
          grid-column-end: c3;
          -ms-grid-row: r1;
          grid-row-start: r1;
          -ms-grid-row-span: NaN;
          grid-row-end: r4; }
    section#contacto .content-wrapper form button[type="submit"] {
      position: absolute;
      bottom: 0;
      left: 50%;
      width: 206px;
      -webkit-transform: translate(-50%, 50%);
      -ms-transform: translate(-50%, 50%);
      transform: translate(-50%, 50%); }
      section#contacto .content-wrapper form button[type="submit"] img {
        position: absolute;
        right: 14px; }

@media screen and (max-width: 1080px) {
  section#contacto .header-wrapper {
    height: auto;
    padding: 160px 0;
    overflow: hidden; }
    section#contacto .header-wrapper:before {
      bottom: -50%;
      left: -50%;
      -webkit-transform: scale(0.5);
      -ms-transform: scale(0.5);
      transform: scale(0.5); }
    section#contacto .header-wrapper .l-main-wrapper {
      padding: 0; }
      section#contacto .header-wrapper .l-main-wrapper h3 {
        margin-bottom: 5px;
        text-align: center; }
      section#contacto .header-wrapper .l-main-wrapper h1 {
        font-size: 45px;
        line-height: 50px;
        text-align: center; }
  section#contacto .content-wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-flow: column;
    flex-flow: column; }
    section#contacto .content-wrapper form {
      width: 100%;
      padding: 29px 26px 50px 26px;
      margin-bottom: 90px; }
      section#contacto .content-wrapper form .buttons-wrapper {
        grid-column-gap: 20px;
        margin: 30px 0; }
        section#contacto .content-wrapper form .buttons-wrapper a {
          display: -webkit-box;
          display: -ms-flexbox;
          display: flex;
          -webkit-box-orient: vertical;
          -webkit-box-direction: normal;
          -ms-flex-flow: column;
          flex-flow: column;
          -webkit-box-pack: center;
          -ms-flex-pack: center;
          justify-content: center;
          -webkit-box-align: center;
          -ms-flex-align: center;
          align-items: center;
          padding: 17px 10px; }
          section#contacto .content-wrapper form .buttons-wrapper a p:nth-of-type(1) {
            display: none; }
          section#contacto .content-wrapper form .buttons-wrapper a p:nth-of-type(2) {
            display: block; }
      section#contacto .content-wrapper form .form-wrapper {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-flow: column;
        flex-flow: column; }
    section#contacto .content-wrapper .person {
      width: 290px;
      margin: 0 auto; } }

footer {
  background-color: #575E62; }
  footer .content-wrapper:first-of-type {
    padding: 80px 0 70px 0;
    border-bottom: 1px solid #979797; }
    footer .content-wrapper:first-of-type .l-main-wrapper {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: justify;
      -ms-flex-pack: justify;
      justify-content: space-between; }
      footer .content-wrapper:first-of-type .l-main-wrapper p {
        margin: 0 80px 0 90px;
        color: #FFF;
        font-family: "Montserrat", sans-serif;
        font-size: 20px;
        line-height: 23px; }
      footer .content-wrapper:first-of-type .l-main-wrapper .social-wrapper {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex; }
        footer .content-wrapper:first-of-type .l-main-wrapper .social-wrapper a {
          display: -webkit-box;
          display: -ms-flexbox;
          display: flex;
          -ms-flex-line-pack: center;
          align-content: center;
          -webkit-box-pack: center;
          -ms-flex-pack: center;
          justify-content: center;
          width: 46px;
          height: 46px;
          border-radius: 50%;
          background-color: #E31B83; }
          footer .content-wrapper:first-of-type .l-main-wrapper .social-wrapper a:not(:last-of-type) {
            margin-right: 34px; }
  footer .content-wrapper:last-of-type p {
    color: #FFF;
    margin: 30px 0;
    text-align: center;
    font-size: 16px; }
  footer .content-wrapper:last-of-type .gradient {
    width: 100%;
    height: 5px;
    background: #E31B83;
    /* Old browsers */
    background: -moz-linear-gradient(left, #F7AE41 0%, #E31B83 100%);
    /* FF3.6-15 */
    background: -webkit-linear-gradient(left, #F7AE41 0%, #E31B83 100%);
    /* Chrome10-25,Safari5.1-6 */
    background: -webkit-gradient(linear, left top, right top, from(#F7AE41), to(#E31B83));
    background: -o-linear-gradient(left, #F7AE41 0%, #E31B83 100%);
    background: linear-gradient(to right, #F7AE41 0%, #E31B83 100%);
    /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f6a645', endColorstr='#e31b83',GradientType=1 );
    /* IE6-9 */ }

@media screen and (max-width: 1080px) {
  footer .content-wrapper:first-of-type {
    padding: 70px 0; }
    footer .content-wrapper:first-of-type .l-main-wrapper {
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
      -ms-flex-flow: column;
      flex-flow: column;
      -webkit-box-pack: center;
      -ms-flex-pack: center;
      justify-content: center;
      -webkit-box-align: center;
      -ms-flex-align: center;
      align-items: center; }
      footer .content-wrapper:first-of-type .l-main-wrapper p {
        margin: 30px 0 40px 0;
        text-align: center; }
  footer .content-wrapper:last-of-type .l-main-wrapper p {
    margin: 12px 0;
    font-size: 12px; } }
