@import url("https://fonts.googleapis.com/css?family=Nunito");
@import url("https://fonts.googleapis.com/css?family=Roboto");
/* -------------------------------- 

Primary style

-------------------------------- */
*, *::after, *::before {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html {
  font-size: 62.5%;
}

body {
  font-size: 1.6rem;
  font-family: "Nunito", sans-serif;
  color: #444444;
  background-color: #ffffff;
}

a {
  color: #544173;
  text-decoration: none;
}

h1, h2, h3 {
  font-family: "Roboto", sans-serif;
  text-transform: uppercase;
}

/* -------------------------------- 

Patterns - reusable parts of our design

-------------------------------- */
.overflow-hidden {
  overflow: hidden;
}

/* -------------------------------- 

Header

-------------------------------- */
header {
  text-align: center;
  background-image: url(http://nextcircularfuture.com/wp-content/uploads/2017/11/fondo-next-circular.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  width: 100%;
}

header h1, header h4 {
  font-size: 3rem;
  color: #ffffff;
  text-transform: uppercase;
  margin: auto;
  line-height: 6rem;
}

header span {
  background: #ffffff;
  position: absolute;
  left: calc(50% - 5px);
  width: 5px;
  height: 70px;
}

header span:after, header span:before {
  content: '';
  position: absolute;
  height: 40px;
  width: 5px;
  display: block;
  background: #ffffff;
  bottom: 0;
}

header span:after {
  right: 0;
  -webkit-transform: translateX(-0.5px) rotate(45deg);
          transform: translateX(-0.5px) rotate(45deg);
  -webkit-transform-origin: 0 100%;
          transform-origin: 0 100%;
}

header span:before {
  -webkit-transform: translateX(0.5px) rotate(-45deg);
          transform: translateX(0.5px) rotate(-45deg);
  -webkit-transform-origin: 100% 100%;
          transform-origin: 100% 100%;
}

@media only screen and (min-width: 480px) {
  header span {
    margin-top: 4rem;
  }
}

@media only screen and (min-width: 600px) {
  header span {
    margin-top: 7rem;
  }
}

@media only screen and (min-width: 480px) {
  header h1 {
    font-size: 4rem;
  }
}

@media only screen and (min-width: 600px) {
  header h1 {
    font-size: 5.4rem;
    max-width: 700px;
  }
}

/* -------------------------------- 

Main content

-------------------------------- */
.cd-main {
  overflow-x: hidden;
}

.cd-main::before {
  /* never visible - this is used in jQuery to check the current MQ */
  display: none;
  content: 'mobile';
}

.cd-main > * {
  -webkit-transition: -webkit-transform 0.5s 0.4s;
  transition: -webkit-transform 0.5s 0.4s;
  transition: transform 0.5s 0.4s;
  transition: transform 0.5s 0.4s, -webkit-transform 0.5s 0.4s;
}

.cd-main.fold-is-open > * {
  /* on mobile - translate .cd-main content to the right when the .cd-folding-panel is open */
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
  -webkit-transition: -webkit-transform 0.5s 0s;
  transition: -webkit-transform 0.5s 0s;
  transition: transform 0.5s 0s;
  transition: transform 0.5s 0s, -webkit-transform 0.5s 0s;
}

@media only screen and (min-width: 600px) {
  .cd-main.fold-is-open > * {
    -webkit-transform: translateX(600px);
            transform: translateX(600px);
  }
}

@media only screen and (min-width: 1100px) {
  .cd-main::before {
    /* never visible - this is used in jQuery to check the current MQ */
    content: 'desktop';
  }
  .cd-main.fold-is-open > * {
    /* reset style - on bigger devices we translate the gallery items */
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

.cd-gallery::after {
  clear: both;
  content: "";
  display: block;
}

.cd-gallery::before {
  /* this is the dark layer covering the .cd-gallery when the .cd-folding-panel is open */
  display: block;
  content: '';
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: rgba(28, 23, 38, 0.6);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.5s 0.4s, visibility 0s 0.9s;
  transition: opacity 0.5s 0.4s, visibility 0s 0.9s;
}

.fold-is-open .cd-gallery::before {
  visibility: visible;
  opacity: 1;
  -webkit-transition: opacity 0.5s 0s, visibility 0s 0s;
  transition: opacity 0.5s 0s, visibility 0s 0s;
}

.cd-main__logo {
  z-index: 2;
  position: absolute;
  padding: 1rem;
/*  -webkit-clip-path: polygon(0% 0%, 100% 0%, 100% 70%, 0% 100%);
          clip-path: polygon(0% 0%, 100% 0%, 100% 70%, 0% 100%);*/
}

.cd-main__logo img {
  padding-top: 2rem;
  width: 100%;
}

@media only screen and (min-width: 600px) {
  .cd-main__logo {
    width: 30rem;
  }
}

/*@media only screen and (min-width: 1100px) {
  .cd-main__logo {
    margin-left: 10rem;
  }
}*/

.cd-item {
  width: 100%;
  height: 300px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  text-align: center;
  /* Force Hardware Acceleration */
  -webkit-transform: translateZ(0);
          transform: translateZ(0);
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  -webkit-transition: -webkit-transform 0.5s 0.4s;
  transition: -webkit-transform 0.5s 0.4s;
  transition: transform 0.5s 0.4s;
  transition: transform 0.5s 0.4s, -webkit-transform 0.5s 0.4s;
}

.cd-item > a {
  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: 100%;
  width: 100%;
  overflow: hidden;
  color: #ffffff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.cd-item > a.dark-text {
  color: #e2e2e2;
}

.cd-item > a.dark-text b {
  border-color: #e2e2e2;
}

.cd-item div {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: background-color 0.5s ease;
  transition: background-color 0.5s ease;
}

@media only screen and (min-width: 1100px) {
  .cd-item div {
    border-radius: 50%;
    width: 60%;
    height: 67%;
    max-width: 350px;
  }
}

.cd-item:nth-of-type(1) div, .cd-item:nth-of-type(2), .cd-item:nth-of-type(3) {
  background-color: #ededed;
}

.cd-item:nth-of-type(3) div {
  background-color: #ededed;
}

@media only screen and (min-width: 1100px) {
  .cd-item:nth-of-type(3) div {
    background-color: #e2e2e2;
  }
}

.cd-item:nth-of-type(2) div, .cd-item:nth-of-type(1) {
  background-color: #e2e2e2;
}

.cd-item:nth-of-type(4) {
  background-color: #948459;
}

.cd-item:hover div {
  background-color: #948459;
  -webkit-transition: background-color 0.5s ease;
  transition: background-color 0.5s ease;
}

.cd-item:last-child div {
  width: 70%;
}

@media only screen and (min-width: 1100px) {
  .cd-item:last-child div {
    max-width: 410px;
  }
}

.cd-item:last-child div button {
  padding: 1.5rem 2.5rem;
  margin-top: 3rem;
  color: #948459;
  font-size: 2rem;
  border-radius: 40px;
  font-family: "Nunito", sans-serif;
  cursor: pointer;
}

.cd-item button {
  background: #ffffff;
}

@media only screen and (min-width: 1100px) {
  .cd-item {
    width: 50%;
    float: left;
    height: 520px;
    -webkit-transition: -webkit-transform 0.5s 0.4s;
    transition: -webkit-transform 0.5s 0.4s;
    transition: transform 0.5s 0.4s;
    transition: transform 0.5s 0.4s, -webkit-transform 0.5s 0.4s;
  }
  .cd-item h2 {
    font-size: 3rem;
  }
  .cd-item p {
    font-size: 1.6rem;
  }
  .cd-item b {
    opacity: 0;
    -webkit-transform: translateY(20px);
            transform: translateY(20px);
    -webkit-transition: opacity 0.3s 0s, -webkit-transform 0.3s 0s;
    transition: opacity 0.3s 0s, -webkit-transform 0.3s 0s;
    transition: opacity 0.3s 0s, transform 0.3s 0s;
    transition: opacity 0.3s 0s, transform 0.3s 0s, -webkit-transform 0.3s 0s;
  }
  .no-touch .cd-item a:hover h2, .no-touch .cd-item a:hover p {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    -webkit-transition: -webkit-transform 0.3s 0s;
    transition: -webkit-transform 0.3s 0s;
    transition: transform 0.3s 0s;
    transition: transform 0.3s 0s, -webkit-transform 0.3s 0s;
  }
  .no-touch .cd-item a:hover b {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
    -webkit-transition: opacity 0.3s 0.1s, -webkit-transform 0.3s 0.1s;
    transition: opacity 0.3s 0.1s, -webkit-transform 0.3s 0.1s;
    transition: opacity 0.3s 0.1s, transform 0.3s 0.1s;
    transition: opacity 0.3s 0.1s, transform 0.3s 0.1s, -webkit-transform 0.3s 0.1s;
  }
  .fold-is-open .cd-item {
    -webkit-transition: -webkit-transform 0.5s 0s;
    transition: -webkit-transform 0.5s 0s;
    transition: transform 0.5s 0s;
    transition: transform 0.5s 0s, -webkit-transform 0.5s 0s;
    -webkit-transform: translateX(-400px);
            transform: translateX(-400px);
  }
  .fold-is-open .cd-item:nth-of-type(2n) {
    -webkit-transform: translateX(400px);
            transform: translateX(400px);
  }
}

/* -------------------------------- 

folding panel

-------------------------------- */
.cd-folding-panel {
  position: fixed;
  z-index: 1;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100%;
  visibility: hidden;
  overflow: hidden;
  -webkit-transition: visibility 0s 0.9s;
  transition: visibility 0s 0.9s;
}

.cd-folding-panel .fold-left,
.cd-folding-panel .fold-right {
  /* the :after elements of .fold-left and .fold-right are the 2 fold sides */
  width: 100%;
  height: 100vh;
  overflow: hidden;
  position: relative;
  /* enable a 3D-space for children elements */
  -webkit-perspective: 2000px;
          perspective: 2000px;
}

.cd-folding-panel .fold-left::after,
.cd-folding-panel .fold-right::after {
  /* 2 fold sides */
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  /* Force Hardware Acceleration */
  -webkit-transform: translateZ(0);
          transform: translateZ(0);
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  -webkit-transition: background-color 0.5s 0.4s, -webkit-transform 0.5s 0.4s;
  transition: background-color 0.5s 0.4s, -webkit-transform 0.5s 0.4s;
  transition: transform 0.5s 0.4s, background-color 0.5s 0.4s;
  transition: transform 0.5s 0.4s, background-color 0.5s 0.4s, -webkit-transform 0.5s 0.4s;
}

.cd-folding-panel .fold-right {
  -webkit-perspective-origin: 0% 50%;
          perspective-origin: 0% 50%;
}

.cd-folding-panel .fold-right::after {
  -webkit-transform-origin: right center;
          transform-origin: right center;
  -webkit-transform: translateX(-100%) rotateY(-90deg);
          transform: translateX(-100%) rotateY(-90deg);
  background-color: #d4d3d3;
}

.cd-folding-panel .fold-left {
  /* on mobile only the right fold side is visible */
  display: none;
}

.cd-folding-panel .fold-left::after {
  background-color: white;
}

.cd-folding-panel .cd-close {
  /* 'X' close icon */
  position: absolute;
  z-index: 1;
  display: inline-block;
  top: 10px;
  right: 10px;
  height: 44px;
  width: 44px;
  /* image replacement */
  overflow: hidden;
  text-indent: 100%;
  white-space: nowrap;
  opacity: 0;
  -webkit-transition: opacity .2s 0s;
  transition: opacity .2s 0s;
}

.cd-folding-panel .cd-close::after, .cd-folding-panel .cd-close::before {
  /* lines of 'X' icon */
  content: '';
  position: absolute;
  height: 3px;
  width: 32px;
  left: 50%;
  top: 50%;
  background-color: #948459;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  -webkit-transition: opacity .2s;
  transition: opacity .2s;
}

.cd-folding-panel .cd-close::after {
  -webkit-transform: translateX(-50%) translateY(-50%) rotate(45deg);
          transform: translateX(-50%) translateY(-50%) rotate(45deg);
}

.cd-folding-panel .cd-close::before {
  -webkit-transform: translateX(-50%) translateY(-50%) rotate(-45deg);
          transform: translateX(-50%) translateY(-50%) rotate(-45deg);
}

.cd-folding-panel.is-open {
  visibility: visible;
  -webkit-transition: visibility 0s 0s;
  transition: visibility 0s 0s;
}

.cd-folding-panel.is-open .fold-right::after,
.cd-folding-panel.is-open .fold-left::after {
  -webkit-transform: translateX(0);
          transform: translateX(0);
  -webkit-transition: background-color 0.5s 0s, -webkit-transform 0.5s 0s;
  transition: background-color 0.5s 0s, -webkit-transform 0.5s 0s;
  transition: transform 0.5s 0s, background-color 0.5s 0s;
  transition: transform 0.5s 0s, background-color 0.5s 0s, -webkit-transform 0.5s 0s;
}

.cd-folding-panel.is-open .fold-right::after {
  background-color: white;
}

.cd-folding-panel.is-open .cd-close {
  opacity: 1;
  -webkit-transition: opacity 0.2s 0.5s;
  transition: opacity 0.2s 0.5s;
}

@media only screen and (min-width: 600px) {
  .cd-folding-panel {
    width: 600px;
  }
}

@media only screen and (min-width: 1100px) {
  .cd-folding-panel {
    left: 50%;
    right: auto;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    width: 800px;
  }
  .cd-folding-panel .fold-left,
  .cd-folding-panel .fold-right {
    width: 50%;
    float: left;
    height: 100%;
  }
  .cd-folding-panel .fold-right {
    /* change perspective-origin so that the 2 fold sides have the same vanishing point */
    -webkit-perspective-origin: 0% 50%;
            perspective-origin: 0% 50%;
  }
  .cd-folding-panel .fold-right::after {
    -webkit-transform-origin: right center;
            transform-origin: right center;
    -webkit-transform: translateX(-100%) rotateY(-90deg);
            transform: translateX(-100%) rotateY(-90deg);
  }
  .cd-folding-panel .fold-left {
    display: block;
    /* change perspective-origin so that the 2 fold sides have the same vanishing point */
    -webkit-perspective-origin: 100% 50%;
            perspective-origin: 100% 50%;
  }
  .cd-folding-panel .fold-left::after {
    -webkit-transform-origin: left center;
            transform-origin: left center;
    -webkit-transform: translateX(100%) rotateY(90deg);
            transform: translateX(100%) rotateY(90deg);
  }
}

.cd-fold-content {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  padding: 4em 2em;
  visibility: hidden;
  -webkit-transition: visibility 0s 0.4s;
  transition: visibility 0s 0.4s;
}

.cd-fold-content > * {
  opacity: 0;
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
}

.cd-fold-content h2 {
  font-size: 2.4rem;
  padding-bottom: 5rem;
  -webkit-transition: opacity 0.2s 0.2s, -webkit-transform 0.2s 0.2s;
  transition: opacity 0.2s 0.2s, -webkit-transform 0.2s 0.2s;
  transition: transform 0.2s 0.2s, opacity 0.2s 0.2s;
  transition: transform 0.2s 0.2s, opacity 0.2s 0.2s, -webkit-transform 0.2s 0.2s;
}

.cd-fold-content button {
  margin: 5rem auto 0;
  display: block;
  padding: 2rem 3rem;
  background: #948459;
  border-radius: 10rem;
}

.cd-fold-content a button {
  color: #ffffff;
  text-transform: uppercase;
  font-size: 1.5rem;
  cursor: pointer;
}

.cd-fold-content p {
  margin-bottom: 1em;
  line-height: 1.6;
  font-size: 1.4rem;
  -webkit-transition: opacity 0.2s 0s, -webkit-transform 0.2s 0s;
  transition: opacity 0.2s 0s, -webkit-transform 0.2s 0s;
  transition: transform 0.2s 0s, opacity 0.2s 0s;
  transition: transform 0.2s 0s, opacity 0.2s 0s, -webkit-transform 0.2s 0s;
}

.cd-fold-content__logo {
  background-color: #948459;
  height: 15rem;
  padding: 1rem;
  margin-bottom: 3rem;
  -webkit-clip-path: polygon(0% 0%, 100% 0%, 100% 80%, 0% 100%);
          clip-path: polygon(0% 0%, 100% 0%, 100% 80%, 0% 100%);
}

.cd-fold-content__logo img {
  padding-top: 2rem;
  width: 100%;
}

@media only screen and (min-width: 480px) {
  .cd-fold-content__logo {
    width: 30rem;
  }
}

.is-open .cd-fold-content {
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  visibility: visible;
  -webkit-transition: visibility 0s 0.5s;
  transition: visibility 0s 0.5s;
}

.is-open .cd-fold-content > * {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.is-open .cd-fold-content h2 {
  -webkit-transition: opacity 0.2s 0.5s, -webkit-transform 0.2s 0.5s;
  transition: opacity 0.2s 0.5s, -webkit-transform 0.2s 0.5s;
  transition: transform 0.2s 0.5s, opacity 0.2s 0.5s;
  transition: transform 0.2s 0.5s, opacity 0.2s 0.5s, -webkit-transform 0.2s 0.5s;
}

.is-open .cd-fold-content em {
  -webkit-transition: opacity 0.2s 0.6s, -webkit-transform 0.2s 0.6s;
  transition: opacity 0.2s 0.6s, -webkit-transform 0.2s 0.6s;
  transition: transform 0.2s 0.6s, opacity 0.2s 0.6s;
  transition: transform 0.2s 0.6s, opacity 0.2s 0.6s, -webkit-transform 0.2s 0.6s;
}

.is-open .cd-fold-content p {
  -webkit-transition: opacity 0.2s 0.7s, -webkit-transform 0.2s 0.7s;
  transition: opacity 0.2s 0.7s, -webkit-transform 0.2s 0.7s;
  transition: transform 0.2s 0.7s, opacity 0.2s 0.7s;
  transition: transform 0.2s 0.7s, opacity 0.2s 0.7s, -webkit-transform 0.2s 0.7s;
}

@media only screen and (min-width: 600px) {
  .cd-fold-content h2 {
    font-size: 3.2rem;
  }
}

@media only screen and (min-width: 1100px) {
  .cd-fold-content {
    padding: 0 4em 4em 4em;
  }
  .cd-fold-content > * {
    -webkit-transform: translateY(40px);
            transform: translateY(40px);
  }
  .cd-fold-content em {
    font-size: 2.2rem;
  }
  .cd-fold-content p {
    font-size: 1.6rem;
  }
}

.eco-circular__imagen {
  background: #80d8e2 url(http://nextcircularfuture.com/wp-content/uploads/2017/11/circular-imagen.jpg) no-repeat center;
  text-align: center;
  line-height: 80px;
  color: #ffffff;
  height: 300px;
  background-size: cover;
}

.eco-circular__imagen p {
  font-size: 2rem;
}

.eco-circular__imagen h3 {
  color: #ffffff;
  font-size: 2.5em;
  text-shadow: 1px 1.5px 2px #444444;
}

@media only screen and (min-width: 600px) {
  .eco-circular__imagen {
    background-size: contain;
  }
}

@media only screen and (min-width: 1100px) {
  .eco-circular__imagen {
    height: 398px;
    line-height: 50px;
  }
}

.eco-circular__texto {
  color: #948459;
  padding: 5rem;
  font-size: 1.8rem;
  line-height: 3rem;
  text-align: justify;
}

.eco-circular__texto p {
  padding-bottom: 2rem;
}

@media only screen and (min-width: 480px) {
  .eco-circular__texto {
    text-align: left;
  }
}

@media only screen and (min-width: 600px) {
  .eco-circular__texto {
    -webkit-column-count: 2;
            column-count: 2;
    -webkit-column-gap: 70px;
            column-gap: 70px;
  }
}

.negocios {
  text-align: center;
  color: #948459;
  padding: 5rem;
  font-size: 1.8rem;
  line-height: 3rem;
}

.negocios h3 {
  font-size: 2rem;
  margin-bottom: 2rem;
}

.negocios p {
  padding-bottom: 2rem;
}

@media only screen and (min-width: 1100px) {
  .negocios {
    max-width: 900px;
    margin: auto;
    display: block;
  }
}

/* -------------------------------- 

Contact Form 

-------------------------------- */
.wpcf7-form input, .wpcf7-form textarea {
  background: #ededed;
  border: 0;
  padding: 1rem 1.5rem;
  color: #948459;
  width: 100%;
}

.wpcf7-form input[type="submit"] {
  font-size: x-large;
  color: #ffffff;
  background: #948459;
  border-radius: 30px;
}

@media only screen and (min-width: 480px) {
  .wpcf7-form input[type="submit"] {
    margin: auto;
    max-width: 200px;
    display: block;
  }
}

@media only screen and (min-width: 480px) {
  .wpcf7-form p:not(:nth-of-type(1)):not(:nth-of-type(6)):not(:nth-of-type(7)) {
    width: 50%;
    float: left;
  }
}

@media only screen and (min-width: 480px) {
  .wpcf7-form p:nth-of-type(2) input, .wpcf7-form p:nth-of-type(4) input {
    width: 97%;
  }
}

/* -------------------------------- 

Javascript disabled

-------------------------------- */
.no-js .cd-fold-content.single-page {
  position: static;
  visibility: visible;
  height: auto;
  background-color: #ededed;
}

.no-js .cd-fold-content.single-page > * {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
